Function
MeterIndicator
({
className,
...props
}: MeterPrimitive.Indicator.Props)
Source from the content-addressed store, hash-verified
| 42 | } |
| 43 | |
| 44 | function MeterIndicator({ |
| 45 | className, |
| 46 | ...props |
| 47 | }: MeterPrimitive.Indicator.Props) { |
| 48 | return ( |
| 49 | <MeterPrimitive.Indicator |
| 50 | className={cn("bg-primary transition-all duration-500", className)} |
| 51 | data-slot="meter-indicator" |
| 52 | {...props} |
| 53 | /> |
| 54 | ); |
| 55 | } |
| 56 | |
| 57 | function MeterValue({ className, ...props }: MeterPrimitive.Value.Props) { |
| 58 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected