Color picker library for React (default react or mui compatible)
npm install @wellbees/color-picker-input
For React:
import { useState } from 'react'
import { ColorPicker } from '@wellbees/color-picker-input'
function App() {
const [colorValue, setColorValue] = useState('')
return <ColorPicker
value={colorValue}
inputType="input"
onChange={(color)=> setColorValue(color)}
For @mui (v5):