import React from "react"; import { AlertCardProps } from "./types"; import { MaterialIcon } from "@shared/components/material-icon"; import { Text } from "@shared/components/text"; import { cx } from "@shared/utils"; export const AlertCard: React.FC = ({ errorMessage, className, iconClassName, iconSize = 52, iconName = "dangerous", textVariant, }) => { if (!errorMessage) return null; return (
{errorMessage}
); }; AlertCard.displayName = "AlertCard"; export type { AlertCardProps };