Function
ProgressIndicator
({
className,
...props
}: ProgressPrimitive.Indicator.Props)
Source from the content-addressed store, hash-verified
| 50 | } |
| 51 | |
| 52 | function ProgressIndicator({ |
| 53 | className, |
| 54 | ...props |
| 55 | }: ProgressPrimitive.Indicator.Props) { |
| 56 | return ( |
| 57 | <ProgressPrimitive.Indicator |
| 58 | className={cn("bg-primary transition-all duration-500", className)} |
| 59 | data-slot="progress-indicator" |
| 60 | {...props} |
| 61 | /> |
| 62 | ); |
| 63 | } |
| 64 | |
| 65 | function ProgressValue({ className, ...props }: ProgressPrimitive.Value.Props) { |
| 66 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected