Function
ProgressLabel
({ className, ...props }: ProgressPrimitive.Label.Props)
Source from the content-addressed store, hash-verified
| 27 | } |
| 28 | |
| 29 | function ProgressLabel({ className, ...props }: ProgressPrimitive.Label.Props) { |
| 30 | return ( |
| 31 | <ProgressPrimitive.Label |
| 32 | className={cn("font-medium text-sm", className)} |
| 33 | data-slot="progress-label" |
| 34 | {...props} |
| 35 | /> |
| 36 | ); |
| 37 | } |
| 38 | |
| 39 | function ProgressTrack({ className, ...props }: ProgressPrimitive.Track.Props) { |
| 40 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected