UNPKG

@rc-component/color-picker

Version:
12 lines (11 loc) 324 B
import type { FC } from 'react'; import React from 'react'; export type ColorBlockProps = { color: string; prefixCls?: string; className?: string; style?: React.CSSProperties; onClick?: React.MouseEventHandler<HTMLDivElement>; }; declare const ColorBlock: FC<ColorBlockProps>; export default ColorBlock;