pnpm dlx shadcn@latest add @saturation-ui/progressTailwind v4 — Source Scanning
The public shadcn registry installs component source into your project. If Tailwind v4 isn't scanning your components directory, add this to your CSS entry file:
@source "../components";This ensures all utility classes in CVA variants and data attribute selectors are included in your build.
import { Progress } from "@/components/ui/progress"<Progress value={33} />| Prop | Type | Default | Description |
|---|---|---|---|
value | number | — | The current progress value (0-100). |
max | number | 100 | The maximum value. |
On This Page
0%