import { AmenityIcon } from "@/components/icons/AmenityIcon"; import type { AmenityWithIcon } from "@/lib/data/amenities"; type Props = { item: AmenityWithIcon; variant?: "card" | "inline"; /** Use on tinted bands (e.g. “All rooms include”) so cards stay readable */ cardTone?: "elevated" | "embedded"; }; export function AmenityItem({ item, variant = "card", cardTone = "elevated", }: Props) { if (variant === "inline") { return (