diff --git a/src/components/LayoutStep.tsx b/src/components/LayoutStep.tsx index 526c82e..dcf746c 100644 --- a/src/components/LayoutStep.tsx +++ b/src/components/LayoutStep.tsx @@ -1,7 +1,7 @@ import React, { useRef, useState, useMemo } from 'react'; import { AppConfig, LayoutSplits, Partition } from '../types'; -// ИСПРАВЛЕНИЕ: Добавлена иконка Move в импорты -import { Grid, MousePointer2, Trash2, RotateCcw, X, Plus, Move } from 'lucide-react'; +// Импортируем только то, что реально используем +import { Grid, MousePointer2, Trash2, RotateCcw, X, Plus } from 'lucide-react'; interface Props { config: AppConfig; @@ -49,7 +49,6 @@ export const LayoutStep: React.FC = ({ config, splits, onChange }) => { const drawerD = Math.max(1, config.drawer.depth || 400); const aspectRatio = drawerD / drawerW; - // ViewBox (internal SVG coordinates) const viewBoxW = 1000; const viewBoxH = viewBoxW * aspectRatio; @@ -282,7 +281,7 @@ export const LayoutStep: React.FC = ({ config, splits, onChange }) => {