Trying to find how to use mailto in material UI. I tried just using a simple tag within a ListItem, I tried using
<ListItem button component={Link} mailto='' />
I also tried
<ListItem button >
<i class="material-icons mail_outline">mail_outline</i>
<ListItemText primary="Support" />
<a href="mailto:[email protected]"></a>
</ListItem>
I tried to find information about this on material-UI's website & Github but nothing. I would really appreciate some help.