JSPM

@bluemojo/chrome

0.0.4
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 6
  • Score
    100M100P100Q36198F
  • License MIT

Chrome color picker component for React.

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} />;
}