2023-02-15 13:00:09 +01:00
|
|
|
import { IconProp } from '@fortawesome/fontawesome-svg-core';
|
|
|
|
|
|
|
|
|
|
export interface RadialMenuItem {
|
|
|
|
|
icon: IconProp;
|
|
|
|
|
label: string;
|
2023-02-23 17:29:38 +01:00
|
|
|
isMore?: boolean;
|
2023-02-28 19:47:14 +00:00
|
|
|
menu?: string;
|
2023-02-15 13:00:09 +01:00
|
|
|
}
|