/** * Copyright (c) 2023-present Plane Software, Inc. and contributors * SPDX-License-Identifier: AGPL-3.0-only * See the LICENSE file for details. */ // helpers import { cn } from "@plane/utils"; type Props = { name: string; description: string; icon: React.ReactNode; config: React.ReactNode; disabled?: boolean; withBorder?: boolean; unavailable?: boolean; }; export function AuthenticationMethodCard(props: Props) { const { name, description, icon, config, disabled = false, withBorder = true, unavailable = false } = props; return (