Files
shadcn-ui/apps/v4/examples/base/progress-with-label.tsx
2026-01-14 09:25:14 +04:00

15 lines
267 B
TypeScript

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