feat(web/context): allow displaying icons in context menu items

This commit is contained in:
Luke
2022-07-07 14:53:36 +02:00
parent 92023227cd
commit 4fc6366801
3 changed files with 20 additions and 0 deletions

View File

@@ -1,9 +1,13 @@
import { IconProp } from "@fortawesome/fontawesome-svg-core";
export interface Option {
menu?: string;
title?: string;
description?: string;
arrow?: boolean;
image?: string;
icon?: IconProp;
iconColor?: string;
metadata?:
| string[]
| { [key: string]: any }