UNPKG

462 BTypeScriptView Raw
1import { Component, CSSProperties } from "react";
2import { ColorPickerProps } from "../../..";
3import { Classes } from "reactcss";
4
5export interface HuePickerStylesProps {
6 picker: CSSProperties;
7 hue: CSSProperties;
8}
9
10export interface HuePickerProps extends ColorPickerProps<HuePicker> {
11 height?: string;
12 width?: string;
13 styles?: Partial<Classes<HuePickerStylesProps>>;
14}
15
16export default class HuePicker extends Component<HuePickerProps> { }