import { FC } from 'react' import { ToggleButtonProps, Typography } from '@mui/material' import { StyledToggleButton } from './styled' type ActionToggleButtonProps = ToggleButtonProps & { description?: string hasinfo?: boolean } export const ActionToggleButton: FC = ({ hasinfo = false, ...props }) => { const { title, description = '' } = props return ( {title} {description} {hasinfo && ( Info )} ) }