import type { LucideIcon } from "lucide-react" import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card" import { motion } from "framer-motion" interface OrderStatsProps { title: string value: string icon: LucideIcon index?: number } export default function OrderStats({ title, value, icon: Icon, index = 0 }: OrderStatsProps) { return (
{title}
{value}
) }