"use client"; import { FC } from "react"; // helpers import { cn } from "helpers/common.helper"; type Props = { name: string; description: string; icon: JSX.Element; config: JSX.Element; disabled?: boolean; withBorder?: boolean; }; export const AuthenticationMethodCard: FC = (props) => { const { name, description, icon, config, disabled = false, withBorder = true } = props; return (
{icon}
{name}
{description}
{config}
); };