import { cn } from "@/lib/utils" import { ArrowDown, ArrowUp, 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}

) }