Files
shadcn-ui/apps/v4/examples/base/progress-label.tsx
2026-01-19 17:05:41 +04:00

15 lines
295 B
TypeScript

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