front-hub/src/components/CustomButton.tsx

11 lines
222 B
TypeScript
Raw Normal View History

2022-11-24 18:08:51 +00:00
import { Button, styled } from "@mui/material";
2022-11-17 12:25:23 +00:00
2022-12-15 14:07:16 +00:00
export default styled(Button)({
2022-11-22 14:43:13 +00:00
width: "180px",
2022-12-15 14:07:16 +00:00
paddingTop: "10px",
paddingBottom: "10px",
2022-11-17 20:56:17 +00:00
borderRadius: "8px",
boxShadow: "none",
2022-12-15 14:07:16 +00:00
}) as typeof Button;