diff --git a/apps/web/src/components/blocks/stats-7/components/data.tsx b/apps/web/src/components/blocks/stats-7/components/data.tsx new file mode 100644 index 0000000..6766214 --- /dev/null +++ b/apps/web/src/components/blocks/stats-7/components/data.tsx @@ -0,0 +1,86 @@ +import { ReactNode } from "react" +import { BadgeProps } from "@/components/reui/badge" +import { TrendingUp, UserPlusIcon, TrendingDown } from "lucide-react" + +// ── Types ── + +export interface CardData { + title: string + subtitle: string + value: string + valueColor: string + badge: { + color: BadgeProps["variant"] + icon: ReactNode + text: string + } + subtext: ReactNode +} + +// ── Data ── + +export const cards: CardData[] = [ + { + title: "Total Sales & Cost", + subtitle: "Last 60 days", + value: "$956.82k", + valueColor: "text-emerald-600", + badge: { + color: "success-light", + icon: ( +