UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

14 lines (13 loc) 398 B
import type { FC } from 'react'; import React from 'react'; import type { AggregationColor } from '../color'; interface ColorClearProps { prefixCls: string; value?: AggregationColor; onChange?: (value: AggregationColor) => void; className?: string; style?: React.CSSProperties; disabled?: boolean; } declare const ColorClear: FC<ColorClearProps>; export default ColorClear;