AuthProviders() — supabase Function Reference
Architecture documentation for the AuthProviders() function in AuthProviders.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/docs/components/AuthProviders.tsx lines 5–24
export default function AuthProviders({ type }: { type: string }) {
const filterProviders = providers.filter((item) => item.authType === type)
return (
<>
<div className="grid grid-cols-12 xs:gap-x-10 gap-y-10 not-prose py-8">
{filterProviders.map((x) => (
<Link
href={`${x.href}`}
key={x.name}
passHref
className="col-span-12 xs:col-span-6 lg:col-span-4 xl:col-span-3"
>
<IconPanel title={x.name} icon={x.logo} hasLightIcon={x.hasLightIcon} />
</Link>
))}
</div>
</>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free