feat(SW-880): create facility card component
This commit is contained in:
committed by
Joakim Jäderberg
parent
ce6914a7e4
commit
3f73699e73
19
types/components/hotelPage/sidepeek/facilityCard.ts
Normal file
19
types/components/hotelPage/sidepeek/facilityCard.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
export type FacilityCardProps = {
|
||||
imgUrl: string
|
||||
imgAltText: string
|
||||
facilityType: string
|
||||
ordinaryOpeningTimes: {
|
||||
alwaysOpen: boolean
|
||||
isClosed: boolean
|
||||
openingTime?: string
|
||||
closingTime?: string
|
||||
sortOrder?: number
|
||||
}
|
||||
weekendOpeningTimes: {
|
||||
alwaysOpen: boolean
|
||||
isClosed: boolean
|
||||
openingTime?: string
|
||||
closingTime?: string
|
||||
sortOrder?: number
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user