How to use material icons in canvas?
For fontawesome you can include the font and use the icon character code like:
ctx.font='30px FontAwesome';
ctx.fillText('\uF047',20,50);
But what about Google material icons? I couldn't find any solution online.