import { Button, ButtonProps, styled } from '@mui/material'; import { BLACK, GREY, TEXT } from '../lib/consts/DEFAULT_THEME'; const StyledButton = styled(Button)({ backgroundColor: TEXT, color: BLACK, textTransform: 'none', '&:hover': { backgroundColor: GREY, }, }); const ContainedButton = ({ children, onClick, sx, type, }: ButtonProps): JSX.Element => ( {children} ); export default ContainedButton;