${
options.email
? `
{
setEmail(e.target.value);
}}
value={email}
/>
${
options.rememberMe
? `
{
setRememberMe(!rememberMe);
}}
/>
`
: ""
}
`
: ""
}
${
options.magicLink
? `
{
setEmail(e.target.value);
}}
value={email}
/>
`
: ""
}
${
options.email
? `
`
: ""
}
${
options.passkey
? `
`
: ""
}
${
options.socialProviders.length > 0
? `
3
? "w-full gap-2 flex items-center justify-between flex-wrap"
: "w-full gap-2 flex items-center justify-between flex-col"
},
)}
>
${Object.keys(socialProviders).map((provider) => {
if (options.socialProviders.includes(provider)) {
const { stringIcon } =
socialProviders[provider as keyof typeof socialProviders];
return ``;
}
return "";
})}
`
: ""
}