Files
web/components/Loyalty/Blocks/DynamicContent/OverviewTable/YourLevelScript/index.tsx
2024-06-28 10:13:32 +02:00

20 lines
422 B
TypeScript

import { useIntl } from "react-intl"
import BiroScript from "@/components/TempDesignSystem/Text/BiroScript"
import styles from "./yourLevel.module.css"
export default function YourLevel() {
const intl = useIntl()
return (
<BiroScript
className={styles.script}
color="peach80"
type="two"
textAlign={"center"}
>
{intl.formatMessage({ id: "Your level" })}
</BiroScript>
)
}