UNPKG

hh-ui-components

Version:
9 lines (8 loc) 206 B
import { FC } from "react"; export interface AlertProps { label: any; variants?: "error" | "success"; className?: string; onClick?: () => void; } export declare const Alert: FC<AlertProps>;