Package Exports
- @uiw/react-color-hua
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@uiw/react-color-hua) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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;
}