interface InputColorPickerProps {
    allowClear?: boolean;
    color?: string;
    colorsInPaletteRow?: number;
    errorMessage?: ReactNode;
    isDisabled?: boolean;
    isReadOnly?: boolean;
    onChange?: ((color: string) => void);
    palette?: string[];
    placeholder?: string;
}

Properties

allowClear?: boolean
color?: string
colorsInPaletteRow?: number
errorMessage?: ReactNode
isDisabled?: boolean
isReadOnly?: boolean
onChange?: ((color: string) => void)
palette?: string[]
placeholder?: string