UNPKG

quick-ui-design

Version:

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

10 lines (9 loc) 292 B
import { SearchProps } from 'antd/es/input'; import { FC } from 'react'; import { INPUT_SEARCH } from '../../../Types'; export interface IInputSearch { ctype: typeof INPUT_SEARCH; props: SearchProps; } declare const InputSearch: FC<IInputSearch>; export default InputSearch;