JSPM

@bluemojo/colorful

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

Colorful color picker component for React.

Package Exports

  • @bluemojo/colorful

Readme

@bluemojo/colorful

This is a package for colorful color picker

Installation

npm install @bluemojo/colorful

Examples

import { Colorful } from '@bluemojo/colorful';

function Component() {
  const [color, setColor] = useState('#FF0000');
  
  return <Colorful value={color} onChange={setColor} />;
}