mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-26 14:16:08 +00:00
15 lines
298 B
TypeScript
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>
|
|
)
|
|
}
|