Files
web/types/components/imageGallery.ts
Erik Tiekstra 918887a63f Merged in fix/hotel-rooms (pull request #1288)
fix: Rooms images on hotel pages

* fix: Rooms images on hotel pages


Approved-by: Fredrik Thorsson
Approved-by: Matilda Landström
2025-02-10 09:15:48 +00:00

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
}