Components
A status card with a headline word, a metric, an avatar stack, and a segmented semicircular gauge.
import { StatusGaugeCard } from "@/registry/dashboardcn/blocks/status-gauge-card"
export default function StatusGaugeCardDemo() {Installation#
pnpm dlx shadcn@latest add https://dashboardcn.com/r/status-gauge-card.jsonAlso installs card, button, tooltip from shadcn/ui if missing.
Usage#
import { StatusGaugeCard } from "@/components/status-gauge-card"
<StatusGaugeCard
title="Performance metrics"
status="Stable"
metricLabel="Server uptime"
value={0.997}
color="var(--color-emerald-500)"
segments={40}
segmentGap={2.5}
thickness={14}
people={[
{ name: "shadcn", src: "https://github.com/shadcn.png" },
{ name: "Kai" },
]}
peopleLabel="6 reviewers"
action={{ label: "Details", href: "/uptime" }}
/>Your dashboard, your code.
Every component is copied into your project with the shadcn CLI. No package to upgrade, nothing to override.


