アイコンボタンを得るためにあなたのbutton
要素にmd-icon-button
属性を使用します。
<button md-icon-button mdTooltip="Check me">
<md-icon>check</md-icon>
</button>
注:をあなたがMaterial Icons by Googleを使用する場合は、必ずあなたのindex.html
にまたはでスタイルシートをインポートしますstyles.css
はmaterial2としてデフォルトでは供給されません。 (あなたが代わりに、このようなSVG iconsやCSSなどの他のアイコンを使用する場合があります)
(前述したように)あなたのindex.html
にマテリアルアイコンスタイルシートをインポートするための次のコードを追加します。
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
またはCSSを経由して(中styles.css
):
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
詳細情報: