import { Button } from "@wrnexus/ui" component AuthProviderButtons { outputs { select(payload: { provider: string; href: string }) } props { providers: unknown[] = [] title: string = "Continue with" dividerLabel: string = "or" color: string = "primary" size: string = "md" class: string = "" } functions { client function choose(provider) { output.select({ provider: provider.id || provider.name || provider.label, href: provider.href || "" }) } } view {
{title}
{/if}