7 lines
138 B
TypeScript
7 lines
138 B
TypeScript
export interface ColorPickerProps {
|
|
id?: string;
|
|
className?: string;
|
|
tooltip: string;
|
|
onChange: (event: Event) => void;
|
|
}
|