feat(SW-3230): Move Link to design-system * Move Link to design-system * Remove comments Approved-by: Linus Flood
27 lines
921 B
TypeScript
27 lines
921 B
TypeScript
import Body from "@scandic-hotels/design-system/Body"
|
|
import Link from "@scandic-hotels/design-system/Link"
|
|
import { OldDSButton as Button } from "@scandic-hotels/design-system/OldDSButton"
|
|
import Title from "@scandic-hotels/design-system/Title"
|
|
|
|
import styles from "./promo.module.css"
|
|
|
|
import type { PromoProps } from "@/types/components/hotelReservation/bookingConfirmation/promo"
|
|
|
|
export default function Promo({ buttonText, href, text, title }: PromoProps) {
|
|
return (
|
|
<Link className={styles.link} color="none" href={href}>
|
|
<article className={styles.promo}>
|
|
<Title color="white" level="h4">
|
|
{title}
|
|
</Title>
|
|
<Body className={styles.text} color="white" textAlign="center">
|
|
{text}
|
|
</Body>
|
|
<Button asChild intent="primary" size="small" theme="primaryStrong">
|
|
<div>{buttonText}</div>
|
|
</Button>
|
|
</article>
|
|
</Link>
|
|
)
|
|
}
|