import { debugData } from "../../../utils/debugData"; import { MenuSettings } from "../../menu/list"; export const debugMenu = () => { debugData([ { action: "setMenu", data: { // position: "bottom-left", title: "Vehicle garage", items: [ { label: "Option 1", icon: "heart" }, { label: "Option 2", icon: "basket-shopping", description: "Tooltip description 1", }, { label: "Vehicle class", values: ["Nice", "Super nice", "Extra nice"], icon: "tag", description: "Tooltip description 2", }, { label: "Option 1" }, { label: "Option 2" }, { label: "Vehicle class", values: ["Nice", "Super nice", "Extra nice"], defaultIndex: 1, }, { label: "Option 1" }, { label: "Option 2" }, { label: "Vehicle class", values: ["Nice", "Super nice", "Extra nice"], }, ], }, }, ]); };