react-color-picker
A React color picker component.
Install
NPM:
npm install @super-effective/react-color-picker
Yarn:
yarn add @super-effective/react-color-picker
Usage
Import the component:
Render the component in your code:
Props
Prop | Type | Details |
---|---|---|
className |
string |
The class name to put on the container div |
color |
string |
The initial/current selected color (hex value, e.g. #ff00ff) |
showSwatch |
bool |
Whether the selected color swatch should be displayed below the picker |
showHex |
bool |
Whether the hex value input should be displayed below the picker |
onChange |
func |
The callback function to be called when the color value changes |
Example
See the included example for reference