import MuiButton, { ButtonProps } from '@mui/material/Button'; export const Button = (props: ButtonProps) => { return ; }; export const IconButton = (props: ButtonProps) => { const { variant = 'contained', color = 'primary', sx, children, ...rest } = props; return ( {children} ); };