File size: 305 Bytes
b59aa07
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import { useTranslation } from "react-i18next";
import { I18nKey } from "#/i18n/declaration";

export function BetaBadge() {
  const { t } = useTranslation();
  return (
    <span className="text-[11px] leading-5 text-base bg-neutral-400 px-1 rounded-xl">
      {t(I18nKey.BADGE$BETA)}
    </span>
  );
}