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 ColorRgbInputProps {
prefixCls: string;
value?: AggregationColor;
onChange?: (value: AggregationColor) => void;
}
declare const ColorRgbInput: FC<ColorRgbInputProps>;
export default ColorRgbInput;