0.0.1 • Published 3 years ago

@uiw/react-color-hua v0.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

Color Hua

Install

npm i @uiw/react-color-hua

Usage

import Hua from '@uiw/react-color-hua';

function Demo() {
  return (
    <Hua hue={222} />
  );
}

Props

import { ColorAlphaProps } from '@uiw/react-color-alpha';

interface ColorHuaProps extends Omit<ColorAlphaProps, 'hsva' | 'onChange'> {
  onChange?: (newHua: { h: number }) => void;
  hue: number;
}