import { FormHelperText } from '@mui/material'; interface Props { message: string; style: string; } const ErrorText = ({ message, style }: Props): JSX.Element => ( {message} ); export default ErrorText;