6
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Angular Material】Iconのテーマを切り替えたい。

Last updated at Posted at 2020-07-30

はじめに

Angular Material Icon使えるアイコン一覧にはベースとなるものの他に「Outlined」「Rounded」「Two-Tone」「Sharp」というテーマが用意されている。
今回はこれの切り替え方について共有していく。

前提

すでに ng add コマンドでAngular Mateiralを導入した前提で進める。

Google Fontsの読み込み

index.html<head></head> 内にあるGoogle FontsのMaterial Iconのスタイルを読み込んでいる部分。

index.html
  <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">

ここに使いたいテーマを | でつないで追加する。
対応するリンクとテーマは以下。

アイコンテーマ 追加するリンク
Outlined Material+Icons+Outlined
Rounded Material+Icons+Rounded
Two-Tone Material+Icons+Two+Tone
Sharp Material+Icons+Sharp

(例)

  <link href="https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone" rel="stylesheet">

アイコンにテーマを fontSet を指定

テーマを切り替えたいアイコンに fontSet を当てるだけで切り替わる。
対応するアイコンテーマと fontSet は以下。

アイコンテーマ fontSet
Outlined material-icons-outlined
Rounded material-icons-round
Two-Tone material-icons-two-tone
Sharp material-icons-sharp

(例)

example.component.html
<mat-icon>backup</mat-icon>
<mat-icon fontSet="material-icons-outlined">backup</mat-icon>
<mat-icon fontSet="material-icons-two-tone">backup</mat-icon>

結果、

スクリーンショット 2020-07-30 21.16.22.png

こんな感じにテーマが切り替わって表示される。

参考サイト

6
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?