UNPKG

@kbfront/kb-ui

Version:

KB React UI Library

12 lines (11 loc) 304 B
import { FC, ReactNode, ReactNodeArray } from "react"; import { EColor } from "../../enum/index"; import "./index.scss"; interface IProps { children?: ReactNode | ReactNodeArray; color?: EColor; className?: string; show?: boolean; } declare const Alert: FC<IProps>; export default Alert;