14 lines
371 B
TypeScript
14 lines
371 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, ...props }: HeaderLinkProps) {
|
|
return (
|
|
<Link color="burgundy" className={styles.headerLink} {...props}>
|
|
{children}
|
|
</Link>
|
|
)
|
|
}
|