{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"auth-divider","type":"registry:component","description":"Auth divider component.","files":[{"path":"registry/components/auth-divider.tsx","type":"registry:component","content":"import type React from \"react\";\n\nexport function AuthDivider({\n\tchildren,\n\t...props\n}: React.ComponentProps<\"div\">) {\n\treturn (\n\t\t<div className=\"relative flex w-full items-center\" {...props}>\n\t\t\t<div className=\"w-full border-t\" />\n\t\t\t<div className=\"flex w-max justify-center text-nowrap px-2 text-muted-foreground text-xs\">\n\t\t\t\t{children}\n\t\t\t</div>\n\t\t\t<div className=\"w-full border-t\" />\n\t\t</div>\n\t);\n}\n"}]}