← Back to dashboard blocks
stats-01
A row of four KPI stat cards with values and trend deltas. Use as the header of a dashboard or analytics overview.
Code
import * as React from "react"
import { TrendingDownIcon, TrendingUpIcon } from "lucide-react"
import { cn } from "@/lib/utils"
import {
Card,
CardContent,
CardDescription,
CardHeader,
CardTitle,
} from "@/components/ui/card"
const stats = [
{ label: "Total revenue", value: "$45,231.89", delta: "+20.1%", up: true },
{ label: "Subscriptions", value: "2,350", delta: "+180.1%", up: true },
{ label: "Active now", value: "573", delta: "+201", up: true },
{ label: "Churn", value: "1.2%", delta: "-0.4%", up: false },
]
export function Stats({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
className={cn("mx-auto w-full max-w-5xl px-6 py-16", className)}
{...props}
>
<div className="mb-8">
<h2 className="font-heading text-2xl font-bold tracking-tight">
Overview
</h2>
<p className="text-muted-foreground mt-1 text-sm">
Your key metrics for the last 30 days.
</p>
</div>
<div className="grid gap-4 sm:grid-cols-2 lg:grid-cols-4">
{stats.map((stat) => {
const Icon = stat.up ? TrendingUpIcon : TrendingDownIcon
return (
<Card key={stat.label}>
<CardHeader className="pb-2">
<CardDescription>{stat.label}</CardDescription>
<CardTitle className="font-heading text-2xl tracking-tight tabular-nums">
{stat.value}
</CardTitle>
</CardHeader>
<CardContent>
<p className="text-muted-foreground flex items-center gap-1 text-xs">
<Icon className="text-foreground size-3.5" />
<span className="text-foreground font-medium">
{stat.delta}
</span>
vs last month
</p>
</CardContent>
</Card>
)
})}
</div>
</div>
)
}