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