UNPKG

quick-ui-design

Version:

A Quick UI library for user interface design with React fast and easy.

10 lines (9 loc) 240 B
import { AlertProps } from 'antd'; import { FC } from 'react'; import { ALERT } from '../../Types'; export interface IAlert { ctype: typeof ALERT; props: AlertProps; } declare const Alert: FC<IAlert>; export default Alert;