mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 23:42:23 -04:00
6 lines
138 B
TypeScript
6 lines
138 B
TypeScript
export interface ColorPickerProps {
|
|
id?: string;
|
|
className?: string;
|
|
tooltip: string;
|
|
onChange: (event: Event) => void;
|
|
}
|