front-hub/src/components/CustomButton.tsx
2022-12-15 17:07:16 +03:00

11 lines
222 B
TypeScript

import { Button, styled } from "@mui/material";
export default styled(Button)({
width: "180px",
paddingTop: "10px",
paddingBottom: "10px",
borderRadius: "8px",
boxShadow: "none",
}) as typeof Button;