Files
shadcn-ui/apps/v4/examples/radix/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
431 B
TypeScript

import { Field, FieldLabel } from "@/styles/radix-nova/ui/field"
import { Progress } from "@/styles/radix-nova/ui/progress"
export function ProgressWithLabel() {
return (
<Field className="w-full max-w-sm">
<FieldLabel htmlFor="progress-upload">
<span>Upload progress</span>
<span className="ml-auto">66%</span>
</FieldLabel>
<Progress value={66} id="progress-upload" />
</Field>
)
}