fix: Rooms images on hotel pages * fix: Rooms images on hotel pages Approved-by: Fredrik Thorsson Approved-by: Matilda Landström
16 lines
263 B
TypeScript
16 lines
263 B
TypeScript
export interface GalleryImage {
|
|
src: string
|
|
alt: string
|
|
caption?: string | null
|
|
smallSrc?: string | null
|
|
}
|
|
|
|
export type ImageGalleryProps = {
|
|
images?: GalleryImage[]
|
|
title: string
|
|
fill?: boolean
|
|
width?: number
|
|
height?: number
|
|
sizes?: string
|
|
}
|