2024-05-08 13:42:59 +05:30
|
|
|
import { Tag } from "antd"
|
|
|
|
|
import { useTranslation } from "react-i18next"
|
|
|
|
|
|
2024-05-24 21:01:10 +05:30
|
|
|
export const BetaTag = ({className} : {className?: string}) => {
|
2024-05-08 13:42:59 +05:30
|
|
|
const { t } = useTranslation("common")
|
|
|
|
|
|
2024-05-24 21:01:10 +05:30
|
|
|
return <Tag className={className} color="yellow">{t("beta")}</Tag>
|
2024-05-08 13:42:59 +05:30
|
|
|
}
|