mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-18 23:46:03 +01:00
7 lines
134 B
TypeScript
7 lines
134 B
TypeScript
|
|
import { IconProp } from '@fortawesome/fontawesome-svg-core';
|
||
|
|
|
||
|
|
export interface RadialMenuItem {
|
||
|
|
icon: IconProp;
|
||
|
|
label: string;
|
||
|
|
}
|