watercolor-ui
Version:
A modern minimalist cross-framework component library
12 lines • 474 B
TypeScript
export function Alert({ type, variant, title, closable, showIcon, className, children, onClose, }: {
type?: string | undefined;
variant?: string | undefined;
title?: string | undefined;
closable?: boolean | undefined;
showIcon?: boolean | undefined;
className?: string | undefined;
children: any;
onClose?: (() => void) | undefined;
}): import("react/jsx-runtime").JSX.Element | null;
export default Alert;
//# sourceMappingURL=Alert.d.ts.map