2022-11-24 18:08:51 +00:00
|
|
|
import { Button, styled } from "@mui/material";
|
2022-11-17 20:56:17 +00:00
|
|
|
import { ButtonProps } from "@mui/material/Button";
|
2022-11-17 12:25:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
interface Props {
|
2022-11-19 20:30:28 +00:00
|
|
|
py?: string;
|
2022-11-17 12:25:23 +00:00
|
|
|
}
|
|
|
|
|
2022-11-24 18:08:51 +00:00
|
|
|
export default styled(Button)<ButtonProps & Props>(props => ({
|
2022-11-22 14:43:13 +00:00
|
|
|
width: "180px",
|
2022-11-19 20:30:28 +00:00
|
|
|
paddingTop: props.py || "10px",
|
|
|
|
paddingBottom: props.py || "10px",
|
2022-11-17 20:56:17 +00:00
|
|
|
borderRadius: "8px",
|
|
|
|
boxShadow: "none",
|
|
|
|
}));
|