import { GitBranch, BarChart3, Layers } from 'lucide-react' import { cn } from '@/lib/utils' import type { PublicFlowTemplate } from '@/types' interface FlowTemplateCardProps { template: PublicFlowTemplate onClick: () => void } const typeLabels: Record = { troubleshooting: 'Troubleshooting', procedural: 'Project', maintenance: 'Maintenance', } export function FlowTemplateCard({ template, onClick }: FlowTemplateCardProps) { return ( ) }