@rc-component/color-picker
Version:
React Color Picker
12 lines (11 loc) • 324 B
TypeScript
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;