{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "label-mimic", "title": "LabelMimic", "description": "Span styled to look like a label — for non-input labeling contexts.", "files": [ { "path": "src/components/label-mimic.tsx", "content": "import { type FC, type ComponentProps } from \"react\";\nimport { cn } from \"@/lib/utils.js\";\n\nexport interface LabelMimicProps extends Omit, \"color\"> {\n disabled?: boolean;\n color?: \"success\" | \"failure\" | \"warning\" | \"info\" | \"default\";\n}\n\n/**\n * A label-styled `` element.\n */\nexport const LabelMimic: FC = ({ disabled, color, className, children, ...props }) => (\n \n {children}\n \n);\n", "type": "registry:ui" } ], "type": "registry:ui" }