UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

10 lines (9 loc) 290 B
import type { FC } from 'react'; import type { AggregationColor } from '../color'; interface ColorClearProps { prefixCls: string; value?: AggregationColor; onChange?: (value: AggregationColor) => void; } declare const ColorClear: FC<ColorClearProps>; export default ColorClear;