Files
web/components/Current/Header/BookingButton/index.tsx
2024-05-31 09:29:47 +02:00

12 lines
258 B
TypeScript

import "@scandic-hotels/design-system/current/style.css"
import styles from "./bookingButton.module.css"
export default function BookingButton({ href }: { href: string }) {
return (
<a className={styles.button} href={href}>
Book
</a>
)
}