is there a way to have a material ui tabs component's tab children wrapped in div's?
<Tabs
value={value}
indicatorColor="primary"
textColor="primary"
onChange={handleChange}
>
<div>
<Tab label="x" />
</div>
<div>
<Tab label="y" />
</div>
</Tabs>
Currently I am getting an error that states "The value provided to the tabs component is invalid, None of the tabs' children match with x". removing the divs solves this problem but I need these tabs wrapped in a div so I can have a handle to drag the tab. Any advice is much appreciated as I haven't seen a way to do this so successfully so far.