{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "separator",
  "title": "Separator",
  "description": "Visual divider between content sections.",
  "dependencies": [
    "@vllnt/ui@^0.3.0"
  ],
  "registryDependencies": [],
  "files": [
    {
      "path": "registry/default/separator/separator.tsx",
      "content": "\"use client\";\n\nimport * as SeparatorPrimitive from \"@radix-ui/react-separator\";\n\nimport { cn } from \"@vllnt/ui\";\n\nconst Separator = ({\n  className,\n  decorative = true,\n  orientation = \"horizontal\",\n  ref,\n  ...props\n}: React.ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root> & {\n  ref?: React.Ref<React.ComponentRef<typeof SeparatorPrimitive.Root>>;\n}) => (\n  <SeparatorPrimitive.Root\n    className={cn(\n      \"shrink-0 bg-border\",\n      orientation === \"horizontal\" ? \"h-[1px] w-full\" : \"h-full w-[1px]\",\n      className,\n    )}\n    decorative={decorative}\n    orientation={orientation}\n    ref={ref}\n    {...props}\n  />\n);\nSeparator.displayName = SeparatorPrimitive.Root.displayName;\n\nexport { Separator };\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:component",
  "version": "0.3.0",
  "stability": "stable"
}
