设想 :
- 我正在使用材质图标,我遇到了一个问题,
我通常使用填充的,一切都很好,
现在我想使用一个轮廓的,它们有相同的名称,“screen_share”
尝试案例:
我的尝试包含在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">
并在myComponent.html
<button mat-button>
<mat-icon>
screen_share_outline
</mat-icon>
</button>
但它仍然显示填充的。
我该怎么做?
这与建议的副本不同,因为提供的解决方案是我尝试过的选项,但没有奏效