{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "glass-input",
  "title": "Glass Input",
  "description": "Form input components with focus glow animations and glass morphism styling.",
  "files": [
    {
      "path": "registry/liquid-glass/glass-input.tsx",
      "content": "\"use client\"\n\nimport * as React from \"react\"\nimport { cn } from \"@/lib/utils\"\n\nexport interface GlassInputProps extends React.InputHTMLAttributes<HTMLInputElement> {\n  glowOnFocus?: boolean\n}\n\nconst GlassInput = React.forwardRef<HTMLInputElement, GlassInputProps>(\n  ({ className, type, glowOnFocus = true, ...props }, ref) => {\n    return (\n      <div className=\"relative group\">\n        {glowOnFocus && (\n          <div className=\"absolute -inset-0.5 rounded-xl bg-linear-to-r from-cyan-500/0 via-blue-500/0 to-purple-500/0 blur-md opacity-0 transition-all duration-300 group-focus-within:from-cyan-500/30 group-focus-within:via-blue-500/30 group-focus-within:to-purple-500/30 group-focus-within:opacity-70\" />\n        )}\n        <input\n          type={type}\n          className={cn(\n            \"relative flex h-10 w-full rounded-xl px-4 py-2 text-sm\",\n            \"bg-white/10 backdrop-blur-xl border border-white/20\",\n            \"text-white placeholder:text-white/40\",\n            \"shadow-[0_4px_16px_rgba(0,0,0,0.2)]\",\n            \"transition-all duration-300\",\n            \"focus:outline-none focus:border-white/40 focus:bg-white/15\",\n            \"disabled:cursor-not-allowed disabled:opacity-50\",\n            \"file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-white\",\n            className,\n          )}\n          ref={ref}\n          {...props}\n        />\n      </div>\n    )\n  },\n)\nGlassInput.displayName = \"GlassInput\"\n\nexport { GlassInput }\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}