import React from 'react'; import { User, CreditCard, Car, Calendar, Info } from 'lucide-react'; import { cn } from '@/lib/utils'; /** * Premium Kanban Card * Based on the reference image with high-fidelity UI. */ export const KanbanCard = ({ title, subtitle, details = [], date, statusColor = "emerald", className }) => { return (
{/* Top Right Status Batch Indicator */}
{/* Avatar Component */}
{/* Title - Bold Uppercase */}

{title}

{/* Details Grid */}
{details.map((detail, idx) => (
{detail.icon && } {detail.label}: {detail.value}
))}
{/* Footer Info */}
{date}
Não Informado
); };