Function
ProgressTrack
({ className, ...props }: ProgressPrimitive.Track.Props)
Source from the content-addressed store, hash-verified
| 37 | } |
| 38 | |
| 39 | function ProgressTrack({ className, ...props }: ProgressPrimitive.Track.Props) { |
| 40 | return ( |
| 41 | <ProgressPrimitive.Track |
| 42 | className={cn( |
| 43 | "block h-1.5 w-full overflow-hidden rounded-full bg-input", |
| 44 | className, |
| 45 | )} |
| 46 | data-slot="progress-track" |
| 47 | {...props} |
| 48 | /> |
| 49 | ); |
| 50 | } |
| 51 | |
| 52 | function ProgressIndicator({ |
| 53 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected