developement of right control side started

This commit is contained in:
E44
2025-10-20 17:47:17 +02:00
parent 19cc4c4415
commit f5fd93b1ff
6 changed files with 299 additions and 29 deletions
+3 -2
View File
@@ -1,4 +1,4 @@
import type { Component } from "lucide-svelte";
import type { X } from "lucide-svelte";
export type Display = {
id: string;
@@ -15,8 +15,9 @@ export type DisplayGroup = {
export type MenuOption = {
icon?: Component;
icon?: typeof X;
name: string;
class?: string;
on_select?: () => void;
disabled?: boolean;
}