22 lines
429 B
TypeScript
22 lines
429 B
TypeScript
import Link from "@/components/TempDesignSystem/Link"
|
|
|
|
import styles from "./headerLink.module.css"
|
|
|
|
import type { HeaderLinkProps } from "@/types/components/header/headerLink"
|
|
|
|
export default function HeaderLink({
|
|
children,
|
|
className,
|
|
...props
|
|
}: HeaderLinkProps) {
|
|
return (
|
|
<Link
|
|
color="burgundy"
|
|
className={`${styles.headerLink} ${className}`}
|
|
{...props}
|
|
>
|
|
{children}
|
|
</Link>
|
|
)
|
|
}
|