/** * Copyright (c) 2023-present Plane Software, Inc. and contributors * SPDX-License-Identifier: AGPL-3.0-only * See the LICENSE file for details. */ // helpers import { useTranslation } from "@plane/i18n"; import { cn } from "@plane/utils"; type TUpgradeBadge = { className?: string; size?: "sm" | "md"; }; export function UpgradeBadge(props: TUpgradeBadge) { const { className, size = "sm" } = props; const { t } = useTranslation(); return (