feat(SW-184): implementing mobile design
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import Link from "@/components/TempDesignSystem/Link"
|
||||
|
||||
import styles from "./headerLink.module.css"
|
||||
|
||||
import { HeaderLinkProps } from "@/types/components/header/headerLink"
|
||||
|
||||
export default function HeaderLink({ children, ...props }: HeaderLinkProps) {
|
||||
return (
|
||||
<Link color="burgundy" className={styles.topLink} {...props}>
|
||||
{children}
|
||||
</Link>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user