import React from "react"; import { MousePointer2 } from "lucide-react"; import type { EditorToolController } from "../../lib/editor-tool-controller"; import type { EditorToolId } from "../../store/editor-store"; type Props = { controllers: EditorToolController[]; selectedTool: EditorToolId; isDark: boolean; icons: Record>; onSetTool: (tool: EditorToolId) => void; }; export function ToolRail({ controllers, selectedTool, isDark, icons, onSetTool }: Props) { return ( ); }