Hi @deepakrise,
Unfortunately there’s no built-in way to do this yet. It has been on my list of potential additional features for a while so at some point in the future it should be possible out of the box, but I don’t have a timeline for it at this point.
If you are ok with HTML and CSS you might be able to do it yourself, here’s what you’d need to do:
1. Add the material icons font to your theme’s header.php
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
2. Add the icon to your label like so:
[md-text label="<i class='material-icons'>email</i> Your email"]
[email* your-email]
[/md-text]
(note the single-quotes around material-icons
)
3. Add some CSS to your theme to make the icons the right size and position. Something like:
label .material-icons {
position: relative;
top: 0.3em;
margin-right: 0.2em;
}
Thanks,
Angus