10 lines
186 B
TypeScript
10 lines
186 B
TypeScript
export interface LabelButtonProps {
|
|
id?: string;
|
|
className?: string;
|
|
|
|
label: string;
|
|
tooltip: string;
|
|
onClick: (event: MouseEvent) => void;
|
|
disables?: boolean;
|
|
}
|