Components
Loading preview...
Here is KPI card component
@nayan_radadiya6
npx shadcn@latest add https://21st.dev/r/nayan_radadiya6/kpi-cardimport { KpiCard } from '@/components/ui/kpi-card';
export default function KpiFlat() {
return (
<KpiCard
label='Active Plans'
value={10234}
trend='flat'
caption='month over month'
tone='default'
/>
);
}