feat(SW-713): add rooms sidepeek on hotelpage

This commit is contained in:
Fredrik Thorsson
2024-10-30 09:56:45 +01:00
parent cddbbabe93
commit ddc190e0c8
12 changed files with 35 additions and 85 deletions
+1 -5
View File
@@ -1,11 +1,7 @@
import type { RoomData } from "@/types/hotel"
export interface RoomCardProps {
id: string
images: RoomData["images"]
title: string
subtitle: string
badgeTextTransKey: string | null
room: RoomData
}
export type RoomsProps = {
@@ -1,8 +1,6 @@
import { RoomConfiguration } from "@/server/routers/hotels/output"
import { RoomData } from "@/types/hotel"
export type RoomSidePeekProps = {
roomConfiguration: RoomConfiguration
selectedRoom?: RoomData
buttonSize: "small" | "medium"
}