8 lines
298 B
TypeScript
8 lines
298 B
TypeScript
import type { CardProps } from "@/components/TempDesignSystem/Card/card"
|
|
import type { FacilityCard } from "./hotelPage/facilities"
|
|
|
|
export interface CardImageProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
card: FacilityCard | undefined
|
|
imageCards: Pick<CardProps, "backgroundImage">[]
|
|
}
|