Files
web/types/components/cardImage.ts
2024-08-29 16:51:19 +02:00

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">[]
}