2021-09-06 13:51:15 +00:00
|
|
|
import { Alert } from "../Alert";
|
2021-06-09 12:26:00 +00:00
|
|
|
|
2021-09-06 13:51:15 +00:00
|
|
|
/**
|
|
|
|
* @deprecated use `<Alert severity="error" message="x" />` instead
|
|
|
|
*/
|
|
|
|
export default function ErrorAlert(props: { message: string; className?: string }) {
|
|
|
|
return <Alert severity="errror" message={props.message} />;
|
2021-08-19 12:27:01 +00:00
|
|
|
}
|