2.0.0-beta.1 • Published 3 days ago

react-colors-beauty v2.0.0-beta.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 days ago

Version  Downloads  Total downloads

react-colors-beauty

颜色选择器,同时支持纯色和渐变色选择。

Install

$ npm i react-colors-beauty --save
$ yarn add react-colors-beauty

Basic Example

import { useState } from 'react';
import { ColorsPicker } from 'react-colors-beauty';

import 'react-colors-beauty/esm/index.less';

export default function App () {
  const [value, setValue] = useState({ type: 'solid', color: 'rgb(0,0,0)' });
  <ColorsPicker value={value} onChange={setValue} />
}