import { Button } from "@heroui/react"; import { Icon } from "@iconify/react"; import React from "react"; const ContinueWithProviders = () => { // set to true if there are other providers coming soon const comingSoonProviders: boolean = true; // Provider for third-party auth const oAuthProviders = [ { name: "Google", icon: "logos:google-icon", }, { name: "Discord", icon: "logos:discord-icon", }, ]; return (
{oAuthProviders.map((provider, index) => { return ( ); })} {comingSoonProviders && ( )}
); }; export default ContinueWithProviders;