Inline measurement bar for a value within a known range, with optional tone, label, and description.
Meter visualises a known value inside a fixed range — disk usage, plan quota, score thresholds — with a labelled track and optional tone. Use it instead of Progress when the value isn't a task in flight.
Renders the percentage and a labelled track.
<Meter label="Storage used" value={72} description="72% of 100GB" />import { Meter } from "@froggdesign/enter-ui-react";Tone shifts the fill colour without changing layout.
Meter renders the track as role="meter" with aria-valuemin, aria-valuemax, and aria-valuenow. Provide an accessible name through label or aria-label.
value: required number.min / max: range bounds (defaults 0–100).tone: neutral (default), success, warning, error.label / description: rendered above and below the track.hideValue: hides the inline percentage.formatValue: customise the rendered value text.Every exported component accepts className when it renders an element. EnterUI styles use .eui-* classes and --eui-* variables mapped from FroggDesign theme tokens.