UNPKG

@bothub-chat/ui

Version:

Bothub UI Components

9 lines (8 loc) 281 B
export type ColorPickerChangeEventHandler = (color: string) => unknown; export interface ColorPickerProps { label?: string; preview?: boolean; color?: string; onChange?: ColorPickerChangeEventHandler; } export declare const ColorPicker: React.FC<ColorPickerProps>;