mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
9 lines
171 B
TypeScript
9 lines
171 B
TypeScript
import { IconProp } from '@fortawesome/fontawesome-svg-core';
|
|
|
|
export interface RadialMenuItem {
|
|
icon: IconProp;
|
|
label: string;
|
|
isMore?: boolean;
|
|
menu?: string;
|
|
}
|