import type { LucideIcon } from "lucide-react"; interface OrderStatsProps { title: string; value: string; icon: LucideIcon; } export default function OrderStats({ title, value, icon: Icon }: OrderStatsProps) { return (

{title}

{value}

); }