Type Alias ColorPickerProps
ColorPickerProps: Partial<Pick<WrapperProps, "css" | "className">> & Omit<
InputProps,
"className"
| "type"
| "value",
> & Pick<ColorDisplayProps, "variant"> & {
children?: never;
error?: boolean;
label?: string;
value?: string;
}