mfg-ui-components
Version:
React UI library with reusable components
16 lines (15 loc) • 513 B
TypeScript
import React from "react";
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;
style?: React.CSSProperties;
}
declare const Alert: ({ customClass, alertId, showAlrt, alertType, alertTitle, alertContent, alertIcon, style, }: Props) => import("react/jsx-runtime").JSX.Element;
export default Alert;