import type { LucideIcon } from 'lucide-react' interface ServiceTaskCardProps { icon: LucideIcon title: string description: string status?: 'idle' | 'active' } function ServiceTaskCard({ icon: Icon, title, description, status = 'idle' }: ServiceTaskCardProps) { return (
{description}