Scenario :
- I'm using material icons, and I face a problem,
I usually use filled ones and everything is ok,
right now I want to use a outlined one, they have the same name, "screen_share" 
Tried Case :
My try was include in index.html:
<link 
type="text/css" href="https://fonts.googleapis.com/css?family=Material+Icons" 
rel="stylesheet"/> 
<link type="text/css" 
href="https://fonts.googleapis.com/icon?family=Material+Icons&style=outlined" 
rel="stylesheet">
and in myComponent.html
<button mat-button>
   <mat-icon>
      screen_share_outline
   </mat-icon>
</button>
but it still shows the filled one.
How can I do it?
this is not the same than the suggested duplicate, because the solution presented is the option I try and didn't work