@bluemojo/chrome
v0.0.4
Published
Chrome color picker component for React.
Downloads
8
Maintainers
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} />;
}