{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "fab",
  "dependencies": [
    "@zenithui/fab"
  ],
  "files": [
    {
      "path": "registry/ui/fab.tsx",
      "content": "\"use client\"\n\nimport type { ComponentProps } from \"react\"\nimport * as FabPrimitive from \"@zenithui/fab\"\nimport { cn } from \"@/lib/utils\"\n\nexport function FabRoot(props: ComponentProps<typeof FabPrimitive.Root>) {\n  return <FabPrimitive.Root {...props} />\n}\n\nexport function FabTrigger({\n  className,\n  ...props\n}: ComponentProps<typeof FabPrimitive.Trigger>) {\n  return (\n    <FabPrimitive.Trigger\n      className={cn(\n        \"flex size-12 items-center justify-center rounded-full shadow-lg transition-all\",\n        \"bg-primary text-primary-foreground\",\n        \"focus:outline-primary hover:opacity-90 focus:outline-2 focus:outline-offset-2\",\n        className,\n      )}\n      {...props}\n    />\n  )\n}\n\nexport function FabContent({\n  className,\n  ...props\n}: ComponentProps<typeof FabPrimitive.Content>) {\n  return (\n    <FabPrimitive.Content\n      className={cn(\n        \"border-border bg-background min-w-[12rem] rounded-xl border p-3 shadow-lg\",\n        className,\n      )}\n      {...props}\n    />\n  )\n}\n\nexport function FabGroup({\n  className,\n  ...props\n}: ComponentProps<typeof FabPrimitive.Group>) {\n  return (\n    <FabPrimitive.Group\n      className={cn(className)}\n      {...props}\n    />\n  )\n}\n\nexport function FabLabel({\n  className,\n  ...props\n}: ComponentProps<typeof FabPrimitive.Label>) {\n  return (\n    <FabPrimitive.Label\n      className={cn(\n        \"text-muted-foreground mb-2 block text-xs font-semibold tracking-wider uppercase\",\n        className,\n      )}\n      {...props}\n    />\n  )\n}\n\nexport function FabSeparator({\n  className,\n  ...props\n}: ComponentProps<typeof FabPrimitive.Separator>) {\n  return (\n    <FabPrimitive.Separator\n      className={cn(\"bg-border my-2 h-px\", className)}\n      {...props}\n    />\n  )\n}\n\nexport function FabItem({\n  className,\n  ...props\n}: ComponentProps<typeof FabPrimitive.Item>) {\n  return (\n    <FabPrimitive.Item\n      className={cn(\n        \"flex w-full cursor-pointer items-center gap-2 rounded-lg px-3 py-2 text-left text-sm\",\n        \"hover:bg-accent hover:text-accent-foreground\",\n        \"focus:ring-primary/20 focus:ring-2 focus:outline-none\",\n        \"transition-colors\",\n        className,\n      )}\n      {...props}\n    />\n  )\n}\n\nexport function FabItemIndicator({\n  className,\n  ...props\n}: ComponentProps<typeof FabPrimitive.ItemIndicator>) {\n  return (\n    <FabPrimitive.ItemIndicator\n      className={cn(\n        \"hidden size-4 shrink-0 group-data-[state=checked]:inline-flex\",\n        className,\n      )}\n      {...props}\n    />\n  )\n}\n\nexport function FabCheckboxItem({\n  className,\n  ...props\n}: ComponentProps<typeof FabPrimitive.CheckboxItem>) {\n  return (\n    <FabPrimitive.CheckboxItem\n      className={cn(\n        \"group flex w-full cursor-pointer items-center gap-2 rounded-lg px-3 py-2 text-left text-sm\",\n        \"hover:bg-accent hover:text-accent-foreground\",\n        \"focus:ring-primary/20 focus:ring-2 focus:outline-none\",\n        \"transition-colors\",\n        className,\n      )}\n      {...props}\n    />\n  )\n}\n\nexport function FabRadioGroup({\n  className,\n  ...props\n}: ComponentProps<typeof FabPrimitive.RadioGroup>) {\n  return (\n    <FabPrimitive.RadioGroup\n      className={cn(className)}\n      {...props}\n    />\n  )\n}\n\nexport function FabRadioItem({\n  className,\n  ...props\n}: ComponentProps<typeof FabPrimitive.RadioItem>) {\n  return (\n    <FabPrimitive.RadioItem\n      className={cn(\n        \"group flex w-full cursor-pointer items-center gap-2 rounded-lg px-3 py-2 text-left text-sm\",\n        \"hover:bg-accent hover:text-accent-foreground\",\n        \"focus:ring-primary/20 focus:ring-2 focus:outline-none\",\n        \"transition-colors\",\n        className,\n      )}\n      {...props}\n    />\n  )\n}\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}