Move icon components to design-system * Move icon components to design-system Approved-by: Hrishikesh Vaipurkar
35 lines
876 B
TypeScript
35 lines
876 B
TypeScript
"use client"
|
|
|
|
import Link 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 = () => undefined,
|
|
}: HeaderLinkProps) {
|
|
return (
|
|
<Typography variant="Body/Supporting text (caption)/smRegular">
|
|
<Link href={href} className={styles.headerLink} onClick={onClick}>
|
|
{iconName ? (
|
|
<IconByIconName
|
|
iconName={iconName}
|
|
className={styles.icon}
|
|
size={iconSize}
|
|
color="CurrentColor"
|
|
/>
|
|
) : null}
|
|
{children}
|
|
</Link>
|
|
</Typography>
|
|
)
|
|
}
|