🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

React input color component with hsv color picker, inspired by the Sketch color picker.

Others React

Documentation

react-input-color

npm npm Build Status codecov styled with prettier

React input color component with hsv color picker

The color picker is inspired by the sketch color picker

screenshot

Starting from v2, this component is rewritten with emotion and it doesnot require any external css file.

Installation

npm install react-input-color --save yarn add react-input-color

Demo

https://swiftcarrot.dev/react-input-color

Usage

import React from 'react'; import InputColor from 'react-input-color';  function App() {   const [color, setColor] = React.useState({});    return (     <div>       <InputColor         initialHexColor="#5e72e4"         onChange={setColor}         placement="right"       />       <div         style={{           width: 50,           height: 50,           marginTop: 20,           backgroundColor: color.hex         }}       />     </div>   ); }

License

MIT


You May Also Like