{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "input-error", "dependencies": [], "registryDependencies": [], "files": [ { "path": "registry/new-york-v4/components/input-error.tsx", "content": "import type { HTMLAttributes } from \"react\";\nimport { cn } from \"@/lib/utils\";\n\nexport default function InputError({\n message,\n className = \"\",\n ...props\n}: HTMLAttributes & { message?: string }) {\n return message ? (\n

\n {message}\n

\n ) : null;\n}\n", "type": "registry:component" } ], "type": "registry:component" }