Type Alias TMenuItem

TMenuItem: {
    disabled?: boolean;
    id: string;
    label: string;
    type: "button" | "checkbox" | "select" | "list" | "colors";
}