interface AuthDividerProps { label: string } /** * The "Or continue with" rule separating the email/password form from the * social/SSO options. Light tokens only: a `--border` hairline with the label * knocked out over the `--bg` canvas in `--text-muted`. */ export function AuthDivider({ label }: AuthDividerProps) { return (
{label}
) }