{ "$schema": "https://blode.co/ui/schema/registry-item.json", "name": "meter", "title": "Meter", "author": "Matthew Blode", "description": "A meter that shows a scalar value within a bounded range.", "dependencies": ["@base-ui/react"], "files": [ { "path": "ui/meter.tsx", "content": "\"use client\";\n\nimport { Meter as MeterPrimitive } from \"@base-ui/react/meter\";\nimport type * as React from \"react\";\n\nimport { cn } from \"@/lib/utils\";\n\nconst Meter = ({ className, ...props }: React.ComponentProps) => (\n \n);\n\nconst MeterLabel = ({ className, ...props }: React.ComponentProps) => (\n \n);\n\nconst MeterValue = ({ className, ...props }: React.ComponentProps) => (\n \n);\n\nconst MeterTrack = ({ className, ...props }: React.ComponentProps) => (\n \n);\n\nconst MeterIndicator = ({\n className,\n ...props\n}: React.ComponentProps) => (\n \n);\n\nexport { Meter, MeterIndicator, MeterLabel, MeterTrack, MeterValue };\n", "type": "registry:ui", "target": "" } ], "type": "registry:ui" }