2024-07-08 17:42:59 -04:00

7 lines
218 B
TypeScript

import { Typography, TypographyProps, } from "@mui/material";
export const ErrorText: React.FunctionComponent<TypographyProps> = ({ ...props }) => {
return (
<Typography color="error" {...props} />
)
}