Interface ColorInputProps

interface ColorInputProps {
    className?: string;
    color?: Instance;
    disabled?: boolean;
    format?: ColorTextFormat;
    onColorUpdate?(color): void;
}

Properties

className?: string

optional CSS class name

color?: Instance

color value

disabled?: boolean

whether this input is disabled or not

color text format

Methods

  • called when color gets updated

    Parameters

    • color: Instance

    Returns void

Generated using TypeDoc