Merged in fix/SW-2725 (pull request #2217)

fix(SW-2725): change to correct icon color (burgundy)

* fix(SW-2725): change to correct icon color (burgundy)


Approved-by: Erik Tiekstra
This commit is contained in:
Matilda Landström
2025-05-26 10:35:51 +00:00
parent b20c8ce42b
commit a790a52067
2 changed files with 7 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon"
import { Typography } from "@scandic-hotels/design-system/Typography"
import Link from "@/components/TempDesignSystem/Link"
import Body from "@/components/TempDesignSystem/Text/Body"
import styles from "./shortcutsListItems.module.css"
@@ -24,9 +24,9 @@ export default function ShortcutsListItems({
variant="shortcut"
className={styles.link}
>
<Body textTransform="bold" color="burgundy">
<Typography variant="Body/Paragraph/mdBold">
<span>{shortcut.text || shortcut.title}</span>
</Body>
</Typography>
<MaterialIcon color="CurrentColor" icon="arrow_forward" />
</Link>
</li>

View File

@@ -12,3 +12,7 @@
.listItem:last-child {
border-bottom: none;
}
.link {
color: var(--Text-Interactive-Default);
}