UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

10 lines (9 loc) 458 B
import type { FC } from 'react'; import type { PanelPickerContextProps, PanelPresetsContextProps } from './context'; import type { ColorPickerProps } from './interface'; export interface ColorPickerPanelProps extends PanelPickerContextProps, Omit<PanelPresetsContextProps, 'onChange'> { onClear?: () => void; panelRender?: ColorPickerProps['panelRender']; } declare const ColorPickerPanel: FC<ColorPickerPanelProps>; export default ColorPickerPanel;