antd-hz
Version:
华卓科技基于 antd 5.0 定制的组件库
11 lines (10 loc) • 466 B
TypeScript
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;