How to add a custom image/icon in ANTD Design menu? – Shopify
Using this example: https://ant.design/components/layout/#components-layout-demo-side How can I add a custom image or icon instead of the default icons. I tried: <Menu.Item to="/" key="2"> <img className="ant-menu-item" src={require('image.png')} /> <span>Shopify</span> <Link to="/shopify">Home</Link> </Menu.Item> But that does not look good or does not…