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