Today I am going to share that how we can move wishlist icon under product info using xml.
For moving wishlist block you have to create catalog_product_view.xml in your custom theme or custom module.
Create app/design/frontend/[Theme Vendor Name]/[Theme Name]/Magento_Catalog/layout/catalog_product_view.xml and add below code:
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<move element="product.info.social" destination="product.info.form.content" after="product.info.addtocart" />
</body>
</page>
After doing above process, run the below commands.
php bin/magento cache:clean php bin/magento cache:flush
There you will find wishlist link shown after add to cart button.

