mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-06-06 08:26:58 +00:00
7 lines
218 B
TypeScript
7 lines
218 B
TypeScript
import { Typography, TypographyProps, } from "@mui/material";
|
|
|
|
export const ErrorText: React.FunctionComponent<TypographyProps> = ({ ...props }) => {
|
|
return (
|
|
<Typography color="error" {...props} />
|
|
)
|
|
} |