Files
web/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/YourLevelScript/index.tsx
Erik Tiekstra 510f25a812 feat(BOOK-757): Replaced Biroscript component with Typography
Approved-by: Bianca Widstam
2026-01-20 12:37:05 +00:00

20 lines
475 B
TypeScript

import { useIntl } from "react-intl"
import { Typography } from "@scandic-hotels/design-system/Typography"
import styles from "./yourLevel.module.css"
export default function YourLevel() {
const intl = useIntl()
return (
<Typography variant="Title/Decorative/md">
<span className={styles.script}>
{intl.formatMessage({
id: "overviewTable.yourLevel",
defaultMessage: "Your level",
})}
</span>
</Typography>
)
}