feat: use body wrapper

This commit is contained in:
Fredrik Thorsson
2024-06-11 16:21:07 +02:00
parent df22c39909
commit 4dc945a324
2 changed files with 4 additions and 8 deletions

View File

@@ -1,5 +1,6 @@
import { ArrowRightIcon } from "@/components/Icons"
import Link from "@/components/TempDesignSystem/Link"
import Body from "@/components/TempDesignSystem/Text/Body"
import Header from "../Header"
@@ -29,7 +30,9 @@ export default function Shortcuts({
target={shortcut.openInNewTab ? "_blank" : undefined}
variant="shortcut"
>
<span>{shortcut.text ? shortcut.text : shortcut.title}</span>
<Body textTransform="bold" color="burgundy">
<span>{shortcut.text ? shortcut.text : shortcut.title}</span>
</Body>
<ArrowRightIcon color="burgundy" className={styles.arrowRight} />
</Link>
))}