UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

14 lines (13 loc) 458 B
import type { FC } from 'react'; import type { AggregationColor } from '../color'; import type { ColorFormatType } from '../interface'; interface ColorInputProps { prefixCls: string; format?: ColorFormatType; onFormatChange?: (format: ColorFormatType) => void; disabledAlpha?: boolean; value?: AggregationColor; onChange?: (value: AggregationColor) => void; } declare const ColorInput: FC<ColorInputProps>; export default ColorInput;