Progress

Radix Progress with animated fill, optional glow effects, and flexible value labels.

0%

Customize

Value60%
Indeterminate
Size
Animation
Effect
Glow palette
Value position

Usage

import { Progress } from "@/components/lazy-ui/progress";

export function Demo() {
  return (
    <Progress
      value={62}
      animation="spring"
      effect="glow"
      valuePosition="edge-leading"
      className="w-72"
    />
  );
}