import { Button as DefaultButton, styled } from "@mui/material"; import { ButtonProps } from "@mui/material/Button"; import { CSSProperties } from "react"; interface Props { sx?: CSSProperties; py?: string; } export default styled(DefaultButton)(props => ({ width: "180px", paddingTop: props.py || "10px", paddingBottom: props.py || "10px", borderRadius: "8px", boxShadow: "none", ...props.style }));