mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
* feat(package): support icon urls in radial menu * fix: update lua & ts types + clamp size parameters
11 lines
225 B
TypeScript
11 lines
225 B
TypeScript
import { IconProp } from '@fortawesome/fontawesome-svg-core';
|
|
|
|
export interface RadialMenuItem {
|
|
icon: string | IconProp;
|
|
label: string;
|
|
isMore?: boolean;
|
|
menu?: string;
|
|
iconWidth?: number;
|
|
iconHeight?: number;
|
|
}
|