2022-03-16 23:36:43 +00:00
|
|
|
import { Alert } from "@calcom/ui/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 }) {
|
2021-09-29 11:33:40 +00:00
|
|
|
return <Alert severity="error" message={props.message} />;
|
2021-08-19 12:27:01 +00:00
|
|
|
}
|