feat/SW-843-UI-hotel-card-select-hotel (pull request #887)

Approved-by: Pontus Dreij
Approved-by: Niclas Edenvin
This commit is contained in:
Bianca Widstam
2024-11-14 09:14:26 +00:00
parent cc7f4e0478
commit 87a89c5d81
32 changed files with 848 additions and 183 deletions

View File

@@ -0,0 +1,5 @@
import type { HotelsAvailabilityPrices } from "@/server/routers/hotels/output"
export type HotelPriceListProps = {
price: HotelsAvailabilityPrices
}

View File

@@ -0,0 +1,6 @@
import { Hotel } from "@/types/hotel"
export type HotelLogoProps = {
hotelId: Hotel["operaId"]
hotelType: Hotel["hotelType"]
}

View File

@@ -0,0 +1,5 @@
export type PriceCardProps = {
currency: string
memberAmount?: string | undefined
regularAmount?: string | undefined
}

View File

@@ -0,0 +1,3 @@
export type TripAdvisorProps = {
rating: number
}