Progress/progress-with-label-

PreviousNext

A progress/progress-with-label- example

Docs
shadcnblocksblock

Preview

Loading preview…
code/example/progress/progress-with-label-3.tsx
import { Progress } from "@/components/ui/progress";

export const title = "With Label Below";

const Example = () => {
  const value = 80;
  return (
    <div className="w-full max-w-md space-y-2">
      <Progress value={value} />
      <span className="text-sm text-muted-foreground">Almost there!</span>
    </div>
  );
};

export default Example;

Installation

npx shadcn@latest add @shadcnblocks/progress-progress-with-label-3

Usage

import { ProgressProgressWithLabel3 } from "@/components/progress-progress-with-label-3"
<ProgressProgressWithLabel3 />