Files
web/apps/scandic-web/components/Section/Link/index.tsx
Erik Tiekstra 339e7195dc fix(BOOK-436): Added new section component and deprecated the other
Approved-by: Chuma Mcphoy (We Ahead)
2025-10-13 08:31:26 +00:00

34 lines
872 B
TypeScript

import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon"
import Link from "@scandic-hotels/design-system/Link"
import { linkVariants } from "./variants"
import styles from "./link.module.css"
import type { VariantProps } from "class-variance-authority"
interface SectionLinkProps
extends React.PropsWithChildren<React.HTMLAttributes<HTMLSpanElement>>,
VariantProps<typeof linkVariants> {
link?: { href: string; text: string }
}
export default function SectionLink({ link, variant }: SectionLinkProps) {
if (!link) {
return null
}
const classNames = linkVariants({
variant,
})
return (
<Link className={classNames} href={link.href} textDecoration="underline">
{link.text}
<MaterialIcon
icon="arrow_forward"
color="CurrentColor"
className={styles.icon}
/>
</Link>
)
}