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