화면관리 ui개선 및 파일업로드 설정

This commit is contained in:
kjs
2025-10-15 13:30:11 +09:00
parent 5a8efa51af
commit 3d242c1c8e
14 changed files with 598 additions and 584 deletions

View File

@@ -3,7 +3,7 @@
import React from "react";
import { Button } from "@/components/ui/button";
import { Badge } from "@/components/ui/badge";
import { Database, Layout, Cog, Settings, Palette, Monitor, Square } from "lucide-react";
import { Database, Layout, Cog, Settings, Palette, Monitor } from "lucide-react";
import { cn } from "@/lib/utils";
export interface ToolbarButton {
@@ -110,14 +110,6 @@ export const defaultToolbarButtons: ToolbarButton[] = [
group: "editor",
panelWidth: 300,
},
{
id: "zone",
label: "구역",
icon: <Square className="h-5 w-5" />,
shortcut: "Z",
group: "editor",
panelWidth: 0, // 토글만 (패널 없음)
},
];
export default LeftUnifiedToolbar;