Components
A HeroUI meter for visualizing a value within a range — storage, usage, progress toward a goal. Built on react-aria with an accessible label and formatted output. Supports accent/success/warning/danger colors, sm/md/lg sizes, an optional label, custom min/max, currency and percent formatting, and threshold-driven colors.
Loading preview...
"use client"
import { Meter } from "@/components/ui/heroui-meter"
import { Label } from "@heroui/react"
export default function Default() {
return (
<div className="flex w-full items-center justify-center p-10">
<Meter aria-label="Storage" className="w-64" value={72} color="accent">
<Label>Storage</Label>
<Meter.Output />
<Meter.Track>
<Meter.Fill />
</Meter.Track>
</Meter>
</div>
)
}
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...