"use client"; import { ReactNode, forwardRef } from "react"; import { SignInWithIdentityProviderProps } from "./SignInWith"; import { IdpButtonClasses } from "./classes"; export const SignInWithAzureAD = forwardRef( ({ children, className = "", name = "", ...props }, ref): ReactNode => ( ), ); SignInWithAzureAD.displayName = "SignInWithAzureAD";