{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "header",
  "registryDependencies": [
    "@fulldev/button",
    "@fulldev/sheet"
  ],
  "files": [
    {
      "path": "src/components/ui/header/header.astro",
      "content": "---\nimport type { HTMLAttributes } from \"astro/types\"\nimport { cva, type VariantProps } from \"class-variance-authority\"\n\nimport { cn } from \"@/lib/utils\"\n\ntype Props = HTMLAttributes<\"header\"> & VariantProps<typeof variants>\n\nconst variants = cva(\"relative z-50 flex w-full items-center gap-4 py-2\", {\n  variants: {\n    variant: {\n      default: \"\",\n      floating:\n        \"bg-background mx-auto my-2 w-[calc(100%-2rem)] max-w-[calc(var(--container,1280px)-2rem)] overflow-hidden rounded-lg border shadow-sm\",\n    },\n  },\n  defaultVariants: {\n    variant: \"default\",\n  },\n})\n\nconst { class: className, variant, ...props } = Astro.props\n---\n\n<header\n  class={cn(variants({ variant }), className)}\n  data-slot=\"header\"\n  data-variant={variant}\n  {...props}\n>\n  <slot />\n</header>\n",
      "type": "registry:ui"
    },
    {
      "path": "src/components/ui/header/header-container.astro",
      "content": "---\nimport type { HTMLAttributes } from \"astro/types\"\n\nimport { cn } from \"@/lib/utils\"\n\ntype Props = HTMLAttributes<\"div\">\n\nconst { class: className, ...props } = Astro.props\n---\n\n<div\n  data-slot=\"header-container\"\n  class={cn(\"relative mx-auto flex w-full max-w-7xl gap-4 px-4\", className)}\n  {...props}\n>\n  <slot />\n</div>\n",
      "type": "registry:ui"
    },
    {
      "path": "src/components/ui/header/header-group.astro",
      "content": "---\nimport type { HTMLAttributes } from \"astro/types\"\n\nimport { cn } from \"@/lib/utils\"\n\ntype Props = HTMLAttributes<\"div\">\n\nconst { class: className, ...props } = Astro.props\n---\n\n<div\n  data-slot=\"header-group\"\n  class={cn(\"flex min-w-0 items-center gap-2\", className)}\n  {...props}\n>\n  <slot />\n</div>\n",
      "type": "registry:ui"
    },
    {
      "path": "src/components/ui/header/index.ts",
      "content": "export { default as Header } from \"./header.astro\"\nexport { default as HeaderContainer } from \"./header-container.astro\"\nexport { default as HeaderGroup } from \"./header-group.astro\"\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}