{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "input",
  "title": "Input",
  "description": "A hairline field in mono with a phosphor caret. Focus brightens the border instead of adding a ring.",
  "registryDependencies": [
    "@afterglow/theme"
  ],
  "files": [
    {
      "path": "registry/terminal/ui/input.tsx",
      "content": "import type * as React from \"react\";\n\nimport { cn } from \"@/lib/utils\";\n\nfunction Input({ className, type, ...props }: React.ComponentProps<\"input\">) {\n  return (\n    <input\n      className={cn(\n        \"h-9 w-full min-w-0 rounded-none border border-input bg-panel-sunken px-3 py-1 font-mono text-base text-phosphor-bright caret-phosphor-bright outline-none transition duration-150 ease-terminal md:text-sm\",\n        \"placeholder:text-phosphor-dim selection:bg-signal selection:text-white\",\n        \"focus-visible:border-line-strong focus-visible:shadow-glow\",\n        \"disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-40\",\n        \"aria-invalid:border-destructive aria-invalid:shadow-glow-destructive\",\n        \"file:inline-flex file:h-7 file:border-0 file:bg-transparent file:font-medium file:font-mono file:text-foreground file:text-xs\",\n        className\n      )}\n      data-slot=\"input\"\n      type={type}\n      {...props}\n    />\n  );\n}\n\nexport { Input };\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}