feat(SW-572): Added support for logged in and logged out variants of the top link inside the header

This commit is contained in:
Erik Tiekstra
2024-11-11 14:03:08 +01:00
parent cc9f0509a1
commit d732138696
17 changed files with 215 additions and 68 deletions
@@ -2,5 +2,16 @@
display: flex;
align-items: center;
gap: var(--Spacing-x1);
font-size: var(--typography-Caption-Regular-fontSize);
}
.headerLink:hover {
color: var(--Base-Text-High-contrast);
}
.headerLink .icon * {
fill: var(--Base-Text-Medium-contrast);
}
.headerLink:hover .icon * {
fill: var(--Base-Text-High-contrast);
}
+16 -10
View File
@@ -1,4 +1,7 @@
import Link from "@/components/TempDesignSystem/Link"
import Link from "next/link"
import { getIconByIconName } from "@/components/Icons/get-icon-by-icon-name"
import Caption from "@/components/TempDesignSystem/Text/Caption"
import styles from "./headerLink.module.css"
@@ -6,16 +9,19 @@ import type { HeaderLinkProps } from "@/types/components/header/headerLink"
export default function HeaderLink({
children,
className,
...props
href,
iconName,
iconSize = 20,
}: HeaderLinkProps) {
const Icon = getIconByIconName(iconName)
return (
<Link
color="burgundy"
className={`${styles.headerLink} ${className}`}
{...props}
>
{children}
</Link>
<Caption type="regular" color="textMediumContrast" asChild>
<Link href={href} className={styles.headerLink}>
{Icon ? (
<Icon className={styles.icon} width={iconSize} height={iconSize} />
) : null}
{children}
</Link>
</Caption>
)
}