interface ApartmentType { className?: string; onClick?: () => void; } const ApartmentIcon = ({ className, onClick }: ApartmentType) => { return ( ); }; export default ApartmentIcon;