UNPKG

quick-ui-design

Version:

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

10 lines (9 loc) 248 B
import { SelectProps } from 'antd'; import { FC } from 'react'; import { SELECT } from '../../Types'; export interface ISelect { ctype: typeof SELECT; props: SelectProps; } declare const Select: FC<ISelect>; export default Select;