颜色选择器,同时支持纯色和渐变色选择。
$ npm i react-colors-beauty --save$ yarn add react-colors-beautyimport { 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} />
}