import Button, {
  ButtonProps,
} from '@material-hu/components/design-system/Buttons/Button';

export const ButtonText = ({ sx, ...props }: ButtonProps) => {
  return (
    <Button
      {...props}
      sx={{
        ...sx,
        height: 'auto',
        minWidth: 'unset',
        p: 0,
        '&:hover': {
          background: 'transparent',
        },
      }}
    />
  );
};
