@uiw/react-color-circle
Version:
Color swatch component for React.
9 lines (8 loc) • 364 B
TypeScript
import React from 'react';
import { SwatchRectRenderProps, SwatchProps } from '@uiw/react-color-swatch';
interface PointProps extends SwatchRectRenderProps {
rectProps?: SwatchProps['rectProps'];
className?: string;
}
export default function Point({ style, className, title, checked, color, onClick, rectProps }: PointProps): React.JSX.Element;
export {};