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