Interface CustomColorPanelProps

This is a standard color panel.

interface CustomColorPanelProps {
    disableAlpha?: boolean;
    onColorChange: ((color) => void);
    renderers?: any;
    selectedColor: string;
}

Hierarchy

  • HTMLAttributes<HTMLElement>
    • CustomColorPanelProps

Properties

disableAlpha?: boolean

Defaults to false

onColorChange: ((color) => void)

Type declaration

    • (color): void
    • Parameters

      • color: string

      Returns void

renderers?: any
selectedColor: string