Skip to content

Commit

Permalink
Implement five iconsets of Material icons
Browse files Browse the repository at this point in the history
  • Loading branch information
celdia committed Jun 15, 2024
1 parent dc1ce47 commit bb0b48d
Showing 1 changed file with 28 additions and 3 deletions.
31 changes: 28 additions & 3 deletions tests/modules/ui_icons_test/ui_icons_test.iconset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dsfr:
label: 'DSFR'
plugin: 'svg'
assets:
- '/libraries/dsfr/src/core/icon/buildings'
- '/libraries/dsfr/src/core/icon'

remixicons:
label: 'Remix Icons'
Expand All @@ -33,7 +33,7 @@ uswsd:
- '/libraries/uswds/packages/usa-icon/src/img/uswds-icons'

material_icons_outlined:
label: 'Material icons Outlined'
label: 'Material Icons Outlined'
plugin: 'codepoints'
config:
template : '<span class="material-icons-outlined">{{ icon_id }}</span>'
Expand All @@ -42,12 +42,37 @@ material_icons_outlined:
- 'https://raw.githubusercontent.com/google/material-design-icons/master/font/MaterialIconsOutlined-Regular.codepoints'

material_icons_round:
label: 'Material Icon Round'
label: 'Material Icons Round'
plugin: 'codepoints'
config:
template: '<span class="material-icons-round">{{ icon_id }}</span>'
library: 'ui_icons_test/material'
assets:
- 'https://raw.githubusercontent.com/google/material-design-icons/master/font/MaterialIconsRound-Regular.codepoints'

material_icons_sharp:
label: 'Material Icons Sharp'
plugin: 'codepoints'
config:
template: '<span class="material-icons-sharp">{{ icon_id }}</span>'
library: 'ui_icons_test/material'
assets:
- 'https://raw.githubusercontent.com/google/material-design-icons/master/font/MaterialIconsSharp-Regular.codepoints'

material_icons_two_tone:
label: 'Material Icons Two Tone'
plugin: 'codepoints'
config:
template: '<span class="material-icons-two-tone">{{ icon_id }}</span>'
library: 'ui_icons_test/material'
assets:
- 'https://raw.githubusercontent.com/google/material-design-icons/master/font/MaterialIconsTwoTone-Regular.codepoints'

material_icons_filled:
label: 'Material Icons'
plugin: 'codepoints'
config:
template: '<span class="material-icons">{{ icon_id }}</span>'
library: 'ui_icons_test/material'
assets:
- 'https://raw.githubusercontent.com/google/material-design-icons/master/font/MaterialIcons-Regular.codepoints'

0 comments on commit bb0b48d

Please sign in to comment.