import {Icon} from "@iconify/react"; import {CircleHelp, KeyRound} from "lucide-react"; import {cn} from "@/lib/utils"; export const providerSwitch = (provider: string, small?: boolean) => { switch (provider) { case "google": return (
{small ? : }
); case "credential": return (
{!small && (Email and Password)}
); default: return (
{!small && (No credentials)}
); } }