react-color-dropdown-picker
v1.0.1
Published
A small, accessible React color picker component
Maintainers
Readme
react-color-picker
A tiny accessible React color picker component.
Usage
import { ColorPicker } from 'react-color-picker';
<ColorPicker value="#ff0000" onChange={(c) => {/* handle color change */}} />Props
value?: string- hex color string like#rrggbbonChange?: (color: string) => void- called when the color changeslabel?: string- aria label for the input
Dev
Install dependencies and run tests/build:
npm install
npm run build
npm test