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 { InputProps } from 'antd'; import { FC } from 'react'; import { INPUT } from '../../Types'; export interface IInput { ctype: typeof INPUT; props: InputProps; } declare const Input: FC<IInput>; export default Input;