Files
shadcn-ui/apps/v4/examples/base/progress-label.tsx
shadcn 7d718ddaa9 fix: refactor styles (#10190)
* feat: refactor styles handling across v4

* fix

* fix

* fix

* fix

* fix

* fix
2026-03-26 14:36:00 +04:00

15 lines
298 B
TypeScript

import {
Progress,
ProgressLabel,
ProgressValue,
} from "@/styles/base-nova/ui/progress"
export function ProgressWithLabel() {
return (
<Progress value={56} className="w-full max-w-sm">
<ProgressLabel>Upload progress</ProgressLabel>
<ProgressValue />
</Progress>
)
}