Package Exports
- @bluemojo/chrome
Readme
@bluemojo/chrome
This is a package for chrome color picker
Installation
npm install @bluemojo/chrome
Examples
import { Chrome } from '@bluemojo/chrome';
function Component() {
const [color, setColor] = useState('#FF0000');
return <Chrome value={color} onChange={setColor} />;
}