import { Bell, Box, Cloud, Code, Cpu, Database, GitBranch, Globe, Layers, Lock, Play } from 'lucide-react'; const ICONS = { Bell, Box, Cloud, Code, Cpu, Database, GitBranch, Globe, Layers, Lock, Play }; export default function WorkflowToolbar({ templates, onDragStart }) { const categories = [...new Set(templates.map((template) => template.category))]; return ( ); }