35 lines
870 B
TypeScript
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>
|
|
)
|
|
}
|