import ViewOnMapIcon from "../../../icons/ViewOnMapIcon"; type ViewOnMapProps = { onClick?: () => void; isVillaSelected?: boolean; }; const ViewOnMapButton = ({ onClick, isVillaSelected }: ViewOnMapProps) => { return ( ); }; export default ViewOnMapButton;