React input color component with hsv color picker
npm install react-input-color




React input color component with hsv color picker
The color picker is inspired by the sketch color picker
Starting from v2, this component is rewritten with emotion and it doesnot require any external css file.
``sh`
npm install react-input-color --save
yarn add react-input-color
https://react-input-color.caitouyun.com
The initialValue property supports 6 (#RRGGBB) and 8 (#RRGGBBAA) digits hex value.
`javascript
import React from 'react';
import InputColor from 'react-input-color';
function App() {
const [color, setColor] = React.useState({});
return (
- This component is built with react-input-slider and react-input-number.
MIT