matcha-components 1.0.6 → 1.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (251) hide show
  1. package/index.ts +1 -0
  2. package/package.json +1 -1
  3. package/src/documentation/presentation.mdx +105 -0
  4. package/src/foundation/borders/borders.mdx +180 -0
  5. package/src/foundation/colors/base/amber.mdx +12 -9
  6. package/src/foundation/colors/base/blue.mdx +12 -9
  7. package/src/foundation/colors/base/cyan.mdx +12 -9
  8. package/src/foundation/colors/base/deep-orange.mdx +12 -9
  9. package/src/foundation/colors/base/deep-purple.mdx +12 -9
  10. package/src/foundation/colors/base/green.mdx +12 -9
  11. package/src/foundation/colors/base/indigo.mdx +12 -9
  12. package/src/foundation/colors/base/light-blue.mdx +12 -9
  13. package/src/foundation/colors/base/light-green.mdx +12 -9
  14. package/src/foundation/colors/base/lime.mdx +12 -9
  15. package/src/foundation/colors/base/orange.mdx +12 -9
  16. package/src/foundation/colors/base/pink.mdx +12 -9
  17. package/src/foundation/colors/base/purple.mdx +12 -9
  18. package/src/foundation/colors/base/red.mdx +12 -9
  19. package/src/foundation/colors/base/teal.mdx +12 -9
  20. package/src/foundation/colors/base/yellow.mdx +12 -9
  21. package/src/foundation/colors/base-colors.mdx +21 -18
  22. package/src/foundation/colors/theme/accent.mdx +12 -9
  23. package/src/foundation/colors/theme/primary.mdx +12 -9
  24. package/src/foundation/colors/theme/warn.mdx +12 -9
  25. package/src/foundation/colors/theme-colors.mdx +11 -37
  26. package/src/foundation/spacing/margins.mdx +183 -0
  27. package/src/foundation/spacing/paddings.mdx +156 -0
  28. package/src/foundation/typography/colors.mdx +26 -0
  29. package/src/foundation/typography/font-size.mdx +57 -0
  30. package/src/foundation/typography/font-weight.mdx +65 -0
  31. package/src/foundation/typography/helpers.mdx +86 -0
  32. package/src/foundation/typography/letter-spacing.mdx +35 -0
  33. package/src/foundation/typography/line-height.mdx +52 -0
  34. package/src/foundation/typography/message-box.mdx +43 -0
  35. package/src/foundation/typography/text-align.mdx +22 -0
  36. package/src/foundation/typography/text-styles.mdx +88 -0
  37. package/src/lib/matcha-autocomplete/autocomplete.mdx +1 -1
  38. package/src/lib/matcha-autocomplete/autocomplete.stories.ts +16 -25
  39. package/src/lib/matcha-autocomplete/example/autocomplete-auto-active-first-option-example.css +9 -0
  40. package/src/lib/matcha-autocomplete/example/autocomplete-auto-active-first-option-example.html +9 -0
  41. package/src/lib/matcha-autocomplete/example/autocomplete-auto-active-first-option-example.ts +37 -0
  42. package/src/lib/matcha-autocomplete/example/autocomplete-overview-example.css +19 -0
  43. package/src/lib/matcha-autocomplete/example/autocomplete-overview-example.html +17 -0
  44. package/src/lib/matcha-autocomplete/example/autocomplete-overview-example.ts +70 -0
  45. package/src/lib/matcha-badge/badge.argtypes.ts +77 -0
  46. package/src/lib/matcha-badge/badge.directive.ts +11 -0
  47. package/src/lib/matcha-badge/badge.mdx +69 -0
  48. package/src/lib/matcha-badge/badge.module.ts +5 -10
  49. package/src/lib/matcha-badge/badge.stories.ts +79 -0
  50. package/src/lib/matcha-bottom-sheet/bottom-sheet-overview-example-sheet.html +21 -0
  51. package/src/lib/matcha-bottom-sheet/bottom-sheet-overview-example.component.ts +34 -0
  52. package/src/lib/matcha-bottom-sheet/bottom-sheet-overview-example.html +2 -0
  53. package/src/lib/matcha-bottom-sheet/bottom-sheet.argtypes.ts +117 -0
  54. package/src/lib/matcha-bottom-sheet/bottom-sheet.mdx +69 -0
  55. package/src/lib/matcha-bottom-sheet/bottom-sheet.module.ts +5 -10
  56. package/src/lib/matcha-bottom-sheet/bottom-sheet.stories.ts +39 -0
  57. package/src/lib/matcha-button/button-overview-example.component.ts +18 -0
  58. package/src/lib/matcha-button/button-overview-example.html +118 -0
  59. package/src/lib/matcha-button/button-overview-example.scss +31 -0
  60. package/src/lib/matcha-button/button.argtypes.ts +20 -0
  61. package/src/lib/matcha-button/button.directive.ts +39 -0
  62. package/src/lib/matcha-button/button.mdx +171 -0
  63. package/src/lib/matcha-button/button.module.ts +10 -0
  64. package/src/lib/matcha-button/button.stories.ts +38 -0
  65. package/src/lib/matcha-button-toggle/button-toggle.argtype.ts +115 -0
  66. package/src/lib/matcha-button-toggle/button-toggle.directive.ts +13 -0
  67. package/src/lib/matcha-button-toggle/button-toggle.mdx +63 -0
  68. package/src/lib/matcha-button-toggle/button-toggle.stories.ts +64 -0
  69. package/src/lib/matcha-button-toggle/matcha-button-toggle.directive.ts +0 -1
  70. package/src/lib/matcha-card/card-argtype.ts +54 -0
  71. package/src/lib/matcha-card/card-header.html +10 -0
  72. package/src/lib/matcha-card/card-title-group.html +12 -0
  73. package/src/lib/matcha-card/card.component.spec.ts +21 -0
  74. package/src/lib/matcha-card/card.component.ts +47 -0
  75. package/src/lib/matcha-card/card.mdx +43 -0
  76. package/src/lib/matcha-card/card.module.ts +10 -0
  77. package/src/lib/matcha-card/card.stories.ts +92 -0
  78. package/src/lib/matcha-components.module.ts +12 -47
  79. package/src/lib/matcha-dialog/confirmation-dialog.component.ts +39 -0
  80. package/src/lib/matcha-dialog/confirmation-dialog.stories.ts +21 -0
  81. package/src/lib/matcha-divider/divider.argtypes.ts +18 -0
  82. package/src/lib/matcha-divider/divider.mdx +51 -0
  83. package/src/lib/matcha-divider/divider.module.ts +5 -9
  84. package/src/lib/matcha-divider/divider.stories.ts +49 -0
  85. package/src/lib/matcha-elevation/elevation.argtypes.ts +16 -0
  86. package/src/lib/matcha-elevation/elevation.directive.ts +24 -0
  87. package/src/lib/matcha-elevation/elevation.mdx +50 -0
  88. package/src/lib/matcha-elevation/elevation.module.ts +10 -0
  89. package/src/lib/matcha-elevation/elevation.stories.ts +50 -0
  90. package/src/lib/matcha-expansion/expansion.argtypes.ts +44 -0
  91. package/src/lib/matcha-expansion/expansion.directive.ts +11 -0
  92. package/src/lib/matcha-expansion/expansion.mdx +69 -0
  93. package/src/lib/matcha-expansion/expansion.module.ts +10 -0
  94. package/src/lib/matcha-expansion/expansion.stories.ts +67 -0
  95. package/src/lib/matcha-forms/form-field-argtype.ts +60 -0
  96. package/src/lib/matcha-forms/form-field.directive.ts +11 -0
  97. package/src/lib/matcha-forms/form-field.mdx +20 -0
  98. package/src/lib/matcha-forms/{matcha-form-field.stories.ts → form-field.stories.ts} +64 -68
  99. package/src/lib/matcha-forms/forms.module.ts +5 -14
  100. package/src/lib/matcha-headers/headers.argtype.ts +14 -0
  101. package/src/lib/matcha-headers/headers.mdx +94 -0
  102. package/src/lib/matcha-headers/headers.module.ts +12 -0
  103. package/src/lib/matcha-headers/headers.stories.ts +88 -0
  104. package/src/lib/matcha-headers/headine/headline.component.html +1 -0
  105. package/src/lib/matcha-headers/headine/headline.component.ts +20 -0
  106. package/src/lib/matcha-headers/subhead/subhead.component.html +1 -0
  107. package/src/lib/matcha-headers/subhead/subhead.component.ts +20 -0
  108. package/src/lib/matcha-headers/title/title.component.html +1 -0
  109. package/src/lib/matcha-headers/title/title.component.ts +20 -0
  110. package/src/lib/matcha-icon/icon-argtype.ts +36 -0
  111. package/src/lib/matcha-icon/icon.component.html +3 -0
  112. package/src/lib/matcha-icon/icon.component.scss +0 -0
  113. package/src/lib/matcha-icon/icon.component.ts +34 -0
  114. package/src/lib/matcha-icon/icon.mdx +60 -0
  115. package/src/lib/matcha-icon/icon.module.ts +5 -14
  116. package/src/lib/matcha-icon/icon.stories.ts +423 -0
  117. package/src/lib/matcha-input/input.argtypes.ts +42 -0
  118. package/src/lib/matcha-input/input.directive.ts +11 -0
  119. package/src/lib/matcha-input/input.mdx +73 -0
  120. package/src/lib/matcha-input/input.module.ts +9 -0
  121. package/src/lib/matcha-input/input.stories.ts +97 -0
  122. package/src/lib/matcha-list/list.argtypes.ts +44 -0
  123. package/src/lib/matcha-list/{matcha-list.directive.ts → list.directive.ts} +3 -8
  124. package/src/lib/matcha-list/list.mdx +69 -0
  125. package/src/lib/matcha-list/list.module.ts +5 -9
  126. package/src/lib/matcha-list/list.stories.ts +101 -0
  127. package/src/lib/matcha-menu/menu.argtypes.ts +114 -0
  128. package/src/lib/matcha-menu/menu.mdx +59 -0
  129. package/src/lib/matcha-menu/menu.module.ts +5 -9
  130. package/src/lib/matcha-menu/menu.stories.ts +122 -0
  131. package/src/lib/matcha-paginator/paginator-overview-example.component.ts +13 -0
  132. package/src/lib/matcha-paginator/paginator-overview-example.css +0 -0
  133. package/src/lib/matcha-paginator/paginator-overview-example.html +1 -0
  134. package/src/lib/matcha-paginator/paginator.argtypes.ts +11 -0
  135. package/src/lib/matcha-paginator/paginator.mdx +53 -0
  136. package/src/lib/matcha-paginator/paginator.module.ts +5 -9
  137. package/src/lib/matcha-paginator/paginator.stories.ts +34 -0
  138. package/src/lib/matcha-progress-bar/progress-bar.mdx +1 -1
  139. package/src/lib/matcha-progress-spinner/progress-spinner.mdx +33 -13
  140. package/src/lib/matcha-progress-spinner/progress-spinner.stories.ts +8 -8
  141. package/src/lib/matcha-select/select.argtypes.ts +265 -0
  142. package/src/lib/matcha-select/{matcha-select.directive.ts → select.directive.ts} +3 -8
  143. package/src/lib/matcha-select/select.mdx +54 -0
  144. package/src/lib/matcha-select/select.module.ts +5 -7
  145. package/src/lib/matcha-select/select.stories.ts +164 -0
  146. package/src/lib/matcha-sidenav/sidenav.argtypes.ts +60 -0
  147. package/src/lib/matcha-sidenav/sidenav.directive.ts +11 -0
  148. package/src/lib/matcha-sidenav/sidenav.mdx +57 -0
  149. package/src/lib/matcha-sidenav/sidenav.module.ts +10 -0
  150. package/src/lib/matcha-sidenav/sidenav.stories.ts +79 -0
  151. package/src/lib/matcha-slide-toggle/slide-toggle.mdx +1 -1
  152. package/src/lib/matcha-slider/slider.argtypes.ts +83 -0
  153. package/src/lib/matcha-slider/slider.mdx +45 -0
  154. package/src/lib/matcha-slider/slider.stories.ts +149 -0
  155. package/src/lib/matcha-snackbar/snack-bar-overview-example.component.ts +23 -0
  156. package/src/lib/matcha-snackbar/snack-bar-overview-example.css +3 -0
  157. package/src/lib/matcha-snackbar/snack-bar-overview-example.html +11 -0
  158. package/src/lib/matcha-snackbar/snack-bar.argtypes.ts +11 -0
  159. package/src/lib/matcha-snackbar/snack-bar.directive.ts +11 -0
  160. package/src/lib/matcha-snackbar/snack-bar.mdx +53 -0
  161. package/src/lib/matcha-snackbar/snack-bar.module.ts +10 -0
  162. package/src/lib/matcha-snackbar/snack-bar.stories.ts +34 -0
  163. package/src/lib/matcha-sort-header/example/sort-overview-example.component.ts +67 -0
  164. package/src/lib/matcha-sort-header/example/sort-overview-example.css +3 -0
  165. package/src/lib/matcha-sort-header/example/sort-overview-example.html +21 -0
  166. package/src/lib/matcha-sort-header/sort-header.argtypes.ts +11 -0
  167. package/src/lib/matcha-sort-header/sort-header.mdx +78 -0
  168. package/src/lib/matcha-sort-header/sort-header.module.ts +5 -7
  169. package/src/lib/matcha-sort-header/sort-header.stories.ts +34 -0
  170. package/src/lib/matcha-stepper/stepper.argtypes.ts +92 -0
  171. package/src/lib/matcha-stepper/stepper.mdx +68 -0
  172. package/src/lib/matcha-stepper/stepper.module.ts +5 -7
  173. package/src/lib/matcha-stepper/stepper.stories.ts +163 -0
  174. package/src/lib/matcha-table/example/table-basic-example.component.ts +37 -0
  175. package/src/lib/matcha-table/example/table-basic-example.css +0 -0
  176. package/src/lib/matcha-table/example/table-basic-example.html +35 -0
  177. package/src/lib/matcha-table/table.argtypes.ts +11 -0
  178. package/src/lib/matcha-table/table.mdx +78 -0
  179. package/src/lib/matcha-table/table.module.ts +5 -7
  180. package/src/lib/matcha-table/table.stories.ts +34 -0
  181. package/src/lib/matcha-tabs/tabs.argtypes.ts +11 -0
  182. package/src/lib/matcha-tabs/tabs.mdx +69 -0
  183. package/src/lib/matcha-tabs/tabs.module.ts +5 -11
  184. package/src/lib/matcha-tabs/tabs.stories.ts +49 -0
  185. package/src/lib/matcha-toolbar/toolbar.argtypes.ts +20 -0
  186. package/src/lib/matcha-toolbar/toolbar.directive.ts +11 -0
  187. package/src/lib/matcha-toolbar/toolbar.mdx +57 -0
  188. package/src/lib/matcha-toolbar/toolbar.module.ts +10 -0
  189. package/src/lib/matcha-toolbar/toolbar.stories.ts +100 -0
  190. package/src/lib/matcha-tooltip/tooltip.argtypes.ts +11 -0
  191. package/src/lib/matcha-tooltip/tooltip.mdx +69 -0
  192. package/src/lib/matcha-tooltip/tooltip.module.ts +5 -7
  193. package/src/lib/matcha-tooltip/tooltip.stories.ts +79 -0
  194. package/src/lib/matcha-tree/tree.argtypes.ts +42 -0
  195. package/src/lib/matcha-tree/tree.mdx +49 -0
  196. package/src/lib/matcha-tree/tree.module.ts +5 -7
  197. package/src/lib/matcha-tree/tree.stories.ts +130 -0
  198. package/src/public-api.ts +27 -28
  199. package/src/lib/matcha-badge/matcha-badge.directive.ts +0 -16
  200. package/src/lib/matcha-buttons/buttons.module.ts +0 -27
  201. package/src/lib/matcha-buttons/matcha-btn-md.directive.ts +0 -16
  202. package/src/lib/matcha-buttons/matcha-btn-pill.directive.ts +0 -15
  203. package/src/lib/matcha-buttons/matcha-btn-size.directive.ts +0 -17
  204. package/src/lib/matcha-buttons/matcha-btn-xl.directive.ts +0 -15
  205. package/src/lib/matcha-card/card.mdx.txt +0 -55
  206. package/src/lib/matcha-card/matcha-card-argtype.ts +0 -123
  207. package/src/lib/matcha-card/matcha-card-content/matcha-card-content.component.html +0 -3
  208. package/src/lib/matcha-card/matcha-card-content/matcha-card-content.component.spec.ts +0 -21
  209. package/src/lib/matcha-card/matcha-card-content/matcha-card-content.component.ts +0 -10
  210. package/src/lib/matcha-card/matcha-card-footer/matcha-card-footer.component.html +0 -3
  211. package/src/lib/matcha-card/matcha-card-footer/matcha-card-footer.component.spec.ts +0 -21
  212. package/src/lib/matcha-card/matcha-card-footer/matcha-card-footer.component.ts +0 -10
  213. package/src/lib/matcha-card/matcha-card-header/matcha-card-header.component.html +0 -4
  214. package/src/lib/matcha-card/matcha-card-header/matcha-card-header.component.spec.ts +0 -21
  215. package/src/lib/matcha-card/matcha-card-header/matcha-card-header.component.ts +0 -10
  216. package/src/lib/matcha-card/matcha-card.component.scss +0 -117
  217. package/src/lib/matcha-card/matcha-card.component.spec.ts +0 -21
  218. package/src/lib/matcha-card/matcha-card.component.ts +0 -43
  219. package/src/lib/matcha-card/matcha-card.module.ts +0 -27
  220. package/src/lib/matcha-card/matcha-card.stories.ts +0 -80
  221. package/src/lib/matcha-expansion-panel/expansion-panel.module.ts +0 -14
  222. package/src/lib/matcha-expansion-panel/matcha-expansion-panel.directive.ts +0 -16
  223. package/src/lib/matcha-forms/matcha-form-field-appearance.directive.ts +0 -16
  224. package/src/lib/matcha-forms/matcha-form-field-argtype.ts +0 -73
  225. package/src/lib/matcha-forms/matcha-form-field.mdx +0 -284
  226. package/src/lib/matcha-forms/matcha-form-input-text.directive.ts +0 -16
  227. package/src/lib/matcha-icon/matcha-icon-position-pos.directive.ts +0 -15
  228. package/src/lib/matcha-icon/matcha-icon-position-pre.directive.ts +0 -15
  229. package/src/lib/matcha-menu/menu.stories.txt +0 -76
  230. package/src/lib/matcha-snackbar/matcha-snackbar.directive.ts +0 -16
  231. package/src/lib/matcha-snackbar/snackbar.module.ts +0 -12
  232. package/src/lib/matcha-title/matcha-title.component.html +0 -33
  233. package/src/lib/matcha-title/matcha-title.component.spec.ts +0 -21
  234. package/src/lib/matcha-title/matcha-title.component.ts +0 -24
  235. package/src/lib/matcha-title/matcha-title.module.ts +0 -18
  236. /package/src/lib/matcha-bottom-sheet/{matcha-bottom-sheet.directive.ts → bottom-sheet.directive.ts} +0 -0
  237. /package/src/lib/{matcha-buttons/button.stories.ts → matcha-button/button.stories.ts.TXT} +0 -0
  238. /package/src/lib/matcha-card/{matcha-card.component.html → card.component.html} +0 -0
  239. /package/src/lib/matcha-card/{matcha-card-content/matcha-card-content.component.scss → card.component.scss} +0 -0
  240. /package/src/lib/matcha-divider/{matcha-divider.directive.ts → divider.directive.ts} +0 -0
  241. /package/src/lib/{matcha-card/matcha-card-footer/matcha-card-footer.component.scss → matcha-headers/headine/headline.component.scss} +0 -0
  242. /package/src/lib/{matcha-card/matcha-card-header/matcha-card-header.component.scss → matcha-headers/subhead/subhead.component.scss} +0 -0
  243. /package/src/lib/{matcha-title/matcha-title.component.scss → matcha-headers/title/title.component.scss} +0 -0
  244. /package/src/lib/matcha-menu/{matcha-menu.directive.ts → menu.directive.ts} +0 -0
  245. /package/src/lib/matcha-paginator/{matcha-paginator.directive.ts → paginator.directive.ts} +0 -0
  246. /package/src/lib/matcha-sort-header/{matcha-sort-header.directive.ts → sort-header.directive.ts} +0 -0
  247. /package/src/lib/matcha-stepper/{matcha-stepper.directive.ts → stepper.directive.ts} +0 -0
  248. /package/src/lib/matcha-table/{matcha-table.directive.ts → table.directive.ts} +0 -0
  249. /package/src/lib/matcha-tabs/{matcha-tabs.directive.ts → tabs.directive.ts} +0 -0
  250. /package/src/lib/matcha-tooltip/{matcha-tooltip.directive.ts → tooltip.directive.ts} +0 -0
  251. /package/src/lib/matcha-tree/{matcha-tree.directive.ts → tree.directive.ts} +0 -0
