2021-04-15 15:59:52 +02:00
|
|
|
// Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
2021-04-08 16:29:28 +02:00
|
|
|
export interface LabelButtonProps {
|
|
|
|
id?: string;
|
|
|
|
className?: string;
|
|
|
|
|
|
|
|
label: string;
|
2021-04-08 16:40:42 +02:00
|
|
|
tooltip: string;
|
2021-04-08 16:29:28 +02:00
|
|
|
onClick: (event: MouseEvent) => void;
|
|
|
|
disables?: boolean;
|
|
|
|
}
|