I have a sandbox below. The width of the sidebar has been set to fixed. I am attempting to position the menu text below the icon, but it doesn't show up when I try wrapping it with div or span elements.
Do I need to use a flex container?
<Menu.Item key="1" style={{ height: 80 }}>
<div style={{height: 80, display: "flex", textAlign: "center"}}>
<Icon type="pie-chart" />
<span>Option 1</span>
</div>
</Menu.Item>
https://codesandbox.io/s/upbeat-mirzakhani-hhm7v?fontsize=14&hidenavigation=1&theme=dark
https://i.sstatic.net/oPeGJ.png
What is the best way to achieve the layout shown below?