Statistics display card with trend indicator.
import { StatCard } from "@/components/ui";Total Revenue
$45,231
Users
2,350
Sales
12,234
Growth
+573
<StatCard
title="Total Revenue"
value="$45,231.89"
change={12.5}
trend="up"
icon="DollarSign"
/>Common dashboard layout
<div className="grid gap-4 md:grid-cols-2 lg:grid-cols-4"> <StatCard title="Total Revenue" value="$45,231.89" change={12.5} trend="up" icon="DollarSign" /> <StatCard title="Subscriptions" value="+2,350" change={-4.3} trend="down" icon="Users" /> <StatCard title="Sales" value="+12,234" change={8.2} trend="up" icon="CreditCard" /> <StatCard title="Active Now" value="+573" change={2.1} trend="up" icon="Activity" /></div>Configure your app with the features you need and download production-ready code.
Start Configuring