mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-29 15:44:22 +00:00
15 lines
267 B
TypeScript
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>
|
|
)
|
|
}
|