import { TripAdvisorIcon } from "@/components/Icons" import Image from "@/components/Image" import Chip from "@/components/TempDesignSystem/Chip" import { hotelCardDialogImageVariants } from "./variants" import styles from "./hotelCardDialogImage.module.css" import type { HotelCardDialogImageProps } from "@/types/components/hotelReservation/selectHotel/map" export default function HotelCardDialogImage({ firstImage, altText, ratings, imageError, setImageError, position, }: HotelCardDialogImageProps) { const classNames = hotelCardDialogImageVariants({ position }) return (
{!firstImage || imageError ? (
) : ( {altText setImageError(true)} /> )}
{ratings}
) }