UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

11 lines (10 loc) 466 B
import type { FC } from 'react'; import type { HsbaColorType } from '@rc-component/color-picker'; import type { Color } from './color'; import type { ColorPickerBaseProps } from './interface'; export interface ColorPickerPanelProps extends ColorPickerBaseProps { onChange?: (value?: Color, type?: HsbaColorType, pickColor?: boolean) => void; onClear?: () => void; } declare const ColorPickerPanel: FC<ColorPickerPanelProps>; export default ColorPickerPanel;