Files
web/apps/scandic-web/components/Header/HeaderLink/index.tsx
Erik Tiekstra c4b564998c fix(BOOK-325): Added refetch options to user.name query and refactored header
Approved-by: Linus Flood
Approved-by: Matilda Landström
2025-11-13 06:33:47 +00:00

35 lines
870 B
TypeScript

"use client"
import NextLink from "next/link"
import { IconByIconName } from "@scandic-hotels/design-system/Icons/IconByIconName"
import { Typography } from "@scandic-hotels/design-system/Typography"
import styles from "./headerLink.module.css"
import type { HeaderLinkProps } from "@/types/components/header/headerLink"
export default function HeaderLink({
children,
href,
iconName,
iconSize = 20,
onClick,
}: HeaderLinkProps) {
return (
<Typography variant="Body/Supporting text (caption)/smRegular">
<NextLink href={href} className={styles.headerLink} onClick={onClick}>
{iconName ? (
<IconByIconName
iconName={iconName}
className={styles.icon}
size={iconSize}
color="CurrentColor"
/>
) : null}
{children}
</NextLink>
</Typography>
)
}