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