react-best-gradient-color-picker
- Customizable, easy to use color and gradient picker for React.js
Install
npm install react-best-gradient-color-picker
Example
import React from 'react'
import ColorPicker from 'react-best-gradient-color-picker'
function MyApp() {
const [color, setColor] = useState('rgba(255,255,255,1');
return <ColorPicker value={color} onChange={setColor} />
}
Props
Name | Type | Default | Description |
---|
value | string | 'rgba(175, 51, 242, 1)' | The starting color |
API
Name | Description |
---|
onChange | A function to update color value |
License
Code released under the MIT license.