我正在使用 amaterial-ui button并尝试通过样式组件覆盖边框半径(即,使其为 0)。但是,它不起作用。
代码:
import React from "react";
import styled from "styled-components";
import { Button } from "@material-ui/core";
const StyledButton = styled(Button)`
background-color: #d29d12;
border-radius: 0;
`;
export default function App() {
return <StyledButton>Hello</StyledButton>;
}
LEATH
神不在的星期二
森林海
POPMUISE
相关分类