@@ -0,0 +1,423 @@
1
+ import { Meta, moduleMetadata, StoryObj } from '@storybook/angular';
2
+
3
+ import { MatchaIconModule } from './icon.module';
4
+
5
+ import { iconArgtypes } from './icon-argtype';
6
+ import { MatInputModule } from '@angular/material/input';
7
+ import { MatFormFieldModule } from '@angular/material/form-field';
8
+
9
+ export default {
10
+ title: 'Atoms / Icon',
11
+ decorators: [
12
+ moduleMetadata({
13
+ imports: [MatchaIconModule, MatInputModule, MatFormFieldModule],
14
+ declarations: [],
15
+ }),
16
+ ],
17
+ args: {
18
+ color: 'accent',
19
+ size: 'md',
20
+ name: 'home',
21
+ loading: false,
22
+ },
23
+ argTypes: iconArgtypes,
24
+ parameters: {
25
+ docs: {
26
+ source: { type: 'code' },
27
+ },
28
+ controls: {
29
+ expanded: true,
30
+ exclude: ['mode'],
31
+ },
32
+ componentSubtitle: 'Displays an image that represents a user or organization',
33
+ },
34
+ } as Meta;
35
+
36
+ /** Este é o icon principal */
37
+ export const IconOverview: StoryObj = {
38
+ render: (args) => ({
39
+ props: {
40
+ ...args,
41
+ },
42
+ template: `
43
+ <matcha-icon [name]="name" [color]="color" [size]="size"></matcha-icon>
44
+ `,
45
+ }),
46
+ name: 'Icon Overview',
47
+ };
48
+
49
+ /** Este é o icon principal */
50
+ export const IconList: StoryObj = {
51
+ render: (args) => ({
52
+ props: {
53
+ ...args,
54
+ },
55
+ template: `
56
+
57
+ <mat-form-field appearance="outline" color="accent">
58
+ <mat-label>Value</mat-label>
59
+ <input
60
+ matInput
61
+ type="text"
62
+ id="iconSearch"
63
+ placeholder="Pesquisar ícones..."
64
+ onKeyUp="filterIcons()"/>
65
+ </mat-form-field>
66
+ <div class="bb-2 border-color-disabled mb-16"></div>
67
+ <div class="grid-sm-12 gap-8">
68
+ <div class="background-surface border-radius-8 icon text-center" data-name="app"><matcha-icon name="app" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">app</span></div>
69
+ <div class="background-surface border-radius-8 icon text-center" data-name="site"><matcha-icon name="site" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">site</span></div>
70
+ <div class="background-surface border-radius-8 icon text-center" data-name="home"><matcha-icon name="home" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">home</span></div>
71
+ <div class="background-surface border-radius-8 icon text-center" data-name="home-out"><matcha-icon name="home-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">home-out</span></div>
72
+ <div class="background-surface border-radius-8 icon text-center" data-name="content"><matcha-icon name="content" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">content</span></div>
73
+ <div class="background-surface border-radius-8 icon text-center" data-name="content-out"><matcha-icon name="content-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">content-out</span></div>
74
+ <div class="background-surface border-radius-8 icon text-center" data-name="events"><matcha-icon name="events" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">events</span></div>
75
+ <div class="background-surface border-radius-8 icon text-center" data-name="events-out"><matcha-icon name="events-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">events-out</span></div>
76
+ <div class="background-surface border-radius-8 icon text-center" data-name="favorite"><matcha-icon name="favorite" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">favorite</span></div>
77
+ <div class="background-surface border-radius-8 icon text-center" data-name="favorite-out"><matcha-icon name="favorite-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">favorite-out</span></div>
78
+ <div class="background-surface border-radius-8 icon text-center" data-name="tv"><matcha-icon name="tv" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">tv</span></div>
79
+ <div class="background-surface border-radius-8 icon text-center" data-name="tv-out"><matcha-icon name="tv-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">tv-out</span></div>
80
+ <div class="background-surface border-radius-8 icon text-center" data-name="bible"><matcha-icon name="bible" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">bible</span></div>
81
+ <div class="background-surface border-radius-8 icon text-center" data-name="bible-out"><matcha-icon name="bible-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">bible-out</span></div>
82
+ <div class="background-surface border-radius-8 icon text-center" data-name="reading-plan"><matcha-icon name="reading-plan" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">reading-plan</span></div>
83
+ <div class="background-surface border-radius-8 icon text-center" data-name="reading-plan-out"><matcha-icon name="reading-plan-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">reading-plan-out</span></div>
84
+ <div class="background-surface border-radius-8 icon text-center" data-name="agenda"><matcha-icon name="agenda" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">agenda</span></div>
85
+ <div class="background-surface border-radius-8 icon text-center" data-name="agenda-out"><matcha-icon name="agenda-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">agenda-out</span></div>
86
+ <div class="background-surface border-radius-8 icon text-center" data-name="church"><matcha-icon name="church" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">church</span></div>
87
+ <div class="background-surface border-radius-8 icon text-center" data-name="church-out"><matcha-icon name="church-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">church-out</span></div>
88
+ <div class="background-surface border-radius-8 icon text-center" data-name="download"><matcha-icon name="download" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">download</span></div>
89
+ <div class="background-surface border-radius-8 icon text-center" data-name="downloads-out"><matcha-icon name="downloads-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">downloads-out</span></div>
90
+ <div class="background-surface border-radius-8 icon text-center" data-name="groups"><matcha-icon name="groups" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">groups</span></div>
91
+ <div class="background-surface border-radius-8 icon text-center" data-name="groups-out"><matcha-icon name="groups-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">groups-out</span></div>
92
+ <div class="background-surface border-radius-8 icon text-center" data-name="live"><matcha-icon name="live" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">live</span></div>
93
+ <div class="background-surface border-radius-8 icon text-center" data-name="live-out"><matcha-icon name="live-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">live-out</span></div>
94
+ <div class="background-surface border-radius-8 icon text-center" data-name="star"><matcha-icon name="star" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">star</span></div>
95
+ <div class="background-surface border-radius-8 icon text-center" data-name="star-out"><matcha-icon name="star-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">star-out</span></div>
96
+ <div class="background-surface border-radius-8 icon text-center" data-name="news"><matcha-icon name="news" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">news</span></div>
97
+ <div class="background-surface border-radius-8 icon text-center" data-name="news-out"><matcha-icon name="news-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">news-out</span></div>
98
+ <div class="background-surface border-radius-8 icon text-center" data-name="edit"><matcha-icon name="edit" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">edit</span></div>
99
+ <div class="background-surface border-radius-8 icon text-center" data-name="edit-out"><matcha-icon name="edit-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">edit-out</span></div>
100
+ <div class="background-surface border-radius-8 icon text-center" data-name="web"><matcha-icon name="web" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">web</span></div>
101
+ <div class="background-surface border-radius-8 icon text-center" data-name="web-out"><matcha-icon name="web-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">web-out</span></div>
102
+ <div class="background-surface border-radius-8 icon text-center" data-name="prayer"><matcha-icon name="prayer" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">prayer</span></div>
103
+ <div class="background-surface border-radius-8 icon text-center" data-name="prayer-out"><matcha-icon name="prayer-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">prayer-out</span></div>
104
+ <div class="background-surface border-radius-8 icon text-center" data-name="radio"><matcha-icon name="radio" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">radio</span></div>
105
+ <div class="background-surface border-radius-8 icon text-center" data-name="radio-out"><matcha-icon name="radio-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">radio-out</span></div>
106
+ <div class="background-surface border-radius-8 icon text-center" data-name="id-card"><matcha-icon name="id-card" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">id-card</span></div>
107
+ <div class="background-surface border-radius-8 icon text-center" data-name="id-card-out"><matcha-icon name="id-card-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">id-card-out</span></div>
108
+ <div class="background-surface border-radius-8 icon text-center" data-name="cell"><matcha-icon name="cell" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">cell</span></div>
109
+ <div class="background-surface border-radius-8 icon text-center" data-name="cell-out"><matcha-icon name="cell-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">cell-out</span></div>
110
+ <div class="background-surface border-radius-8 icon text-center" data-name="business"><matcha-icon name="business" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">business</span></div>
111
+ <div class="background-surface border-radius-8 icon text-center" data-name="business-out"><matcha-icon name="business-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">business-out</span></div>
112
+ <div class="background-surface border-radius-8 icon text-center" data-name="contact"><matcha-icon name="contact" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">contact</span></div>
113
+ <div class="background-surface border-radius-8 icon text-center" data-name="contact-out"><matcha-icon name="contact-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">contact-out</span></div>
114
+ <div class="background-surface border-radius-8 icon text-center" data-name="store"><matcha-icon name="store" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">store</span></div>
115
+ <div class="background-surface border-radius-8 icon text-center" data-name="store-out"><matcha-icon name="store-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">store-out</span></div>
116
+ <div class="background-surface border-radius-8 icon text-center" data-name="mykids"><matcha-icon name="mykids" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">mykids</span></div>
117
+ <div class="background-surface border-radius-8 icon text-center" data-name="mykids-out"><matcha-icon name="mykids-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">mykids-out</span></div>
118
+ <div class="background-surface border-radius-8 icon text-center" data-name="profile"><matcha-icon name="profile" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">profile</span></div>
119
+ <div class="background-surface border-radius-8 icon text-center" data-name="profile-out"><matcha-icon name="profile-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">profile-out</span></div>
120
+ <div class="background-surface border-radius-8 icon text-center" data-name="bright"><matcha-icon name="bright" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">bright</span></div>
121
+ <div class="background-surface border-radius-8 icon text-center" data-name="bright-out"><matcha-icon name="bright-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">bright-out</span></div>
122
+ <div class="background-surface border-radius-8 icon text-center" data-name="case"><matcha-icon name="case" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">case</span></div>
123
+ <div class="background-surface border-radius-8 icon text-center" data-name="case-out"><matcha-icon name="case-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">case-out</span></div>
124
+ <div class="background-surface border-radius-8 icon text-center" data-name="cake"><matcha-icon name="cake" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">cake</span></div>
125
+ <div class="background-surface border-radius-8 icon text-center" data-name="link"><matcha-icon name="link" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">link</span></div>
126
+ <div class="background-surface border-radius-8 icon text-center" data-name="list"><matcha-icon name="list" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">list</span></div>
127
+ <div class="background-surface border-radius-8 icon text-center" data-name="grid"><matcha-icon name="grid" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">grid</span></div>
128
+ <div class="background-surface border-radius-8 icon text-center" data-name="grid-out"><matcha-icon name="grid-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">grid-out</span></div>
129
+ <div class="background-surface border-radius-8 icon text-center" data-name="contrast"><matcha-icon name="contrast" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">contrast</span></div>
130
+ <div class="background-surface border-radius-8 icon text-center" data-name="check-in"><matcha-icon name="check-in" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">check-in</span></div>
131
+ <div class="background-surface border-radius-8 icon text-center" data-name="check-out"><matcha-icon name="check-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">check-out</span></div>
132
+ <div class="background-surface border-radius-8 icon text-center" data-name="counseling"><matcha-icon name="counseling" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">counseling</span></div>
133
+ <div class="background-surface border-radius-8 icon text-center" data-name="counseling-out"><matcha-icon name="counseling-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">counseling-out</span></div>
134
+ <div class="background-surface border-radius-8 icon text-center" data-name="notes"><matcha-icon name="notes" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">notes</span></div>
135
+ <div class="background-surface border-radius-8 icon text-center" data-name="notes-out"><matcha-icon name="notes-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">notes-out</span></div>
136
+ <div class="background-surface border-radius-8 icon text-center" data-name="print"><matcha-icon name="print" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">print</span></div>
137
+ <div class="background-surface border-radius-8 icon text-center" data-name="print-out"><matcha-icon name="print-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">print-out</span></div>
138
+ <div class="background-surface border-radius-8 icon text-center" data-name="smile"><matcha-icon name="smile" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">smile</span></div>
139
+ <div class="background-surface border-radius-8 icon text-center" data-name="notification"><matcha-icon name="notification" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">notification</span></div>
140
+ <div class="background-surface border-radius-8 icon text-center" data-name="light-mode"><matcha-icon name="light-mode" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">light-mode</span></div>
141
+ <div class="background-surface border-radius-8 icon text-center" data-name="dark-mode"><matcha-icon name="dark-mode" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">dark-mode</span></div>
142
+ <div class="background-surface border-radius-8 icon text-center" data-name="dark-mode-2"><matcha-icon name="dark-mode-2" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">dark-mode-2</span></div>
143
+ <div class="background-surface border-radius-8 icon text-center" data-name="category"><matcha-icon name="category" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">category</span></div>
144
+ <div class="background-surface border-radius-8 icon text-center" data-name="bank"><matcha-icon name="bank" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">bank</span></div>
145
+ <div class="background-surface border-radius-8 icon text-center" data-name="visitor"><matcha-icon name="visitor" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">visitor</span></div>
146
+ <div class="background-surface border-radius-8 icon text-center" data-name="participant"><matcha-icon name="participant" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">participant</span></div>
147
+ <div class="background-surface border-radius-8 icon text-center" data-name="arrow-left"><matcha-icon name="arrow-left" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">arrow-left</span></div>
148
+ <div class="background-surface border-radius-8 icon text-center" data-name="arrow-up"><matcha-icon name="arrow-up" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">arrow-up</span></div>
149
+ <div class="background-surface border-radius-8 icon text-center" data-name="arrow-down"><matcha-icon name="arrow-down" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">arrow-down</span></div>
150
+ <div class="background-surface border-radius-8 icon text-center" data-name="arrow-right"><matcha-icon name="arrow-right" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">arrow-right</span></div>
151
+ <div class="background-surface border-radius-8 icon text-center" data-name="chevron-left"><matcha-icon name="chevron-left" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">chevron-left</span></div>
152
+ <div class="background-surface border-radius-8 icon text-center" data-name="chevron-right"><matcha-icon name="chevron-right" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">chevron-right</span></div>
153
+ <div class="background-surface border-radius-8 icon text-center" data-name="chevron-down"><matcha-icon name="chevron-down" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">chevron-down</span></div>
154
+ <div class="background-surface border-radius-8 icon text-center" data-name="chevron-up"><matcha-icon name="chevron-up" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">chevron-up</span></div>
155
+ <div class="background-surface border-radius-8 icon text-center" data-name="reading"><matcha-icon name="reading" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">reading</span></div>
156
+ <div class="background-surface border-radius-8 icon text-center" data-name="blocked"><matcha-icon name="blocked" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">blocked</span></div>
157
+ <div class="background-surface border-radius-8 icon text-center" data-name="reports"><matcha-icon name="reports" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">reports</span></div>
158
+ <div class="background-surface border-radius-8 icon text-center" data-name="dashboard"><matcha-icon name="dashboard" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">dashboard</span></div>
159
+ <div class="background-surface border-radius-8 icon text-center" data-name="graph"><matcha-icon name="graph" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">graph</span></div>
160
+ <div class="background-surface border-radius-8 icon text-center" data-name="education"><matcha-icon name="education" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">education</span></div>
161
+ <div class="background-surface border-radius-8 icon text-center" data-name="phone"><matcha-icon name="phone" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">phone</span></div>
162
+ <div class="background-surface border-radius-8 icon text-center" data-name="contact-us"><matcha-icon name="contact-us" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">contact-us</span></div>
163
+ <div class="background-surface border-radius-8 icon text-center" data-name="header-panel"><matcha-icon name="header-panel" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">header-panel</span></div>
164
+ <div class="background-surface border-radius-8 icon text-center" data-name="audio"><matcha-icon name="audio" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">audio</span></div>
165
+ <div class="background-surface border-radius-8 icon text-center" data-name="audio-out"><matcha-icon name="audio-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">audio-out</span></div>
166
+ <div class="background-surface border-radius-8 icon text-center" data-name="foward"><matcha-icon name="foward" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">foward</span></div>
167
+ <div class="background-surface border-radius-8 icon text-center" data-name="foward-out"><matcha-icon name="foward-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">foward-out</span></div>
168
+ <div class="background-surface border-radius-8 icon text-center" data-name="next"><matcha-icon name="next" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">next</span></div>
169
+ <div class="background-surface border-radius-8 icon text-center" data-name="next1"><matcha-icon name="next1" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">next1</span></div>
170
+ <div class="background-surface border-radius-8 icon text-center" data-name="pause"><matcha-icon name="pause" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">pause</span></div>
171
+ <div class="background-surface border-radius-8 icon text-center" data-name="pause-out"><matcha-icon name="pause-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">pause-out</span></div>
172
+ <div class="background-surface border-radius-8 icon text-center" data-name="play"><matcha-icon name="play" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">play</span></div>
173
+ <div class="background-surface border-radius-8 icon text-center" data-name="play-out"><matcha-icon name="play-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">play-out</span></div>
174
+ <div class="background-surface border-radius-8 icon text-center" data-name="microphone"><matcha-icon name="microphone" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">microphone</span></div>
175
+ <div class="background-surface border-radius-8 icon text-center" data-name="microphone-out"><matcha-icon name="microphone-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">microphone-out</span></div>
176
+ <div class="background-surface border-radius-8 icon text-center" data-name="previous"><matcha-icon name="previous" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">previous</span></div>
177
+ <div class="background-surface border-radius-8 icon text-center" data-name="previous-out"><matcha-icon name="previous-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">previous-out</span></div>
178
+ <div class="background-surface border-radius-8 icon text-center" data-name="rewind"><matcha-icon name="rewind" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">rewind</span></div>
179
+ <div class="background-surface border-radius-8 icon text-center" data-name="rewind-out"><matcha-icon name="rewind-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">rewind-out</span></div>
180
+ <div class="background-surface border-radius-8 icon text-center" data-name="songbook"><matcha-icon name="songbook" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">songbook</span></div>
181
+ <div class="background-surface border-radius-8 icon text-center" data-name="songbook-out"><matcha-icon name="songbook-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">songbook-out</span></div>
182
+ <div class="background-surface border-radius-8 icon text-center" data-name="video"><matcha-icon name="video" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">video</span></div>
183
+ <div class="background-surface border-radius-8 icon text-center" data-name="video-out"><matcha-icon name="video-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">video-out</span></div>
184
+ <div class="background-surface border-radius-8 icon text-center" data-name="upload"><matcha-icon name="upload" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">upload</span></div>
185
+ <div class="background-surface border-radius-8 icon text-center" data-name="upload-out"><matcha-icon name="upload-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">upload-out</span></div>
186
+ <div class="background-surface border-radius-8 icon text-center" data-name="gallery"><matcha-icon name="gallery" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">gallery</span></div>
187
+ <div class="background-surface border-radius-8 icon text-center" data-name="image-out"><matcha-icon name="image-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">image-out</span></div>
188
+ <div class="background-surface border-radius-8 icon text-center" data-name="edit-image"><matcha-icon name="edit-image" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">edit-image</span></div>
189
+ <div class="background-surface border-radius-8 icon text-center" data-name="bonus"><matcha-icon name="bonus" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">bonus</span></div>
190
+ <div class="background-surface border-radius-8 icon text-center" data-name="bonus-out"><matcha-icon name="bonus-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">bonus-out</span></div>
191
+ <div class="background-surface border-radius-8 icon text-center" data-name="save"><matcha-icon name="save" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">save</span></div>
192
+ <div class="background-surface border-radius-8 icon text-center" data-name="save-out"><matcha-icon name="save-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">save-out</span></div>
193
+ <div class="background-surface border-radius-8 icon text-center" data-name="lightbulb"><matcha-icon name="lightbulb" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">lightbulb</span></div>
194
+ <div class="background-surface border-radius-8 icon text-center" data-name="lightbulb-out"><matcha-icon name="lightbulb-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">lightbulb-out</span></div>
195
+ <div class="background-surface border-radius-8 icon text-center" data-name="laptop"><matcha-icon name="laptop" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">laptop</span></div>
196
+ <div class="background-surface border-radius-8 icon text-center" data-name="phone1"><matcha-icon name="phone1" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">phone1</span></div>
197
+ <div class="background-surface border-radius-8 icon text-center" data-name="monitor"><matcha-icon name="monitor" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">monitor</span></div>
198
+ <div class="background-surface border-radius-8 icon text-center" data-name="monitor-out"><matcha-icon name="monitor-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">monitor-out</span></div>
199
+ <div class="background-surface border-radius-8 icon text-center" data-name="testimony"><matcha-icon name="testimony" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">testimony</span></div>
200
+ <div class="background-surface border-radius-8 icon text-center" data-name="testimony-out"><matcha-icon name="testimony-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">testimony-out</span></div>
201
+ <div class="background-surface border-radius-8 icon text-center" data-name="pdf"><matcha-icon name="pdf" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">pdf</span></div>
202
+ <div class="background-surface border-radius-8 icon text-center" data-name="podtail"><matcha-icon name="podtail" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">podtail</span></div>
203
+ <div class="background-surface border-radius-8 icon text-center" data-name="net"><matcha-icon name="net" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">net</span></div>
204
+ <div class="background-surface border-radius-8 icon text-center" data-name="contact1"><matcha-icon name="contact1" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">contact1</span></div>
205
+ <div class="background-surface border-radius-8 icon text-center" data-name="copy-content"><matcha-icon name="copy-content" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">copy-content</span></div>
206
+ <div class="background-surface border-radius-8 icon text-center" data-name="about"><matcha-icon name="about" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">about</span></div>
207
+ <div class="background-surface border-radius-8 icon text-center" data-name="about-out"><matcha-icon name="about-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">about-out</span></div>
208
+ <div class="background-surface border-radius-8 icon text-center" data-name="copy"><matcha-icon name="copy" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">copy</span></div>
209
+ <div class="background-surface border-radius-8 icon text-center" data-name="copy-out"><matcha-icon name="copy-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">copy-out</span></div>
210
+ <div class="background-surface border-radius-8 icon text-center" data-name="copy-folder"><matcha-icon name="copy-folder" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">copy-folder</span></div>
211
+ <div class="background-surface border-radius-8 icon text-center" data-name="copy-folder-out"><matcha-icon name="copy-folder-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">copy-folder-out</span></div>
212
+ <div class="background-surface border-radius-8 icon text-center" data-name="new-note"><matcha-icon name="new-note" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">new-note</span></div>
213
+ <div class="background-surface border-radius-8 icon text-center" data-name="new-note-out"><matcha-icon name="new-note-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">new-note-out</span></div>
214
+ <div class="background-surface border-radius-8 icon text-center" data-name="folder-closed"><matcha-icon name="folder-closed" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">folder-closed</span></div>
215
+ <div class="background-surface border-radius-8 icon text-center" data-name="folder-opened"><matcha-icon name="folder-opened" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">folder-opened</span></div>
216
+ <div class="background-surface border-radius-8 icon text-center" data-name="note"><matcha-icon name="note" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">note</span></div>
217
+ <div class="background-surface border-radius-8 icon text-center" data-name="note-out"><matcha-icon name="note-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">note-out</span></div>
218
+ <div class="background-surface border-radius-8 icon text-center" data-name="copy-out1"><matcha-icon name="copy-out1" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">copy-out1</span></div>
219
+ <div class="background-surface border-radius-8 icon text-center" data-name="new-note-out1"><matcha-icon name="new-note-out1" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">new-note-out1</span></div>
220
+ <div class="background-surface border-radius-8 icon text-center" data-name="text"><matcha-icon name="text" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">text</span></div>
221
+ <div class="background-surface border-radius-8 icon text-center" data-name="text-align-left"><matcha-icon name="text-align-left" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">text-align-left</span></div>
222
+ <div class="background-surface border-radius-8 icon text-center" data-name="text-bullet-list"><matcha-icon name="text-bullet-list" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">text-bullet-list</span></div>
223
+ <div class="background-surface border-radius-8 icon text-center" data-name="text-align-center"><matcha-icon name="text-align-center" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">text-align-center</span></div>
224
+ <div class="background-surface border-radius-8 icon text-center" data-name="text-indent-back"><matcha-icon name="text-indent-back" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">text-indent-back</span></div>
225
+ <div class="background-surface border-radius-8 icon text-center" data-name="text-align-justify"><matcha-icon name="text-align-justify" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">text-align-justify</span></div>
226
+ <div class="background-surface border-radius-8 icon text-center" data-name="text-indent-foward"><matcha-icon name="text-indent-foward" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">text-indent-foward</span></div>
227
+ <div class="background-surface border-radius-8 icon text-center" data-name="text-align-right"><matcha-icon name="text-align-right" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">text-align-right</span></div>
228
+ <div class="background-surface border-radius-8 icon text-center" data-name="font-bold"><matcha-icon name="font-bold" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">font-bold</span></div>
229
+ <div class="background-surface border-radius-8 icon text-center" data-name="font-underline"><matcha-icon name="font-underline" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">font-underline</span></div>
230
+ <div class="background-surface border-radius-8 icon text-center" data-name="font-italic"><matcha-icon name="font-italic" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">font-italic</span></div>
231
+ <div class="background-surface border-radius-8 icon text-center" data-name="delete"><matcha-icon name="delete" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">delete</span></div>
232
+ <div class="background-surface border-radius-8 icon text-center" data-name="delete-out"><matcha-icon name="delete-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">delete-out</span></div>
233
+ <div class="background-surface border-radius-8 icon text-center" data-name="filter"><matcha-icon name="filter" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">filter</span></div>
234
+ <div class="background-surface border-radius-8 icon text-center" data-name="filter-out"><matcha-icon name="filter-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">filter-out</span></div>
235
+ <div class="background-surface border-radius-8 icon text-center" data-name="filter-bars"><matcha-icon name="filter-bars" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">filter-bars</span></div>
236
+ <div class="background-surface border-radius-8 icon text-center" data-name="fullscreen"><matcha-icon name="fullscreen" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">fullscreen</span></div>
237
+ <div class="background-surface border-radius-8 icon text-center" data-name="fullscreen-out"><matcha-icon name="fullscreen-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">fullscreen-out</span></div>
238
+ <div class="background-surface border-radius-8 icon text-center" data-name="fullscreen-exit"><matcha-icon name="fullscreen-exit" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">fullscreen-exit</span></div>
239
+ <div class="background-surface border-radius-8 icon text-center" data-name="fullscreen-exit-out"><matcha-icon name="fullscreen-exit-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">fullscreen-exit-out</span></div>
240
+ <div class="background-surface border-radius-8 icon text-center" data-name="settings"><matcha-icon name="settings" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">settings</span></div>
241
+ <div class="background-surface border-radius-8 icon text-center" data-name="settings-out"><matcha-icon name="settings-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">settings-out</span></div>
242
+ <div class="background-surface border-radius-8 icon text-center" data-name="share"><matcha-icon name="share" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">share</span></div>
243
+ <div class="background-surface border-radius-8 icon text-center" data-name="share-out"><matcha-icon name="share-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">share-out</span></div>
244
+ <div class="background-surface border-radius-8 icon text-center" data-name="toggle-off"><matcha-icon name="toggle-off" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">toggle-off</span></div>
245
+ <div class="background-surface border-radius-8 icon text-center" data-name="toggle-on"><matcha-icon name="toggle-on" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">toggle-on</span></div>
246
+ <div class="background-surface border-radius-8 icon text-center" data-name="toggle-off-out"><matcha-icon name="toggle-off-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">toggle-off-out</span></div>
247
+ <div class="background-surface border-radius-8 icon text-center" data-name="toggle-on-out"><matcha-icon name="toggle-on-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">toggle-on-out</span></div>
248
+ <div class="background-surface border-radius-8 icon text-center" data-name="visibility-on"><matcha-icon name="visibility-on" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">visibility-on</span></div>
249
+ <div class="background-surface border-radius-8 icon text-center" data-name="visibility-off"><matcha-icon name="visibility-off" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">visibility-off</span></div>
250
+ <div class="background-surface border-radius-8 icon text-center" data-name="visibility-on-out"><matcha-icon name="visibility-on-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">visibility-on-out</span></div>
251
+ <div class="background-surface border-radius-8 icon text-center" data-name="visibility-off-out"><matcha-icon name="visibility-off-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">visibility-off-out</span></div>
252
+ <div class="background-surface border-radius-8 icon text-center" data-name="logout"><matcha-icon name="logout" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">logout</span></div>
253
+ <div class="background-surface border-radius-8 icon text-center" data-name="logout-out"><matcha-icon name="logout-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">logout-out</span></div>
254
+ <div class="background-surface border-radius-8 icon text-center" data-name="search"><matcha-icon name="search" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">search</span></div>
255
+ <div class="background-surface border-radius-8 icon text-center" data-name="search-out"><matcha-icon name="search-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">search-out</span></div>
256
+ <div class="background-surface border-radius-8 icon text-center" data-name="notification1"><matcha-icon name="notification1" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">notification1</span></div>
257
+ <div class="background-surface border-radius-8 icon text-center" data-name="notification-out"><matcha-icon name="notification-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">notification-out</span></div>
258
+ <div class="background-surface border-radius-8 icon text-center" data-name="password"><matcha-icon name="password" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">password</span></div>
259
+ <div class="background-surface border-radius-8 icon text-center" data-name="password-out"><matcha-icon name="password-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">password-out</span></div>
260
+ <div class="background-surface border-radius-8 icon text-center" data-name="calendar"><matcha-icon name="calendar" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">calendar</span></div>
261
+ <div class="background-surface border-radius-8 icon text-center" data-name="calendar-out"><matcha-icon name="calendar-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">calendar-out</span></div>
262
+ <div class="background-surface border-radius-8 icon text-center" data-name="menu"><matcha-icon name="menu" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">menu</span></div>
263
+ <div class="background-surface border-radius-8 icon text-center" data-name="menu-out"><matcha-icon name="menu-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">menu-out</span></div>
264
+ <div class="background-surface border-radius-8 icon text-center" data-name="info"><matcha-icon name="info" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">info</span></div>
265
+ <div class="background-surface border-radius-8 icon text-center" data-name="info-out"><matcha-icon name="info-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">info-out</span></div>
266
+ <div class="background-surface border-radius-8 icon text-center" data-name="leadership"><matcha-icon name="leadership" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">leadership</span></div>
267
+ <div class="background-surface border-radius-8 icon text-center" data-name="leadership-out"><matcha-icon name="leadership-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">leadership-out</span></div>
268
+ <div class="background-surface border-radius-8 icon text-center" data-name="attachment"><matcha-icon name="attachment" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">attachment</span></div>
269
+ <div class="background-surface border-radius-8 icon text-center" data-name="attachment-out"><matcha-icon name="attachment-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">attachment-out</span></div>
270
+ <div class="background-surface border-radius-8 icon text-center" data-name="send"><matcha-icon name="send" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">send</span></div>
271
+ <div class="background-surface border-radius-8 icon text-center" data-name="action_sign_error"><matcha-icon name="action_sign_error" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">action_sign_error</span></div>
272
+ <div class="background-surface border-radius-8 icon text-center" data-name="action_close"><matcha-icon name="action_close" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">action_close</span></div>
273
+ <div class="background-surface border-radius-8 icon text-center" data-name="action_sign_success"><matcha-icon name="action_sign_success" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">action_sign_success</span></div>
274
+ <div class="background-surface border-radius-8 icon text-center" data-name="action_done"><matcha-icon name="action_done" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">action_done</span></div>
275
+ <div class="background-surface border-radius-8 icon text-center" data-name="action_sign_warning"><matcha-icon name="action_sign_warning" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">action_sign_warning</span></div>
276
+ <div class="background-surface border-radius-8 icon text-center" data-name="action_sign_warning-out"><matcha-icon name="action_sign_warning-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">action_sign_warning-out</span></div>
277
+ <div class="background-surface border-radius-8 icon text-center" data-name="feedback"><matcha-icon name="feedback" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">feedback</span></div>
278
+ <div class="background-surface border-radius-8 icon text-center" data-name="feedback-out"><matcha-icon name="feedback-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">feedback-out</span></div>
279
+ <div class="background-surface border-radius-8 icon text-center" data-name="action_get_up"><matcha-icon name="action_get_up" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">action_get_up</span></div>
280
+ <div class="background-surface border-radius-8 icon text-center" data-name="action_get_down"><matcha-icon name="action_get_down" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">action_get_down</span></div>
281
+ <div class="background-surface border-radius-8 icon text-center" data-name="action_move"><matcha-icon name="action_move" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">action_move</span></div>
282
+ <div class="background-surface border-radius-8 icon text-center" data-name="policy"><matcha-icon name="policy" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">policy</span></div>
283
+ <div class="background-surface border-radius-8 icon text-center" data-name="action_key"><matcha-icon name="action_key" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">action_key</span></div>
284
+ <div class="background-surface border-radius-8 icon text-center" data-name="action_sign_info"><matcha-icon name="action_sign_info" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">action_sign_info</span></div>
285
+ <div class="background-surface border-radius-8 icon text-center" data-name="action_sign_info-out"><matcha-icon name="action_sign_info-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">action_sign_info-out</span></div>
286
+ <div class="background-surface border-radius-8 icon text-center" data-name="qr-code-no-border"><matcha-icon name="qr-code-no-border" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">qr-code-no-border</span></div>
287
+ <div class="background-surface border-radius-8 icon text-center" data-name="qr-code"><matcha-icon name="qr-code" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">qr-code</span></div>
288
+ <div class="background-surface border-radius-8 icon text-center" data-name="drag-dots"><matcha-icon name="drag-dots" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">drag-dots</span></div>
289
+ <div class="background-surface border-radius-8 icon text-center" data-name="drag-bars"><matcha-icon name="drag-bars" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">drag-bars</span></div>
290
+ <div class="background-surface border-radius-8 icon text-center" data-name="action_arrow_down"><matcha-icon name="action_arrow_down" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">action_arrow_down</span></div>
291
+ <div class="background-surface border-radius-8 icon text-center" data-name="action_arrow_left"><matcha-icon name="action_arrow_left" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">action_arrow_left</span></div>
292
+ <div class="background-surface border-radius-8 icon text-center" data-name="action_arrow_up"><matcha-icon name="action_arrow_up" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">action_arrow_up</span></div>
293
+ <div class="background-surface border-radius-8 icon text-center" data-name="action_arrow_right"><matcha-icon name="action_arrow_right" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">action_arrow_right</span></div>
294
+ <div class="background-surface border-radius-8 icon text-center" data-name="action_plus"><matcha-icon name="action_plus" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">action_plus</span></div>
295
+ <div class="background-surface border-radius-8 icon text-center" data-name="minus"><matcha-icon name="minus" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">minus</span></div>
296
+ <div class="background-surface border-radius-8 icon text-center" data-name="action_reload"><matcha-icon name="action_reload" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">action_reload</span></div>
297
+ <div class="background-surface border-radius-8 icon text-center" data-name="transfer"><matcha-icon name="transfer" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">transfer</span></div>
298
+ <div class="background-surface border-radius-8 icon text-center" data-name="cost-center"><matcha-icon name="cost-center" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">cost-center</span></div>
299
+ <div class="background-surface border-radius-8 icon text-center" data-name="expand"><matcha-icon name="expand" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">expand</span></div>
300
+ <div class="background-surface border-radius-8 icon text-center" data-name="collapse"><matcha-icon name="collapse" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">collapse</span></div>
301
+ <div class="background-surface border-radius-8 icon text-center" data-name="action_list"><matcha-icon name="action_list" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">action_list</span></div>
302
+ <div class="background-surface border-radius-8 icon text-center" data-name="action_options"><matcha-icon name="action_options" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">action_options</span></div>
303
+ <div class="background-surface border-radius-8 icon text-center" data-name="historic"><matcha-icon name="historic" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">historic</span></div>
304
+ <div class="background-surface border-radius-8 icon text-center" data-name="plugin"><matcha-icon name="plugin" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">plugin</span></div>
305
+ <div class="background-surface border-radius-8 icon text-center" data-name="modules"><matcha-icon name="modules" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">modules</span></div>
306
+ <div class="background-surface border-radius-8 icon text-center" data-name="platform"><matcha-icon name="platform" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">platform</span></div>
307
+ <div class="background-surface border-radius-8 icon text-center" data-name="barcode"><matcha-icon name="barcode" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">barcode</span></div>
308
+ <div class="background-surface border-radius-8 icon text-center" data-name="barcode-out"><matcha-icon name="barcode-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">barcode-out</span></div>
309
+ <div class="background-surface border-radius-8 icon text-center" data-name="camera"><matcha-icon name="camera" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">camera</span></div>
310
+ <div class="background-surface border-radius-8 icon text-center" data-name="camera-out"><matcha-icon name="camera-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">camera-out</span></div>
311
+ <div class="background-surface border-radius-8 icon text-center" data-name="cast"><matcha-icon name="cast" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">cast</span></div>
312
+ <div class="background-surface border-radius-8 icon text-center" data-name="cast-out"><matcha-icon name="cast-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">cast-out</span></div>
313
+ <div class="background-surface border-radius-8 icon text-center" data-name="location"><matcha-icon name="location" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">location</span></div>
314
+ <div class="background-surface border-radius-8 icon text-center" data-name="location-out"><matcha-icon name="location-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">location-out</span></div>
315
+ <div class="background-surface border-radius-8 icon text-center" data-name="clock"><matcha-icon name="clock" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">clock</span></div>
316
+ <div class="background-surface border-radius-8 icon text-center" data-name="clock-out"><matcha-icon name="clock-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">clock-out</span></div>
317
+ <div class="background-surface border-radius-8 icon text-center" data-name="card"><matcha-icon name="card" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">card</span></div>
318
+ <div class="background-surface border-radius-8 icon text-center" data-name="card-out"><matcha-icon name="card-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">card-out</span></div>
319
+ <div class="background-surface border-radius-8 icon text-center" data-name="add-card"><matcha-icon name="add-card" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">add-card</span></div>
320
+ <div class="background-surface border-radius-8 icon text-center" data-name="update-balance"><matcha-icon name="update-balance" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">update-balance</span></div>
321
+ <div class="background-surface border-radius-8 icon text-center" data-name="cash"><matcha-icon name="cash" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">cash</span></div>
322
+ <div class="background-surface border-radius-8 icon text-center" data-name="cash-out"><matcha-icon name="cash-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">cash-out</span></div>
323
+ <div class="background-surface border-radius-8 icon text-center" data-name="pin"><matcha-icon name="pin" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">pin</span></div>
324
+ <div class="background-surface border-radius-8 icon text-center" data-name="pin-out"><matcha-icon name="pin-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">pin-out</span></div>
325
+ <div class="background-surface border-radius-8 icon text-center" data-name="flag"><matcha-icon name="flag" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">flag</span></div>
326
+ <div class="background-surface border-radius-8 icon text-center" data-name="flag-out"><matcha-icon name="flag-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">flag-out</span></div>
327
+ <div class="background-surface border-radius-8 icon text-center" data-name="category1"><matcha-icon name="category1" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">category1</span></div>
328
+ <div class="background-surface border-radius-8 icon text-center" data-name="category-out"><matcha-icon name="category-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">category-out</span></div>
329
+ <div class="background-surface border-radius-8 icon text-center" data-name="media"><matcha-icon name="media" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">media</span></div>
330
+ <div class="background-surface border-radius-8 icon text-center" data-name="media-out"><matcha-icon name="media-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">media-out</span></div>
331
+ <div class="background-surface border-radius-8 icon text-center" data-name="wallet"><matcha-icon name="wallet" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">wallet</span></div>
332
+ <div class="background-surface border-radius-8 icon text-center" data-name="wallet-out"><matcha-icon name="wallet-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">wallet-out</span></div>
333
+ <div class="background-surface border-radius-8 icon text-center" data-name="management"><matcha-icon name="management" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">management</span></div>
334
+ <div class="background-surface border-radius-8 icon text-center" data-name="business-unit"><matcha-icon name="business-unit" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">business-unit</span></div>
335
+ <div class="background-surface border-radius-8 icon text-center" data-name="receipt"><matcha-icon name="receipt" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">receipt</span></div>
336
+ <div class="background-surface border-radius-8 icon text-center" data-name="receipt-out"><matcha-icon name="receipt-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">receipt-out</span></div>
337
+ <div class="background-surface border-radius-8 icon text-center" data-name="circle-email"><matcha-icon name="circle-email" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">circle-email</span></div>
338
+ <div class="background-surface border-radius-8 icon text-center" data-name="email"><matcha-icon name="email" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">email</span></div>
339
+ <div class="background-surface border-radius-8 icon text-center" data-name="email-out"><matcha-icon name="email-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">email-out</span></div>
340
+ <div class="background-surface border-radius-8 icon text-center" data-name="pix"><matcha-icon name="pix" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">pix</span></div>
341
+ <div class="background-surface border-radius-8 icon text-center" data-name="pix-out"><matcha-icon name="pix-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">pix-out</span></div>
342
+ <div class="background-surface border-radius-8 icon text-center" data-name="location-cell"><matcha-icon name="location-cell" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">location-cell</span></div>
343
+ <div class="background-surface border-radius-8 icon text-center" data-name="location-cell-out"><matcha-icon name="location-cell-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">location-cell-out</span></div>
344
+ <div class="background-surface border-radius-8 icon text-center" data-name="image-rights"><matcha-icon name="image-rights" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">image-rights</span></div>
345
+ <div class="background-surface border-radius-8 icon text-center" data-name="image-rights-allowed"><matcha-icon name="image-rights-allowed" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">image-rights-allowed</span></div>
346
+ <div class="background-surface border-radius-8 icon text-center" data-name="forbidden-passage"><matcha-icon name="forbidden-passage" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">forbidden-passage</span></div>
347
+ <div class="background-surface border-radius-8 icon text-center" data-name="allowed-passage"><matcha-icon name="allowed-passage" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">allowed-passage</span></div>
348
+ <div class="background-surface border-radius-8 icon text-center" data-name="food-restriction"><matcha-icon name="food-restriction" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">food-restriction</span></div>
349
+ <div class="background-surface border-radius-8 icon text-center" data-name="no-food-restriction"><matcha-icon name="no-food-restriction" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">no-food-restriction</span></div>
350
+ <div class="background-surface border-radius-8 icon text-center" data-name="allergy"><matcha-icon name="allergy" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">allergy</span></div>
351
+ <div class="background-surface border-radius-8 icon text-center" data-name="special-need"><matcha-icon name="special-need" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">special-need</span></div>
352
+ <div class="background-surface border-radius-8 icon text-center" data-name="map"><matcha-icon name="map" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">map</span></div>
353
+ <div class="background-surface border-radius-8 icon text-center" data-name="apple"><matcha-icon name="apple" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">apple</span></div>
354
+ <div class="background-surface border-radius-8 icon text-center" data-name="number"><matcha-icon name="number" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">number</span></div>
355
+ <div class="background-surface border-radius-8 icon text-center" data-name="flow"><matcha-icon name="flow" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">flow</span></div>
356
+ <div class="background-surface border-radius-8 icon text-center" data-name="ibf-church"><matcha-icon name="ibf-church" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">ibf-church</span></div>
357
+ <div class="background-surface border-radius-8 icon text-center" data-name="process-barcode"><matcha-icon name="process-barcode" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">process-barcode</span></div>
358
+ <div class="background-surface border-radius-8 icon text-center" data-name="process-card"><matcha-icon name="process-card" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">process-card</span></div>
359
+ <div class="background-surface border-radius-8 icon text-center" data-name="box-opened"><matcha-icon name="box-opened" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">box-opened</span></div>
360
+ <div class="background-surface border-radius-8 icon text-center" data-name="parent"><matcha-icon name="parent" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">parent</span></div>
361
+ <div class="background-surface border-radius-8 icon text-center" data-name="kid-girl"><matcha-icon name="kid-girl" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">kid-girl</span></div>
362
+ <div class="background-surface border-radius-8 icon text-center" data-name="kid-boy"><matcha-icon name="kid-boy" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">kid-boy</span></div>
363
+ <div class="background-surface border-radius-8 icon text-center" data-name="people"><matcha-icon name="people" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">people</span></div>
364
+ <div class="background-surface border-radius-8 icon text-center" data-name="circle-code"><matcha-icon name="circle-code" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">circle-code</span></div>
365
+ <div class="background-surface border-radius-8 icon text-center" data-name="circle-facebook"><matcha-icon name="circle-facebook" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">circle-facebook</span></div>
366
+ <div class="background-surface border-radius-8 icon text-center" data-name="facebook"><matcha-icon name="facebook" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">facebook</span></div>
367
+ <div class="background-surface border-radius-8 icon text-center" data-name="circle-instagram"><matcha-icon name="circle-instagram" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">circle-instagram</span></div>
368
+ <div class="background-surface border-radius-8 icon text-center" data-name="instagram"><matcha-icon name="instagram" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">instagram</span></div>
369
+ <div class="background-surface border-radius-8 icon text-center" data-name="soundcloud"><matcha-icon name="soundcloud" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">soundcloud</span></div>
370
+ <div class="background-surface border-radius-8 icon text-center" data-name="circle-soundcloud"><matcha-icon name="circle-soundcloud" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">circle-soundcloud</span></div>
371
+ <div class="background-surface border-radius-8 icon text-center" data-name="spotify"><matcha-icon name="spotify" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">spotify</span></div>
372
+ <div class="background-surface border-radius-8 icon text-center" data-name="circle-spotify"><matcha-icon name="circle-spotify" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">circle-spotify</span></div>
373
+ <div class="background-surface border-radius-8 icon text-center" data-name="circle-telegram"><matcha-icon name="circle-telegram" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">circle-telegram</span></div>
374
+ <div class="background-surface border-radius-8 icon text-center" data-name="telegram"><matcha-icon name="telegram" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">telegram</span></div>
375
+ <div class="background-surface border-radius-8 icon text-center" data-name="circle-tiktok"><matcha-icon name="circle-tiktok" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">circle-tiktok</span></div>
376
+ <div class="background-surface border-radius-8 icon text-center" data-name="tiktok"><matcha-icon name="tiktok" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">tiktok</span></div>
377
+ <div class="background-surface border-radius-8 icon text-center" data-name="circle-twitter"><matcha-icon name="circle-twitter" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">circle-twitter</span></div>
378
+ <div class="background-surface border-radius-8 icon text-center" data-name="twitter"><matcha-icon name="twitter" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">twitter</span></div>
379
+ <div class="background-surface border-radius-8 icon text-center" data-name="circle-whatsapp"><matcha-icon name="circle-whatsapp" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">circle-whatsapp</span></div>
380
+ <div class="background-surface border-radius-8 icon text-center" data-name="whatsapp"><matcha-icon name="whatsapp" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">whatsapp</span></div>
381
+ <div class="background-surface border-radius-8 icon text-center" data-name="circle-youtube"><matcha-icon name="circle-youtube" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">circle-youtube</span></div>
382
+ <div class="background-surface border-radius-8 icon text-center" data-name="youtube"><matcha-icon name="youtube" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">youtube</span></div>
383
+ <div class="background-surface border-radius-8 icon text-center" data-name="circle-share"><matcha-icon name="circle-share" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">circle-share</span></div>
384
+ <div class="background-surface border-radius-8 icon text-center" data-name="share1"><matcha-icon name="share1" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">share1</span></div>
385
+ <div class="background-surface border-radius-8 icon text-center" data-name="opened-lock"><matcha-icon name="opened-lock" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">opened-lock</span></div>
386
+ <div class="background-surface border-radius-8 icon text-center" data-name="flickr"><matcha-icon name="flickr" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">flickr</span></div>
387
+ <div class="background-surface border-radius-8 icon text-center" data-name="circle-flickr"><matcha-icon name="circle-flickr" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">circle-flickr</span></div>
388
+ <div class="background-surface border-radius-8 icon text-center" data-name="cookie"><matcha-icon name="cookie" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">cookie</span></div>
389
+ <div class="background-surface border-radius-8 icon text-center" data-name="cookie-out"><matcha-icon name="cookie-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">cookie-out</span></div>
390
+ <div class="background-surface border-radius-8 icon text-center" data-name="cookie-out-2"><matcha-icon name="cookie-out-2" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">cookie-out-2</span></div>
391
+ <div class="background-surface border-radius-8 icon text-center" data-name="emoji-happy"><matcha-icon name="emoji-happy" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">emoji-happy</span></div>
392
+ <div class="background-surface border-radius-8 icon text-center" data-name="emoji-happy-out"><matcha-icon name="emoji-happy-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">emoji-happy-out</span></div>
393
+ <div class="background-surface border-radius-8 icon text-center" data-name="emoji-prosperous"><matcha-icon name="emoji-prosperous" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">emoji-prosperous</span></div>
394
+ <div class="background-surface border-radius-8 icon text-center" data-name="emoji-prosperous-out"><matcha-icon name="emoji-prosperous-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">emoji-prosperous-out</span></div>
395
+ <div class="background-surface border-radius-8 icon text-center" data-name="emoji-blessed"><matcha-icon name="emoji-blessed" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">emoji-blessed</span></div>
396
+ <div class="background-surface border-radius-8 icon text-center" data-name="emoji-blessed-out"><matcha-icon name="emoji-blessed-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">emoji-blessed-out</span></div>
397
+ <div class="background-surface border-radius-8 icon text-center" data-name="emoji-sick"><matcha-icon name="emoji-sick" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">emoji-sick</span></div>
398
+ <div class="background-surface border-radius-8 icon text-center" data-name="emoji-sick-out"><matcha-icon name="emoji-sick-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">emoji-sick-out</span></div>
399
+ <div class="background-surface border-radius-8 icon text-center" data-name="emoji-alone"><matcha-icon name="emoji-alone" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">emoji-alone</span></div>
400
+ <div class="background-surface border-radius-8 icon text-center" data-name="emoji-alone-out"><matcha-icon name="emoji-alone-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">emoji-alone-out</span></div>
401
+ <div class="background-surface border-radius-8 icon text-center" data-name="emoji-sad"><matcha-icon name="emoji-sad" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">emoji-sad</span></div>
402
+ <div class="background-surface border-radius-8 icon text-center" data-name="emoji-sad-out"><matcha-icon name="emoji-sad-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">emoji-sad-out</span></div>
403
+ <div class="background-surface border-radius-8 icon text-center" data-name="emoji-faithless"><matcha-icon name="emoji-faithless" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">emoji-faithless</span></div>
404
+ <div class="background-surface border-radius-8 icon text-center" data-name="emoji-faithless-out"><matcha-icon name="emoji-faithless-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">emoji-faithless-out</span></div>
405
+ <div class="background-surface border-radius-8 icon text-center" data-name="emoji-careful"><matcha-icon name="emoji-careful" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">emoji-careful</span></div>
406
+ <div class="background-surface border-radius-8 icon text-center" data-name="emoji-careful-out"><matcha-icon name="emoji-careful-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">emoji-careful-out</span></div>
407
+ <div class="background-surface border-radius-8 icon text-center" data-name="emoji-distressed"><matcha-icon name="emoji-distressed" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">emoji-distressed</span></div>
408
+ <div class="background-surface border-radius-8 icon text-center" data-name="emoji-distressed-out"><matcha-icon name="emoji-distressed-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">emoji-distressed-out</span></div>
409
+ <div class="background-surface border-radius-8 icon text-center" data-name="rocket"><matcha-icon name="rocket" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">rocket</span></div>
410
+ <div class="background-surface border-radius-8 icon text-center" data-name="rocket-out"><matcha-icon name="rocket-out" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">rocket-out</span></div>
411
+ <div class="background-surface border-radius-8 icon text-center" data-name="flickr-02"><matcha-icon name="flickr-02" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">flickr-02</span></div>
412
+ <div class="background-surface border-radius-8 icon text-center" data-name="flickr-04"><matcha-icon name="flickr-04" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">flickr-04</span></div>
413
+ <div class="background-surface border-radius-8 icon text-center" data-name="nu"><matcha-icon name="nu" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">nu</span></div>
414
+ <div class="background-surface border-radius-8 icon text-center" data-name="bradesco"><matcha-icon name="bradesco" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">bradesco</span></div>
415
+ <div class="background-surface border-radius-8 icon text-center" data-name="santander"><matcha-icon name="santander" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">santander</span></div>
416
+ <div class="background-surface border-radius-8 icon text-center" data-name="bb"><matcha-icon name="bb" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">bb</span></div>
417
+ <div class="background-surface border-radius-8 icon text-center" data-name="c6-color"><matcha-icon name="c6-color" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">c6-color</span></div>
418
+ <div class="background-surface border-radius-8 icon text-center" data-name="itau"><matcha-icon name="itau" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">itau</span></div>
419
+ <div class="background-surface border-radius-8 icon text-center" data-name="caixa"><matcha-icon name="caixa" size="md" color="accent"></matcha-icon><span class="mt-8 five-lines-text par-p fs-12 text-bold">caixa</span></div>
420
+ </div>`,
421
+ }),
422
+ name: 'Icon List',
423
+ };