12 lines
258 B
TypeScript
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>
|
|
)
|
|
}
|