antd
Version:
An enterprise-class UI design language and React components implementation
10 lines (9 loc) • 302 B
TypeScript
import type { FC } from 'react';
import type { AggregationColor } from '../color';
interface ColorHexInputProps {
prefixCls: string;
value?: AggregationColor;
onChange?: (value: AggregationColor) => void;
}
declare const ColorHexInput: FC<ColorHexInputProps>;
export default ColorHexInput;