'use client'
import {
ShieldCheck,
Bell,
Car,
BedDouble,
CookingPot,
AirVent,
Bed,
Flame,
Wifi,
Video
} from 'lucide-react'
export default function Amenities({ dict }: { dict: any }) {
const ams = [
{ icon: , label: dict.amenities.cctv },
{ icon: , label: dict.amenities.fire_alarm },
{ icon: , label: dict.amenities.parking },
{ icon: , label: dict.amenities.double_bed },
{ icon: , label: dict.amenities.kitchen },
{ icon: , label: dict.amenities.ac },
{ icon: , label: dict.amenities.single_bed },
{ icon: , label: dict.amenities.fire_ext },
{ icon: , label: dict.amenities.wifi },
]
return (
{dict.amenities.title}
{ams.map((item, idx) => (
))}
)
}