feat(SW-3271): Move Chip to design-system * Move Chip to design-system Approved-by: Joakim Jäderberg
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import Chip from "@scandic-hotels/design-system/Chip"
|
|
import TripadvisorIcon from "@scandic-hotels/design-system/Icons/TripadvisorIcon"
|
|
import Image from "@scandic-hotels/design-system/Image"
|
|
|
|
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,
|
|
rating,
|
|
imageError,
|
|
setImageError,
|
|
position,
|
|
}: HotelCardDialogImageProps) {
|
|
const classNames = hotelCardDialogImageVariants({ position })
|
|
|
|
return (
|
|
<div className={classNames}>
|
|
{!firstImage || imageError ? (
|
|
<div className={styles.imagePlaceholder} />
|
|
) : (
|
|
<Image
|
|
src={firstImage}
|
|
alt={altText || ""}
|
|
fill
|
|
onError={() => setImageError(true)}
|
|
/>
|
|
)}
|
|
{rating ? (
|
|
<div className={styles.tripAdvisor}>
|
|
<Chip className={styles.tripAdvisor}>
|
|
<TripadvisorIcon color="Icon/Interactive/Default" />
|
|
{rating}
|
|
</Chip>
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
)
|
|
}
|