UNPKG

quick-ui-design

Version:

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

10 lines (9 loc) 290 B
import { ColorPickerProps } from 'antd'; import { FC } from 'react'; import { COLOR_PICKER } from '../../Types'; export interface IColorPicker { ctype: typeof COLOR_PICKER; props: ColorPickerProps; } declare const ColorPicker: FC<IColorPicker>; export default ColorPicker;