Components
Loading preview...
A circular visual for conveying a percentage.
@shugar
npx shadcn@latest add https://21st.dev/r/shugar/gauge-1import { Gauge } from "@/components/ui/gauge-1";
export default function ArcPriorityDemo() {
return <Gauge
arcPriority="equal"
value={80}
showValue
colors={{
primary: "#006efe",
secondary: "#f13242"
}}
/>;
}