import { Button as DefaultButton } from "@mui/material"; interface Props { fullWidth?: boolean; backgroundColor?: string; color?: string; variant: "outlined" | "contained"; children: React.ReactNode; } export default function Button({ fullWidth = false, backgroundColor, color, variant, children }: Props) { return (