10 lines
181 B
TypeScript
10 lines
181 B
TypeScript
import type { GalleryImage } from "@/types/hotel"
|
|
|
|
export type ImageGalleryProps = {
|
|
images?: GalleryImage[]
|
|
title: string
|
|
fill?: boolean
|
|
width?: number
|
|
height?: number
|
|
}
|