UNPKG

@flatbiz/antd

Version:
13 lines (10 loc) 425 B
import { ColorPickerProps } from 'antd'; export type ColorPickerWrapperProps = Omit<ColorPickerProps, "value" | "onChange"> & { /** 格式:#1677ff */ value?: string; /** 转换成 hex 格式颜色字符串,返回格式如:#1677ff */ onChange?: (hex?: string) => void; viewMinWidth?: number; }; export declare const ColorPickerWrapper: (props: ColorPickerWrapperProps) => import("react").JSX.Element; export {};