Interface RedGreenBluePanelProps

interface RedGreenBluePanelProps {
    className?: string;
    disabled?: boolean;
    rgb: RGB;
    onColorUpdate(rgb): void;
}

Properties

className?: string

optional CSS class name

disabled?: boolean

whether this input is disabled or not

rgb: RGB

color value

Methods

Generated using TypeDoc