{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "glass-panel",
  "title": "Glass Panel",
  "description": "Frosted-glass surface for floating chrome above a canvas — dock panels, hovering toolbars, and transient overlays — with a translucent background and soft border.",
  "dependencies": [
    "@vllnt/ui@^0.3.0"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/default/glass-panel/glass-panel.tsx",
      "content": "import { cn } from \"@vllnt/ui\";\n\nexport type GlassPanelProps = React.ComponentPropsWithoutRef<\"div\">;\n\nconst GlassPanel = ({\n  children,\n  className,\n  ref,\n  ...props\n}: GlassPanelProps & { ref?: React.Ref<HTMLDivElement> }) => (\n  <div\n    className={cn(\n      \"rounded-2xl border border-border/60 bg-background/70 shadow-[0_12px_40px_oklch(var(--foreground)/0.08)] backdrop-blur-xl\",\n      className,\n    )}\n    ref={ref}\n    {...props}\n  >\n    {children}\n  </div>\n);\n\nGlassPanel.displayName = \"GlassPanel\";\n\nexport { GlassPanel };\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:component",
  "version": "0.3.0",
  "stability": "stable"
}
