Files
web/components/Section/Link/index.tsx
Matilda Landström c6ad107e49 Merged in feat/section-header-link (pull request #314)
Feat(WEB-359): Update section link for mobile

Approved-by: Chuma Mcphoy (We Ahead)
Approved-by: Arvid Norlin
2024-07-04 10:42:01 +00:00

28 lines
622 B
TypeScript

import ArrowRight from "@/components/Icons/ArrowRight"
import Link from "@/components/TempDesignSystem/Link"
import { SectionLinkProps } from "./link"
import { linkVariants } from "./variants"
import styles from "./link.module.css"
export default function SectionLink({ link, variant }: SectionLinkProps) {
if (!link) {
return null
}
const classNames = linkVariants({
variant,
})
return (
<Link
className={classNames}
color="burgundy"
href={link.href}
variant="myPage"
>
<ArrowRight color="burgundy" className={styles.icon} />
{link.text}
</Link>
)
}