Function
MeterLabel
({ className, ...props }: MeterPrimitive.Label.Props)
Source from the content-addressed store, hash-verified
| 22 | } |
| 23 | |
| 24 | function MeterLabel({ className, ...props }: MeterPrimitive.Label.Props) { |
| 25 | return ( |
| 26 | <MeterPrimitive.Label |
| 27 | className={cn("font-medium text-sm", className)} |
| 28 | data-slot="meter-label" |
| 29 | {...props} |
| 30 | /> |
| 31 | ); |
| 32 | } |
| 33 | |
| 34 | function MeterTrack({ className, ...props }: MeterPrimitive.Track.Props) { |
| 35 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected