mfg-ui-components
Version:
React UI library with reusable components
14 lines (13 loc) • 446 B
TypeScript
import "./Alert.scss";
export type color = "warning" | "success" | "danger";
export interface Props {
alertId?: any;
customClass?: any;
showAlrt?: boolean;
alertType?: color;
alertTitle?: string;
alertContent?: string;
alertIcon?: any;
}
declare const Alert: ({ customClass, alertId, showAlrt, alertType, alertTitle, alertContent, alertIcon, }: Props) => import("react/jsx-runtime").JSX.Element;
export default Alert;