Files
web/components/Current/Header/BookingButton/index.tsx
Christel Westerberg 0a3272f75a fix: comments
2024-05-31 09:30:11 +02:00

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>
)
}