q2-tecton-elements 1.12.1 → 1.13.1

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 (219) hide show
  1. package/dist/cjs/click-elsewhere.cjs.entry.js +5 -7
  2. package/dist/cjs/{icons-9bd0febe.js → icons-08ffe5c9.js} +386 -386
  3. package/dist/cjs/{index-c2e53804.js → index-7febb200.js} +112 -65
  4. package/dist/cjs/{index-773c3eec.js → index-dd823ee6.js} +2 -2
  5. package/dist/cjs/loader.cjs.js +3 -3
  6. package/dist/cjs/q2-avatar.cjs.entry.js +2 -2
  7. package/dist/cjs/q2-badge.cjs.entry.js +43 -0
  8. package/dist/cjs/q2-btn_2.cjs.entry.js +13 -13
  9. package/dist/cjs/q2-calendar.cjs.entry.js +42 -59
  10. package/dist/cjs/q2-card.cjs.entry.js +43 -5
  11. package/dist/cjs/q2-carousel-pane.cjs.entry.js +5 -5
  12. package/dist/cjs/q2-carousel.cjs.entry.js +318 -106
  13. package/dist/cjs/q2-checkbox-group.cjs.entry.js +3 -3
  14. package/dist/cjs/q2-checkbox.cjs.entry.js +8 -11
  15. package/dist/cjs/q2-dropdown-item.cjs.entry.js +7 -7
  16. package/dist/cjs/q2-dropdown.cjs.entry.js +9 -18
  17. package/dist/cjs/q2-editable-field.cjs.entry.js +5 -8
  18. package/dist/cjs/q2-icon.cjs.entry.js +3 -3
  19. package/dist/cjs/q2-input.cjs.entry.js +431 -434
  20. package/dist/cjs/q2-loading-element.cjs.entry.js +3 -3
  21. package/dist/cjs/q2-loc.cjs.entry.js +2 -2
  22. package/dist/cjs/q2-message.cjs.entry.js +5 -5
  23. package/dist/cjs/q2-optgroup.cjs.entry.js +3 -3
  24. package/dist/cjs/q2-option-list.cjs.entry.js +5 -3
  25. package/dist/cjs/q2-option.cjs.entry.js +1 -1
  26. package/dist/cjs/q2-pagination.cjs.entry.js +6 -8
  27. package/dist/cjs/q2-pill.cjs.entry.js +9 -9
  28. package/dist/cjs/q2-radio-group.cjs.entry.js +4 -7
  29. package/dist/cjs/q2-radio.cjs.entry.js +2 -2
  30. package/dist/cjs/q2-section.cjs.entry.js +5 -7
  31. package/dist/cjs/q2-select.cjs.entry.js +17 -29
  32. package/dist/cjs/q2-stepper-pane.cjs.entry.js +42 -4
  33. package/dist/cjs/q2-stepper-vertical.cjs.entry.js +278 -0
  34. package/dist/cjs/q2-stepper.cjs.entry.js +10 -12
  35. package/dist/cjs/q2-tab-container.cjs.entry.js +8 -8
  36. package/dist/cjs/q2-tab-pane.cjs.entry.js +1 -1
  37. package/dist/cjs/q2-tag.cjs.entry.js +4 -4
  38. package/dist/cjs/q2-tecton-elements.cjs.js +3 -3
  39. package/dist/cjs/q2-textarea.cjs.entry.js +8 -8
  40. package/dist/cjs/{shapes-086c0365.js → shapes-305746b5.js} +9 -16
  41. package/dist/cjs/tecton-tab-pane.cjs.entry.js +2 -5
  42. package/dist/collection/collection-manifest.json +5 -3
  43. package/dist/collection/components/click-elsewhere/index.js +4 -6
  44. package/dist/collection/components/q2-badge/index.js +148 -0
  45. package/dist/collection/components/q2-badge/styles.css +134 -0
  46. package/dist/collection/components/q2-btn/index.js +14 -14
  47. package/dist/collection/components/q2-calendar/helpers.js +16 -20
  48. package/dist/collection/components/q2-calendar/index.js +21 -36
  49. package/dist/collection/components/q2-calendar/styles.css +1 -1
  50. package/dist/collection/components/q2-calendar/validation.js +4 -2
  51. package/dist/collection/components/q2-card/index.js +59 -2
  52. package/dist/collection/components/q2-card/styles.css +17 -1
  53. package/dist/collection/components/q2-carousel/index.js +11 -16
  54. package/dist/collection/components/q2-carousel/styles.css +3 -3
  55. package/dist/collection/components/q2-carousel-pane/index.js +2 -2
  56. package/dist/collection/components/q2-carousel-pane/styles.css +8 -3
  57. package/dist/collection/components/q2-checkbox/index.js +8 -11
  58. package/dist/collection/components/q2-checkbox/styles.css +1 -1
  59. package/dist/collection/components/q2-checkbox-group/index.js +1 -1
  60. package/dist/collection/components/q2-dropdown/index.js +6 -15
  61. package/dist/collection/components/q2-dropdown/styles.css +3 -3
  62. package/dist/collection/components/q2-dropdown-item/index.js +5 -5
  63. package/dist/collection/components/q2-editable-field/index.js +3 -6
  64. package/dist/collection/components/q2-icon/icons.js +385 -385
  65. package/dist/collection/components/q2-input/formatting/credit-card.js +15 -13
  66. package/dist/collection/components/q2-input/formatting/currency.js +162 -162
  67. package/dist/collection/components/q2-input/formatting/date.js +1 -1
  68. package/dist/collection/components/q2-input/formatting/generic.js +7 -8
  69. package/dist/collection/components/q2-input/formatting/number.js +6 -9
  70. package/dist/collection/components/q2-input/formatting/numeric.js +5 -5
  71. package/dist/collection/components/q2-input/formatting/phone.js +215 -215
  72. package/dist/collection/components/q2-input/formatting/postal.js +1 -1
  73. package/dist/collection/components/q2-input/index.js +20 -21
  74. package/dist/collection/components/q2-input/styles.css +19 -6
  75. package/dist/collection/components/q2-loading/index.js +4 -4
  76. package/dist/collection/components/q2-loading/skeleton/q2-loading-element/index.js +1 -1
  77. package/dist/collection/components/q2-loading/skeleton/shapes.js +8 -15
  78. package/dist/collection/components/q2-loading/styles.css +1 -1
  79. package/dist/collection/components/q2-message/index.js +3 -3
  80. package/dist/collection/components/q2-optgroup/index.js +1 -1
  81. package/dist/collection/components/q2-option-list/index.js +4 -2
  82. package/dist/collection/components/q2-pagination/index.js +4 -6
  83. package/dist/collection/components/q2-pill/index.js +8 -8
  84. package/dist/collection/components/q2-pill/styles.css +3 -1
  85. package/dist/collection/components/q2-radio-group/index.js +3 -6
  86. package/dist/collection/components/q2-section/index.js +5 -7
  87. package/dist/collection/components/q2-select/index.js +15 -27
  88. package/dist/collection/components/q2-select/styles.css +4 -4
  89. package/dist/collection/components/q2-stepper/index.js +8 -10
  90. package/dist/collection/components/q2-stepper/styles.css +3 -3
  91. package/dist/collection/components/q2-stepper-pane/index.js +133 -5
  92. package/dist/collection/components/q2-stepper-vertical/index.js +346 -0
  93. package/dist/collection/components/q2-stepper-vertical/styles.css +273 -0
  94. package/dist/collection/components/q2-tab-container/index.js +7 -7
  95. package/dist/collection/components/q2-tag/index.js +3 -3
  96. package/dist/collection/components/q2-textarea/index.js +6 -6
  97. package/dist/collection/components/tecton-tab-pane/index.js +3 -10
  98. package/dist/collection/utils/index.js +1 -1
  99. package/dist/esm/click-elsewhere.entry.js +5 -7
  100. package/dist/esm/{icons-6a143c2f.js → icons-b1e11526.js} +386 -386
  101. package/dist/esm/{index-fa32f694.js → index-0ff8de52.js} +2 -2
  102. package/dist/esm/{index-be8376c0.js → index-dbfb3ecc.js} +112 -65
  103. package/dist/esm/loader.js +3 -3
  104. package/dist/esm/polyfills/css-shim.js +1 -1
  105. package/dist/esm/q2-avatar.entry.js +2 -2
  106. package/dist/esm/q2-badge.entry.js +39 -0
  107. package/dist/esm/q2-btn_2.entry.js +13 -13
  108. package/dist/esm/q2-calendar.entry.js +42 -59
  109. package/dist/esm/q2-card.entry.js +43 -5
  110. package/dist/esm/q2-carousel-pane.entry.js +5 -5
  111. package/dist/esm/q2-carousel.entry.js +318 -106
  112. package/dist/esm/q2-checkbox-group.entry.js +3 -3
  113. package/dist/esm/q2-checkbox.entry.js +8 -11
  114. package/dist/esm/q2-dropdown-item.entry.js +7 -7
  115. package/dist/esm/q2-dropdown.entry.js +9 -18
  116. package/dist/esm/q2-editable-field.entry.js +5 -8
  117. package/dist/esm/q2-icon.entry.js +3 -3
  118. package/dist/esm/q2-input.entry.js +431 -434
  119. package/dist/esm/q2-loading-element.entry.js +3 -3
  120. package/dist/esm/q2-loc.entry.js +2 -2
  121. package/dist/esm/q2-message.entry.js +5 -5
  122. package/dist/esm/q2-optgroup.entry.js +3 -3
  123. package/dist/esm/q2-option-list.entry.js +5 -3
  124. package/dist/esm/q2-option.entry.js +1 -1
  125. package/dist/esm/q2-pagination.entry.js +6 -8
  126. package/dist/esm/q2-pill.entry.js +9 -9
  127. package/dist/esm/q2-radio-group.entry.js +4 -7
  128. package/dist/esm/q2-radio.entry.js +2 -2
  129. package/dist/esm/q2-section.entry.js +5 -7
  130. package/dist/esm/q2-select.entry.js +17 -29
  131. package/dist/esm/q2-stepper-pane.entry.js +42 -4
  132. package/dist/esm/q2-stepper-vertical.entry.js +274 -0
  133. package/dist/esm/q2-stepper.entry.js +10 -12
  134. package/dist/esm/q2-tab-container.entry.js +8 -8
  135. package/dist/esm/q2-tab-pane.entry.js +1 -1
  136. package/dist/esm/q2-tag.entry.js +4 -4
  137. package/dist/esm/q2-tecton-elements.js +3 -3
  138. package/dist/esm/q2-textarea.entry.js +8 -8
  139. package/dist/esm/{shapes-81c11dfe.js → shapes-cff4e1f0.js} +9 -16
  140. package/dist/esm/tecton-tab-pane.entry.js +2 -5
  141. package/dist/loader/index.d.ts +0 -1
  142. package/dist/q2-tecton-elements/{p-a0248299.entry.js → p-00e8f782.entry.js} +1 -1
  143. package/dist/q2-tecton-elements/p-0900bec1.entry.js +1 -0
  144. package/dist/q2-tecton-elements/{p-f98dc161.entry.js → p-10264ecb.entry.js} +1 -1
  145. package/dist/q2-tecton-elements/{p-0a7cff38.entry.js → p-1305ec5f.entry.js} +1 -1
  146. package/dist/q2-tecton-elements/p-148391d6.entry.js +1 -0
  147. package/dist/q2-tecton-elements/p-1dfaee64.entry.js +1 -0
  148. package/dist/q2-tecton-elements/{p-32ad664c.entry.js → p-221abbf6.entry.js} +1 -1
  149. package/dist/q2-tecton-elements/{p-c90a6016.js → p-255b2b4c.js} +1 -1
  150. package/dist/q2-tecton-elements/p-27736b6b.entry.js +1 -0
  151. package/dist/q2-tecton-elements/p-2846ab94.entry.js +1 -0
  152. package/dist/q2-tecton-elements/{p-167a19fd.entry.js → p-2bc1de01.entry.js} +1 -1
  153. package/dist/q2-tecton-elements/{p-8ea2c4f7.entry.js → p-2c15414c.entry.js} +1 -1
  154. package/dist/q2-tecton-elements/p-2caa89fd.js +1 -0
  155. package/dist/q2-tecton-elements/p-327cca41.entry.js +1 -0
  156. package/dist/q2-tecton-elements/{p-54f0d64e.entry.js → p-3a420dbf.entry.js} +1 -1
  157. package/dist/q2-tecton-elements/{p-c460e5ed.entry.js → p-3a64e5ce.entry.js} +1 -1
  158. package/dist/q2-tecton-elements/{p-aca8302b.entry.js → p-3abcb09d.entry.js} +1 -1
  159. package/dist/q2-tecton-elements/{p-08668234.entry.js → p-3fe98e3e.entry.js} +1 -1
  160. package/dist/q2-tecton-elements/{p-c5199147.entry.js → p-430a979b.entry.js} +1 -1
  161. package/dist/q2-tecton-elements/{p-fa9e3825.entry.js → p-45eb7739.entry.js} +1 -1
  162. package/dist/q2-tecton-elements/{p-750bcd33.entry.js → p-49b2abc4.entry.js} +1 -1
  163. package/dist/q2-tecton-elements/{p-d9bc6494.entry.js → p-4ab30466.entry.js} +1 -1
  164. package/dist/q2-tecton-elements/p-5bbf2bfe.entry.js +1 -0
  165. package/dist/q2-tecton-elements/p-6fec9235.entry.js +1 -0
  166. package/dist/q2-tecton-elements/{p-3c6f73cb.js → p-824aebd9.js} +1 -1
  167. package/dist/q2-tecton-elements/{p-91dba21f.entry.js → p-a4ae89cc.entry.js} +1 -1
  168. package/dist/q2-tecton-elements/{p-d3058002.entry.js → p-a5562aaa.entry.js} +1 -1
  169. package/dist/q2-tecton-elements/{p-5effd81a.entry.js → p-ae130f70.entry.js} +1 -1
  170. package/dist/q2-tecton-elements/p-b2302cd3.entry.js +1 -0
  171. package/dist/q2-tecton-elements/p-c20cbb2d.entry.js +1 -0
  172. package/dist/q2-tecton-elements/p-ca7a3380.entry.js +1 -0
  173. package/dist/q2-tecton-elements/{p-9a3c37ab.entry.js → p-d33e152c.entry.js} +1 -1
  174. package/dist/q2-tecton-elements/{p-9024859f.entry.js → p-d5218cd6.entry.js} +1 -1
  175. package/dist/q2-tecton-elements/{p-54300d2f.entry.js → p-d52b435e.entry.js} +1 -1
  176. package/dist/q2-tecton-elements/{p-c3d68d5c.js → p-dd02cf8d.js} +1 -1
  177. package/dist/q2-tecton-elements/{p-30bf5f44.entry.js → p-e0e7ae8b.entry.js} +1 -1
  178. package/dist/q2-tecton-elements/p-ede12fc1.entry.js +1 -0
  179. package/dist/q2-tecton-elements/{p-af202624.entry.js → p-fdfbe75b.entry.js} +1 -1
  180. package/dist/q2-tecton-elements/p-ffbded54.entry.js +1 -0
  181. package/dist/q2-tecton-elements/q2-tecton-elements.esm.js +1 -1
  182. package/dist/test/elements/q2-tag-test.js +6 -6
  183. package/dist/test/helpers.js +7 -7
  184. package/dist/types/components/q2-badge/index.d.ts +13 -0
  185. package/dist/types/components/q2-btn/index.d.ts +3 -3
  186. package/dist/types/components/q2-calendar/index.d.ts +1 -1
  187. package/dist/types/components/q2-calendar/validation.d.ts +1 -1
  188. package/dist/types/components/q2-card/index.d.ts +4 -0
  189. package/dist/types/components/q2-dropdown/index.d.ts +1 -1
  190. package/dist/types/components/q2-editable-field/index.d.ts +1 -1
  191. package/dist/types/components/q2-input/formatting/credit-card.d.ts +1 -3
  192. package/dist/types/components/q2-input/index.d.ts +2 -2
  193. package/dist/types/components/q2-option-list/index.d.ts +1 -1
  194. package/dist/types/components/q2-pill/index.d.ts +1 -1
  195. package/dist/types/components/q2-select/index.d.ts +1 -1
  196. package/dist/types/components/q2-stepper/index.d.ts +1 -1
  197. package/dist/types/components/q2-stepper-pane/index.d.ts +16 -1
  198. package/dist/types/components/q2-stepper-vertical/index.d.ts +52 -0
  199. package/dist/types/components/q2-tab-container/index.d.ts +1 -1
  200. package/dist/types/components/tecton-tab-pane/index.d.ts +2 -2
  201. package/dist/types/components.d.ts +63 -13
  202. package/dist/types/global.d.ts +1 -0
  203. package/dist/types/stencil-public-runtime.d.ts +6 -4
  204. package/dist/types/util.d.ts +2 -10
  205. package/dist/types/workspace/workspace/{tecton-production_release_1.12.x → tecton-production_release_1.13.x}/packages/q2-tecton-elements/.stencil/test/elements/q2-tag-test.d.ts +0 -0
  206. package/dist/types/workspace/workspace/{tecton-production_release_1.12.x → tecton-production_release_1.13.x}/packages/q2-tecton-elements/.stencil/test/helpers.d.ts +2 -2
  207. package/package.json +13 -13
  208. package/dist/q2-tecton-elements/p-080839ed.js +0 -1
  209. package/dist/q2-tecton-elements/p-2afdc922.entry.js +0 -1
  210. package/dist/q2-tecton-elements/p-34415315.entry.js +0 -1
  211. package/dist/q2-tecton-elements/p-5b906cf1.entry.js +0 -1
  212. package/dist/q2-tecton-elements/p-7ce98c1a.entry.js +0 -1
  213. package/dist/q2-tecton-elements/p-b9c2c1d3.entry.js +0 -1
  214. package/dist/q2-tecton-elements/p-c5e6f7fa.entry.js +0 -1
  215. package/dist/q2-tecton-elements/p-d65aaed2.entry.js +0 -1
  216. package/dist/q2-tecton-elements/p-df86f160.entry.js +0 -1
  217. package/dist/q2-tecton-elements/p-e38080d2.entry.js +0 -1
  218. package/dist/q2-tecton-elements/p-e9d69ba8.entry.js +0 -1
  219. package/dist/q2-tecton-elements/p-fe6407a4.entry.js +0 -1
@@ -1,18 +1,18 @@
1
- import { h } from './index-be8376c0.js';
1
+ import { h } from './index-dbfb3ecc.js';
2
2
 
3
3
  const icons = {
4
4
  a11y: {
5
5
  markup: () => (h("g", null,
6
6
  h("circle", { cx: "13.267", cy: "4.2", r: "2.2", class: "stroke-secondary filled" }),
7
- h("path", { d: "M22.377 8.6H4.157c-.583 0-1.106.428-1.153 1.009-.05.615.407 1.128.997 1.181l5.966.743v11.31c0 .583.427 1.106 1.008 1.153A1.096 1.096 0 0 0 12.156 23l.699-5.603a.415.415 0 0 1 .412-.364c.209 0 .386.156.412.364L14.377 23c.054.59.567 1.046 1.182.996.58-.047 1.008-.57 1.008-1.152v-11.31l5.965-.744a1.096 1.096 0 0 0 .998-1.181c-.047-.581-.57-1.009-1.153-1.009z", class: "stroke-primary" })))
7
+ h("path", { d: "M22.377 8.6H4.157c-.583 0-1.106.428-1.153 1.009-.05.615.407 1.128.997 1.181l5.966.743v11.31c0 .583.427 1.106 1.008 1.153A1.096 1.096 0 0 0 12.156 23l.699-5.603a.415.415 0 0 1 .412-.364c.209 0 .386.156.412.364L14.377 23c.054.59.567 1.046 1.182.996.58-.047 1.008-.57 1.008-1.152v-11.31l5.965-.744a1.096 1.096 0 0 0 .998-1.181c-.047-.581-.57-1.009-1.153-1.009z", class: "stroke-primary" }))),
8
8
  },
9
9
  add: {
10
10
  markup: () => (h("g", null,
11
11
  h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" }),
12
- h("path", { class: "stroke-secondary", d: "M8 13h10m-5-5v10" })))
12
+ h("path", { class: "stroke-secondary", d: "M8 13h10m-5-5v10" }))),
13
13
  },
14
14
  airplane: {
15
- markup: () => (h("path", { d: "M5.189 19.213L2.436 16.46c-1.584-1.584 1.316-.943 5.95-.444l2.011-3.61 2.097-2.097C8.694 7.816 5.258 5.17 4.115 4.3c.95-.95 2.344-1.397 3.727-1.257.922.094 4.105 2.17 7.616 4.3l3.318-3.317C20.374 2.43 21.44 1.363 23.57 2.43c1.066 2.131 0 3.197-1.598 4.795l-3.318 3.318c2.13 3.511 4.207 6.694 4.3 7.616.141 1.383-.306 2.777-1.256 3.727-.87-1.143-3.515-4.58-6.008-8.38l-2.097 2.098-3.61 2.011c.5 4.634 1.14 7.534-.444 5.95L6.787 20.81c-.833.372-2.096 1.102-2.398.8-.302-.302.428-1.565.8-2.398z", class: "stroke-primary" }))
15
+ markup: () => (h("path", { d: "M5.189 19.213L2.436 16.46c-1.584-1.584 1.316-.943 5.95-.444l2.011-3.61 2.097-2.097C8.694 7.816 5.258 5.17 4.115 4.3c.95-.95 2.344-1.397 3.727-1.257.922.094 4.105 2.17 7.616 4.3l3.318-3.317C20.374 2.43 21.44 1.363 23.57 2.43c1.066 2.131 0 3.197-1.598 4.795l-3.318 3.318c2.13 3.511 4.207 6.694 4.3 7.616.141 1.383-.306 2.777-1.256 3.727-.87-1.143-3.515-4.58-6.008-8.38l-2.097 2.098-3.61 2.011c.5 4.634 1.14 7.534-.444 5.95L6.787 20.81c-.833.372-2.096 1.102-2.398.8-.302-.302.428-1.565.8-2.398z", class: "stroke-primary" })),
16
16
  },
17
17
  'alarm-clock': {
18
18
  markup: () => (h("g", null,
@@ -22,7 +22,7 @@ const icons = {
22
22
  h("circle", { cx: "8.217", cy: "8.217", r: "8.217" }),
23
23
  h("path", { d: "M13.575 14.448l2.86 3.813" })),
24
24
  h("g", { class: "stroke-secondary" },
25
- h("path", { d: "M3 6.565L7.565 2m15.522 4.565L18.522 2" })))))
25
+ h("path", { d: "M3 6.565L7.565 2m15.522 4.565L18.522 2" }))))),
26
26
  },
27
27
  ambulance: {
28
28
  markup: () => (h("g", null,
@@ -33,7 +33,7 @@ const icons = {
33
33
  h("g", { class: "filled", transform: "translate(5.37 18.242)" },
34
34
  h("circle", { cx: "2.71", cy: "2.71", r: "2.71" }),
35
35
  h("circle", { cx: "13.548", cy: "2.71", r: "2.71" })),
36
- h("path", { d: "M10.112 10.791v4.064M8.08 12.823h4.065m-2.033-6.774V5.033a1.693 1.693 0 1 1 3.387 0v1.016" }))))
36
+ h("path", { d: "M10.112 10.791v4.064M8.08 12.823h4.065m-2.033-6.774V5.033a1.693 1.693 0 1 1 3.387 0v1.016" })))),
37
37
  },
38
38
  android: {
39
39
  markup: () => (h("g", null,
@@ -41,25 +41,25 @@ const icons = {
41
41
  h("path", { class: "stroke-primary", d: "M5.262 16.606a1.082 1.082 0 0 1-1.082-1.082v-5.049a1.081 1.081 0 1 1 2.164 0v5.05c0 .597-.484 1.081-1.082 1.081zm15.868 0a1.082 1.082 0 0 1-1.081-1.082v-5.049a1.082 1.082 0 0 1 2.164 0v5.05c0 .597-.485 1.081-1.082 1.081zM7.787 9.033h10.82m-.001 0a5.41 5.41 0 0 0-10.82 0v10.098H9.59v3.606a1.082 1.082 0 1 0 2.164 0v-3.606h2.885v3.606a1.082 1.082 0 1 0 2.164 0v-3.606h1.803V9.032z" }),
42
42
  h("g", { class: "stroke-secondary filled", transform: "translate(10.311 5.787)" },
43
43
  h("circle", { cx: ".721", cy: ".721", r: "1" }),
44
- h("circle", { cx: "5.049", cy: ".721", r: "1" }))))
44
+ h("circle", { cx: "5.049", cy: ".721", r: "1" })))),
45
45
  },
46
46
  apple: {
47
47
  markup: () => (h("g", null,
48
48
  h("path", { d: "M20.93 8.823c-2.433-1.906-5.168-.534-7.487-.534-2.318 0-5.055-1.372-7.487.534-2.232 1.749-2.973 7.056.038 11.746 2.888 4.5 5.801 2.974 7.45 2.974 1.648 0 4.56 1.526 7.45-2.974 3.01-4.69 2.269-9.997.037-11.746z", class: "stroke-primary" }),
49
49
  h("g", { class: "stroke-secondary" },
50
- h("path", { d: "M17.801 2v1.09c0 1.604-1.3 2.905-2.905 2.905v-1.09c0-1.603 1.3-2.905 2.905-2.905zm-4.363 6.29c0-2.035-1.508-4.565-3.627-5.2" }))))
50
+ h("path", { d: "M17.801 2v1.09c0 1.604-1.3 2.905-2.905 2.905v-1.09c0-1.603 1.3-2.905 2.905-2.905zm-4.363 6.29c0-2.035-1.508-4.565-3.627-5.2" })))),
51
51
  },
52
52
  'arrow-down': {
53
- markup: () => h("path", { class: "stroke-primary", d: "M13.5 3.5v20m7-7l-7 7-7-7" })
53
+ markup: () => (h("path", { class: "stroke-primary", d: "M13.5 3.5v20m7-7l-7 7-7-7" })),
54
54
  },
55
55
  'arrow-left': {
56
- markup: () => h("path", { class: "stroke-primary", d: "M22.5 13.5h-20m7 7l-7-7 7-7" })
56
+ markup: () => (h("path", { class: "stroke-primary", d: "M22.5 13.5h-20m7 7l-7-7 7-7" })),
57
57
  },
58
58
  'arrow-right': {
59
- markup: () => h("path", { class: "stroke-primary", d: "M3.5 13.5h20m-7-7l7 7-7 7" })
59
+ markup: () => (h("path", { class: "stroke-primary", d: "M3.5 13.5h20m-7-7l7 7-7 7" })),
60
60
  },
61
61
  'arrow-up': {
62
- markup: () => h("path", { class: "stroke-primary", d: "M13.5 23.5v-20m-7 7l7-7 7 7" })
62
+ markup: () => (h("path", { class: "stroke-primary", d: "M13.5 23.5v-20m-7 7l7-7 7 7" })),
63
63
  },
64
64
  atv: {
65
65
  markup: () => (h("g", null,
@@ -68,7 +68,7 @@ const icons = {
68
68
  h("circle", { cx: "16.484", cy: "3.548", r: "2.839" })),
69
69
  h("g", { class: "stroke-primary" },
70
70
  h("path", { d: "M18.838 10.226l2.556.215c-.236-.245-.787-.883-1.653-1.913-1.483-.134-2.476-.136-2.979-.005-.754.196-1.412 2.602-2.58 2.602-1.166 0-3.419-.803-4.15-1.368-.732-.565-3.335-.718-3.76-.718-.282 0-.426.467-.43 1.402" }),
71
- h("path", { d: "M23.606 13.614c-.585-.808-.983-1.25-1.195-1.33-.622-.232-4.3-.644-4.817-.358-.599.332-1.542 2.035-2.83 5.111l-2.143-.187c-1.255-2.993-2.166-4.711-2.731-5.156-.849-.668-3.88-1.447-4.807-1.209-.618.16-1.312.876-2.084 2.15M15 6c.497.13.971.245 1.423.348.451.102.894.762 1.328 1.979m-6.175 6.1l2.827.238" }))))
71
+ h("path", { d: "M23.606 13.614c-.585-.808-.983-1.25-1.195-1.33-.622-.232-4.3-.644-4.817-.358-.599.332-1.542 2.035-2.83 5.111l-2.143-.187c-1.255-2.993-2.166-4.711-2.731-5.156-.849-.668-3.88-1.447-4.807-1.209-.618.16-1.312.876-2.084 2.15M15 6c.497.13.971.245 1.423.348.451.102.894.762 1.328 1.979m-6.175 6.1l2.827.238" })))),
72
72
  },
73
73
  backpack: {
74
74
  markup: () => (h("g", null,
@@ -76,55 +76,55 @@ const icons = {
76
76
  h("path", { d: "M20.807 23.645H5.194V10.161a4.258 4.258 0 0 1 4.258-4.258h7.097a4.258 4.258 0 0 1 4.258 4.258v13.484z" }),
77
77
  h("path", { d: "M5.194 16.548a2.839 2.839 0 0 0-2.839 2.839v4.258h2.839m15.613-7.097a2.839 2.839 0 0 1 2.838 2.839v4.258h-2.838M5.194 13.709h15.613" })),
78
78
  h("g", { class: "stroke-secondary" },
79
- h("path", { d: "M9.452 7.323v-1.42a3.549 3.549 0 0 1 3.547-3.548 3.549 3.549 0 0 1 3.548 3.548v1.42m-8.515 9.935h2.839m4.258 0h2.838m-8.516-5.677v7.097m7.097-7.097v7.097" }))))
79
+ h("path", { d: "M9.452 7.323v-1.42a3.549 3.549 0 0 1 3.547-3.548 3.549 3.549 0 0 1 3.548 3.548v1.42m-8.515 9.935h2.839m4.258 0h2.838m-8.516-5.677v7.097m7.097-7.097v7.097" })))),
80
80
  },
81
81
  bank: {
82
82
  markup: () => (h("g", null,
83
83
  h("path", { class: "stroke-secondary", d: "M4.344 20.574V12.64m11.541 7.934V12.64m-5.771 7.934V12.64m11.541 0v7.934" }),
84
84
  h("circle", { cx: "13", cy: "7", r: "2", class: "stroke-primary filled" }),
85
- h("path", { class: "stroke-primary", d: "M2 20.574h22v2.885H2zM13 2L2 7.913V10.5h22V7.913z" })))
85
+ h("path", { class: "stroke-primary", d: "M2 20.574h22v2.885H2zM13 2L2 7.913V10.5h22V7.913z" }))),
86
86
  },
87
87
  barchart: {
88
88
  markup: () => (h("g", null,
89
89
  h("path", { d: "M10.433 3h5.133v19.067h-5.133z", class: "stroke-secondary filled" }),
90
- h("path", { class: "stroke-primary", d: "M2 16.2h5.133v5.867H2zm16.867-5.867H24v11.733h-5.133z" })))
90
+ h("path", { class: "stroke-primary", d: "M2 16.2h5.133v5.867H2zm16.867-5.867H24v11.733h-5.133z" }))),
91
91
  },
92
92
  'barchart-trend': {
93
93
  markup: () => (h("g", null,
94
94
  h("path", { class: "stroke-primary filled", d: "M2 18.867h5v4.4H2zm8.433-4.4h5v8.8h-5zm8.434-4.4h5v13.2h-5z" }),
95
95
  h("g", { class: "stroke-secondary" },
96
96
  h("path", { d: "M4.933 10.8l4.4-4.4L13 10.067 21.066 2" }),
97
- h("path", { d: "M15.933 2h5.133v5.133" }))))
97
+ h("path", { d: "M15.933 2h5.133v5.133" })))),
98
98
  },
99
99
  bell: {
100
100
  markup: () => (h("g", null,
101
101
  h("path", { d: "M10.297 20.883v.11A3.02 3.02 0 0 0 13.303 24a3.02 3.02 0 0 0 3.007-3.007v-.11", class: "stroke-secondary filled" }),
102
- h("path", { d: "M20.6 12.267V9.26C20.6 5.373 17.19 2 13.267 2 9.343 2 5.933 5.41 5.933 9.333v2.934c0 3.336-2.676 3.85-2.676 5.72 0 1.686 3.85 3.006 10.01 3.006s10.01-1.32 10.01-3.006c0-1.87-2.677-2.384-2.677-5.72z", class: "stroke-primary" })))
102
+ h("path", { d: "M20.6 12.267V9.26C20.6 5.373 17.19 2 13.267 2 9.343 2 5.933 5.41 5.933 9.333v2.934c0 3.336-2.676 3.85-2.676 5.72 0 1.686 3.85 3.006 10.01 3.006s10.01-1.32 10.01-3.006c0-1.87-2.677-2.384-2.677-5.72z", class: "stroke-primary" }))),
103
103
  },
104
104
  bicycle: {
105
105
  markup: () => (h("g", null,
106
106
  h("g", { class: "stroke-primary", transform: "translate(2 12.861)" },
107
107
  h("ellipse", { cx: "4.4", cy: "4.431", rx: "4.4", ry: "4.431" }),
108
108
  h("ellipse", { cx: "17.6", cy: "4.431", rx: "4.4", ry: "4.431" })),
109
- h("path", { class: "stroke-secondary", d: "M12.267 4h2.552a1.47 1.47 0 0 1 1.413 1.081l3.368 12.21M5.667 7.692H8.6l2.567 3.692m6.422-1.383L6.4 17.291" })))
109
+ h("path", { class: "stroke-secondary", d: "M12.267 4h2.552a1.47 1.47 0 0 1 1.413 1.081l3.368 12.21M5.667 7.692H8.6l2.567 3.692m6.422-1.383L6.4 17.291" }))),
110
110
  },
111
111
  'brand-autobooks-color': {
112
112
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
113
- h("path", { fill: "#FF6C0E", "fill-rule": "nonzero", d: "M19.538 8.008a5.633 5.633 0 0 0-3.55 1.152.455.455 0 0 1-.59-.037L14.257 8h-2.992l.477.469 2.339 2.293c.836.829 2.179.89 3.09.14a3.492 3.492 0 0 1 2.169-.802 3.49 3.49 0 0 1 3.082 1.658c.647 1.06.66 2.38.037 3.453a3.487 3.487 0 0 1-3.047 1.72 3.492 3.492 0 0 1-2.343-.908 3.301 3.301 0 0 1-.215-.21l-2.997-2.94L10.61 9.68c-2.094-2.129-5.528-2.243-7.764-.259a5.43 5.43 0 0 0-.53 7.62c1.94 2.265 5.358 2.611 7.728.782a.453.453 0 0 1 .596.033l1.164 1.142h2.993l-1.751-1.714-1.089-1.068a2.33 2.33 0 0 0-3.118-.111 3.518 3.518 0 0 1-4.78-.257 3.374 3.374 0 0 1 .017-4.706 3.518 3.518 0 0 1 4.781-.225c.126.109.244.226.353.35l2.938 2.87 3.305 3.25a5.663 5.663 0 0 0 6.714.898c2.188-1.219 3.279-3.725 2.664-6.123-.614-2.398-2.782-4.097-5.297-4.152l.005-.002z" })))
113
+ h("path", { fill: "#FF6C0E", "fill-rule": "nonzero", d: "M19.538 8.008a5.633 5.633 0 0 0-3.55 1.152.455.455 0 0 1-.59-.037L14.257 8h-2.992l.477.469 2.339 2.293c.836.829 2.179.89 3.09.14a3.492 3.492 0 0 1 2.169-.802 3.49 3.49 0 0 1 3.082 1.658c.647 1.06.66 2.38.037 3.453a3.487 3.487 0 0 1-3.047 1.72 3.492 3.492 0 0 1-2.343-.908 3.301 3.301 0 0 1-.215-.21l-2.997-2.94L10.61 9.68c-2.094-2.129-5.528-2.243-7.764-.259a5.43 5.43 0 0 0-.53 7.62c1.94 2.265 5.358 2.611 7.728.782a.453.453 0 0 1 .596.033l1.164 1.142h2.993l-1.751-1.714-1.089-1.068a2.33 2.33 0 0 0-3.118-.111 3.518 3.518 0 0 1-4.78-.257 3.374 3.374 0 0 1 .017-4.706 3.518 3.518 0 0 1 4.781-.225c.126.109.244.226.353.35l2.938 2.87 3.305 3.25a5.663 5.663 0 0 0 6.714.898c2.188-1.219 3.279-3.725 2.664-6.123-.614-2.398-2.782-4.097-5.297-4.152l.005-.002z" }))),
114
114
  },
115
115
  'brand-autobooks-filled': {
116
116
  markup: () => (h("g", null,
117
- h("path", { d: "M19.538 8.008a5.633 5.633 0 0 0-3.55 1.152.455.455 0 0 1-.59-.037L14.257 8h-2.992l.477.469 2.339 2.293c.836.829 2.179.89 3.09.14a3.492 3.492 0 0 1 2.169-.802 3.49 3.49 0 0 1 3.082 1.658c.647 1.06.66 2.38.037 3.453a3.487 3.487 0 0 1-3.047 1.72 3.492 3.492 0 0 1-2.343-.908 3.301 3.301 0 0 1-.215-.21l-2.997-2.94L10.61 9.68c-2.094-2.129-5.528-2.243-7.764-.259a5.43 5.43 0 0 0-.53 7.62c1.94 2.265 5.358 2.611 7.728.782a.453.453 0 0 1 .596.033l1.164 1.142h2.993l-1.751-1.714-1.089-1.068a2.33 2.33 0 0 0-3.118-.111 3.518 3.518 0 0 1-4.78-.257 3.374 3.374 0 0 1 .017-4.706 3.518 3.518 0 0 1 4.781-.225c.126.109.244.226.353.35l2.938 2.87 3.305 3.25a5.663 5.663 0 0 0 6.714.898c2.188-1.219 3.279-3.725 2.664-6.123-.614-2.398-2.782-4.097-5.297-4.152l.005-.002z", class: "filled" })))
117
+ h("path", { d: "M19.538 8.008a5.633 5.633 0 0 0-3.55 1.152.455.455 0 0 1-.59-.037L14.257 8h-2.992l.477.469 2.339 2.293c.836.829 2.179.89 3.09.14a3.492 3.492 0 0 1 2.169-.802 3.49 3.49 0 0 1 3.082 1.658c.647 1.06.66 2.38.037 3.453a3.487 3.487 0 0 1-3.047 1.72 3.492 3.492 0 0 1-2.343-.908 3.301 3.301 0 0 1-.215-.21l-2.997-2.94L10.61 9.68c-2.094-2.129-5.528-2.243-7.764-.259a5.43 5.43 0 0 0-.53 7.62c1.94 2.265 5.358 2.611 7.728.782a.453.453 0 0 1 .596.033l1.164 1.142h2.993l-1.751-1.714-1.089-1.068a2.33 2.33 0 0 0-3.118-.111 3.518 3.518 0 0 1-4.78-.257 3.374 3.374 0 0 1 .017-4.706 3.518 3.518 0 0 1 4.781-.225c.126.109.244.226.353.35l2.938 2.87 3.305 3.25a5.663 5.663 0 0 0 6.714.898c2.188-1.219 3.279-3.725 2.664-6.123-.614-2.398-2.782-4.097-5.297-4.152l.005-.002z", class: "filled" }))),
118
118
  },
119
119
  'brand-facebook-color': {
120
120
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
121
121
  h("g", { "fill-rule": "nonzero" },
122
122
  h("path", { fill: "#39579A", d: "M23.083 24c.507 0 .917-.41.917-.917V2.917A.917.917 0 0 0 23.083 2H2.917A.917.917 0 0 0 2 2.917v20.166c0 .507.41.917.917.917h20.166z" }),
123
- h("path", { fill: "#FFF", d: "M13.696 24v-8.708h-2.988v-3.209h2.988V9.712c0-2.842 1.736-4.39 4.27-4.39 1.215 0 2.258.091 2.563.132v2.97H18.77c-1.38 0-1.646.655-1.646 1.616v2.043h3.208l-.458 3.209h-2.75V24h-3.429z" }))))
123
+ h("path", { fill: "#FFF", d: "M13.696 24v-8.708h-2.988v-3.209h2.988V9.712c0-2.842 1.736-4.39 4.27-4.39 1.215 0 2.258.091 2.563.132v2.97H18.77c-1.38 0-1.646.655-1.646 1.616v2.043h3.208l-.458 3.209h-2.75V24h-3.429z" })))),
124
124
  },
125
125
  'brand-facebook-filled': {
126
126
  markup: () => (h("g", null,
127
- h("path", { d: "M17.125 24v-8.708h2.75l.458-3.209h-3.208V10.04c0-.96.267-1.616 1.646-1.616h1.758v-2.97a23.637 23.637 0 0 0-2.562-.131c-2.535 0-4.27 1.547-4.27 4.389v2.371h-2.989v3.209h2.988V24H2.916A.917.917 0 0 1 2 23.083V2.917C2 2.41 2.41 2 2.917 2h20.166c.507 0 .917.41.917.917v20.166c0 .507-.41.917-.917.917h-5.958z", class: "filled" })))
127
+ h("path", { d: "M17.125 24v-8.708h2.75l.458-3.209h-3.208V10.04c0-.96.267-1.616 1.646-1.616h1.758v-2.97a23.637 23.637 0 0 0-2.562-.131c-2.535 0-4.27 1.547-4.27 4.389v2.371h-2.989v3.209h2.988V24H2.916A.917.917 0 0 1 2 23.083V2.917C2 2.41 2.41 2 2.917 2h20.166c.507 0 .917.41.917.917v20.166c0 .507-.41.917-.917.917h-5.958z", class: "filled" }))),
128
128
  },
129
129
  'brand-instagram-color': {
130
130
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
@@ -137,87 +137,87 @@ const icons = {
137
137
  h("rect", { width: "22", height: "22", x: "2", y: "2", fill: "url(#instagram-color-a)", rx: "5" }),
138
138
  h("path", { fill: "#FFF", "fill-rule": "nonzero", d: "M13 6.441c2.136 0 2.389.008 3.233.047.91.041 1.755.224 2.405.874.65.65.832 1.495.874 2.405.038.844.046 1.097.046 3.233s-.008 2.389-.046 3.233c-.041.91-.224 1.755-.874 2.405-.65.65-1.495.832-2.405.874-.844.038-1.097.046-3.233.046s-2.389-.008-3.232-.046c-.911-.041-1.756-.224-2.406-.874-.65-.65-.833-1.495-.874-2.405-.039-.844-.047-1.097-.047-3.233s.008-2.389.047-3.232c.041-.911.224-1.756.874-2.406.65-.65 1.495-.833 2.405-.874.844-.039 1.097-.047 3.233-.047zM13 5c-2.172 0-2.445.009-3.299.048-1.3.06-2.442.378-3.359 1.295C5.426 7.259 5.109 8.4 5.049 9.7 5.009 10.555 5 10.829 5 13c0 2.172.009 2.445.048 3.299.06 1.3.378 2.442 1.295 3.358.916.917 2.058 1.235 3.358 1.295.854.039 1.127.048 3.299.048 2.172 0 2.445-.009 3.299-.048 1.3-.06 2.442-.378 3.358-1.295.917-.916 1.235-2.058 1.295-3.358.039-.854.048-1.127.048-3.299 0-2.172-.009-2.445-.048-3.299-.06-1.3-.378-2.442-1.295-3.359-.916-.916-2.058-1.234-3.358-1.294C15.445 5.009 15.171 5 13 5z" }),
139
139
  h("path", { fill: "#FFF", "fill-rule": "nonzero", d: "M13 9a4 4 0 1 0 0 8 4 4 0 0 0 0-8zm0 6.596a2.596 2.596 0 1 1 0-5.192 2.596 2.596 0 0 1 0 5.192z" }),
140
- h("circle", { cx: "17.25", cy: "8.75", r: "1", fill: "#FFF", "fill-rule": "nonzero" })))
140
+ h("circle", { cx: "17.25", cy: "8.75", r: "1", fill: "#FFF", "fill-rule": "nonzero" }))),
141
141
  },
142
142
  'brand-instagram-filled': {
143
143
  markup: () => (h("g", null,
144
144
  h("g", { class: "filled", transform: "translate(2 2)" },
145
145
  h("path", { d: "M11 1.982c2.937 0 3.285.01 4.445.064 1.252.057 2.413.308 3.307 1.202.894.893 1.145 2.055 1.202 3.307.053 1.16.064 1.508.064 4.445 0 2.937-.01 3.285-.064 4.445-.057 1.252-.308 2.413-1.202 3.307-.893.894-2.055 1.145-3.307 1.202-1.16.053-1.508.064-4.445.064-2.937 0-3.285-.01-4.445-.064-1.252-.057-2.413-.308-3.307-1.202-.894-.893-1.145-2.055-1.202-3.307-.053-1.16-.064-1.508-.064-4.445 0-2.937.01-3.285.064-4.445.057-1.252.308-2.413 1.202-3.307.893-.894 2.055-1.145 3.307-1.202 1.16-.053 1.508-.064 4.445-.064zM11 0C8.013 0 7.638.013 6.464.066c-1.787.082-3.357.52-4.618 1.78C.586 3.106.148 4.676.066 6.464.013 7.638 0 8.013 0 11c0 2.987.013 3.362.066 4.536.082 1.787.52 3.357 1.78 4.618 1.26 1.26 2.83 1.698 4.618 1.78C7.638 21.987 8.013 22 11 22c2.987 0 3.362-.013 4.536-.066 1.787-.082 3.357-.52 4.618-1.78 1.26-1.26 1.698-2.83 1.78-4.618.053-1.174.066-1.549.066-4.536 0-2.987-.013-3.362-.066-4.536-.082-1.787-.52-3.357-1.78-4.618-1.26-1.26-2.83-1.698-4.618-1.78C14.362.013 13.987 0 11 0z" }),
146
146
  h("path", { d: "M11 5.351a5.649 5.649 0 1 0 0 11.298A5.649 5.649 0 0 0 11 5.35zm0 9.316a3.667 3.667 0 1 1 0-7.334 3.667 3.667 0 0 1 0 7.334z" }),
147
- h("circle", { cx: "16.872", cy: "5.128", r: "1.32" }))))
147
+ h("circle", { cx: "16.872", cy: "5.128", r: "1.32" })))),
148
148
  },
149
149
  'brand-linkedin-color': {
150
150
  markup: () => (h("g", { fill: "none" },
151
151
  h("path", { fill: "#007BB5", d: "M23.083 2H2.917C2.367 2 2 2.367 2 2.917v20.166c0 .55.367.917.917.917h20.166c.55 0 .917-.367.917-.917V2.917c0-.55-.367-.917-.917-.917z" }),
152
- h("path", { fill: "#FFF", d: "M8.508 20.792H5.3V10.25h3.3v10.542zM6.858 8.783c-1.008 0-1.925-.825-1.925-1.925 0-1.008.825-1.925 1.925-1.925 1.009 0 1.925.825 1.925 1.925s-.825 1.925-1.925 1.925zm13.934 12.009h-3.3v-5.134c0-1.191 0-2.75-1.65-2.75-1.742 0-1.925 1.284-1.925 2.659v5.225h-3.3V10.25h3.116v1.467c.459-.825 1.467-1.65 3.117-1.65 3.3 0 3.942 2.2 3.942 5.041v5.684z" })))
152
+ h("path", { fill: "#FFF", d: "M8.508 20.792H5.3V10.25h3.3v10.542zM6.858 8.783c-1.008 0-1.925-.825-1.925-1.925 0-1.008.825-1.925 1.925-1.925 1.009 0 1.925.825 1.925 1.925s-.825 1.925-1.925 1.925zm13.934 12.009h-3.3v-5.134c0-1.191 0-2.75-1.65-2.75-1.742 0-1.925 1.284-1.925 2.659v5.225h-3.3V10.25h3.116v1.467c.459-.825 1.467-1.65 3.117-1.65 3.3 0 3.942 2.2 3.942 5.041v5.684z" }))),
153
153
  },
154
154
  'brand-linkedin-filled': {
155
155
  markup: () => (h("g", null,
156
- h("path", { d: "M23.083 2H2.917C2.367 2 2 2.367 2 2.917v20.166c0 .55.367.917.917.917h20.166c.55 0 .917-.367.917-.917V2.917c0-.55-.367-.917-.917-.917zM8.508 20.792H5.3V10.25h3.3v10.542h-.092zM6.858 8.783c-1.008 0-1.925-.825-1.925-1.925 0-1.008.825-1.925 1.925-1.925 1.009 0 1.925.825 1.925 1.925s-.825 1.925-1.925 1.925zm13.934 12.009h-3.3v-5.134c0-1.191 0-2.75-1.65-2.75-1.742 0-1.925 1.284-1.925 2.659v5.225h-3.3V10.25h3.116v1.467c.459-.825 1.467-1.65 3.117-1.65 3.3 0 3.942 2.2 3.942 5.041v5.684z", class: "filled" })))
156
+ h("path", { d: "M23.083 2H2.917C2.367 2 2 2.367 2 2.917v20.166c0 .55.367.917.917.917h20.166c.55 0 .917-.367.917-.917V2.917c0-.55-.367-.917-.917-.917zM8.508 20.792H5.3V10.25h3.3v10.542h-.092zM6.858 8.783c-1.008 0-1.925-.825-1.925-1.925 0-1.008.825-1.925 1.925-1.925 1.009 0 1.925.825 1.925 1.925s-.825 1.925-1.925 1.925zm13.934 12.009h-3.3v-5.134c0-1.191 0-2.75-1.65-2.75-1.742 0-1.925 1.284-1.925 2.659v5.225h-3.3V10.25h3.116v1.467c.459-.825 1.467-1.65 3.117-1.65 3.3 0 3.942 2.2 3.942 5.041v5.684z", class: "filled" }))),
157
157
  },
158
158
  'brand-messenger-color': {
159
159
  markup: () => (h("g", { fill: "none" },
160
160
  h("path", { fill: "#0086FF", d: "M13 2C6.986 2 2.11 6.559 2.11 12.182c0 3.2 1.579 6.054 4.046 7.92V24l3.716-2.062c.991.278 2.04.427 3.128.427 6.014 0 10.89-4.559 10.89-10.183C23.89 6.56 19.013 2 13 2z" }),
161
- h("path", { fill: "#FFF", d: "M14.147 15.655l-2.816-2.926-5.424 2.999 5.946-6.31 2.816 2.926 5.424-3z" })))
161
+ h("path", { fill: "#FFF", d: "M14.147 15.655l-2.816-2.926-5.424 2.999 5.946-6.31 2.816 2.926 5.424-3z" }))),
162
162
  },
163
163
  'brand-messenger-filled': {
164
164
  markup: () => (h("g", null,
165
- h("path", { d: "M13 2C6.986 2 2.11 6.559 2.11 12.182c0 3.2 1.579 6.054 4.046 7.92V24l3.716-2.062c.991.278 2.04.427 3.128.427 6.014 0 10.89-4.559 10.89-10.183C23.89 6.56 19.013 2 13 2zm1.147 13.655l-2.816-2.926-5.424 2.999 5.946-6.31 2.816 2.926 5.424-3-5.946 6.31z", class: "filled" })))
165
+ h("path", { d: "M13 2C6.986 2 2.11 6.559 2.11 12.182c0 3.2 1.579 6.054 4.046 7.92V24l3.716-2.062c.991.278 2.04.427 3.128.427 6.014 0 10.89-4.559 10.89-10.183C23.89 6.56 19.013 2 13 2zm1.147 13.655l-2.816-2.926-5.424 2.999 5.946-6.31 2.816 2.926 5.424-3-5.946 6.31z", class: "filled" }))),
166
166
  },
167
167
  'brand-payrecs-color': {
168
168
  markup: () => (h("g", { "fill-rule": "evenodd" },
169
169
  h("path", { fill: "#194879", d: "M9.27-347v-6.29h3.17c1.99 0 3.27.01 3.43.02.97.06 1.8.25 2.55.59 1.21.55 2.08 1.53 2.43 2.74.27.96.25 2.09-.06 2.99-.03.1-.12.3-.19.43-.38.78-1 1.42-1.81 1.86-.07.04-.12.07-.12.08 0 0 .59.88 1.31 1.93.72 1.06 1.31 1.93 1.31 1.94s-1.02.01-2.25.01h-2.25l-1.07-1.58-1.07-1.58H13.5v3.16H9.27v-6.3zm6.01-.08c.36-.03.64-.1.86-.23.06-.03.17-.12.25-.21.13-.13.16-.17.23-.31.09-.19.12-.3.15-.53.04-.38-.04-.77-.22-1.05-.17-.26-.39-.42-.72-.52-.29-.09-.32-.09-1.36-.1l-.96-.01v2.96h.79c.43.02.87.01.98 0z", transform: "translate(4 360)" }),
170
- h("path", { fill: "#508dca", d: "M-3.3-383v-6.29h3.14c1.86 0 3.25.01 3.41.02 2.48.14 4.21 1.18 4.92 2.97.37.93.42 2.14.13 3.15-.27.92-.86 1.75-1.64 2.29-.67.47-1.49.79-2.44.94-.59.1-.96.12-2.25.12H.92v3.1H-3.3v-6.3zm6.26-.1c.48-.09.81-.28 1.02-.6.17-.25.23-.5.21-.91-.01-.3-.03-.44-.13-.63-.22-.47-.63-.71-1.31-.77-.1-.01-.55-.02-1.01-.02H.92v2.96l.95-.01c.8.01.96 0 1.09-.02z", transform: "translate(4 396)" })))
170
+ h("path", { fill: "#508dca", d: "M-3.3-383v-6.29h3.14c1.86 0 3.25.01 3.41.02 2.48.14 4.21 1.18 4.92 2.97.37.93.42 2.14.13 3.15-.27.92-.86 1.75-1.64 2.29-.67.47-1.49.79-2.44.94-.59.1-.96.12-2.25.12H.92v3.1H-3.3v-6.3zm6.26-.1c.48-.09.81-.28 1.02-.6.17-.25.23-.5.21-.91-.01-.3-.03-.44-.13-.63-.22-.47-.63-.71-1.31-.77-.1-.01-.55-.02-1.01-.02H.92v2.96l.95-.01c.8.01.96 0 1.09-.02z", transform: "translate(4 396)" }))),
171
171
  },
172
172
  'brand-payrecs-filled': {
173
173
  markup: () => (h("g", { class: "filled" },
174
174
  h("path", { d: "M9.27-347v-6.29h3.17c1.99 0 3.27.01 3.43.02.97.06 1.8.25 2.55.59 1.21.55 2.08 1.53 2.43 2.74.27.96.25 2.09-.06 2.99-.03.1-.12.3-.19.43-.38.78-1 1.42-1.81 1.86-.07.04-.12.07-.12.08 0 0 .59.88 1.31 1.93.72 1.06 1.31 1.93 1.31 1.94s-1.02.01-2.25.01h-2.25l-1.07-1.58-1.07-1.58H13.5v3.16H9.27v-6.3zm6.01-.08c.36-.03.64-.1.86-.23.06-.03.17-.12.25-.21.13-.13.16-.17.23-.31.09-.19.12-.3.15-.53.04-.38-.04-.77-.22-1.05-.17-.26-.39-.42-.72-.52-.29-.09-.32-.09-1.36-.1l-.96-.01v2.96h.79c.43.02.87.01.98 0z", transform: "translate(4 360)" }),
175
- h("path", { d: "M-3.3-383v-6.29h3.14c1.86 0 3.25.01 3.41.02 2.48.14 4.21 1.18 4.92 2.97.37.93.42 2.14.13 3.15-.27.92-.86 1.75-1.64 2.29-.67.47-1.49.79-2.44.94-.59.1-.96.12-2.25.12H.92v3.1H-3.3v-6.3zm6.26-.1c.48-.09.81-.28 1.02-.6.17-.25.23-.5.21-.91-.01-.3-.03-.44-.13-.63-.22-.47-.63-.71-1.31-.77-.1-.01-.55-.02-1.01-.02H.92v2.96l.95-.01c.8.01.96 0 1.09-.02z", transform: "translate(4 396)" })))
175
+ h("path", { d: "M-3.3-383v-6.29h3.14c1.86 0 3.25.01 3.41.02 2.48.14 4.21 1.18 4.92 2.97.37.93.42 2.14.13 3.15-.27.92-.86 1.75-1.64 2.29-.67.47-1.49.79-2.44.94-.59.1-.96.12-2.25.12H.92v3.1H-3.3v-6.3zm6.26-.1c.48-.09.81-.28 1.02-.6.17-.25.23-.5.21-.91-.01-.3-.03-.44-.13-.63-.22-.47-.63-.71-1.31-.77-.1-.01-.55-.02-1.01-.02H.92v2.96l.95-.01c.8.01.96 0 1.09-.02z", transform: "translate(4 396)" }))),
176
176
  },
177
177
  'brand-snapchat-color': {
178
178
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
179
179
  h("g", null,
180
180
  h("path", { fill: "#FFFC00", "fill-rule": "nonzero", d: "M5.505 2h14.99A3.505 3.505 0 0 1 24 5.506v14.988A3.505 3.505 0 0 1 20.494 24H5.506A3.506 3.506 0 0 1 2 20.494V5.505A3.506 3.506 0 0 1 5.506 2z" }),
181
181
  h("path", { fill: "#FFF", "fill-rule": "nonzero", d: "M13.081 20.564c-.042 0-.082 0-.123-.003-.027 0-.053.003-.081.003a3.526 3.526 0 0 1-2.16-.85 3.159 3.159 0 0 0-1.25-.638 4.063 4.063 0 0 0-1.566.044 1.985 1.985 0 0 1-.339.05.214.214 0 0 1-.237-.17 5.308 5.308 0 0 1-.09-.373c-.069-.31-.117-.5-.247-.521-1.514-.234-1.947-.553-2.044-.779a.29.29 0 0 1-.023-.097.17.17 0 0 1 .142-.178c2.328-.383 3.373-2.763 3.416-2.864l.003-.008a.886.886 0 0 0 .083-.745c-.159-.376-.68-.542-1.025-.65-.085-.026-.165-.05-.228-.076-.688-.273-.745-.55-.718-.694a.65.65 0 0 1 .632-.412.45.45 0 0 1 .189.038c.257.132.54.206.829.218a.685.685 0 0 0 .496-.158 46.673 46.673 0 0 0-.03-.492c-.069-1.1-.155-2.468.193-3.25a4.21 4.21 0 0 1 3.91-2.521l.286-.003h.039a4.219 4.219 0 0 1 3.917 2.523c.35.781.262 2.15.193 3.25v.05c-.01.153-.02.3-.027.445a.665.665 0 0 0 .45.157c.272-.02.537-.094.781-.218a.587.587 0 0 1 .243-.047.74.74 0 0 1 .279.053h.005a.514.514 0 0 1 .39.418c.004.161-.12.403-.723.642-.063.025-.143.05-.228.077-.345.11-.866.275-1.025.65a.885.885 0 0 0 .083.744l.004.009c.043.1 1.086 2.48 3.415 2.863a.17.17 0 0 1 .142.178.284.284 0 0 1-.023.097c-.096.225-.53.544-2.044.778-.124.019-.172.18-.246.518a5.562 5.562 0 0 1-.091.371.2.2 0 0 1-.217.162h-.019a1.887 1.887 0 0 1-.339-.043 4.539 4.539 0 0 0-.91-.096c-.22.001-.44.02-.657.055a3.15 3.15 0 0 0-1.25.637 3.527 3.527 0 0 1-2.16.855z" }),
182
- h("path", { stroke: "#030303", "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": ".75", d: "M13.138 5.265H13.1l-.285.003A4.379 4.379 0 0 0 8.75 7.891c-.365.819-.278 2.21-.208 3.327.009.132.018.268.025.4-.1.05-.21.074-.32.07a1.836 1.836 0 0 1-.757-.203.615.615 0 0 0-.261-.053.817.817 0 0 0-.8.55c-.045.237.061.583.824.884.068.027.15.053.238.081.315.1.791.25.92.555a.73.73 0 0 1-.079.603l-.008.016c-.041.1-1.05 2.394-3.285 2.763a.341.341 0 0 0-.286.355.465.465 0 0 0 .037.154c.168.393.876.68 2.165.88.055.124.093.255.115.39.027.123.055.25.095.386a.382.382 0 0 0 .4.29c.125-.005.249-.022.371-.05a3.797 3.797 0 0 1 1.506-.047c.433.112.834.32 1.176.608.633.54 1.428.85 2.259.884.028 0 .055 0 .083-.003.028-.003.075.003.121.003a3.71 3.71 0 0 0 2.258-.884 2.987 2.987 0 0 1 1.18-.609c.208-.034.418-.052.629-.052.295 0 .589.032.877.093.122.026.247.042.372.046h.018c.18.01.34-.11.381-.285a5.31 5.31 0 0 0 .094-.383c.022-.133.06-.264.115-.387 1.29-.2 1.998-.488 2.165-.878a.457.457 0 0 0 .037-.155.342.342 0 0 0-.285-.355c-2.238-.369-3.244-2.665-3.286-2.762l-.008-.017a.73.73 0 0 1-.079-.603c.13-.304.605-.455.92-.555a4.1 4.1 0 0 0 .239-.081c.558-.22.838-.491.832-.804a.667.667 0 0 0-.5-.574h0a.915.915 0 0 0-.344-.066.765.765 0 0 0-.315.064 1.91 1.91 0 0 1-.709.2.625.625 0 0 1-.276-.069l.021-.35.003-.047c.07-1.119.158-2.51-.207-3.33a4.387 4.387 0 0 0-4.073-2.624l-.002-.001z" }))))
182
+ h("path", { stroke: "#030303", "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": ".75", d: "M13.138 5.265H13.1l-.285.003A4.379 4.379 0 0 0 8.75 7.891c-.365.819-.278 2.21-.208 3.327.009.132.018.268.025.4-.1.05-.21.074-.32.07a1.836 1.836 0 0 1-.757-.203.615.615 0 0 0-.261-.053.817.817 0 0 0-.8.55c-.045.237.061.583.824.884.068.027.15.053.238.081.315.1.791.25.92.555a.73.73 0 0 1-.079.603l-.008.016c-.041.1-1.05 2.394-3.285 2.763a.341.341 0 0 0-.286.355.465.465 0 0 0 .037.154c.168.393.876.68 2.165.88.055.124.093.255.115.39.027.123.055.25.095.386a.382.382 0 0 0 .4.29c.125-.005.249-.022.371-.05a3.797 3.797 0 0 1 1.506-.047c.433.112.834.32 1.176.608.633.54 1.428.85 2.259.884.028 0 .055 0 .083-.003.028-.003.075.003.121.003a3.71 3.71 0 0 0 2.258-.884 2.987 2.987 0 0 1 1.18-.609c.208-.034.418-.052.629-.052.295 0 .589.032.877.093.122.026.247.042.372.046h.018c.18.01.34-.11.381-.285a5.31 5.31 0 0 0 .094-.383c.022-.133.06-.264.115-.387 1.29-.2 1.998-.488 2.165-.878a.457.457 0 0 0 .037-.155.342.342 0 0 0-.285-.355c-2.238-.369-3.244-2.665-3.286-2.762l-.008-.017a.73.73 0 0 1-.079-.603c.13-.304.605-.455.92-.555a4.1 4.1 0 0 0 .239-.081c.558-.22.838-.491.832-.804a.667.667 0 0 0-.5-.574h0a.915.915 0 0 0-.344-.066.765.765 0 0 0-.315.064 1.91 1.91 0 0 1-.709.2.625.625 0 0 1-.276-.069l.021-.35.003-.047c.07-1.119.158-2.51-.207-3.33a4.387 4.387 0 0 0-4.073-2.624l-.002-.001z" })))),
183
183
  },
184
184
  'brand-snapchat-filled': {
185
185
  markup: () => (h("g", null,
186
- h("path", { d: "M13.125 23.02c-.052 0-.1 0-.142-.004-.041-.003-.072.003-.108.003a5 5 0 0 1-3.032-1.166 3.286 3.286 0 0 0-1.256-.669 4.236 4.236 0 0 0-.696-.059c-.33.004-.66.042-.984.113a2.868 2.868 0 0 1-.545.073.922.922 0 0 1-.93-.687 7.221 7.221 0 0 1-.121-.497l-.04-.174c-1.618-.277-2.464-.682-2.73-1.305a1.042 1.042 0 0 1-.083-.34.877.877 0 0 1 .734-.916c2.498-.413 3.63-3.002 3.678-3.113l.02-.043c.124-.251.092-.346.086-.357-.076-.179-.634-.355-.844-.422-.117-.038-.229-.073-.32-.11-1.291-.51-1.363-1.218-1.291-1.593.163-.857 1.289-1.245 1.945-.938.201.102.418.17.641.2l-.005-.078c-.091-1.429-.2-3.193.293-4.298a5.818 5.818 0 0 1 5.401-3.489l.4-.003a5.826 5.826 0 0 1 5.408 3.488c.494 1.106.382 2.874.292 4.294l-.004.07c.183-.042.362-.104.531-.186a1.38 1.38 0 0 1 .58-.122c.205 0 .407.039.596.116.504.148.863.594.897 1.119.011.595-.43 1.072-1.309 1.42a5.475 5.475 0 0 1-.324.11c-.21.067-.766.244-.843.423a.543.543 0 0 0 .087.357l.02.043c.045.11 1.179 2.7 3.679 3.112.443.071.76.465.736.913a1.026 1.026 0 0 1-.082.345c-.266.619-1.112 1.025-2.73 1.303l-.037.164a7.79 7.79 0 0 1-.123.5.917.917 0 0 1-.907.679 2.907 2.907 0 0 1-.566-.065 4.89 4.89 0 0 0-.987-.106c-.233 0-.466.02-.695.06a3.29 3.29 0 0 0-1.252.665 5 5 0 0 1-3.038 1.17z", class: "filled" })))
186
+ h("path", { d: "M13.125 23.02c-.052 0-.1 0-.142-.004-.041-.003-.072.003-.108.003a5 5 0 0 1-3.032-1.166 3.286 3.286 0 0 0-1.256-.669 4.236 4.236 0 0 0-.696-.059c-.33.004-.66.042-.984.113a2.868 2.868 0 0 1-.545.073.922.922 0 0 1-.93-.687 7.221 7.221 0 0 1-.121-.497l-.04-.174c-1.618-.277-2.464-.682-2.73-1.305a1.042 1.042 0 0 1-.083-.34.877.877 0 0 1 .734-.916c2.498-.413 3.63-3.002 3.678-3.113l.02-.043c.124-.251.092-.346.086-.357-.076-.179-.634-.355-.844-.422-.117-.038-.229-.073-.32-.11-1.291-.51-1.363-1.218-1.291-1.593.163-.857 1.289-1.245 1.945-.938.201.102.418.17.641.2l-.005-.078c-.091-1.429-.2-3.193.293-4.298a5.818 5.818 0 0 1 5.401-3.489l.4-.003a5.826 5.826 0 0 1 5.408 3.488c.494 1.106.382 2.874.292 4.294l-.004.07c.183-.042.362-.104.531-.186a1.38 1.38 0 0 1 .58-.122c.205 0 .407.039.596.116.504.148.863.594.897 1.119.011.595-.43 1.072-1.309 1.42a5.475 5.475 0 0 1-.324.11c-.21.067-.766.244-.843.423a.543.543 0 0 0 .087.357l.02.043c.045.11 1.179 2.7 3.679 3.112.443.071.76.465.736.913a1.026 1.026 0 0 1-.082.345c-.266.619-1.112 1.025-2.73 1.303l-.037.164a7.79 7.79 0 0 1-.123.5.917.917 0 0 1-.907.679 2.907 2.907 0 0 1-.566-.065 4.89 4.89 0 0 0-.987-.106c-.233 0-.466.02-.695.06a3.29 3.29 0 0 0-1.252.665 5 5 0 0 1-3.038 1.17z", class: "filled" }))),
187
187
  },
188
188
  'brand-twitter-color': {
189
189
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
190
- h("path", { fill: "#69ACE0", "fill-rule": "nonzero", d: "M24 6.108c-.825.367-1.65.642-2.567.734.917-.55 1.65-1.467 2.017-2.475-.917.55-1.833.916-2.842 1.1A4.438 4.438 0 0 0 17.308 4a4.499 4.499 0 0 0-4.491 4.492c0 .366 0 .733.091 1.008a12.657 12.657 0 0 1-9.35-4.767c-.458.734-.641 1.467-.641 2.292 0 1.558.825 2.933 2.016 3.758-.733 0-1.466-.183-2.016-.55v.092c0 2.2 1.558 4.033 3.575 4.4-.367.092-.734.183-1.192.183-.275 0-.55 0-.825-.091.55 1.833 2.2 3.116 4.217 3.116-1.559 1.192-3.484 1.925-5.592 1.925-.367 0-.733 0-1.1-.091a12.832 12.832 0 0 0 6.875 2.016c8.342 0 12.833-6.875 12.833-12.833V8.4c.917-.642 1.65-1.467 2.292-2.292z" })))
190
+ h("path", { fill: "#69ACE0", "fill-rule": "nonzero", d: "M24 6.108c-.825.367-1.65.642-2.567.734.917-.55 1.65-1.467 2.017-2.475-.917.55-1.833.916-2.842 1.1A4.438 4.438 0 0 0 17.308 4a4.499 4.499 0 0 0-4.491 4.492c0 .366 0 .733.091 1.008a12.657 12.657 0 0 1-9.35-4.767c-.458.734-.641 1.467-.641 2.292 0 1.558.825 2.933 2.016 3.758-.733 0-1.466-.183-2.016-.55v.092c0 2.2 1.558 4.033 3.575 4.4-.367.092-.734.183-1.192.183-.275 0-.55 0-.825-.091.55 1.833 2.2 3.116 4.217 3.116-1.559 1.192-3.484 1.925-5.592 1.925-.367 0-.733 0-1.1-.091a12.832 12.832 0 0 0 6.875 2.016c8.342 0 12.833-6.875 12.833-12.833V8.4c.917-.642 1.65-1.467 2.292-2.292z" }))),
191
191
  },
192
192
  'brand-twitter-filled': {
193
193
  markup: () => (h("g", null,
194
- h("path", { d: "M24 6.108c-.825.367-1.65.642-2.567.734.917-.55 1.65-1.467 2.017-2.475-.917.55-1.833.916-2.842 1.1A4.438 4.438 0 0 0 17.308 4a4.499 4.499 0 0 0-4.491 4.492c0 .366 0 .733.091 1.008a12.657 12.657 0 0 1-9.35-4.767c-.458.734-.641 1.467-.641 2.292 0 1.558.825 2.933 2.016 3.758-.733 0-1.466-.183-2.016-.55v.092c0 2.2 1.558 4.033 3.575 4.4-.367.092-.734.183-1.192.183-.275 0-.55 0-.825-.091.55 1.833 2.2 3.116 4.217 3.116-1.559 1.192-3.484 1.925-5.592 1.925-.367 0-.733 0-1.1-.091a12.832 12.832 0 0 0 6.875 2.016c8.342 0 12.833-6.875 12.833-12.833V8.4c.917-.642 1.65-1.467 2.292-2.292z", class: "filled" })))
194
+ h("path", { d: "M24 6.108c-.825.367-1.65.642-2.567.734.917-.55 1.65-1.467 2.017-2.475-.917.55-1.833.916-2.842 1.1A4.438 4.438 0 0 0 17.308 4a4.499 4.499 0 0 0-4.491 4.492c0 .366 0 .733.091 1.008a12.657 12.657 0 0 1-9.35-4.767c-.458.734-.641 1.467-.641 2.292 0 1.558.825 2.933 2.016 3.758-.733 0-1.466-.183-2.016-.55v.092c0 2.2 1.558 4.033 3.575 4.4-.367.092-.734.183-1.192.183-.275 0-.55 0-.825-.091.55 1.833 2.2 3.116 4.217 3.116-1.559 1.192-3.484 1.925-5.592 1.925-.367 0-.733 0-1.1-.091a12.832 12.832 0 0 0 6.875 2.016c8.342 0 12.833-6.875 12.833-12.833V8.4c.917-.642 1.65-1.467 2.292-2.292z", class: "filled" }))),
195
195
  },
196
196
  'brand-vimeo-color': {
197
197
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
198
- h("path", { fill: "#00B6EC", "fill-rule": "nonzero", d: "M23.994 7.402c-.091 2.108-1.558 5.04-4.49 8.798-3.024 3.85-5.499 5.865-7.607 5.865-1.283 0-2.382-1.191-3.299-3.574-.55-2.2-1.191-4.307-1.74-6.506-.643-2.383-1.377-3.575-2.11-3.575-.183 0-.733.366-1.74 1.008L2 8.136c1.1-.917 2.2-1.925 3.207-2.841 1.467-1.283 2.566-1.925 3.3-2.016 1.74-.184 2.749 1.008 3.115 3.482.459 2.658.734 4.399.917 5.04.458 2.2 1.008 3.391 1.65 3.391.458 0 1.19-.733 2.107-2.2.917-1.466 1.375-2.565 1.467-3.298.091-1.283-.367-1.925-1.467-1.925-.55 0-1.1.092-1.65.367 1.1-3.574 3.117-5.224 6.232-5.132 2.2.091 3.208 1.558 3.116 4.398z" })))
198
+ h("path", { fill: "#00B6EC", "fill-rule": "nonzero", d: "M23.994 7.402c-.091 2.108-1.558 5.04-4.49 8.798-3.024 3.85-5.499 5.865-7.607 5.865-1.283 0-2.382-1.191-3.299-3.574-.55-2.2-1.191-4.307-1.74-6.506-.643-2.383-1.377-3.575-2.11-3.575-.183 0-.733.366-1.74 1.008L2 8.136c1.1-.917 2.2-1.925 3.207-2.841 1.467-1.283 2.566-1.925 3.3-2.016 1.74-.184 2.749 1.008 3.115 3.482.459 2.658.734 4.399.917 5.04.458 2.2 1.008 3.391 1.65 3.391.458 0 1.19-.733 2.107-2.2.917-1.466 1.375-2.565 1.467-3.298.091-1.283-.367-1.925-1.467-1.925-.55 0-1.1.092-1.65.367 1.1-3.574 3.117-5.224 6.232-5.132 2.2.091 3.208 1.558 3.116 4.398z" }))),
199
199
  },
200
200
  'brand-vimeo-filled': {
201
201
  markup: () => (h("g", null,
202
- h("path", { d: "M23.994 7.402c-.091 2.108-1.558 5.04-4.49 8.798-3.024 3.85-5.499 5.865-7.607 5.865-1.283 0-2.382-1.191-3.299-3.574-.55-2.2-1.191-4.307-1.74-6.506-.643-2.383-1.377-3.575-2.11-3.575-.183 0-.733.366-1.74 1.008L2 8.136c1.1-.917 2.2-1.925 3.207-2.841 1.467-1.283 2.566-1.925 3.3-2.016 1.74-.184 2.749 1.008 3.115 3.482.459 2.658.734 4.399.917 5.04.458 2.2 1.008 3.391 1.65 3.391.458 0 1.19-.733 2.107-2.2.917-1.466 1.375-2.565 1.467-3.298.091-1.283-.367-1.925-1.467-1.925-.55 0-1.1.092-1.65.367 1.1-3.574 3.117-5.224 6.232-5.132 2.2.091 3.208 1.558 3.116 4.398z", class: "filled" })))
202
+ h("path", { d: "M23.994 7.402c-.091 2.108-1.558 5.04-4.49 8.798-3.024 3.85-5.499 5.865-7.607 5.865-1.283 0-2.382-1.191-3.299-3.574-.55-2.2-1.191-4.307-1.74-6.506-.643-2.383-1.377-3.575-2.11-3.575-.183 0-.733.366-1.74 1.008L2 8.136c1.1-.917 2.2-1.925 3.207-2.841 1.467-1.283 2.566-1.925 3.3-2.016 1.74-.184 2.749 1.008 3.115 3.482.459 2.658.734 4.399.917 5.04.458 2.2 1.008 3.391 1.65 3.391.458 0 1.19-.733 2.107-2.2.917-1.466 1.375-2.565 1.467-3.298.091-1.283-.367-1.925-1.467-1.925-.55 0-1.1.092-1.65.367 1.1-3.574 3.117-5.224 6.232-5.132 2.2.091 3.208 1.558 3.116 4.398z", class: "filled" }))),
203
203
  },
204
204
  'brand-youtube-color': {
205
205
  markup: () => (h("g", { fill: "none" },
206
206
  h("path", { fill: "#DC2217", d: "M23.817 8.3s-.184-1.558-.917-2.2c-.825-.917-1.742-.917-2.2-.917C17.583 5 13 5 13 5s-4.583 0-7.7.183c-.458.092-1.375.092-2.2.917-.642.642-.917 2.2-.917 2.2S2 10.042 2 11.875v1.65c0 1.742.183 3.575.183 3.575s.184 1.558.917 2.2c.825.917 1.925.825 2.383.917C7.225 20.4 13 20.4 13 20.4s4.583 0 7.7-.275c.458-.092 1.375-.092 2.2-.917.642-.641.917-2.2.917-2.2S24 15.267 24 13.433v-1.65c0-1.741-.183-3.483-.183-3.483z" }),
207
- h("path", { fill: "#FFF", d: "M10.708 15.542V9.4l5.959 3.117z" })))
207
+ h("path", { fill: "#FFF", d: "M10.708 15.542V9.4l5.959 3.117z" }))),
208
208
  },
209
209
  'brand-youtube-filled': {
210
210
  markup: () => (h("g", null,
211
- h("path", { d: "M23.817 8.3s-.184-1.558-.917-2.2c-.825-.917-1.742-.917-2.2-.917C17.583 5 13 5 13 5s-4.583 0-7.7.183c-.458.092-1.375.092-2.2.917-.642.642-.917 2.2-.917 2.2S2 10.042 2 11.875v1.65c0 1.742.183 3.575.183 3.575s.184 1.558.917 2.2c.825.917 1.925.825 2.383.917C7.225 20.4 13 20.4 13 20.4s4.583 0 7.7-.275c.458-.092 1.375-.092 2.2-.917.642-.641.917-2.2.917-2.2S24 15.267 24 13.433v-1.65c0-1.741-.183-3.483-.183-3.483zm-13.109 7.242V9.4l5.959 3.117-5.959 3.025z", class: "filled" })))
211
+ h("path", { d: "M23.817 8.3s-.184-1.558-.917-2.2c-.825-.917-1.742-.917-2.2-.917C17.583 5 13 5 13 5s-4.583 0-7.7.183c-.458.092-1.375.092-2.2.917-.642.642-.917 2.2-.917 2.2S2 10.042 2 11.875v1.65c0 1.742.183 3.575.183 3.575s.184 1.558.917 2.2c.825.917 1.925.825 2.383.917C7.225 20.4 13 20.4 13 20.4s4.583 0 7.7-.275c.458-.092 1.375-.092 2.2-.917.642-.641.917-2.2.917-2.2S24 15.267 24 13.433v-1.65c0-1.741-.183-3.483-.183-3.483zm-13.109 7.242V9.4l5.959 3.117-5.959 3.025z", class: "filled" }))),
212
212
  },
213
213
  'brand-zelle-color': {
214
214
  markup: () => (h("g", { fill: "#6D1ED4" },
215
- h("path", { d: "M7.823 5.05h4.097V2.5a.5.5 0 0 1 .5-.5h2.044a.5.5 0 0 1 .5.5v2.55h3.43c.68 0 1.232.552 1.232 1.233v.89a1 1 0 0 1-.21.613L11.564 17.9h7.311a.5.5 0 0 1 .5.5v2.05a.5.5 0 0 1-.5.5h-3.911v2.55a.5.5 0 0 1-.5.5H12.42a.5.5 0 0 1-.5-.5v-2.55H8.286c-.71 0-1.286-.576-1.286-1.286v-.942a1 1 0 0 1 .213-.616L15.047 8.1H7.823a.5.5 0 0 1-.5-.5V5.55a.5.5 0 0 1 .5-.5zM23.484 2c-.412 0-.764.144-1.052.432-.288.288-.432.64-.432 1.052 0 .408.144.76.432 1.052.288.288.64.432 1.052.432.408 0 .76-.144 1.052-.432.288-.292.432-.644.432-1.052 0-.412-.144-.764-.432-1.052A1.447 1.447 0 0 0 23.484 2zm0 .232c.344 0 .636.12.884.368.244.244.368.54.368.884s-.124.636-.368.884c-.248.244-.54.368-.884.368s-.64-.124-.884-.368a1.2 1.2 0 0 1-.368-.884c0-.344.12-.64.368-.884.244-.248.54-.368.884-.368zm-.716.368v1.768h.368v-.692h.328c.12 0 .204.028.252.088.036.048.06.132.076.26.016.16.044.272.088.344h.416a.522.522 0 0 1-.134-.303l-.01-.105a.718.718 0 0 0-.056-.26.316.316 0 0 0-.196-.176c.18-.068.272-.2.272-.4a.472.472 0 0 0-.18-.4c-.112-.084-.26-.124-.452-.124h-.772zm.368.308h.364c.204 0 .308.076.308.228a.218.218 0 0 1-.076.172.423.423 0 0 1-.232.056h-.364v-.456z" })))
215
+ h("path", { d: "M7.823 5.05h4.097V2.5a.5.5 0 0 1 .5-.5h2.044a.5.5 0 0 1 .5.5v2.55h3.43c.68 0 1.232.552 1.232 1.233v.89a1 1 0 0 1-.21.613L11.564 17.9h7.311a.5.5 0 0 1 .5.5v2.05a.5.5 0 0 1-.5.5h-3.911v2.55a.5.5 0 0 1-.5.5H12.42a.5.5 0 0 1-.5-.5v-2.55H8.286c-.71 0-1.286-.576-1.286-1.286v-.942a1 1 0 0 1 .213-.616L15.047 8.1H7.823a.5.5 0 0 1-.5-.5V5.55a.5.5 0 0 1 .5-.5zM23.484 2c-.412 0-.764.144-1.052.432-.288.288-.432.64-.432 1.052 0 .408.144.76.432 1.052.288.288.64.432 1.052.432.408 0 .76-.144 1.052-.432.288-.292.432-.644.432-1.052 0-.412-.144-.764-.432-1.052A1.447 1.447 0 0 0 23.484 2zm0 .232c.344 0 .636.12.884.368.244.244.368.54.368.884s-.124.636-.368.884c-.248.244-.54.368-.884.368s-.64-.124-.884-.368a1.2 1.2 0 0 1-.368-.884c0-.344.12-.64.368-.884.244-.248.54-.368.884-.368zm-.716.368v1.768h.368v-.692h.328c.12 0 .204.028.252.088.036.048.06.132.076.26.016.16.044.272.088.344h.416a.522.522 0 0 1-.134-.303l-.01-.105a.718.718 0 0 0-.056-.26.316.316 0 0 0-.196-.176c.18-.068.272-.2.272-.4a.472.472 0 0 0-.18-.4c-.112-.084-.26-.124-.452-.124h-.772zm.368.308h.364c.204 0 .308.076.308.228a.218.218 0 0 1-.076.172.423.423 0 0 1-.232.056h-.364v-.456z" }))),
216
216
  },
217
217
  'brand-zelle-filled': {
218
218
  markup: () => (h("g", null,
219
219
  h("path", { d: "M7.823 5.05h4.097V2.5a.5.5 0 0 1 .5-.5h2.044a.5.5 0 0 1 .5.5v2.55h3.43c.68 0 1.232.552 1.232 1.233v.89a1 1 0 0 1-.21.613L11.564 17.9h7.311a.5.5 0 0 1 .5.5v2.05a.5.5 0 0 1-.5.5h-3.911v2.55a.5.5 0 0 1-.5.5H12.42a.5.5 0 0 1-.5-.5v-2.55H8.286c-.71 0-1.286-.576-1.286-1.286v-.942a1 1 0 0 1 .213-.616L15.047 8.1H7.823a.5.5 0 0 1-.5-.5V5.55a.5.5 0 0 1 .5-.5z", class: "filled" }),
220
- h("path", { d: "M23.484 2c-.412 0-.764.144-1.052.432-.288.288-.432.64-.432 1.052 0 .408.144.76.432 1.052.288.288.64.432 1.052.432.408 0 .76-.144 1.052-.432.288-.292.432-.644.432-1.052 0-.412-.144-.764-.432-1.052A1.447 1.447 0 0 0 23.484 2zm0 .232c.344 0 .636.12.884.368.244.244.368.54.368.884s-.124.636-.368.884c-.248.244-.54.368-.884.368s-.64-.124-.884-.368a1.2 1.2 0 0 1-.368-.884c0-.344.12-.64.368-.884.244-.248.54-.368.884-.368zm-.716.368v1.768h.368v-.692h.328c.12 0 .204.028.252.088.036.048.06.132.076.26.016.16.044.272.088.344h.416a.522.522 0 0 1-.134-.303l-.01-.105a.718.718 0 0 0-.056-.26.316.316 0 0 0-.196-.176c.18-.068.272-.2.272-.4a.472.472 0 0 0-.18-.4c-.112-.084-.26-.124-.452-.124h-.772zm.368.308h.364c.204 0 .308.076.308.228a.218.218 0 0 1-.076.172.423.423 0 0 1-.232.056h-.364v-.456z" })))
220
+ h("path", { d: "M23.484 2c-.412 0-.764.144-1.052.432-.288.288-.432.64-.432 1.052 0 .408.144.76.432 1.052.288.288.64.432 1.052.432.408 0 .76-.144 1.052-.432.288-.292.432-.644.432-1.052 0-.412-.144-.764-.432-1.052A1.447 1.447 0 0 0 23.484 2zm0 .232c.344 0 .636.12.884.368.244.244.368.54.368.884s-.124.636-.368.884c-.248.244-.54.368-.884.368s-.64-.124-.884-.368a1.2 1.2 0 0 1-.368-.884c0-.344.12-.64.368-.884.244-.248.54-.368.884-.368zm-.716.368v1.768h.368v-.692h.328c.12 0 .204.028.252.088.036.048.06.132.076.26.016.16.044.272.088.344h.416a.522.522 0 0 1-.134-.303l-.01-.105a.718.718 0 0 0-.056-.26.316.316 0 0 0-.196-.176c.18-.068.272-.2.272-.4a.472.472 0 0 0-.18-.4c-.112-.084-.26-.124-.452-.124h-.772zm.368.308h.364c.204 0 .308.076.308.228a.218.218 0 0 1-.076.172.423.423 0 0 1-.232.056h-.364v-.456z" }))),
221
221
  },
222
222
  boat: {
223
223
  markup: () => (h("g", null,
@@ -225,20 +225,20 @@ const icons = {
225
225
  h("g", { class: "stroke-primary" },
226
226
  h("path", { d: "M11.087 7.261V2.478h3.826v4.783", class: "filled" }),
227
227
  h("path", { d: "M6.304 14.817V7.261h13.391v7.556" }),
228
- h("path", { d: "M6.304 19.695l-1.913-3.826L13 11.087l8.608 4.782-1.913 3.826" }))))
228
+ h("path", { d: "M6.304 19.695l-1.913-3.826L13 11.087l8.608 4.782-1.913 3.826" })))),
229
229
  },
230
230
  briefcase: {
231
231
  markup: () => (h("g", null,
232
232
  h("path", { class: "stroke-primary", d: "M9.393 6.066V3.181h7.213v2.885M5.787 17.607H2.18V7.509c0-.797.646-1.443 1.443-1.443h18.754c.796 0 1.442.646 1.442 1.443v10.097h-3.606m2.164 1.804v2.525c0 .797-.646 1.442-1.443 1.442H5.065a1.443 1.443 0 0 1-1.442-1.442V19.41m5.77-1.803h7.213" }),
233
233
  h("path", { class: "stroke-secondary", d: "M7.59 6.066v9.738m0 3.606v3.967M18.41 6.066v9.738m0 3.606v3.967" }),
234
- h("path", { class: "stroke-secondary filled", d: "M5.787 15.803h3.607v3.607H5.787zm10.82 0h3.607v3.607h-3.607z" })))
234
+ h("path", { class: "stroke-secondary filled", d: "M5.787 15.803h3.607v3.607H5.787zm10.82 0h3.607v3.607h-3.607z" }))),
235
235
  },
236
236
  'browser-chrome': {
237
237
  markup: () => (h("g", null,
238
238
  h("g", { class: "stroke-secondary", transform: "translate(4.147 6.466)" },
239
239
  h("path", { d: "M8.853 2.134h10.085m-13.896 6.6L0 0m12.663 8.734l-5.042 8.733" }),
240
240
  h("circle", { cx: "8.853", cy: "6.534", r: "4.4" })),
241
- h("circle", { class: "stroke-primary", transform: "translate(2 2)", cx: "11", cy: "11", r: "11" })))
241
+ h("circle", { class: "stroke-primary", transform: "translate(2 2)", cx: "11", cy: "11", r: "11" }))),
242
242
  },
243
243
  'browser-chrome-color': {
244
244
  markup: () => (h("g", { fill: "none" },
@@ -247,14 +247,14 @@ const icons = {
247
247
  h("path", { fill: "#DD5144", d: "M8.254 12.432A4.788 4.788 0 0 1 13 8.217h9.904C21.122 4.541 17.353 2 13 2a10.982 10.982 0 0 0-8.467 3.986l3.721 6.446z" }),
248
248
  h("path", { fill: "#18A05E", d: "M14.88 17.397a4.756 4.756 0 0 1-1.88.386 4.781 4.781 0 0 1-4.137-2.395l-.005.003-4.95-8.574A10.938 10.938 0 0 0 2 13c0 5.438 3.967 9.964 9.158 10.843l3.722-6.446z" }),
249
249
  h("path", { fill: "#FFCE44", d: "M15.857 9.174A4.773 4.773 0 0 1 17.783 13c0 .87-.238 1.685-.646 2.388l.005.003-4.951 8.576c.267.02.536.033.809.033 6.066 0 11-4.934 11-11 0-1.345-.243-2.634-.687-3.826h-7.456z" }),
250
- h("path", { fill: "#000", "fill-opacity": ".1", d: "M8.254 12.432a4.755 4.755 0 0 1 .647-1.889L4.533 5.986l3.721 6.446zm6.626 4.965a4.756 4.756 0 0 1-1.88.386l-1.842 6.06 3.722-6.446zm.977-8.223c.577.432 1.055.99 1.39 1.633l6.066-1.633h-7.456z" })))
250
+ h("path", { fill: "#000", "fill-opacity": ".1", d: "M8.254 12.432a4.755 4.755 0 0 1 .647-1.889L4.533 5.986l3.721 6.446zm6.626 4.965a4.756 4.756 0 0 1-1.88.386l-1.842 6.06 3.722-6.446zm.977-8.223c.577.432 1.055.99 1.39 1.633l6.066-1.633h-7.456z" }))),
251
251
  },
252
252
  'browser-chrome-filled': {
253
253
  markup: () => (h("g", null,
254
- h("path", { d: "M23.282 9.097C23.745 10.31 24 11.626 24 13c0 6.066-4.934 11-11 11-.336 0-.668-.018-.997-.047l4.992-8.647c.004-.007.004-.016.008-.023a4.58 4.58 0 0 0 .61-2.283 4.61 4.61 0 0 0-2.166-3.903zM4.016 6.665l4.989 8.641c.008.015.02.026.03.04A4.61 4.61 0 0 0 13 17.612a4.58 4.58 0 0 0 2.154-.537l-3.915 6.781C6.008 23.011 2 18.466 2 13c0-2.358.748-4.543 2.016-6.335zM13 9.097A3.908 3.908 0 0 1 16.903 13 3.908 3.908 0 0 1 13 16.903 3.908 3.908 0 0 1 9.097 13 3.908 3.908 0 0 1 13 9.097zM13 2c4.419 0 8.235 2.62 9.982 6.387H13a4.615 4.615 0 0 0-4.604 4.444L4.48 6.051A10.983 10.983 0 0 1 13 2z", class: "filled" })))
254
+ h("path", { d: "M23.282 9.097C23.745 10.31 24 11.626 24 13c0 6.066-4.934 11-11 11-.336 0-.668-.018-.997-.047l4.992-8.647c.004-.007.004-.016.008-.023a4.58 4.58 0 0 0 .61-2.283 4.61 4.61 0 0 0-2.166-3.903zM4.016 6.665l4.989 8.641c.008.015.02.026.03.04A4.61 4.61 0 0 0 13 17.612a4.58 4.58 0 0 0 2.154-.537l-3.915 6.781C6.008 23.011 2 18.466 2 13c0-2.358.748-4.543 2.016-6.335zM13 9.097A3.908 3.908 0 0 1 16.903 13 3.908 3.908 0 0 1 13 16.903 3.908 3.908 0 0 1 9.097 13 3.908 3.908 0 0 1 13 9.097zM13 2c4.419 0 8.235 2.62 9.982 6.387H13a4.615 4.615 0 0 0-4.604 4.444L4.48 6.051A10.983 10.983 0 0 1 13 2z", class: "filled" }))),
255
255
  },
256
256
  'browser-edge': {
257
- markup: () => (h("path", { d: "M6.154 7.732c-2.574 1.602-4.045 3.88-4.045 3.88C2.53 6.325 6.67 2 12.284 2c1.006 0 3.118.175 5.02 1.347 2.434 1.502 3.83 3.511 4.385 5.78.473 1.94.394 3.818.394 5.432H8.493s-.332 4.566 5.918 4.566c2.14 0 4.179-.48 5.85-1.623l.002 4.562s-2.558 1.576-6.422 1.576c-4.85 0-7.969-2.688-8.942-6.138-.278-.986-.275-1.943-.275-2.47 0-1.973.674-3.857 1.843-5.218 1.516-1.764 3.43-2.54 3.43-2.54-.813.947-1.356 2.233-1.496 3.448h7.674s.449-4.586-4.342-4.586c-1.805 0-4.022.626-5.579 1.596z", class: "stroke-primary" }))
257
+ markup: () => (h("path", { d: "M6.154 7.732c-2.574 1.602-4.045 3.88-4.045 3.88C2.53 6.325 6.67 2 12.284 2c1.006 0 3.118.175 5.02 1.347 2.434 1.502 3.83 3.511 4.385 5.78.473 1.94.394 3.818.394 5.432H8.493s-.332 4.566 5.918 4.566c2.14 0 4.179-.48 5.85-1.623l.002 4.562s-2.558 1.576-6.422 1.576c-4.85 0-7.969-2.688-8.942-6.138-.278-.986-.275-1.943-.275-2.47 0-1.973.674-3.857 1.843-5.218 1.516-1.764 3.43-2.54 3.43-2.54-.813.947-1.356 2.233-1.496 3.448h7.674s.449-4.586-4.342-4.586c-1.805 0-4.022.626-5.579 1.596z", class: "stroke-primary" })),
258
258
  },
259
259
  'browser-edge-color': {
260
260
  markup: () => (h("g", { fill: "none" },
@@ -288,16 +288,16 @@ const icons = {
288
288
  h("path", { fill: "url(#edge-color-c)", d: "M11.087 22.744a6.81 6.81 0 0 1-1.954-1.834A6.938 6.938 0 0 1 11.67 10.6c.411-.222.87-.34 1.336-.344a2.78 2.78 0 0 1 2.206 1.119 2.74 2.74 0 0 1 .547 1.604c0-.019 2.102-6.84-6.875-6.84-3.772-.003-6.874 3.577-6.874 6.719a11.183 11.183 0 0 0 1.042 4.811 11 11 0 0 0 13.44 5.767 6.493 6.493 0 0 1-5.395-.687l-.01-.004z" }),
289
289
  h("path", { fill: "url(#edge-color-d)", d: "M11.087 22.744a6.81 6.81 0 0 1-1.954-1.834A6.938 6.938 0 0 1 11.67 10.6c.411-.222.87-.34 1.336-.344a2.78 2.78 0 0 1 2.206 1.119 2.74 2.74 0 0 1 .547 1.604c0-.019 2.102-6.84-6.875-6.84-3.772-.003-6.874 3.577-6.874 6.719a11.183 11.183 0 0 0 1.042 4.811 11 11 0 0 0 13.44 5.767 6.493 6.493 0 0 1-5.395-.687l-.01-.004z", opacity: ".41" }),
290
290
  h("path", { fill: "url(#edge-color-e)", d: "M15.09 14.79c-.07.09-.284.215-.284.487a.802.802 0 0 0 .406.621c1.236.861 3.565.746 3.572.746a5.117 5.117 0 0 0 2.6-.718A5.275 5.275 0 0 0 24 11.383a7.6 7.6 0 0 0-.975-3.774C21.205 4.047 17.274 2 13 2 6.986 2 2.086 6.83 2 12.843c.041-3.14 3.162-5.678 6.875-5.678a8.313 8.313 0 0 1 3.609.866 6.24 6.24 0 0 1 2.651 2.51 5.53 5.53 0 0 1 .626 2.535 3.104 3.104 0 0 1-.671 1.714z" }),
291
- h("path", { fill: "url(#edge-color-f)", d: "M15.09 14.79c-.07.09-.284.215-.284.487a.802.802 0 0 0 .406.621c1.236.861 3.565.746 3.572.746a5.117 5.117 0 0 0 2.6-.718A5.275 5.275 0 0 0 24 11.383a7.6 7.6 0 0 0-.975-3.774C21.205 4.047 17.274 2 13 2 6.986 2 2.086 6.83 2 12.843c.041-3.14 3.162-5.678 6.875-5.678a8.313 8.313 0 0 1 3.609.866 6.24 6.24 0 0 1 2.651 2.51 5.53 5.53 0 0 1 .626 2.535 3.104 3.104 0 0 1-.671 1.714z" })))
291
+ h("path", { fill: "url(#edge-color-f)", d: "M15.09 14.79c-.07.09-.284.215-.284.487a.802.802 0 0 0 .406.621c1.236.861 3.565.746 3.572.746a5.117 5.117 0 0 0 2.6-.718A5.275 5.275 0 0 0 24 11.383a7.6 7.6 0 0 0-.975-3.774C21.205 4.047 17.274 2 13 2 6.986 2 2.086 6.83 2 12.843c.041-3.14 3.162-5.678 6.875-5.678a8.313 8.313 0 0 1 3.609.866 6.24 6.24 0 0 1 2.651 2.51 5.53 5.53 0 0 1 .626 2.535 3.104 3.104 0 0 1-.671 1.714z" }))),
292
292
  },
293
293
  'browser-edge-filled': {
294
294
  markup: () => (h("g", null,
295
- h("path", { d: "M8.267 7.679a7.7 7.7 0 0 1 3.317.794 5.65 5.65 0 0 1 2.414 2.285c.051.087.096.177.138.268a2.3 2.3 0 0 0-1.139-.314c-.975-.003-1.867.718-2.173.941a7.069 7.069 0 0 0-1.544 9.874 6.898 6.898 0 0 0 1.993 1.87l.023.014c.364.224.748.413 1.148.564a10.98 10.98 0 0 1-9.395-6.311 11.322 11.322 0 0 1-1.04-4.806c0-.097.005-.193.007-.29.175-2.714 2.921-4.89 6.25-4.89zm2.466 4.994a2.2 2.2 0 0 0-.021.275c0 3.197 3.135 5.8 6.985 5.8h.017a8.06 8.06 0 0 0 2.835-.513c.285-.107.564-.23.834-.372a.7.7 0 0 1 .922.99 11.227 11.227 0 0 1-5.826 4.57 5.888 5.888 0 0 1-4.81-.645l-.026-.015a6.174 6.174 0 0 1-1.768-1.666 6.332 6.332 0 0 1 .858-8.424zM12.994 2l.338.004c4.263.107 7.95 2.239 9.678 5.617l.045.09a7.605 7.605 0 0 1 .935 3.727 5.48 5.48 0 0 1-2.708 4.705 5.308 5.308 0 0 1-2.698.744c-.23.008-2.42.073-3.66-.789a1.127 1.127 0 0 1-.55-.901.898.898 0 0 1 .324-.67l.03-.029c.38-.454.579-1.033.556-1.624a5.696 5.696 0 0 0-.651-2.484 6.372 6.372 0 0 0-2.709-2.567 8.332 8.332 0 0 0-3.657-.878 7.467 7.467 0 0 0-5.688 2.48 10.85 10.85 0 0 1 2.67-4.24A10.974 10.974 0 0 1 12.995 2z", class: "filled" })))
295
+ h("path", { d: "M8.267 7.679a7.7 7.7 0 0 1 3.317.794 5.65 5.65 0 0 1 2.414 2.285c.051.087.096.177.138.268a2.3 2.3 0 0 0-1.139-.314c-.975-.003-1.867.718-2.173.941a7.069 7.069 0 0 0-1.544 9.874 6.898 6.898 0 0 0 1.993 1.87l.023.014c.364.224.748.413 1.148.564a10.98 10.98 0 0 1-9.395-6.311 11.322 11.322 0 0 1-1.04-4.806c0-.097.005-.193.007-.29.175-2.714 2.921-4.89 6.25-4.89zm2.466 4.994a2.2 2.2 0 0 0-.021.275c0 3.197 3.135 5.8 6.985 5.8h.017a8.06 8.06 0 0 0 2.835-.513c.285-.107.564-.23.834-.372a.7.7 0 0 1 .922.99 11.227 11.227 0 0 1-5.826 4.57 5.888 5.888 0 0 1-4.81-.645l-.026-.015a6.174 6.174 0 0 1-1.768-1.666 6.332 6.332 0 0 1 .858-8.424zM12.994 2l.338.004c4.263.107 7.95 2.239 9.678 5.617l.045.09a7.605 7.605 0 0 1 .935 3.727 5.48 5.48 0 0 1-2.708 4.705 5.308 5.308 0 0 1-2.698.744c-.23.008-2.42.073-3.66-.789a1.127 1.127 0 0 1-.55-.901.898.898 0 0 1 .324-.67l.03-.029c.38-.454.579-1.033.556-1.624a5.696 5.696 0 0 0-.651-2.484 6.372 6.372 0 0 0-2.709-2.567 8.332 8.332 0 0 0-3.657-.878 7.467 7.467 0 0 0-5.688 2.48 10.85 10.85 0 0 1 2.67-4.24A10.974 10.974 0 0 1 12.995 2z", class: "filled" }))),
296
296
  },
297
297
  'browser-firefox': {
298
298
  markup: () => (h("g", null,
299
299
  h("path", { d: "M5.028 5.579A10.9 10.9 0 0 1 13.148 2c1.808 0 3.512.439 5.017 1.212", class: "stroke-primary" }),
300
- h("path", { d: "M10.39 10.58c.467-.587 2.11-1.107 2.448-1.933.08-.195.17-.654-.091-.75-.435-.105-1.47-.108-1.851-.105a1.145 1.145 0 0 1-1.13-.788c-.077-.26-.227-.877 1.497-2.299-1.916-.279-2.897 1.05-3.024 1.252-1.032-.257-1.908-.195-2.64.04l-.003-.002c-1.212-.582-1.288-2.183-1.288-2.183S2.773 5.047 3.15 7.862c-2.001 4.123-.526 8.989.33 10.454C4.26 19.655 7.13 24 13.89 24c6.758 0 10.216-6.266 9.658-7.771.828-1.646 1.192-3.59 1.023-5.371-.391-4.155-4.268-6.93-4.268-6.93s.048.266.12.833c-1.024-1.105-1.868-1.67-3.292-1.67 1.955 1.409 3.825 5.278 3.673 8.529-.44-1.123-1.043-1.59-1.043-1.59.513 4.684-1.97 8.051-3.91 8.434-1.453.286-4.16.167-5.903-1.875 1.083.265 2.552.153 3.427-.453.529-.366 1.117-.87 1.68-.843.44.02.702-.33.374-.705-.327-.376-1.194-1.087-2.2-.61-2.76 1.307-4.603-.626-4.283-1.76.206-.731.89-.612 1.39-.153 0 0 .258-.792.055-1.485z", class: "stroke-secondary filled" })))
300
+ h("path", { d: "M10.39 10.58c.467-.587 2.11-1.107 2.448-1.933.08-.195.17-.654-.091-.75-.435-.105-1.47-.108-1.851-.105a1.145 1.145 0 0 1-1.13-.788c-.077-.26-.227-.877 1.497-2.299-1.916-.279-2.897 1.05-3.024 1.252-1.032-.257-1.908-.195-2.64.04l-.003-.002c-1.212-.582-1.288-2.183-1.288-2.183S2.773 5.047 3.15 7.862c-2.001 4.123-.526 8.989.33 10.454C4.26 19.655 7.13 24 13.89 24c6.758 0 10.216-6.266 9.658-7.771.828-1.646 1.192-3.59 1.023-5.371-.391-4.155-4.268-6.93-4.268-6.93s.048.266.12.833c-1.024-1.105-1.868-1.67-3.292-1.67 1.955 1.409 3.825 5.278 3.673 8.529-.44-1.123-1.043-1.59-1.043-1.59.513 4.684-1.97 8.051-3.91 8.434-1.453.286-4.16.167-5.903-1.875 1.083.265 2.552.153 3.427-.453.529-.366 1.117-.87 1.68-.843.44.02.702-.33.374-.705-.327-.376-1.194-1.087-2.2-.61-2.76 1.307-4.603-.626-4.283-1.76.206-.731.89-.612 1.39-.153 0 0 .258-.792.055-1.485z", class: "stroke-secondary filled" }))),
301
301
  },
302
302
  'browser-firefox-color': {
303
303
  markup: () => (h("g", { fill: "none" },
@@ -390,31 +390,31 @@ const icons = {
390
390
  h("path", { fill: "url(#firefox-color-i)", d: "M16.787 9.577c.399.392.74.839 1.015 1.326.06.045.116.09.164.134 2.478 2.285 1.18 5.514 1.083 5.744 2.013-1.659 3.3-4.112 2.913-6.644-1.236-3.082-3.332-4.325-5.044-7.03a13.284 13.284 0 0 1-.258-.419 3.452 3.452 0 0 1-.12-.225 1.99 1.99 0 0 1-.163-.433.028.028 0 0 0-.025-.029.039.039 0 0 0-.02 0l-.006.003-.008.005c-.422.2-2.93 4.17.469 7.568z" }),
391
391
  h("path", { fill: "url(#firefox-color-j)", d: "M17.964 11.036a2.28 2.28 0 0 0-.164-.134c-.022-.017-.044-.034-.068-.05a3.774 3.774 0 0 0-2.636-.64c3.932 1.966 2.877 8.735-2.572 8.48a4.861 4.861 0 0 1-1.422-.275 5.762 5.762 0 0 1-.505-.22l.007.006c.76.518 4.513 1.786 8.437-1.41l.006-.015c.098-.228 1.397-3.458-1.083-5.742z" }),
392
392
  h("path", { fill: "url(#firefox-color-k)", d: "M8.023 14.62s.505-1.88 3.613-1.88c.336 0 1.297-.938 1.315-1.21a5.444 5.444 0 0 1-4.105-.161 4.123 4.123 0 0 0-4.019.161 2.807 2.807 0 0 0 2.59 1.63c-.203 1.786.742 3.87 3.03 4.963.05.025.098.051.15.075-1.334-.69-2.436-1.994-2.574-3.578z" }),
393
- h("path", { fill: "url(#firefox-color-l)", d: "M23.046 9.567C22.57 8.424 21.607 7.19 20.853 6.8a11.357 11.357 0 0 1 1.107 3.318l.002.018c-1.236-3.081-3.332-4.324-5.044-7.03a13.284 13.284 0 0 1-.258-.418 3.452 3.452 0 0 1-.12-.225 1.99 1.99 0 0 1-.163-.433.028.028 0 0 0-.025-.029.039.039 0 0 0-.02 0l-.006.003-.008.005.005-.008c-2.746 1.608-3.678 4.584-3.764 6.073.128-.009.254-.02.385-.02a5.517 5.517 0 0 1 4.79 2.798 3.774 3.774 0 0 0-2.636-.64c3.931 1.966 2.877 8.735-2.572 8.48a4.861 4.861 0 0 1-1.423-.275 5.762 5.762 0 0 1-.505-.22l.007.006a5.687 5.687 0 0 1-.159-.08c.051.025.1.051.152.075-1.335-.69-2.437-1.994-2.575-3.578 0 0 .505-1.88 3.613-1.88.336 0 1.297-.938 1.315-1.21-.005-.089-1.907-.846-2.649-1.576-.396-.391-.584-.58-.75-.72a3.268 3.268 0 0 0-.283-.214 5.068 5.068 0 0 1-.03-2.672A8.096 8.096 0 0 0 6.606 8.38h-.005c-.433-.549-.403-2.36-.378-2.738-.128.052-.25.117-.365.194a7.96 7.96 0 0 0-1.068.915c-.375.38-.716.79-1.022 1.226v.002-.002a9.232 9.232 0 0 0-1.467 3.312l-.015.072c-.02.097-.112.585-.126.69 0 .008 0-.008 0 0A12.719 12.719 0 0 0 2 13.576v.056a10.932 10.932 0 0 0 21.705 1.849c.018-.141.033-.28.05-.423a11.242 11.242 0 0 0-.71-5.491z" })))
393
+ h("path", { fill: "url(#firefox-color-l)", d: "M23.046 9.567C22.57 8.424 21.607 7.19 20.853 6.8a11.357 11.357 0 0 1 1.107 3.318l.002.018c-1.236-3.081-3.332-4.324-5.044-7.03a13.284 13.284 0 0 1-.258-.418 3.452 3.452 0 0 1-.12-.225 1.99 1.99 0 0 1-.163-.433.028.028 0 0 0-.025-.029.039.039 0 0 0-.02 0l-.006.003-.008.005.005-.008c-2.746 1.608-3.678 4.584-3.764 6.073.128-.009.254-.02.385-.02a5.517 5.517 0 0 1 4.79 2.798 3.774 3.774 0 0 0-2.636-.64c3.931 1.966 2.877 8.735-2.572 8.48a4.861 4.861 0 0 1-1.423-.275 5.762 5.762 0 0 1-.505-.22l.007.006a5.687 5.687 0 0 1-.159-.08c.051.025.1.051.152.075-1.335-.69-2.437-1.994-2.575-3.578 0 0 .505-1.88 3.613-1.88.336 0 1.297-.938 1.315-1.21-.005-.089-1.907-.846-2.649-1.576-.396-.391-.584-.58-.75-.72a3.268 3.268 0 0 0-.283-.214 5.068 5.068 0 0 1-.03-2.672A8.096 8.096 0 0 0 6.606 8.38h-.005c-.433-.549-.403-2.36-.378-2.738-.128.052-.25.117-.365.194a7.96 7.96 0 0 0-1.068.915c-.375.38-.716.79-1.022 1.226v.002-.002a9.232 9.232 0 0 0-1.467 3.312l-.015.072c-.02.097-.112.585-.126.69 0 .008 0-.008 0 0A12.719 12.719 0 0 0 2 13.576v.056a10.932 10.932 0 0 0 21.705 1.849c.018-.141.033-.28.05-.423a11.242 11.242 0 0 0-.71-5.491z" }))),
394
394
  },
395
395
  'browser-firefox-filled': {
396
396
  markup: () => (h("g", null,
397
- h("path", { d: "M16.342 2l.01.001c.01.002.018.007.022.015l.003.014c.037.15.092.295.163.433.034.068.072.143.12.225.085.145.171.282.258.419 1.626 2.57 3.599 3.82 4.852 6.581l.19.44v-.01a11.357 11.357 0 0 0-.913-2.924l-.194-.394.143.082c.73.462 1.604 1.613 2.05 2.685.69 1.742.934 3.63.709 5.49l-.05.424a10.933 10.933 0 0 1-10.54 9.072l-.288.002a10.932 10.932 0 0 1-10.872-10.63L2 13.575c.006-.248.023-.497.051-.744l.088-.65c.072-.496.16-.88.163-.89a9.232 9.232 0 0 1 1.24-2.976l.227-.337.237-.321c.244-.317.507-.618.789-.902a7.96 7.96 0 0 1 1.068-.915c.115-.077.237-.142.365-.194l-.008.204c-.016.564.004 1.851.31 2.417l.076.117c.024-.002.024-.003 0-.003a8.096 8.096 0 0 1 2.63-2.033 5.068 5.068 0 0 0-.043 2.38l.074.292.149.105.138.111c.164.138.352.327.748.718.742.73 2.644 1.487 2.649 1.576-.018.272-.98 1.21-1.315 1.21-3.108 0-3.613 1.88-3.613 1.88.138 1.584 1.24 2.888 2.575 3.578a6.065 6.065 0 0 0 .505.22c.458.161.937.254 1.423.274 5.448.255 6.503-6.516 2.572-8.48a3.774 3.774 0 0 1 2.635.64 5.517 5.517 0 0 0-4.79-2.798c-.13 0-.256.011-.384.02l.012-.154c.134-1.479 1.032-4.17 3.483-5.753l.26-.161-.032.023a.634.634 0 0 0-.049.043l-.068.072a.853.853 0 0 1 .111-.108L16.332 2l.01-.001z", class: "filled" })))
397
+ h("path", { d: "M16.342 2l.01.001c.01.002.018.007.022.015l.003.014c.037.15.092.295.163.433.034.068.072.143.12.225.085.145.171.282.258.419 1.626 2.57 3.599 3.82 4.852 6.581l.19.44v-.01a11.357 11.357 0 0 0-.913-2.924l-.194-.394.143.082c.73.462 1.604 1.613 2.05 2.685.69 1.742.934 3.63.709 5.49l-.05.424a10.933 10.933 0 0 1-10.54 9.072l-.288.002a10.932 10.932 0 0 1-10.872-10.63L2 13.575c.006-.248.023-.497.051-.744l.088-.65c.072-.496.16-.88.163-.89a9.232 9.232 0 0 1 1.24-2.976l.227-.337.237-.321c.244-.317.507-.618.789-.902a7.96 7.96 0 0 1 1.068-.915c.115-.077.237-.142.365-.194l-.008.204c-.016.564.004 1.851.31 2.417l.076.117c.024-.002.024-.003 0-.003a8.096 8.096 0 0 1 2.63-2.033 5.068 5.068 0 0 0-.043 2.38l.074.292.149.105.138.111c.164.138.352.327.748.718.742.73 2.644 1.487 2.649 1.576-.018.272-.98 1.21-1.315 1.21-3.108 0-3.613 1.88-3.613 1.88.138 1.584 1.24 2.888 2.575 3.578a6.065 6.065 0 0 0 .505.22c.458.161.937.254 1.423.274 5.448.255 6.503-6.516 2.572-8.48a3.774 3.774 0 0 1 2.635.64 5.517 5.517 0 0 0-4.79-2.798c-.13 0-.256.011-.384.02l.012-.154c.134-1.479 1.032-4.17 3.483-5.753l.26-.161-.032.023a.634.634 0 0 0-.049.043l-.068.072a.853.853 0 0 1 .111-.108L16.332 2l.01-.001z", class: "filled" }))),
398
398
  },
399
399
  'browser-ie': {
400
400
  markup: () => (h("g", null,
401
401
  h("g", { class: "stroke-primary" },
402
402
  h("path", { d: "M13.366 8.6c2.963 0 2.934 2.933 2.934 2.933h-5.867S10.3 8.6 13.367 8.6z" }),
403
403
  h("path", { d: "M5.299 18.53c.863 1.105 3.177 3.27 8.039 3.27 6.186 0 8.11-4.153 8.641-5.867h-6.511c-.18.64-.685 1.467-2.101 1.467-3.171 0-2.934-3.667-2.934-3.667h11.764c.086-4.862-2.468-7.258-4.433-8.38m-3.302-1.118c-1.037-.187-4.113-.515-7.194 1.349-3.212 2.046-3.776 5.289-3.92 6.413-.21 1.618.385 3.518.385 3.518" })),
404
- h("path", { d: "M22.458 6.918c2.036-5.282-1.918-4.912-1.918-4.912-2.536 0-8.227 2.927-11.909 6.594-4.798 4.583-5.906 9.644-6.255 10.845C1.968 20.85 2.24 24 5.139 24c.805 0 1.613-.18 2.36-.44", class: "stroke-secondary" })))
404
+ h("path", { d: "M22.458 6.918c2.036-5.282-1.918-4.912-1.918-4.912-2.536 0-8.227 2.927-11.909 6.594-4.798 4.583-5.906 9.644-6.255 10.845C1.968 20.85 2.24 24 5.139 24c.805 0 1.613-.18 2.36-.44", class: "stroke-secondary" }))),
405
405
  },
406
406
  'browser-ie-color': {
407
407
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
408
- h("path", { fill: "#00579A", "fill-rule": "nonzero", d: "M23.232 6.918c2.036-5.282-1.918-4.912-1.918-4.912-2.537 0-5.707 2.31-5.707 2.31s-3.783-1.02-7.565 1.268C3.92 8.21 4.056 12.877 4.056 12.877c3.352-4.802 8.017-6.75 8.017-6.75v.318c-6.885 4.708-8.515 11.596-8.923 13C2.742 20.849 3.014 24 5.913 24c2.9 0 5.844-2.336 5.844-2.336s.634.136 2.355.136c7.248 0 8.969-6.409 8.969-6.409h-6.432s-.453 2.106-2.763 2.106c-3.171 0-2.99-3.306-2.99-3.306h12.276c.588-8.516-6.84-9.74-6.84-9.74s2.625-1.857 4.892-1.857c3.592 0 1.894 4.209 1.894 4.209l.114.115zM11.397 21.57s-4.424 2.685-6.41.825c-1.064-1.86.665-4.495.665-4.495s1.463 2.713 5.745 3.67zm5.321-10.278H10.88s-.074-2.845 2.993-2.845c2.962 0 2.845 2.845 2.845 2.845z" })))
408
+ h("path", { fill: "#00579A", "fill-rule": "nonzero", d: "M23.232 6.918c2.036-5.282-1.918-4.912-1.918-4.912-2.537 0-5.707 2.31-5.707 2.31s-3.783-1.02-7.565 1.268C3.92 8.21 4.056 12.877 4.056 12.877c3.352-4.802 8.017-6.75 8.017-6.75v.318c-6.885 4.708-8.515 11.596-8.923 13C2.742 20.849 3.014 24 5.913 24c2.9 0 5.844-2.336 5.844-2.336s.634.136 2.355.136c7.248 0 8.969-6.409 8.969-6.409h-6.432s-.453 2.106-2.763 2.106c-3.171 0-2.99-3.306-2.99-3.306h12.276c.588-8.516-6.84-9.74-6.84-9.74s2.625-1.857 4.892-1.857c3.592 0 1.894 4.209 1.894 4.209l.114.115zM11.397 21.57s-4.424 2.685-6.41.825c-1.064-1.86.665-4.495.665-4.495s1.463 2.713 5.745 3.67zm5.321-10.278H10.88s-.074-2.845 2.993-2.845c2.962 0 2.845 2.845 2.845 2.845z" }))),
409
409
  },
410
410
  'browser-ie-filled': {
411
411
  markup: () => (h("g", null,
412
- h("path", { d: "M23.228 6.918c2.035-5.282-1.918-4.912-1.918-4.912-2.536 0-5.706 2.31-5.706 2.31s-3.782-1.02-7.563 1.268C3.92 8.21 4.056 12.877 4.056 12.877c3.351-4.802 8.015-6.75 8.015-6.75v.318c-6.883 4.708-8.514 11.596-8.921 13C2.742 20.849 3.014 24 5.912 24s5.842-2.335 5.842-2.335.634.136 2.355.136c7.246 0 8.967-6.41 8.967-6.41h-6.43s-.454 2.106-2.763 2.106c-3.17 0-2.989-3.307-2.989-3.307h12.273c.588-8.515-6.839-9.739-6.839-9.739s2.625-1.857 4.892-1.857c3.591 0 1.893 4.209 1.893 4.209l.115.115zM11.395 21.57s-4.423 2.685-6.409.825c-1.063-1.86.665-4.495.665-4.495s1.463 2.713 5.744 3.67zm5.32-10.278h-5.837s-.073-2.845 2.993-2.845c2.96 0 2.844 2.845 2.844 2.845z", class: "filled" })))
412
+ h("path", { d: "M23.228 6.918c2.035-5.282-1.918-4.912-1.918-4.912-2.536 0-5.706 2.31-5.706 2.31s-3.782-1.02-7.563 1.268C3.92 8.21 4.056 12.877 4.056 12.877c3.351-4.802 8.015-6.75 8.015-6.75v.318c-6.883 4.708-8.514 11.596-8.921 13C2.742 20.849 3.014 24 5.912 24s5.842-2.335 5.842-2.335.634.136 2.355.136c7.246 0 8.967-6.41 8.967-6.41h-6.43s-.454 2.106-2.763 2.106c-3.17 0-2.989-3.307-2.989-3.307h12.273c.588-8.515-6.839-9.739-6.839-9.739s2.625-1.857 4.892-1.857c3.591 0 1.893 4.209 1.893 4.209l.115.115zM11.395 21.57s-4.423 2.685-6.409.825c-1.063-1.86.665-4.495.665-4.495s1.463 2.713 5.744 3.67zm5.32-10.278h-5.837s-.073-2.845 2.993-2.845c2.96 0 2.844 2.845 2.844 2.845z", class: "filled" }))),
413
413
  },
414
414
  'browser-opera': {
415
415
  markup: () => (h("g", { class: "stroke-primary" },
416
416
  h("path", { d: "M9.38 19.2c-1.217-1.436-2.005-3.559-2.058-5.94v-.519c.053-2.382.84-4.504 2.057-5.94 1.578-2.049 3.924-3.348 6.544-3.348 1.611 0 3.119.492 4.408 1.347a10.96 10.96 0 0 0-7.29-2.8H13C6.925 2 2 6.925 2 13c0 5.9 4.644 10.714 10.476 10.987a10.959 10.959 0 0 0 7.855-2.787 7.936 7.936 0 0 1-4.408 1.348c-2.62 0-4.966-1.3-6.544-3.349z" }),
417
- h("path", { d: "M9.38 6.801c1.009-1.192 2.312-1.91 3.737-1.91 3.202 0 5.798 3.63 5.798 8.109 0 4.478-2.596 8.109-5.798 8.109-1.425 0-2.728-.719-3.738-1.91 1.578 2.05 3.924 3.348 6.544 3.348A7.937 7.937 0 0 0 20.33 21.2 10.97 10.97 0 0 0 24 13c0-3.259-1.417-6.186-3.669-8.2a7.937 7.937 0 0 0-4.408-1.347c-2.62 0-4.966 1.299-6.544 3.348z", class: "filled" })))
417
+ h("path", { d: "M9.38 6.801c1.009-1.192 2.312-1.91 3.737-1.91 3.202 0 5.798 3.63 5.798 8.109 0 4.478-2.596 8.109-5.798 8.109-1.425 0-2.728-.719-3.738-1.91 1.578 2.05 3.924 3.348 6.544 3.348A7.937 7.937 0 0 0 20.33 21.2 10.97 10.97 0 0 0 24 13c0-3.259-1.417-6.186-3.669-8.2a7.937 7.937 0 0 0-4.408-1.347c-2.62 0-4.966 1.299-6.544 3.348z", class: "filled" }))),
418
418
  },
419
419
  'browser-opera-color': {
420
420
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
@@ -745,18 +745,18 @@ const icons = {
745
745
  h("g", { mask: "url(#opera-color-g)" },
746
746
  h("mask", { id: "opera-color-j", fill: "#fff" },
747
747
  h("use", { xlinkHref: "#opera-color-h" })),
748
- h("path", { fill: "url(#opera-color-i)", "fill-rule": "nonzero", d: "M14.534.073H.13v18.813h14.404z", mask: "url(#opera-color-j)" })))))
748
+ h("path", { fill: "url(#opera-color-i)", "fill-rule": "nonzero", d: "M14.534.073H.13v18.813h14.404z", mask: "url(#opera-color-j)" }))))),
749
749
  },
750
750
  'browser-opera-filled': {
751
751
  markup: () => (h("g", null,
752
- h("path", { d: "M13.042 2c2.8.01 5.353 1.067 7.29 2.8a7.936 7.936 0 0 0-4.41-1.348c-2.619 0-4.964 1.3-6.543 3.35-1.216 1.435-2.004 3.557-2.057 5.939v.518c.053 2.382.841 4.504 2.057 5.94 1.578 2.05 3.924 3.349 6.543 3.349A7.935 7.935 0 0 0 20.33 21.2a10.957 10.957 0 0 1-7.854 2.786C6.644 23.714 2 18.9 2 13 2 6.925 6.925 2 13 2h.042zm7.29 2.8a10.971 10.971 0 0 1 3.663 7.852L24 13c0 3.258-1.417 6.186-3.668 8.2-2.822 1.375-5.451.412-6.322-.188 2.772-.608 4.865-3.959 4.865-8.012 0-4.053-2.093-7.404-4.865-8.012.87-.6 3.5-1.563 6.321-.188z", class: "filled" })))
752
+ h("path", { d: "M13.042 2c2.8.01 5.353 1.067 7.29 2.8a7.936 7.936 0 0 0-4.41-1.348c-2.619 0-4.964 1.3-6.543 3.35-1.216 1.435-2.004 3.557-2.057 5.939v.518c.053 2.382.841 4.504 2.057 5.94 1.578 2.05 3.924 3.349 6.543 3.349A7.935 7.935 0 0 0 20.33 21.2a10.957 10.957 0 0 1-7.854 2.786C6.644 23.714 2 18.9 2 13 2 6.925 6.925 2 13 2h.042zm7.29 2.8a10.971 10.971 0 0 1 3.663 7.852L24 13c0 3.258-1.417 6.186-3.668 8.2-2.822 1.375-5.451.412-6.322-.188 2.772-.608 4.865-3.959 4.865-8.012 0-4.053-2.093-7.404-4.865-8.012.87-.6 3.5-1.563 6.321-.188z", class: "filled" }))),
753
753
  },
754
754
  'browser-safari': {
755
755
  markup: () => (h("g", null,
756
756
  h("g", { class: "stroke-secondary" },
757
757
  h("path", { d: "M18.134 7.867L11.9 11.9l-4.033 6.234L14.1 14.1z", class: "filled" }),
758
758
  h("path", { d: "M11.9 11.9l2.2 2.2M13 4v1.06M22 13h-1.058m-1.578 6.364l-.748-.748M13 22v-1.058M4 13h1.06m1.577-6.363l.748.748" })),
759
- h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" })))
759
+ h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" }))),
760
760
  },
761
761
  'browser-safari-color': {
762
762
  markup: () => (h("g", { fill: "none" },
@@ -776,11 +776,11 @@ const icons = {
776
776
  h("path", { fill: "#000", d: "M19.81 7l-7.916 4.599-5.005 7.88 7.322-5.423z", opacity: ".409" }),
777
777
  h("path", { fill: "#FF5150", d: "M14.163 13.976l-2.27-2.377 8.05-5.414z" }),
778
778
  h("path", { fill: "#F1F1F1", d: "M14.163 13.976l-2.27-2.377-5.779 7.791z" }),
779
- h("path", { fill: "#000", d: "M6.114 19.39l8.049-5.414 5.78-7.791z", opacity: ".243" })))
779
+ h("path", { fill: "#000", d: "M6.114 19.39l8.049-5.414 5.78-7.791z", opacity: ".243" }))),
780
780
  },
781
781
  'browser-safari-filled': {
782
782
  markup: () => (h("g", null,
783
- h("path", { d: "M13 2c6.066 0 11 4.934 11 11s-4.934 11-11 11S2 19.066 2 13 6.934 2 13 2zm0 .71C7.326 2.71 2.71 7.326 2.71 13c0 5.674 4.616 10.29 10.29 10.29 5.674 0 10.29-4.616 10.29-10.29 0-5.674-4.616-10.29-10.29-10.29zm-.017 17.852c.076 0 .135.059.135.126v1.766c0 .067-.06.127-.135.127-.076 0-.135-.06-.135-.127v-1.766c0-.067.068-.126.135-.126zm-.845.946a.138.138 0 0 1 .127.135l-.06.786a.132.132 0 0 1-.143.118.137.137 0 0 1-.127-.135l.06-.786c.008-.076.067-.127.143-.118zm1.715 0c.076-.009.144.042.152.11l.102.777a.131.131 0 0 1-.118.143c-.077.009-.144-.042-.153-.11l-.101-.777a.132.132 0 0 1 .118-.143zm.643-1.099a.136.136 0 0 1 .16.102l.355 1.732c.017.068-.034.144-.102.152a.132.132 0 0 1-.1-.018.108.108 0 0 1-.06-.083l-.355-1.732c-.017-.068.026-.136.102-.153zm-2.991 0a.138.138 0 0 1 .11.153l-.347 1.732a.136.136 0 0 1-.16.101.138.138 0 0 1-.11-.152l.346-1.732c.017-.068.085-.11.16-.102zm-1.058.757l.044.004c.067.016.118.093.093.16l-.211.76a.117.117 0 0 1-.02.042.138.138 0 0 1-.14.052c-.068-.017-.119-.093-.094-.16l.212-.761c.016-.068.084-.11.16-.093zm5.037.012a.131.131 0 0 1 .17.076l.244.744a.127.127 0 0 1-.037.139.146.146 0 0 1-.047.03.131.131 0 0 1-.17-.076l-.244-.744a.144.144 0 0 1 .084-.169zm.422-1.2a.14.14 0 0 1 .178.068l.684 1.63a.131.131 0 0 1-.076.17.14.14 0 0 1-.177-.068l-.685-1.63c-.025-.06.009-.136.076-.17zm-5.87-.012l.04.013a.131.131 0 0 1 .077.169l-.676 1.63c-.025.067-.102.093-.178.067a.131.131 0 0 1-.076-.168l.676-1.631c.034-.067.11-.101.178-.067zm-1.14.54l.04.013a.13.13 0 0 1 .06.177l-.355.702a.13.13 0 0 1-.178.059.13.13 0 0 1-.059-.178l.355-.7a.13.13 0 0 1 .177-.06zm8.134.03c.067-.034.144-.017.177.042l.389.685a.128.128 0 0 1-.05.177.16.16 0 0 1-.056.016.12.12 0 0 1-.122-.058l-.389-.685c-.034-.059-.017-.135.05-.177zm.177-1.25a.135.135 0 0 1 .186.034l.98 1.461a.13.13 0 0 1-.042.186.135.135 0 0 1-.186-.034l-.98-1.461a.129.129 0 0 1 .042-.186zm-8.625.017a.135.135 0 0 1 .185-.034.143.143 0 0 1 .058.11.143.143 0 0 1-.015.076l-.98 1.461a.134.134 0 0 1-.186.034.146.146 0 0 1-.043-.186zm9.834.312a.133.133 0 0 1 .185.009l.516.591c.05.051.042.135-.017.186a.133.133 0 0 1-.186-.008l-.515-.592c-.043-.06-.043-.144.017-.186zM7.356 19.6c.043-.06.127-.068.186-.017.06.042.068.126.026.185l-.49.617c-.043.06-.127.068-.187.017-.058-.042-.067-.126-.025-.186zM19.938 6.014l-5.73 8.185-8.146 5.787 5.73-8.186 8.146-5.786zm-1.59 12.334a.132.132 0 0 1 .186 0l1.25 1.242c.05.05.05.135 0 .186a.133.133 0 0 1-.186 0l-1.25-1.242a.12.12 0 0 1 0-.186zm1.25.084c.042-.059.127-.067.186-.025l.617.482c.059.042.067.126.025.185-.042.06-.127.068-.186.026l-.617-.482c-.058-.042-.067-.127-.025-.186zm-13.424-.067c.05-.05.135-.042.186.017.05.059.042.143-.009.186l-.6.507c-.05.05-.135.042-.186-.017-.05-.06-.042-.144.009-.186zm13.25-1.216l.048.016 1.47.98c.059.042.076.118.033.186a.14.14 0 0 1-.06.045l-.014.006a.147.147 0 0 1-.03.006h-.007a.135.135 0 0 1-.075-.015l-1.47-.98c-.067-.042-.076-.126-.033-.186a.146.146 0 0 1 .186-.042zM6.51 17.131a.13.13 0 0 1 .186.043.135.135 0 0 1-.033.186l-1.47.98a.13.13 0 0 1-.186-.043.135.135 0 0 1 .033-.186zm14.153-.157l.041.014.701.355a.13.13 0 0 1 .06.177.13.13 0 0 1-.178.06l-.701-.356c-.068-.025-.093-.11-.06-.177a.13.13 0 0 1 .178-.06zM5.26 16.937a.136.136 0 0 1 .177.05c.034.068.017.144-.041.178l-.685.389a.117.117 0 0 1-.055.014.13.13 0 0 1-.138-.116.122.122 0 0 1 .058-.127zm14.845-1.115l.042.008 1.63.676c.053.02.08.071.076.13a.131.131 0 0 1-.177.124l-1.631-.676a.14.14 0 0 1-.067-.178.131.131 0 0 1 .169-.076zm-14.27-.034a.131.131 0 0 1 .169.076.14.14 0 0 1-.068.177l-1.63.676a.131.131 0 0 1-.17-.076.146.146 0 0 1-.009-.05c0-.052.026-.102.077-.127zm15.453-.378l.041.006.76.212a.117.117 0 0 1 .042.02.14.14 0 0 1 .052.14c-.017.068-.093.118-.16.093l-.761-.211a.13.13 0 0 1-.093-.16c.016-.068.093-.119.16-.094zm-16.644-.053a.144.144 0 0 1 .169.085.13.13 0 0 1-.085.169l-.743.245a.1.1 0 0 1-.048.006.142.142 0 0 1-.121-.091.129.129 0 0 1 .084-.169zm15.916-.971l1.732.346a.136.136 0 0 1 .102.16.138.138 0 0 1-.153.11l-1.731-.346c-.068-.017-.11-.084-.102-.16a.138.138 0 0 1 .152-.11zm-15.13-.051c.068-.017.135.034.152.11a.135.135 0 0 1-.101.16l-1.732.338c-.068.016-.136-.034-.153-.11a.122.122 0 0 1-.003-.03.115.115 0 0 1 .06-.11.14.14 0 0 1 .045-.02zm16.205-.583l.785.06c.068.008.127.067.118.143a.137.137 0 0 1-.135.127l-.785-.06c-.068-.008-.119-.076-.119-.143a.137.137 0 0 1 .136-.127zm-17.286-.076a.131.131 0 0 1 .143.118c.009.076-.042.144-.11.152l-.777.093a.131.131 0 0 1-.143-.118c-.009-.076.042-.144.11-.152zm18.105-.786c.067 0 .127.06.127.135 0 .076-.06.135-.127.135h-1.766c-.067 0-.126-.059-.126-.135 0-.076.059-.135.126-.135zm-17.142-.05c.067 0 .126.059.126.135 0 .076-.059.135-.126.135H3.546c-.067 0-.127-.06-.127-.135 0-.076.06-.135.127-.135zm17.083-.88a.131.131 0 0 1 .143.119c.009.076-.042.144-.11.152l-.777.093a.131.131 0 0 1-.143-.118c-.009-.076.042-.144.11-.152zm-18.798-.042l.785.06c.068.008.119.076.119.143a.137.137 0 0 1-.136.127l-.785-.06c-.068-.008-.127-.067-.118-.143a.137.137 0 0 1 .135-.127zm18.654-.86c.068-.017.136.033.153.11l.003.03a.115.115 0 0 1-.06.11.133.133 0 0 1-.045.02l-1.732.337c-.068.017-.135-.034-.152-.11a.135.135 0 0 1 .101-.16zm-18.493-.06l1.731.346c.068.017.11.084.102.16a.138.138 0 0 1-.152.11l-1.732-.346a.136.136 0 0 1-.102-.16.138.138 0 0 1 .153-.11zm18.304-.86a.14.14 0 0 1 .121.091.129.129 0 0 1-.084.169l-.744.245a.144.144 0 0 1-.169-.085.13.13 0 0 1 .085-.169l.743-.245a.1.1 0 0 1 .048-.006zm-18.126-.025l.04.006.761.211a.13.13 0 0 1 .093.16c-.016.068-.093.119-.16.094l-.76-.212a.117.117 0 0 1-.042-.02.138.138 0 0 1-.052-.14c.017-.068.093-.118.16-.093zm17.757-.83a.131.131 0 0 1 .17.076.182.182 0 0 1 .009.05.137.137 0 0 1-.077.127l-1.63.676a.131.131 0 0 1-.17-.076.14.14 0 0 1 .068-.177zm-17.41-.05l.04.007 1.631.676a.14.14 0 0 1 .067.178.131.131 0 0 1-.169.076l-1.63-.676c-.053-.02-.08-.071-.076-.13a.131.131 0 0 1 .177-.124zm17.06-.801a.13.13 0 0 1 .138.116.122.122 0 0 1-.057.127l-.685.388a.136.136 0 0 1-.177-.05c-.034-.068-.017-.144.042-.178l.684-.389a.117.117 0 0 1 .055-.014zM4.671 8.408l.041.013.701.355c.068.025.093.11.06.177a.13.13 0 0 1-.178.06l-.701-.356a.13.13 0 0 1-.06-.177.13.13 0 0 1 .178-.06zm16.135-.748a.13.13 0 0 1 .186.043.135.135 0 0 1-.033.186l-1.47.98a.13.13 0 0 1-.186-.043.135.135 0 0 1 .033-.186zM5.171 7.61l.048.017 1.462.98c.067.042.076.126.033.186a.146.146 0 0 1-.186.042l-1.461-.98c-.06-.042-.076-.118-.034-.186a.146.146 0 0 1 .186-.042zm1.045-1.386c.05-.05.135-.05.186 0l1.25 1.242a.12.12 0 0 1 0 .186.133.133 0 0 1-.186 0L6.216 6.41a.133.133 0 0 1 0-.186zm14.033.701c.05-.05.135-.042.186.017.05.06.042.144-.009.186l-.6.507c-.05.05-.135.042-.186-.017-.05-.059-.042-.143.009-.186zm-14.675 0c.042-.058.127-.067.186-.025l.617.482c.058.042.067.127.025.186s-.127.067-.186.025l-.617-.482c-.059-.042-.067-.126-.025-.185zm12.596-1.84a.134.134 0 0 1 .186-.034c.06.042.076.127.043.186l-.98 1.461a.135.135 0 0 1-.186.034.143.143 0 0 1-.058-.11c0-.029.003-.054.016-.076zm-10.5-.051a.135.135 0 0 1 .186.033l.98 1.461a.129.129 0 0 1-.042.186.135.135 0 0 1-.186-.034l-.98-1.46a.13.13 0 0 1 .042-.187zm11.253.582c.043-.06.127-.068.187-.017.058.042.067.126.025.186l-.49.616c-.043.06-.127.068-.186.017-.06-.042-.068-.126-.026-.185zM6.9 5.599a.133.133 0 0 1 .186.008l.515.592c.043.06.043.144-.017.186a.133.133 0 0 1-.185-.009l-.516-.59c-.05-.052-.042-.136.017-.187zm9.755-1.454l.046.01a.132.132 0 0 1 .076.168l-.676 1.63c-.034.068-.11.102-.178.068a.131.131 0 0 1-.076-.169l.676-1.63c.025-.068.102-.093.178-.068zm-7.347.01a.14.14 0 0 1 .177.067l.685 1.63c.025.06-.009.136-.076.17a.14.14 0 0 1-.178-.068l-.684-1.63a.131.131 0 0 1 .076-.17zm1.783-.55a.132.132 0 0 1 .101.018.108.108 0 0 1 .06.083l.354 1.732c.017.068-.025.136-.101.153a.135.135 0 0 1-.16-.102l-.356-1.732c-.016-.068.035-.144.102-.152zm3.757-.003l.044.003a.138.138 0 0 1 .11.152l-.346 1.732c-.017.068-.085.11-.16.102a.138.138 0 0 1-.11-.153l.346-1.732a.136.136 0 0 1 .16-.101zm2.648.928l.04.013a.13.13 0 0 1 .06.178l-.355.7a.13.13 0 0 1-.177.06.13.13 0 0 1-.06-.177l.355-.702a.13.13 0 0 1 .178-.059zm-8.987.014a.12.12 0 0 1 .123.058l.388.685c.034.06.017.135-.05.177-.068.034-.144.017-.178-.042l-.388-.684c-.034-.06-.017-.144.05-.178a.16.16 0 0 1 .055-.016zm4.508-1.125c.076 0 .135.06.135.127v1.766c0 .067-.068.126-.135.126-.076 0-.135-.059-.135-.126V3.546c0-.067.06-.127.135-.127zm2.732.394l.039.003c.067.017.118.093.093.16l-.212.761c-.016.068-.084.11-.16.093-.067-.016-.118-.093-.093-.16l.211-.76a.117.117 0 0 1 .02-.042.138.138 0 0 1 .14-.052zm-5.562.02a.131.131 0 0 1 .169.076l.245.744a.144.144 0 0 1-.085.169.131.131 0 0 1-.17-.076l-.244-.744a.118.118 0 0 1-.007-.046c0-.035.018-.07.044-.092a.146.146 0 0 1 .048-.03zm3.75-.38a.137.137 0 0 1 .128.135l-.06.786c-.008.076-.067.127-.143.118a.138.138 0 0 1-.127-.135l.06-.786a.132.132 0 0 1 .143-.118zm-1.926.009c.077-.009.144.042.153.11l.101.777a.132.132 0 0 1-.118.143c-.076.009-.144-.042-.152-.11l-.102-.777a.131.131 0 0 1 .118-.143z", class: "filled" })))
783
+ h("path", { d: "M13 2c6.066 0 11 4.934 11 11s-4.934 11-11 11S2 19.066 2 13 6.934 2 13 2zm0 .71C7.326 2.71 2.71 7.326 2.71 13c0 5.674 4.616 10.29 10.29 10.29 5.674 0 10.29-4.616 10.29-10.29 0-5.674-4.616-10.29-10.29-10.29zm-.017 17.852c.076 0 .135.059.135.126v1.766c0 .067-.06.127-.135.127-.076 0-.135-.06-.135-.127v-1.766c0-.067.068-.126.135-.126zm-.845.946a.138.138 0 0 1 .127.135l-.06.786a.132.132 0 0 1-.143.118.137.137 0 0 1-.127-.135l.06-.786c.008-.076.067-.127.143-.118zm1.715 0c.076-.009.144.042.152.11l.102.777a.131.131 0 0 1-.118.143c-.077.009-.144-.042-.153-.11l-.101-.777a.132.132 0 0 1 .118-.143zm.643-1.099a.136.136 0 0 1 .16.102l.355 1.732c.017.068-.034.144-.102.152a.132.132 0 0 1-.1-.018.108.108 0 0 1-.06-.083l-.355-1.732c-.017-.068.026-.136.102-.153zm-2.991 0a.138.138 0 0 1 .11.153l-.347 1.732a.136.136 0 0 1-.16.101.138.138 0 0 1-.11-.152l.346-1.732c.017-.068.085-.11.16-.102zm-1.058.757l.044.004c.067.016.118.093.093.16l-.211.76a.117.117 0 0 1-.02.042.138.138 0 0 1-.14.052c-.068-.017-.119-.093-.094-.16l.212-.761c.016-.068.084-.11.16-.093zm5.037.012a.131.131 0 0 1 .17.076l.244.744a.127.127 0 0 1-.037.139.146.146 0 0 1-.047.03.131.131 0 0 1-.17-.076l-.244-.744a.144.144 0 0 1 .084-.169zm.422-1.2a.14.14 0 0 1 .178.068l.684 1.63a.131.131 0 0 1-.076.17.14.14 0 0 1-.177-.068l-.685-1.63c-.025-.06.009-.136.076-.17zm-5.87-.012l.04.013a.131.131 0 0 1 .077.169l-.676 1.63c-.025.067-.102.093-.178.067a.131.131 0 0 1-.076-.168l.676-1.631c.034-.067.11-.101.178-.067zm-1.14.54l.04.013a.13.13 0 0 1 .06.177l-.355.702a.13.13 0 0 1-.178.059.13.13 0 0 1-.059-.178l.355-.7a.13.13 0 0 1 .177-.06zm8.134.03c.067-.034.144-.017.177.042l.389.685a.128.128 0 0 1-.05.177.16.16 0 0 1-.056.016.12.12 0 0 1-.122-.058l-.389-.685c-.034-.059-.017-.135.05-.177zm.177-1.25a.135.135 0 0 1 .186.034l.98 1.461a.13.13 0 0 1-.042.186.135.135 0 0 1-.186-.034l-.98-1.461a.129.129 0 0 1 .042-.186zm-8.625.017a.135.135 0 0 1 .185-.034.143.143 0 0 1 .058.11.143.143 0 0 1-.015.076l-.98 1.461a.134.134 0 0 1-.186.034.146.146 0 0 1-.043-.186zm9.834.312a.133.133 0 0 1 .185.009l.516.591c.05.051.042.135-.017.186a.133.133 0 0 1-.186-.008l-.515-.592c-.043-.06-.043-.144.017-.186zM7.356 19.6c.043-.06.127-.068.186-.017.06.042.068.126.026.185l-.49.617c-.043.06-.127.068-.187.017-.058-.042-.067-.126-.025-.186zM19.938 6.014l-5.73 8.185-8.146 5.787 5.73-8.186 8.146-5.786zm-1.59 12.334a.132.132 0 0 1 .186 0l1.25 1.242c.05.05.05.135 0 .186a.133.133 0 0 1-.186 0l-1.25-1.242a.12.12 0 0 1 0-.186zm1.25.084c.042-.059.127-.067.186-.025l.617.482c.059.042.067.126.025.185-.042.06-.127.068-.186.026l-.617-.482c-.058-.042-.067-.127-.025-.186zm-13.424-.067c.05-.05.135-.042.186.017.05.059.042.143-.009.186l-.6.507c-.05.05-.135.042-.186-.017-.05-.06-.042-.144.009-.186zm13.25-1.216l.048.016 1.47.98c.059.042.076.118.033.186a.14.14 0 0 1-.06.045l-.014.006a.147.147 0 0 1-.03.006h-.007a.135.135 0 0 1-.075-.015l-1.47-.98c-.067-.042-.076-.126-.033-.186a.146.146 0 0 1 .186-.042zM6.51 17.131a.13.13 0 0 1 .186.043.135.135 0 0 1-.033.186l-1.47.98a.13.13 0 0 1-.186-.043.135.135 0 0 1 .033-.186zm14.153-.157l.041.014.701.355a.13.13 0 0 1 .06.177.13.13 0 0 1-.178.06l-.701-.356c-.068-.025-.093-.11-.06-.177a.13.13 0 0 1 .178-.06zM5.26 16.937a.136.136 0 0 1 .177.05c.034.068.017.144-.041.178l-.685.389a.117.117 0 0 1-.055.014.13.13 0 0 1-.138-.116.122.122 0 0 1 .058-.127zm14.845-1.115l.042.008 1.63.676c.053.02.08.071.076.13a.131.131 0 0 1-.177.124l-1.631-.676a.14.14 0 0 1-.067-.178.131.131 0 0 1 .169-.076zm-14.27-.034a.131.131 0 0 1 .169.076.14.14 0 0 1-.068.177l-1.63.676a.131.131 0 0 1-.17-.076.146.146 0 0 1-.009-.05c0-.052.026-.102.077-.127zm15.453-.378l.041.006.76.212a.117.117 0 0 1 .042.02.14.14 0 0 1 .052.14c-.017.068-.093.118-.16.093l-.761-.211a.13.13 0 0 1-.093-.16c.016-.068.093-.119.16-.094zm-16.644-.053a.144.144 0 0 1 .169.085.13.13 0 0 1-.085.169l-.743.245a.1.1 0 0 1-.048.006.142.142 0 0 1-.121-.091.129.129 0 0 1 .084-.169zm15.916-.971l1.732.346a.136.136 0 0 1 .102.16.138.138 0 0 1-.153.11l-1.731-.346c-.068-.017-.11-.084-.102-.16a.138.138 0 0 1 .152-.11zm-15.13-.051c.068-.017.135.034.152.11a.135.135 0 0 1-.101.16l-1.732.338c-.068.016-.136-.034-.153-.11a.122.122 0 0 1-.003-.03.115.115 0 0 1 .06-.11.14.14 0 0 1 .045-.02zm16.205-.583l.785.06c.068.008.127.067.118.143a.137.137 0 0 1-.135.127l-.785-.06c-.068-.008-.119-.076-.119-.143a.137.137 0 0 1 .136-.127zm-17.286-.076a.131.131 0 0 1 .143.118c.009.076-.042.144-.11.152l-.777.093a.131.131 0 0 1-.143-.118c-.009-.076.042-.144.11-.152zm18.105-.786c.067 0 .127.06.127.135 0 .076-.06.135-.127.135h-1.766c-.067 0-.126-.059-.126-.135 0-.076.059-.135.126-.135zm-17.142-.05c.067 0 .126.059.126.135 0 .076-.059.135-.126.135H3.546c-.067 0-.127-.06-.127-.135 0-.076.06-.135.127-.135zm17.083-.88a.131.131 0 0 1 .143.119c.009.076-.042.144-.11.152l-.777.093a.131.131 0 0 1-.143-.118c-.009-.076.042-.144.11-.152zm-18.798-.042l.785.06c.068.008.119.076.119.143a.137.137 0 0 1-.136.127l-.785-.06c-.068-.008-.127-.067-.118-.143a.137.137 0 0 1 .135-.127zm18.654-.86c.068-.017.136.033.153.11l.003.03a.115.115 0 0 1-.06.11.133.133 0 0 1-.045.02l-1.732.337c-.068.017-.135-.034-.152-.11a.135.135 0 0 1 .101-.16zm-18.493-.06l1.731.346c.068.017.11.084.102.16a.138.138 0 0 1-.152.11l-1.732-.346a.136.136 0 0 1-.102-.16.138.138 0 0 1 .153-.11zm18.304-.86a.14.14 0 0 1 .121.091.129.129 0 0 1-.084.169l-.744.245a.144.144 0 0 1-.169-.085.13.13 0 0 1 .085-.169l.743-.245a.1.1 0 0 1 .048-.006zm-18.126-.025l.04.006.761.211a.13.13 0 0 1 .093.16c-.016.068-.093.119-.16.094l-.76-.212a.117.117 0 0 1-.042-.02.138.138 0 0 1-.052-.14c.017-.068.093-.118.16-.093zm17.757-.83a.131.131 0 0 1 .17.076.182.182 0 0 1 .009.05.137.137 0 0 1-.077.127l-1.63.676a.131.131 0 0 1-.17-.076.14.14 0 0 1 .068-.177zm-17.41-.05l.04.007 1.631.676a.14.14 0 0 1 .067.178.131.131 0 0 1-.169.076l-1.63-.676c-.053-.02-.08-.071-.076-.13a.131.131 0 0 1 .177-.124zm17.06-.801a.13.13 0 0 1 .138.116.122.122 0 0 1-.057.127l-.685.388a.136.136 0 0 1-.177-.05c-.034-.068-.017-.144.042-.178l.684-.389a.117.117 0 0 1 .055-.014zM4.671 8.408l.041.013.701.355c.068.025.093.11.06.177a.13.13 0 0 1-.178.06l-.701-.356a.13.13 0 0 1-.06-.177.13.13 0 0 1 .178-.06zm16.135-.748a.13.13 0 0 1 .186.043.135.135 0 0 1-.033.186l-1.47.98a.13.13 0 0 1-.186-.043.135.135 0 0 1 .033-.186zM5.171 7.61l.048.017 1.462.98c.067.042.076.126.033.186a.146.146 0 0 1-.186.042l-1.461-.98c-.06-.042-.076-.118-.034-.186a.146.146 0 0 1 .186-.042zm1.045-1.386c.05-.05.135-.05.186 0l1.25 1.242a.12.12 0 0 1 0 .186.133.133 0 0 1-.186 0L6.216 6.41a.133.133 0 0 1 0-.186zm14.033.701c.05-.05.135-.042.186.017.05.06.042.144-.009.186l-.6.507c-.05.05-.135.042-.186-.017-.05-.059-.042-.143.009-.186zm-14.675 0c.042-.058.127-.067.186-.025l.617.482c.058.042.067.127.025.186s-.127.067-.186.025l-.617-.482c-.059-.042-.067-.126-.025-.185zm12.596-1.84a.134.134 0 0 1 .186-.034c.06.042.076.127.043.186l-.98 1.461a.135.135 0 0 1-.186.034.143.143 0 0 1-.058-.11c0-.029.003-.054.016-.076zm-10.5-.051a.135.135 0 0 1 .186.033l.98 1.461a.129.129 0 0 1-.042.186.135.135 0 0 1-.186-.034l-.98-1.46a.13.13 0 0 1 .042-.187zm11.253.582c.043-.06.127-.068.187-.017.058.042.067.126.025.186l-.49.616c-.043.06-.127.068-.186.017-.06-.042-.068-.126-.026-.185zM6.9 5.599a.133.133 0 0 1 .186.008l.515.592c.043.06.043.144-.017.186a.133.133 0 0 1-.185-.009l-.516-.59c-.05-.052-.042-.136.017-.187zm9.755-1.454l.046.01a.132.132 0 0 1 .076.168l-.676 1.63c-.034.068-.11.102-.178.068a.131.131 0 0 1-.076-.169l.676-1.63c.025-.068.102-.093.178-.068zm-7.347.01a.14.14 0 0 1 .177.067l.685 1.63c.025.06-.009.136-.076.17a.14.14 0 0 1-.178-.068l-.684-1.63a.131.131 0 0 1 .076-.17zm1.783-.55a.132.132 0 0 1 .101.018.108.108 0 0 1 .06.083l.354 1.732c.017.068-.025.136-.101.153a.135.135 0 0 1-.16-.102l-.356-1.732c-.016-.068.035-.144.102-.152zm3.757-.003l.044.003a.138.138 0 0 1 .11.152l-.346 1.732c-.017.068-.085.11-.16.102a.138.138 0 0 1-.11-.153l.346-1.732a.136.136 0 0 1 .16-.101zm2.648.928l.04.013a.13.13 0 0 1 .06.178l-.355.7a.13.13 0 0 1-.177.06.13.13 0 0 1-.06-.177l.355-.702a.13.13 0 0 1 .178-.059zm-8.987.014a.12.12 0 0 1 .123.058l.388.685c.034.06.017.135-.05.177-.068.034-.144.017-.178-.042l-.388-.684c-.034-.06-.017-.144.05-.178a.16.16 0 0 1 .055-.016zm4.508-1.125c.076 0 .135.06.135.127v1.766c0 .067-.068.126-.135.126-.076 0-.135-.059-.135-.126V3.546c0-.067.06-.127.135-.127zm2.732.394l.039.003c.067.017.118.093.093.16l-.212.761c-.016.068-.084.11-.16.093-.067-.016-.118-.093-.093-.16l.211-.76a.117.117 0 0 1 .02-.042.138.138 0 0 1 .14-.052zm-5.562.02a.131.131 0 0 1 .169.076l.245.744a.144.144 0 0 1-.085.169.131.131 0 0 1-.17-.076l-.244-.744a.118.118 0 0 1-.007-.046c0-.035.018-.07.044-.092a.146.146 0 0 1 .048-.03zm3.75-.38a.137.137 0 0 1 .128.135l-.06.786c-.008.076-.067.127-.143.118a.138.138 0 0 1-.127-.135l.06-.786a.132.132 0 0 1 .143-.118zm-1.926.009c.077-.009.144.042.153.11l.101.777a.132.132 0 0 1-.118.143c-.076.009-.144-.042-.152-.11l-.102-.777a.131.131 0 0 1 .118-.143z", class: "filled" }))),
784
784
  },
785
785
  'bubble-graph': {
786
786
  markup: () => (h("g", null,
@@ -788,7 +788,7 @@ const icons = {
788
788
  h("ellipse", { cx: "7.778", cy: "14.3", rx: "7.778", ry: "7.7" }),
789
789
  h("ellipse", { cx: "16.111", cy: "3.85", rx: "3.889", ry: "3.85" }),
790
790
  h("ellipse", { cx: "18.333", cy: "11", rx: "1.667", ry: "1.65" })),
791
- h("path", { class: "stroke-secondary", d: "M19.112 7.5c.92 0 1.666-.739 1.666-1.65 0-.911-.746-1.65-1.666-1.65M5.982 19.017a5.49 5.49 0 0 0 4.8 2.838c3.037 0 5.5-2.487 5.5-5.555 0-3.069-2.464-5.556-5.5-5.556" })))
791
+ h("path", { class: "stroke-secondary", d: "M19.112 7.5c.92 0 1.666-.739 1.666-1.65 0-.911-.746-1.65-1.666-1.65M5.982 19.017a5.49 5.49 0 0 0 4.8 2.838c3.037 0 5.5-2.487 5.5-5.555 0-3.069-2.464-5.556-5.5-5.556" }))),
792
792
  },
793
793
  bug: {
794
794
  markup: () => (h("g", null,
@@ -798,78 +798,78 @@ const icons = {
798
798
  h("circle", { cx: "10.067", cy: "8.8", r: "1.467" }),
799
799
  h("circle", { cx: "2.367", cy: "14.3", r: "1.833" }),
800
800
  h("circle", { cx: "10.433", cy: "14.3", r: "1.833" }),
801
- h("path", { d: "M3.76 1.76L2 0m7.04 1.76L10.8 0M6.4.733c-1.907 0-3.447 1.357-3.703 3.08 0 0 1.87 1.357 3.703 1.357 1.833 0 3.703-1.32 3.703-1.357C9.847 2.09 8.307.733 6.4.733z" }))))
801
+ h("path", { d: "M3.76 1.76L2 0m7.04 1.76L10.8 0M6.4.733c-1.907 0-3.447 1.357-3.703 3.08 0 0 1.87 1.357 3.703 1.357 1.833 0 3.703-1.32 3.703-1.357C9.847 2.09 8.307.733 6.4.733z" })))),
802
802
  },
803
803
  buildings: {
804
804
  markup: () => (h("g", null,
805
805
  h("path", { class: "stroke-primary", d: "M17.787 11.377V4.164H6.967v9.377M3 15.705h7.934v7.934H3zm10.82-2.164h7.934v10.098H13.82zM10.934 23.64h2.886" }),
806
- h("path", { class: "stroke-secondary", d: "M9.852 6.689h5.05m-5.05 2.163h5.05m-5.05 2.164h5.05M5.885 18.59H8.05m8.655-2.164h2.164m-2.164 2.164h2.164m-2.164 2.164h2.164m-12.984 0H8.05M12.377 2v2.164" })))
806
+ h("path", { class: "stroke-secondary", d: "M9.852 6.689h5.05m-5.05 2.163h5.05m-5.05 2.164h5.05M5.885 18.59H8.05m8.655-2.164h2.164m-2.164 2.164h2.164m-2.164 2.164h2.164m-12.984 0H8.05M12.377 2v2.164" }))),
807
807
  },
808
808
  calculator: {
809
809
  markup: () => (h("g", null,
810
810
  h("path", { d: "M21.487 24H5.457A1.462 1.462 0 0 1 4 22.533V3.467C4 2.657 4.652 2 5.457 2h16.03c.805 0 1.457.657 1.457 1.467v19.066c0 .81-.652 1.467-1.457 1.467z", class: "stroke-primary" }),
811
- h("path", { class: "stroke-secondary", d: "M6.915 4.933H20.03v2.933H6.915zm0 5.134H9.83v2.2H6.915zm5.1 0h2.915v2.2h-2.915zm5.1 0h2.915v2.2h-2.915zm-10.2 4.4H9.83v2.2H6.915zm5.1 0h2.915v2.2h-2.915zm-5.1 4.4H9.83v2.2H6.915zm5.1 0h2.915v2.2h-2.915zm5.1-4.4h2.915v6.6h-2.915z" })))
811
+ h("path", { class: "stroke-secondary", d: "M6.915 4.933H20.03v2.933H6.915zm0 5.134H9.83v2.2H6.915zm5.1 0h2.915v2.2h-2.915zm5.1 0h2.915v2.2h-2.915zm-10.2 4.4H9.83v2.2H6.915zm5.1 0h2.915v2.2h-2.915zm-5.1 4.4H9.83v2.2H6.915zm5.1 0h2.915v2.2h-2.915zm5.1-4.4h2.915v6.6h-2.915z" }))),
812
812
  },
813
813
  calendar: {
814
814
  markup: () => (h("g", null,
815
815
  h("path", { class: "stroke-primary", d: "M19.6 4.2H24V24H2V4.2h4.4M24 9.333H2M8.6 4.2h8.8" }),
816
816
  h("path", { class: "stroke-secondary filled", d: "M6.4 2h2.2v4.4H6.4zm11 0h2.2v4.4h-2.2zm-11 11v7.333h8.8v-3.666h4.4V13z" }),
817
- h("path", { class: "stroke-secondary", d: "M15.2 13v3.667M10.8 13v7.333m4.4-3.666H6.4" })))
817
+ h("path", { class: "stroke-secondary", d: "M15.2 13v3.667M10.8 13v7.333m4.4-3.666H6.4" }))),
818
818
  },
819
819
  'calendar-confirm': {
820
820
  markup: () => (h("g", null,
821
821
  h("path", { class: "stroke-primary", d: "M23.241 9.586H2m9.483 12.138H2V4.276h21.241v9.483M6.931 2v4.552M18.31 2v4.552" }),
822
822
  h("g", { class: "stroke-secondary", transform: "translate(13.759 14.897)" },
823
823
  h("circle", { cx: "4.552", cy: "4.552", r: "4.552", class: "filled" }),
824
- h("path", { d: "M2.655 4.931l1.138 1.138 2.655-2.655" }))))
824
+ h("path", { d: "M2.655 4.931l1.138 1.138 2.655-2.655" })))),
825
825
  },
826
826
  'calendar-create': {
827
827
  markup: () => (h("g", null,
828
828
  h("path", { class: "stroke-primary", d: "M23.241 9.586H2m9.483 12.138H2V4.276h21.241v9.483M6.931 2v4.552M18.31 2v4.552" }),
829
829
  h("g", { class: "stroke-secondary", transform: "translate(13.759 14.897)" },
830
830
  h("circle", { cx: "4.552", cy: "4.552", r: "4.552", class: "filled" }),
831
- h("path", { d: "M4.552 3.034V6.07M3.034 4.552H6.07" }))))
831
+ h("path", { d: "M4.552 3.034V6.07M3.034 4.552H6.07" })))),
832
832
  },
833
833
  'calendar-remove': {
834
834
  markup: () => (h("g", null,
835
835
  h("path", { class: "stroke-primary", d: "M23.241 9.586H2m9.483 12.138H2V4.276h21.241v9.483M6.931 2v4.552M18.31 2v4.552" }),
836
836
  h("g", { class: "stroke-secondary", transform: "translate(13.759 14.897)" },
837
837
  h("circle", { cx: "4.552", cy: "4.552", r: "4.552", class: "filled" }),
838
- h("path", { d: "M3.034 4.552H6.07" }))))
838
+ h("path", { d: "M3.034 4.552H6.07" })))),
839
839
  },
840
840
  'calendar-skip': {
841
841
  markup: () => (h("g", null,
842
842
  h("path", { class: "stroke-primary", d: "M23.241 9.586H2m9.483 12.138H2V4.276h21.241v9.483M6.931 2v4.552M18.31 2v4.552" }),
843
- h("path", { class: "stroke-secondary", d: "M17 23v-6l4 3zm5.15-6v6" })))
843
+ h("path", { class: "stroke-secondary", d: "M17 23v-6l4 3zm5.15-6v6" }))),
844
844
  },
845
845
  'calendar-time': {
846
846
  markup: () => (h("g", null,
847
847
  h("path", { class: "stroke-primary", d: "M23.241 9.586H2m9.483 12.138H2V4.276h21.241v9.483M6.931 2v4.552M18.31 2v4.552" }),
848
848
  h("g", { class: "stroke-secondary", transform: "translate(13.759 14.897)" },
849
849
  h("circle", { cx: "4.552", cy: "4.552", r: "4.552", class: "filled" }),
850
- h("path", { d: "M4.552 2.655v1.897h1.896" }))))
850
+ h("path", { d: "M4.552 2.655v1.897h1.896" })))),
851
851
  },
852
852
  'call-color': {
853
853
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
854
- h("path", { fill: "#6FC955", "fill-rule": "nonzero", d: "M16.362 15.286l-1.754 2.191a18.493 18.493 0 0 1-6.574-6.573l2.192-1.754a1.488 1.488 0 0 0 .43-1.766L8.658 2.886a1.49 1.49 0 0 0-1.736-.837l-3.802.985A1.497 1.497 0 0 0 2.014 4.69a22.098 22.098 0 0 0 18.808 18.808 1.498 1.498 0 0 0 1.655-1.105l.985-3.803a1.49 1.49 0 0 0-.837-1.736l-4.497-1.995a1.49 1.49 0 0 0-1.766.428z" })))
854
+ h("path", { fill: "#6FC955", "fill-rule": "nonzero", d: "M16.362 15.286l-1.754 2.191a18.493 18.493 0 0 1-6.574-6.573l2.192-1.754a1.488 1.488 0 0 0 .43-1.766L8.658 2.886a1.49 1.49 0 0 0-1.736-.837l-3.802.985A1.497 1.497 0 0 0 2.014 4.69a22.098 22.098 0 0 0 18.808 18.808 1.498 1.498 0 0 0 1.655-1.105l.985-3.803a1.49 1.49 0 0 0-.837-1.736l-4.497-1.995a1.49 1.49 0 0 0-1.766.428z" }))),
855
855
  },
856
856
  'call-filled': {
857
857
  markup: () => (h("g", null,
858
- h("path", { d: "M16.362 15.286l-1.754 2.191a18.493 18.493 0 0 1-6.574-6.573l2.192-1.754a1.488 1.488 0 0 0 .43-1.766L8.658 2.886a1.49 1.49 0 0 0-1.736-.837l-3.802.985A1.497 1.497 0 0 0 2.014 4.69a22.098 22.098 0 0 0 18.808 18.808 1.498 1.498 0 0 0 1.655-1.105l.985-3.803a1.49 1.49 0 0 0-.837-1.736l-4.497-1.995a1.49 1.49 0 0 0-1.766.428z", class: "filled" })))
858
+ h("path", { d: "M16.362 15.286l-1.754 2.191a18.493 18.493 0 0 1-6.574-6.573l2.192-1.754a1.488 1.488 0 0 0 .43-1.766L8.658 2.886a1.49 1.49 0 0 0-1.736-.837l-3.802.985A1.497 1.497 0 0 0 2.014 4.69a22.098 22.098 0 0 0 18.808 18.808 1.498 1.498 0 0 0 1.655-1.105l.985-3.803a1.49 1.49 0 0 0-.837-1.736l-4.497-1.995a1.49 1.49 0 0 0-1.766.428z", class: "filled" }))),
859
859
  },
860
860
  camera: {
861
861
  markup: () => (h("g", null,
862
862
  h("path", { class: "stroke-primary", d: "M3.983 3.901H6.87M3.623 21.934h18.754c.796 0 1.442-.646 1.442-1.443V7.508c0-.797-.646-1.443-1.442-1.443H19.13L16.606 3.18h-5.049L9.032 6.065h-5.41c-.795 0-1.442.646-1.442 1.443V20.49c0 .797.646 1.443 1.443 1.443z" }),
863
863
  h("g", { class: "stroke-secondary filled", transform: "translate(5.787 8.95)" },
864
864
  h("circle", { cx: "8.295", cy: "5.049", r: "5.049" }),
865
- h("circle", { cx: ".361", cy: ".721", r: "1" }))))
865
+ h("circle", { cx: ".361", cy: ".721", r: "1" })))),
866
866
  },
867
867
  car: {
868
868
  markup: () => (h("g", null,
869
869
  h("path", { class: "stroke-primary", d: "M11.557 6.18v5.05m-6.852 0H18.41M21.655 17h2.164v-4.328c0-.797-.646-1.443-1.442-1.443H18.41l-2.47-4.322a1.443 1.443 0 0 0-1.253-.727H7.82c-.577 0-1.1.344-1.326.874l-1.79 4.176h-1.08c-.798 0-1.444.645-1.444 1.442V17h2.164m4.328 0h8.656" }),
870
870
  h("g", { class: "stroke-secondary filled", transform: "translate(4.344 14.836)" },
871
871
  h("circle", { cx: "2.164", cy: "2.164", r: "2.164" }),
872
- h("circle", { cx: "15.148", cy: "2.164", r: "2.164" }))))
872
+ h("circle", { cx: "15.148", cy: "2.164", r: "2.164" })))),
873
873
  },
874
874
  'car-front': {
875
875
  markup: () => (h("g", null,
@@ -877,17 +877,17 @@ const icons = {
877
877
  h("g", { class: "stroke-secondary filled", transform: "translate(4.344 13.64)" },
878
878
  h("circle", { cx: "1.443", cy: "1.443", r: "1.443" }),
879
879
  h("circle", { cx: "15.869", cy: "1.443", r: "1.443" }),
880
- h("path", { d: "M6.492 1.443h4.328" }))))
880
+ h("path", { d: "M6.492 1.443h4.328" })))),
881
881
  },
882
882
  card: {
883
- markup: () => (h("path", { class: "stroke-primary", d: "M2 18.667v-13.2C2 4.657 2.656 4 3.466 4h19.067C23.343 4 24 4.657 24 5.467v13.2c0 .81-.657 1.467-1.467 1.467H3.466c-.81 0-1.466-.657-1.466-1.467zM2 8.4h22M2 12.067h22m-19.067 4.4h5.133m8.8 0h2.2" }))
883
+ markup: () => (h("path", { class: "stroke-primary", d: "M2 18.667v-13.2C2 4.657 2.656 4 3.466 4h19.067C23.343 4 24 4.657 24 5.467v13.2c0 .81-.657 1.467-1.467 1.467H3.466c-.81 0-1.466-.657-1.466-1.467zM2 8.4h22M2 12.067h22m-19.067 4.4h5.133m8.8 0h2.2" })),
884
884
  },
885
885
  'card-amazon': {
886
886
  markup: () => (h("g", null,
887
887
  h("path", { class: "stroke-primary", d: "M2 19.67V6.47C2 5.66 2.66 5 3.47 5h19.06c.81 0 1.47.66 1.47 1.47v13.2c0 .8-.66 1.46-1.47 1.46H3.47c-.81 0-1.47-.65-1.47-1.46Z" }),
888
888
  h("g", { class: "fill-primary" },
889
889
  h("path", { d: "M14.77 14.47a5.7 5.7 0 0 1-7-.5c-.09-.08-.01-.18.08-.12a7.75 7.75 0 0 0 6.8.42c.14-.06.26.1.12.2Z" }),
890
- h("path", { d: "M15.12 14.06c-.1-.14-.72-.06-1-.03-.08.01-.1-.06-.01-.11.48-.35 1.28-.25 1.38-.13.09.11-.03.91-.49 1.3-.07.05-.13.02-.1-.05.1-.26.33-.84.22-.98Zm-.98-2.56v-.34c0-.05.04-.08.09-.08h1.5c.04 0 .08.03.08.08v.29c0 .05-.04.1-.12.2l-.77 1.11c.29 0 .6.04.85.18.06.04.08.09.08.13v.36c0 .05-.05.1-.1.08a1.72 1.72 0 0 0-1.58 0c-.06.03-.11-.03-.11-.08v-.34c0-.05 0-.14.05-.23l.9-1.28h-.78a.08.08 0 0 1-.09-.08ZM8.7 13.58h-.45a.09.09 0 0 1-.08-.08v-2.33c0-.05.04-.09.09-.09h.42c.04 0 .08.04.08.08v.3c.12-.29.33-.43.6-.43.29 0 .47.14.6.44.09-.27.34-.44.62-.44.2 0 .4.08.53.26.14.2.11.48.11.73v1.47c0 .05-.04.08-.09.08h-.45a.09.09 0 0 1-.08-.08v-1.23l-.01-.44c-.04-.16-.14-.2-.27-.2a.3.3 0 0 0-.27.19c-.05.12-.04.31-.04.45v1.23c0 .05-.04.09-.1.09h-.45a.08.08 0 0 1-.08-.09v-1.23c0-.26.05-.65-.28-.65-.32 0-.31.38-.31.65v1.23a.09.09 0 0 1-.09.08Zm8.4-2.54c.67 0 1.03.57 1.03 1.3 0 .72-.4 1.28-1.04 1.28-.66 0-1.02-.57-1.02-1.3 0-.72.37-1.29 1.02-1.29Zm0 .47c-.34 0-.36.46-.36.74 0 .29 0 .9.35.9s.37-.5.37-.8c0-.2 0-.43-.07-.61-.05-.17-.15-.23-.3-.23Zm-4.4-.5c.23 0 .52.06.7.23.18.18.2.41.2.67v.82c0 .2.08.3.16.42.03.04.04.09 0 .12l-.35.3a.1.1 0 0 1-.1 0c-.15-.12-.18-.17-.27-.3-.24.26-.42.34-.74.34-.39 0-.68-.24-.68-.71 0-.37.2-.62.48-.74.25-.11.6-.13.86-.16v-.06c0-.1 0-.23-.06-.33-.06-.08-.16-.12-.26-.12-.17 0-.32.1-.36.28 0 .04-.04.08-.08.08l-.44-.05c-.04 0-.08-.04-.07-.1.1-.53.59-.69 1.02-.69Zm-5.94 0c.22 0 .5.06.68.23.2.18.2.41.2.67v.82c0 .2.09.3.17.42.03.04.04.09 0 .12l-.35.3a.1.1 0 0 1-.1 0c-.16-.12-.18-.17-.27-.3-.25.26-.42.34-.74.34-.39 0-.68-.24-.68-.71 0-.37.2-.62.48-.74.25-.11.59-.13.85-.16v-.06c0-.1.01-.23-.05-.33-.06-.08-.16-.12-.26-.12-.17 0-.32.1-.36.28 0 .04-.04.08-.08.08l-.44-.05c-.04 0-.08-.04-.07-.1.1-.53.59-.69 1.02-.69Zm12.93.03c.2 0 .4.07.52.27.1.15.12.4.12.6v1.59c0 .04-.04.07-.08.07h-.46a.09.09 0 0 1-.08-.07v-1.26c0-.26.03-.63-.28-.63-.11 0-.21.07-.27.19-.04.1-.06.21-.07.32v1.37c0 .05-.04.08-.09.08h-.45a.09.09 0 0 1-.08-.08v-2.33c0-.04.04-.08.09-.08h.42c.04 0 .07.03.08.07v.36c.13-.32.31-.47.63-.47Zm-6.74 1.32c-.32 0-.67.07-.67.46 0 .2.1.33.28.33.12 0 .24-.08.31-.2.09-.16.09-.31.09-.49Zm-5.95 0c-.32 0-.67.07-.67.46 0 .2.1.33.28.33.12 0 .24-.08.3-.2.1-.16.1-.31.1-.49Z" }))))
890
+ h("path", { d: "M15.12 14.06c-.1-.14-.72-.06-1-.03-.08.01-.1-.06-.01-.11.48-.35 1.28-.25 1.38-.13.09.11-.03.91-.49 1.3-.07.05-.13.02-.1-.05.1-.26.33-.84.22-.98Zm-.98-2.56v-.34c0-.05.04-.08.09-.08h1.5c.04 0 .08.03.08.08v.29c0 .05-.04.1-.12.2l-.77 1.11c.29 0 .6.04.85.18.06.04.08.09.08.13v.36c0 .05-.05.1-.1.08a1.72 1.72 0 0 0-1.58 0c-.06.03-.11-.03-.11-.08v-.34c0-.05 0-.14.05-.23l.9-1.28h-.78a.08.08 0 0 1-.09-.08ZM8.7 13.58h-.45a.09.09 0 0 1-.08-.08v-2.33c0-.05.04-.09.09-.09h.42c.04 0 .08.04.08.08v.3c.12-.29.33-.43.6-.43.29 0 .47.14.6.44.09-.27.34-.44.62-.44.2 0 .4.08.53.26.14.2.11.48.11.73v1.47c0 .05-.04.08-.09.08h-.45a.09.09 0 0 1-.08-.08v-1.23l-.01-.44c-.04-.16-.14-.2-.27-.2a.3.3 0 0 0-.27.19c-.05.12-.04.31-.04.45v1.23c0 .05-.04.09-.1.09h-.45a.08.08 0 0 1-.08-.09v-1.23c0-.26.05-.65-.28-.65-.32 0-.31.38-.31.65v1.23a.09.09 0 0 1-.09.08Zm8.4-2.54c.67 0 1.03.57 1.03 1.3 0 .72-.4 1.28-1.04 1.28-.66 0-1.02-.57-1.02-1.3 0-.72.37-1.29 1.02-1.29Zm0 .47c-.34 0-.36.46-.36.74 0 .29 0 .9.35.9s.37-.5.37-.8c0-.2 0-.43-.07-.61-.05-.17-.15-.23-.3-.23Zm-4.4-.5c.23 0 .52.06.7.23.18.18.2.41.2.67v.82c0 .2.08.3.16.42.03.04.04.09 0 .12l-.35.3a.1.1 0 0 1-.1 0c-.15-.12-.18-.17-.27-.3-.24.26-.42.34-.74.34-.39 0-.68-.24-.68-.71 0-.37.2-.62.48-.74.25-.11.6-.13.86-.16v-.06c0-.1 0-.23-.06-.33-.06-.08-.16-.12-.26-.12-.17 0-.32.1-.36.28 0 .04-.04.08-.08.08l-.44-.05c-.04 0-.08-.04-.07-.1.1-.53.59-.69 1.02-.69Zm-5.94 0c.22 0 .5.06.68.23.2.18.2.41.2.67v.82c0 .2.09.3.17.42.03.04.04.09 0 .12l-.35.3a.1.1 0 0 1-.1 0c-.16-.12-.18-.17-.27-.3-.25.26-.42.34-.74.34-.39 0-.68-.24-.68-.71 0-.37.2-.62.48-.74.25-.11.59-.13.85-.16v-.06c0-.1.01-.23-.05-.33-.06-.08-.16-.12-.26-.12-.17 0-.32.1-.36.28 0 .04-.04.08-.08.08l-.44-.05c-.04 0-.08-.04-.07-.1.1-.53.59-.69 1.02-.69Zm12.93.03c.2 0 .4.07.52.27.1.15.12.4.12.6v1.59c0 .04-.04.07-.08.07h-.46a.09.09 0 0 1-.08-.07v-1.26c0-.26.03-.63-.28-.63-.11 0-.21.07-.27.19-.04.1-.06.21-.07.32v1.37c0 .05-.04.08-.09.08h-.45a.09.09 0 0 1-.08-.08v-2.33c0-.04.04-.08.09-.08h.42c.04 0 .07.03.08.07v.36c.13-.32.31-.47.63-.47Zm-6.74 1.32c-.32 0-.67.07-.67.46 0 .2.1.33.28.33.12 0 .24-.08.31-.2.09-.16.09-.31.09-.49Zm-5.95 0c-.32 0-.67.07-.67.46 0 .2.1.33.28.33.12 0 .24-.08.3-.2.1-.16.1-.31.1-.49Z" })))),
891
891
  },
892
892
  'card-amazon-color': {
893
893
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
@@ -895,19 +895,19 @@ const icons = {
895
895
  h("path", { fill: "#002E64", d: "M22.565 4H3.435C2.642 4 2 4.632 2 5.412v13.176C2 19.368 2.642 20 3.435 20h19.13c.793 0 1.435-.632 1.435-1.412V5.412C24 4.632 23.358 4 22.565 4z" }),
896
896
  h("path", { fill: "#FE9B00", d: "M15.073 13.64c-1 .726-2.45 1.112-3.7 1.112a6.756 6.756 0 0 1-4.519-1.696c-.093-.083-.01-.197.103-.132 1.287.737 2.878 1.18 4.522 1.18a9.121 9.121 0 0 0 3.449-.694c.169-.07.31.11.145.23z" }),
897
897
  h("path", { fill: "#FE9B00", d: "M15.489 13.172c-.128-.161-.846-.076-1.169-.038-.097.01-.112-.073-.024-.134.572-.395 1.51-.28 1.62-.149.11.134-.03 1.06-.566 1.501-.083.068-.161.032-.124-.057.12-.297.391-.962.263-1.123z" }),
898
- h("path", { fill: "#FFF", d: "M14.343 10.205V9.82c0-.058.045-.097.1-.097h1.75c.057 0 .102.04.102.097v.33c0 .055-.048.127-.132.242l-.908 1.274c.337-.008.693.042 1 .212.069.037.088.094.093.15v.41c0 .056-.063.122-.13.088a2.048 2.048 0 0 0-1.85.003c-.06.032-.125-.033-.125-.089v-.39c0-.063.001-.17.065-.265l1.051-1.483h-.915c-.055 0-.1-.04-.1-.097zm-6.389 2.402h-.532a.1.1 0 0 1-.096-.089V9.827c0-.054.047-.097.104-.097h.496a.1.1 0 0 1 .097.09v.352h.01c.13-.34.373-.499.701-.499.334 0 .543.159.692.499a.756.756 0 0 1 .736-.499.76.76 0 0 1 .617.295c.17.226.134.555.134.844v1.698c0 .054-.046.097-.103.097h-.532a.1.1 0 0 1-.096-.096v-1.427c0-.114.01-.396-.015-.504-.04-.181-.159-.232-.313-.232a.354.354 0 0 0-.319.22c-.054.136-.05.363-.05.516v1.426a.099.099 0 0 1-.102.097H8.85a.1.1 0 0 1-.096-.096v-1.427c0-.3.05-.742-.329-.742-.383 0-.368.43-.368.742v1.426a.102.102 0 0 1-.104.097zm9.849-2.934c-.77 0-1.199.651-1.199 1.49 0 .832.423 1.5 1.2 1.5.745 0 1.218-.651 1.218-1.472 0-.85-.428-1.518-1.219-1.518zm0 2.435c-.418 0-.413-.702-.413-1.03 0-.329.025-.855.418-.855.17 0 .289.073.349.26.07.215.079.487.079.714 0 .345-.02.911-.433.911zm2.244.499h-.53a.1.1 0 0 1-.096-.097l-.001-2.692c.004-.05.048-.088.102-.088h.495a.101.101 0 0 1 .094.075v.412h.01c.15-.368.359-.544.726-.544.239 0 .473.086.622.318.14.214.14.577.14.837v1.693a.1.1 0 0 1-.103.085h-.534a.1.1 0 0 1-.095-.085v-1.46c0-.295.035-.725-.333-.725a.349.349 0 0 0-.308.215c-.075.164-.085.328-.085.51v1.448a.101.101 0 0 1-.104.098zm-6.151-.494c-.097-.132-.201-.24-.201-.486v-.817c0-.346.025-.664-.234-.902-.205-.193-.544-.26-.803-.26-.507 0-1.073.185-1.192.802-.012.065.036.1.08.11l.516.055c.048-.003.083-.05.093-.097.044-.212.225-.315.428-.315.11 0 .235.04.3.136.074.108.064.256.064.38v.069c-.309.034-.713.057-1.002.181a.891.891 0 0 0-.568.857c0 .545.349.818.798.818.378 0 .585-.088.878-.381.097.137.129.204.306.349.04.02.09.019.125-.012h.002c.107-.092.3-.257.408-.347.044-.035.036-.092.002-.14zm-.949-.792c0 .205.005.375-.1.557-.084.147-.219.238-.368.238-.204 0-.324-.153-.324-.38 0-.447.407-.528.793-.528v.113zm-6.037.792c-.097-.132-.201-.24-.201-.486v-.817c0-.346.025-.664-.234-.902-.205-.193-.543-.26-.802-.26-.507 0-1.074.185-1.192.802-.013.065.036.1.08.11l.516.055c.048-.003.083-.05.092-.097.045-.212.226-.315.429-.315.11 0 .234.04.299.136.074.108.064.256.064.38v.069c-.309.034-.712.057-1.002.181a.891.891 0 0 0-.568.857c0 .545.35.818.798.818.379 0 .586-.088.879-.381.096.137.128.204.305.349.04.02.09.019.126-.012H6.5c.107-.092.3-.257.409-.347.043-.035.035-.092.001-.14zm-.949-.792c0 .205.005.375-.099.557-.085.147-.22.238-.369.238-.204 0-.324-.153-.324-.38 0-.447.407-.528.793-.528v.113z" }))))
898
+ h("path", { fill: "#FFF", d: "M14.343 10.205V9.82c0-.058.045-.097.1-.097h1.75c.057 0 .102.04.102.097v.33c0 .055-.048.127-.132.242l-.908 1.274c.337-.008.693.042 1 .212.069.037.088.094.093.15v.41c0 .056-.063.122-.13.088a2.048 2.048 0 0 0-1.85.003c-.06.032-.125-.033-.125-.089v-.39c0-.063.001-.17.065-.265l1.051-1.483h-.915c-.055 0-.1-.04-.1-.097zm-6.389 2.402h-.532a.1.1 0 0 1-.096-.089V9.827c0-.054.047-.097.104-.097h.496a.1.1 0 0 1 .097.09v.352h.01c.13-.34.373-.499.701-.499.334 0 .543.159.692.499a.756.756 0 0 1 .736-.499.76.76 0 0 1 .617.295c.17.226.134.555.134.844v1.698c0 .054-.046.097-.103.097h-.532a.1.1 0 0 1-.096-.096v-1.427c0-.114.01-.396-.015-.504-.04-.181-.159-.232-.313-.232a.354.354 0 0 0-.319.22c-.054.136-.05.363-.05.516v1.426a.099.099 0 0 1-.102.097H8.85a.1.1 0 0 1-.096-.096v-1.427c0-.3.05-.742-.329-.742-.383 0-.368.43-.368.742v1.426a.102.102 0 0 1-.104.097zm9.849-2.934c-.77 0-1.199.651-1.199 1.49 0 .832.423 1.5 1.2 1.5.745 0 1.218-.651 1.218-1.472 0-.85-.428-1.518-1.219-1.518zm0 2.435c-.418 0-.413-.702-.413-1.03 0-.329.025-.855.418-.855.17 0 .289.073.349.26.07.215.079.487.079.714 0 .345-.02.911-.433.911zm2.244.499h-.53a.1.1 0 0 1-.096-.097l-.001-2.692c.004-.05.048-.088.102-.088h.495a.101.101 0 0 1 .094.075v.412h.01c.15-.368.359-.544.726-.544.239 0 .473.086.622.318.14.214.14.577.14.837v1.693a.1.1 0 0 1-.103.085h-.534a.1.1 0 0 1-.095-.085v-1.46c0-.295.035-.725-.333-.725a.349.349 0 0 0-.308.215c-.075.164-.085.328-.085.51v1.448a.101.101 0 0 1-.104.098zm-6.151-.494c-.097-.132-.201-.24-.201-.486v-.817c0-.346.025-.664-.234-.902-.205-.193-.544-.26-.803-.26-.507 0-1.073.185-1.192.802-.012.065.036.1.08.11l.516.055c.048-.003.083-.05.093-.097.044-.212.225-.315.428-.315.11 0 .235.04.3.136.074.108.064.256.064.38v.069c-.309.034-.713.057-1.002.181a.891.891 0 0 0-.568.857c0 .545.349.818.798.818.378 0 .585-.088.878-.381.097.137.129.204.306.349.04.02.09.019.125-.012h.002c.107-.092.3-.257.408-.347.044-.035.036-.092.002-.14zm-.949-.792c0 .205.005.375-.1.557-.084.147-.219.238-.368.238-.204 0-.324-.153-.324-.38 0-.447.407-.528.793-.528v.113zm-6.037.792c-.097-.132-.201-.24-.201-.486v-.817c0-.346.025-.664-.234-.902-.205-.193-.543-.26-.802-.26-.507 0-1.074.185-1.192.802-.013.065.036.1.08.11l.516.055c.048-.003.083-.05.092-.097.045-.212.226-.315.429-.315.11 0 .234.04.299.136.074.108.064.256.064.38v.069c-.309.034-.712.057-1.002.181a.891.891 0 0 0-.568.857c0 .545.35.818.798.818.379 0 .586-.088.879-.381.096.137.128.204.305.349.04.02.09.019.126-.012H6.5c.107-.092.3-.257.409-.347.043-.035.035-.092.001-.14zm-.949-.792c0 .205.005.375-.099.557-.085.147-.22.238-.369.238-.204 0-.324-.153-.324-.38 0-.447.407-.528.793-.528v.113z" })))),
899
899
  },
900
900
  'card-add': {
901
901
  markup: () => (h("g", null,
902
902
  h("path", { class: "stroke-primary", d: "M11.533 20.133H3.467c-.81 0-1.467-.656-1.467-1.466v-13.2C2 4.657 2.657 4 3.467 4h19.066C23.343 4 24 4.657 24 5.467v8.8m-19.067 2.2h5.134M2 8.4h22M2 12.067h22" }),
903
903
  h("g", { class: "stroke-secondary", transform: "translate(14 15)" },
904
904
  h("circle", { cx: "4.727", cy: "4.636", r: "4.364" }),
905
- h("path", { d: "M4.727 3.182V6.09M3.273 4.636h2.909" }))))
905
+ h("path", { d: "M4.727 3.182V6.09M3.273 4.636h2.909" })))),
906
906
  },
907
907
  'card-edit': {
908
908
  markup: () => (h("g", null,
909
909
  h("path", { class: "stroke-primary", d: "M11.533 20.133H3.467c-.81 0-1.467-.656-1.467-1.466v-13.2C2 4.657 2.657 4 3.467 4h19.066C23.343 4 24 4.657 24 5.467v8.8m-19.067 2.2h5.134M2 8.4h22M2 12.067h22" }),
910
- h("path", { d: "M16.667 23.067l-2.2.366.366-2.2 5.867-5.866 1.833 1.833z", class: "stroke-secondary" })))
910
+ h("path", { d: "M16.667 23.067l-2.2.366.366-2.2 5.867-5.866 1.833 1.833z", class: "stroke-secondary" }))),
911
911
  },
912
912
  'card-gift': {
913
913
  markup: () => (h("g", null,
@@ -915,33 +915,33 @@ const icons = {
915
915
  h("g", { class: "stroke-secondary filled", transform: "translate(4 6)" },
916
916
  h("path", { d: "M6.142 5.7L2.98 11.2l-.831-1.337-1.582-.146 2.539-3.826M5.45 6.918L8.157 11.2l.796-1.281 1.514-.14L7.892 5.7m-3.566-.366l-3.13 1.403A.704.704 0 0 1 .2 6.104V1.63c0-.505.53-.842.996-.633l3.13 1.526" }),
917
917
  h("path", { d: "M7.074 5.334l3.13 1.403a.704.704 0 0 0 .996-.633V1.63a.704.704 0 0 0-.996-.633l-3.13 1.526" }),
918
- h("circle", { cx: "5.7", cy: "3.867", r: "1.833" }))))
918
+ h("circle", { cx: "5.7", cy: "3.867", r: "1.833" })))),
919
919
  },
920
920
  'card-heart': {
921
921
  markup: () => (h("g", null,
922
922
  h("path", { class: "stroke-primary", d: "M11.533 20.133H3.467c-.81 0-1.467-.656-1.467-1.466v-13.2C2 4.657 2.657 4 3.467 4h19.066C23.343 4 24 4.657 24 5.467v8.8m-19.067 2.2h5.134M2 8.4h22M2 12.067h22" }),
923
- h("path", { d: "M22.197 16.46c-1.07-1.107-2.857-.926-3.697.384-.841-1.312-2.628-1.49-3.697-.384a2.546 2.546 0 0 0 0 3.513L18.5 23.8l3.697-3.827a2.546 2.546 0 0 0 0-3.512z", class: "stroke-secondary" })))
923
+ h("path", { d: "M22.197 16.46c-1.07-1.107-2.857-.926-3.697.384-.841-1.312-2.628-1.49-3.697-.384a2.546 2.546 0 0 0 0 3.513L18.5 23.8l3.697-3.827a2.546 2.546 0 0 0 0-3.512z", class: "stroke-secondary" }))),
924
924
  },
925
925
  'card-insert': {
926
926
  markup: () => (h("g", null,
927
927
  h("path", { d: "M20.652 6.304V21.61a1.913 1.913 0 0 1-1.913 1.913H7.261a1.913 1.913 0 0 1-1.913-1.913V6.304h15.304z", class: "stroke-primary filled" }),
928
928
  h("path", { d: "M2.478 7.261V2.478h21.044v4.783", class: "stroke-primary" }),
929
- h("path", { class: "stroke-secondary", d: "M9.174 23.521V6.304M13 23.521V6.304m3.826 13.391v-4.781" })))
929
+ h("path", { class: "stroke-secondary", d: "M9.174 23.521V6.304M13 23.521V6.304m3.826 13.391v-4.781" }))),
930
930
  },
931
931
  'card-join': {
932
932
  markup: () => (h("g", null,
933
933
  h("path", { class: "stroke-primary", d: "M11.533 20.133H3.467c-.81 0-1.467-.656-1.467-1.466v-13.2C2 4.657 2.657 4 3.467 4h19.066C23.343 4 24 4.657 24 5.467v8.8M2 8.4h22M2 12.067h22" }),
934
- h("path", { class: "stroke-secondary", d: "M9 16.5h3.04c.743 0 1.455.356 1.98.991L16 19.884l-1.98 2.392c-.525.635-1.237.991-1.98.991H9m6.459-3.383h8M20.252 16.5l3.384 3.384-3.384 3.383" })))
934
+ h("path", { class: "stroke-secondary", d: "M9 16.5h3.04c.743 0 1.455.356 1.98.991L16 19.884l-1.98 2.392c-.525.635-1.237.991-1.98.991H9m6.459-3.383h8M20.252 16.5l3.384 3.384-3.384 3.383" }))),
935
935
  },
936
936
  'card-in-hand': {
937
937
  markup: () => (h("g", null,
938
938
  h("path", { class: "stroke-secondary", d: "M16.667 12.248v3.485H2V4h14.667v2.2M4.933 13.167H8.6M2 7.667h8.459M2 10.6h13.512" }),
939
- h("path", { class: "stroke-primary", d: "M19.6 13.533c-2.2 0-4.4-2.2-4.4-4.4H13A2.933 2.933 0 0 1 10.067 6.2h6.6A7.333 7.333 0 0 1 24 13.533a7.333 7.333 0 0 1-7.333 7.334H8.6a2.2 2.2 0 0 1-2.2-2.2v-.734H13m-6.6 0a2.2 2.2 0 0 1-2.2-2.2" })))
939
+ h("path", { class: "stroke-primary", d: "M19.6 13.533c-2.2 0-4.4-2.2-4.4-4.4H13A2.933 2.933 0 0 1 10.067 6.2h6.6A7.333 7.333 0 0 1 24 13.533a7.333 7.333 0 0 1-7.333 7.334H8.6a2.2 2.2 0 0 1-2.2-2.2v-.734H13m-6.6 0a2.2 2.2 0 0 1-2.2-2.2" }))),
940
940
  },
941
941
  'card-locked': {
942
942
  markup: () => (h("g", null,
943
943
  h("path", { class: "stroke-primary", d: "M11.533 20.133H3.467c-.81 0-1.467-.656-1.467-1.466v-13.2C2 4.657 2.657 4 3.467 4h19.066C23.343 4 24 4.657 24 5.467v8.8m-19.067 2.2h5.134M2 8.4h22M2 12.067h22" }),
944
- h("path", { class: "stroke-secondary", d: "M15.1 17.667h7.333v6H15.1zm3.667 2.566v1.1m-2.2-3.666v-1.834c0-1.246.953-2.2 2.2-2.2 1.246 0 2.2.954 2.2 2.2v1.834" })))
944
+ h("path", { class: "stroke-secondary", d: "M15.1 17.667h7.333v6H15.1zm3.667 2.566v1.1m-2.2-3.666v-1.834c0-1.246.953-2.2 2.2-2.2 1.246 0 2.2.954 2.2 2.2v1.834" }))),
945
945
  },
946
946
  'card-more': {
947
947
  markup: () => (h("g", null,
@@ -950,19 +950,19 @@ const icons = {
950
950
  h("circle", { cx: "1.85", cy: "1.517", r: "1.283" }),
951
951
  h("circle", { cx: "11.383", cy: "1.517", r: "1.283" }),
952
952
  h("circle", { cx: "6.617", cy: "1.517", r: "1.283" }),
953
- h("circle", { cx: "16.15", cy: "1.517", r: "1.283" }))))
953
+ h("circle", { cx: "16.15", cy: "1.517", r: "1.283" })))),
954
954
  },
955
955
  'card-prohibited': {
956
956
  markup: () => (h("g", null,
957
957
  h("path", { class: "stroke-primary", d: "M11.533 20.133H3.467c-.81 0-1.467-.656-1.467-1.466v-13.2C2 4.657 2.657 4 3.467 4h19.066C23.343 4 24 4.657 24 5.467v8.8m-19.067 2.2h5.134M2 8.4h22M2 12.067h22" }),
958
- h("path", { class: "stroke-secondary", d: "M18.882 16A3.877 3.877 0 0 0 15 19.882a3.877 3.877 0 0 0 3.882 3.883 3.877 3.877 0 0 0 3.883-3.883A3.877 3.877 0 0 0 18.882 16zM16.5 22.5l5-5" })))
958
+ h("path", { class: "stroke-secondary", d: "M18.882 16A3.877 3.877 0 0 0 15 19.882a3.877 3.877 0 0 0 3.882 3.883 3.877 3.877 0 0 0 3.883-3.883A3.877 3.877 0 0 0 18.882 16zM16.5 22.5l5-5" }))),
959
959
  },
960
960
  'card-remove': {
961
961
  markup: () => (h("g", null,
962
962
  h("path", { class: "stroke-primary", d: "M11.533 20.133H3.467c-.81 0-1.467-.656-1.467-1.466v-13.2C2 4.657 2.657 4 3.467 4h19.066C23.343 4 24 4.657 24 5.467v8.8m-19.067 2.2h5.134M2 8.4h22M2 12.067h22" }),
963
963
  h("g", { class: "stroke-secondary", transform: "translate(14 15)" },
964
964
  h("circle", { cx: "4.867", cy: "4.767", r: "4.4" }),
965
- h("path", { d: "M3.4 4.767h2.933" }))))
965
+ h("path", { d: "M3.4 4.767h2.933" })))),
966
966
  },
967
967
  'card-scissors': {
968
968
  markup: () => (h("g", null,
@@ -971,76 +971,76 @@ const icons = {
971
971
  h("path", { d: "M8.702 12.333H6.356c-.597 0-1.118-.469-1.118-1.047V1.857c0-.578.5-1.047 1.118-1.047h14.527C21.5.81 22 1.279 22 1.857v9.429c0 .578-.5 1.047-1.117 1.047H13.33" }),
972
972
  h("path", { d: "M5.242 9.188L1.197 5c-1.115 1.774-.822 4.045.71 5.508l4.448 4.244-2.33 2.596m8.785-.001l-2.33-2.595 2.332-2.227c.47-.448 1.175-1.12 2.114-2.018 1.533-1.462 1.826-3.733.71-5.507L8.29 13.108l-.471-.46m-2.09 6.505l2.652-2.532 2.652 2.532" }),
973
973
  h("ellipse", { cx: "13.757", cy: "19.942", rx: "2.846", ry: "2.717" }),
974
- h("ellipse", { cx: "3.004", cy: "19.942", rx: "2.846", ry: "2.717" }))))
974
+ h("ellipse", { cx: "3.004", cy: "19.942", rx: "2.846", ry: "2.717" })))),
975
975
  },
976
976
  'card-star': {
977
977
  markup: () => (h("g", null,
978
978
  h("path", { class: "stroke-primary", d: "M11.533 20.133H3.467c-.81 0-1.467-.656-1.467-1.466v-13.2C2 4.657 2.657 4 3.467 4h19.066C23.343 4 24 4.657 24 5.467v8.8m-19.067 2.2h5.134M2 8.4h22M2 12.067h22" }),
979
- h("path", { d: "M18.5 14.672l1.366 2.767 3.054.444-2.21 2.154.522 3.041-2.732-1.436-2.732 1.436.522-3.041-2.21-2.154 3.054-.444z", class: "stroke-secondary" })))
979
+ h("path", { d: "M18.5 14.672l1.366 2.767 3.054.444-2.21 2.154.522 3.041-2.732-1.436-2.732 1.436.522-3.041-2.21-2.154 3.054-.444z", class: "stroke-secondary" }))),
980
980
  },
981
981
  'card-success': {
982
982
  markup: () => (h("g", null,
983
983
  h("path", { class: "stroke-primary", d: "M11.533 20.133H3.467c-.81 0-1.467-.656-1.467-1.466v-13.2C2 4.657 2.657 4 3.467 4h19.066C23.343 4 24 4.657 24 5.467v8.8m-19.067 2.2h5.134M2 8.4h22M2 12.067h22" }),
984
984
  h("g", { class: "stroke-secondary", transform: "translate(14.364 15.273)" },
985
985
  h("circle", { cx: "4.364", cy: "4.364", r: "4.364" }),
986
- h("path", { d: "M2.615 4.711l1.048 1.048 2.444-2.444" }))))
986
+ h("path", { d: "M2.615 4.711l1.048 1.048 2.444-2.444" })))),
987
987
  },
988
988
  'card-unknown': {
989
989
  markup: () => (h("g", null,
990
990
  h("rect", { width: "22", height: "16", x: "2", y: "4", class: "stroke-primary", rx: "2" }),
991
- h("path", { class: "stroke-secondary", d: "M11 9.154c.958-1.569 3.29-1.509 3.902 0 .611 1.51-1.899 1.84-1.902 2.907V13m0 1.823v1" })))
991
+ h("path", { class: "stroke-secondary", d: "M11 9.154c.958-1.569 3.29-1.509 3.902 0 .611 1.51-1.899 1.84-1.902 2.907V13m0 1.823v1" }))),
992
992
  },
993
993
  'card-update': {
994
994
  markup: () => (h("g", null,
995
995
  h("path", { class: "stroke-primary", d: "M11.533 20.133H3.467c-.81 0-1.467-.656-1.467-1.466v-13.2C2 4.657 2.657 4 3.467 4h19.066C23.343 4 24 4.657 24 5.467v8.8m-19.067 2.2h5.134M2 8.4h22M2 12.067h22" }),
996
996
  h("path", { class: "stroke-secondary", d: "M14.906 19.033A3.668 3.668 0 0 1 18.5 16.1c1.503 0 2.734.905 3.3 2.2m.293 2.2a3.668 3.668 0 0 1-3.593 2.933c-1.503 0-2.734-.906-3.3-2.2" }),
997
- h("path", { d: "M21.8 15.733V18.3h-2.567M15.2 23.8v-2.567h2.566" })))
997
+ h("path", { d: "M21.8 15.733V18.3h-2.567M15.2 23.8v-2.567h2.566" }))),
998
998
  },
999
999
  'card-amex': {
1000
1000
  markup: () => (h("g", null,
1001
1001
  h("path", { d: "M2 18.667v-13.2C2 4.66 2.66 4 3.467 4h19.066C23.34 4 24 4.66 24 5.467v13.2a1.47 1.47 0 0 1-1.467 1.466H3.467A1.47 1.47 0 0 1 2 18.667z", class: "stroke-primary" }),
1002
- h("path", { d: "M7.074 12.255H8.1l-.512-1.257-.513 1.257zM21.36 9.867h-2.626l-.641.691-.577-.691h-5.573l-.513 1.131-.512-1.131H8.676v.502l-.256-.502H6.498l-1.858 4.4h2.242l.256-.692h.641l.256.692h2.499v-.503l.192.503h1.281l.192-.566v.566h5.125l.64-.692.577.692h2.627l-1.666-2.2 1.858-2.2zm-7.751 3.771h-.705v-2.451l-1.09 2.451h-.64l-1.089-2.451v2.451H8.612l-.257-.691H6.818l-.256.691h-.833l1.345-3.143h1.09L9.38 13.45v-2.954h1.217l.961 2.137.897-2.137h1.217v3.142h-.064zm6.342 0h-.962l-.832-1.068-.961 1.068h-2.883v-3.143h2.947l.897 1.006.96-1.005h.898l-1.41 1.57 1.346 1.572zm-4.933-2.514v.566h1.601v.628h-1.601v.629h1.793l.833-.943-.769-.88h-1.857z", class: "fill-primary" })))
1002
+ h("path", { d: "M7.074 12.255H8.1l-.512-1.257-.513 1.257zM21.36 9.867h-2.626l-.641.691-.577-.691h-5.573l-.513 1.131-.512-1.131H8.676v.502l-.256-.502H6.498l-1.858 4.4h2.242l.256-.692h.641l.256.692h2.499v-.503l.192.503h1.281l.192-.566v.566h5.125l.64-.692.577.692h2.627l-1.666-2.2 1.858-2.2zm-7.751 3.771h-.705v-2.451l-1.09 2.451h-.64l-1.089-2.451v2.451H8.612l-.257-.691H6.818l-.256.691h-.833l1.345-3.143h1.09L9.38 13.45v-2.954h1.217l.961 2.137.897-2.137h1.217v3.142h-.064zm6.342 0h-.962l-.832-1.068-.961 1.068h-2.883v-3.143h2.947l.897 1.006.96-1.005h.898l-1.41 1.57 1.346 1.572zm-4.933-2.514v.566h1.601v.628h-1.601v.629h1.793l.833-.943-.769-.88h-1.857z", class: "fill-primary" }))),
1003
1003
  },
1004
1004
  'card-amex-color': {
1005
1005
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
1006
1006
  h("g", { "fill-rule": "nonzero" },
1007
1007
  h("path", { fill: "#007AC6", d: "M22.565 4H3.435C2.642 4 2 4.632 2 5.412v13.176C2 19.368 2.642 20 3.435 20h19.13c.793 0 1.435-.632 1.435-1.412V5.412C24 4.632 23.358 4 22.565 4z" }),
1008
- h("path", { fill: "#FFF", d: "M6.56 12.202h1.114l-.558-1.345-.557 1.345zm15.527-2.555h-2.855l-.696.74-.627-.74H11.85l-.557 1.21-.557-1.21H8.3v.538l-.279-.538H5.932l-2.019 4.706H6.35l.279-.74h.696l.278.74h2.716v-.538l.209.538h1.393l.209-.605v.605h5.57l.697-.74.626.74h2.855L20.068 12l2.019-2.353zm-8.426 4.033h-.766v-2.62l-1.183 2.621h-.697L9.832 11.06v2.621H8.23l-.279-.739h-1.67l-.279.74h-.905l1.462-3.362h1.183l1.323 3.16v-3.16h1.323l1.045 2.286.974-2.286h1.323v3.361h-.069zm6.894 0h-1.044l-.906-1.143-1.044 1.143h-3.134v-3.36h3.203l.975 1.075 1.044-1.076h.975L19.093 12l1.462 1.68zm-5.362-2.688v.605h1.741v.672h-1.74v.672h1.95l.905-1.008-.836-.941h-2.02z" }))))
1008
+ h("path", { fill: "#FFF", d: "M6.56 12.202h1.114l-.558-1.345-.557 1.345zm15.527-2.555h-2.855l-.696.74-.627-.74H11.85l-.557 1.21-.557-1.21H8.3v.538l-.279-.538H5.932l-2.019 4.706H6.35l.279-.74h.696l.278.74h2.716v-.538l.209.538h1.393l.209-.605v.605h5.57l.697-.74.626.74h2.855L20.068 12l2.019-2.353zm-8.426 4.033h-.766v-2.62l-1.183 2.621h-.697L9.832 11.06v2.621H8.23l-.279-.739h-1.67l-.279.74h-.905l1.462-3.362h1.183l1.323 3.16v-3.16h1.323l1.045 2.286.974-2.286h1.323v3.361h-.069zm6.894 0h-1.044l-.906-1.143-1.044 1.143h-3.134v-3.36h3.203l.975 1.075 1.044-1.076h.975L19.093 12l1.462 1.68zm-5.362-2.688v.605h1.741v.672h-1.74v.672h1.95l.905-1.008-.836-.941h-2.02z" })))),
1009
1009
  },
1010
1010
  'card-applepay': {
1011
1011
  markup: () => (h("g", null,
1012
1012
  h("path", { d: "M2 18.667v-13.2C2 4.66 2.66 4 3.467 4h19.066C23.34 4 24 4.66 24 5.467v13.2a1.47 1.47 0 0 1-1.467 1.466H3.467A1.47 1.47 0 0 1 2 18.667z", class: "stroke-primary" }),
1013
1013
  h("g", { class: "fill-primary" },
1014
1014
  h("path", { d: "M15.837 13.609c-.156.343-.23.497-.43.8-.278.424-.67.952-1.157.957-.432.004-.543-.282-1.13-.278-.587.003-.71.283-1.142.279-.486-.005-.858-.481-1.137-.906-.778-1.185-.86-2.576-.38-3.316.342-.526.88-.833 1.387-.833.515 0 .84.283 1.266.283.414 0 .666-.283 1.262-.283.45 0 .928.245 1.268.669-1.115.61-.934 2.202.193 2.628z" }),
1015
- h("path", { d: "M13.924 9.838c.216-.278.38-.67.32-1.071-.353.024-.767.249-1.008.542-.22.267-.4.661-.33 1.045.386.012.786-.218 1.018-.516z" }))))
1015
+ h("path", { d: "M13.924 9.838c.216-.278.38-.67.32-1.071-.353.024-.767.249-1.008.542-.22.267-.4.661-.33 1.045.386.012.786-.218 1.018-.516z" })))),
1016
1016
  },
1017
1017
  'card-applepay-color': {
1018
1018
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
1019
1019
  h("g", null,
1020
1020
  h("path", { fill: "#E6E6E6", "fill-rule": "nonzero", d: "M22.565 4H3.435C2.642 4 2 4.632 2 5.412v13.176C2 19.368 2.642 20 3.435 20h19.13c.793 0 1.435-.632 1.435-1.412V5.412C24 4.632 23.358 4 22.565 4z" }),
1021
1021
  h("path", { fill: "#444", d: "M16.7 13.98c-.202.44-.3.637-.56 1.027-.363.544-.875 1.221-1.51 1.227-.563.005-.708-.361-1.474-.357-.765.004-.925.363-1.488.358-.635-.005-1.12-.617-1.484-1.162-1.015-1.521-1.122-3.306-.495-4.256.445-.674 1.148-1.069 1.808-1.069.673 0 1.096.363 1.652.363.54 0 .868-.363 1.645-.363.588 0 1.21.315 1.655.859-1.454.784-1.218 2.826.25 3.372z" }),
1022
- h("path", { fill: "#444", d: "M14.205 9.14c.282-.357.497-.86.419-1.375-.462.03-1.001.32-1.316.696-.286.342-.523.849-.43 1.341.503.016 1.024-.28 1.327-.662z" }))))
1022
+ h("path", { fill: "#444", d: "M14.205 9.14c.282-.357.497-.86.419-1.375-.462.03-1.001.32-1.316.696-.286.342-.523.849-.43 1.341.503.016 1.024-.28 1.327-.662z" })))),
1023
1023
  },
1024
1024
  'card-bitcoin': {
1025
1025
  markup: () => (h("g", null,
1026
1026
  h("path", { d: "M2 18.667v-13.2C2 4.66 2.66 4 3.467 4h19.066C23.34 4 24 4.66 24 5.467v13.2a1.47 1.47 0 0 1-1.467 1.466H3.467A1.47 1.47 0 0 1 2 18.667z", class: "stroke-primary" }),
1027
1027
  h("g", { class: "fill-primary" },
1028
1028
  h("path", { d: "M12.977 10.667l-.24.964c.272.068 1.113.345 1.249-.2.142-.569-.736-.696-1.009-.764zm-.362 1.451l-.265 1.063c.328.081 1.337.405 1.486-.194.156-.626-.893-.787-1.22-.869z" }),
1029
- h("path", { d: "M14.241 7.086a5.133 5.133 0 1 0-2.482 9.962 5.133 5.133 0 0 0 2.482-9.962zm1.022 4.25c-.074.5-.352.741-.72.826.506.264.763.667.518 1.367-.304.868-1.026.942-1.987.76l-.233.934-.563-.14.23-.922a21.157 21.157 0 0 1-.45-.117l-.23.927-.563-.14.234-.937c-.132-.034-.266-.07-.402-.104l-.733-.182.28-.645s.415.11.41.102c.159.04.23-.064.257-.133l.633-2.536c.007-.119-.035-.27-.263-.327a7.442 7.442 0 0 0-.41-.102l.15-.601.778.194v.003c.116.029.236.056.359.084l.23-.925.564.14-.227.907c.151.035.304.07.452.107l.225-.901.563.14-.23.926c.71.244 1.23.611 1.128 1.294z" }))))
1029
+ h("path", { d: "M14.241 7.086a5.133 5.133 0 1 0-2.482 9.962 5.133 5.133 0 0 0 2.482-9.962zm1.022 4.25c-.074.5-.352.741-.72.826.506.264.763.667.518 1.367-.304.868-1.026.942-1.987.76l-.233.934-.563-.14.23-.922a21.157 21.157 0 0 1-.45-.117l-.23.927-.563-.14.234-.937c-.132-.034-.266-.07-.402-.104l-.733-.182.28-.645s.415.11.41.102c.159.04.23-.064.257-.133l.633-2.536c.007-.119-.035-.27-.263-.327a7.442 7.442 0 0 0-.41-.102l.15-.601.778.194v.003c.116.029.236.056.359.084l.23-.925.564.14-.227.907c.151.035.304.07.452.107l.225-.901.563.14-.23.926c.71.244 1.23.611 1.128 1.294z" })))),
1030
1030
  },
1031
1031
  'card-bitcoin-color': {
1032
1032
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
1033
1033
  h("g", { "fill-rule": "nonzero", transform: "translate(2 4)" },
1034
1034
  h("path", { fill: "#E6E6E6", d: "M20.565 0H1.435C.642 0 0 .632 0 1.412v13.176C0 15.368.642 16 1.435 16h19.13c.793 0 1.435-.632 1.435-1.412V1.412C22 .632 21.358 0 20.565 0z" }),
1035
1035
  h("ellipse", { cx: "11", cy: "8", fill: "#F99400", rx: "5.739", ry: "5.647" }),
1036
- h("path", { fill: "#FFF", d: "M13.53 7.195c.114-.751-.468-1.155-1.263-1.425l.258-1.018-.63-.154-.251.991c-.166-.04-.336-.079-.505-.117l.253-.997-.63-.155-.257 1.018c-.137-.03-.272-.061-.403-.093V5.24l-.868-.213-.167.662s.467.105.457.112c.255.062.301.229.294.36l-.707 2.79c-.031.075-.11.19-.289.146.007.01-.457-.112-.457-.112l-.313.71.82.2.449.114-.26 1.03.628.154.258-1.019c.172.046.339.089.502.128l-.257 1.014.63.155.26-1.028c1.074.2 1.882.12 2.222-.836.274-.77-.014-1.214-.579-1.503.412-.093.722-.36.805-.91zm-1.44 1.986c-.194.77-1.51.353-1.937.25l.345-1.365c.427.105 1.796.312 1.593 1.115zm.196-1.997c-.178.7-1.274.345-1.63.257l.314-1.237c.356.087 1.5.25 1.316.98z" }))))
1036
+ h("path", { fill: "#FFF", d: "M13.53 7.195c.114-.751-.468-1.155-1.263-1.425l.258-1.018-.63-.154-.251.991c-.166-.04-.336-.079-.505-.117l.253-.997-.63-.155-.257 1.018c-.137-.03-.272-.061-.403-.093V5.24l-.868-.213-.167.662s.467.105.457.112c.255.062.301.229.294.36l-.707 2.79c-.031.075-.11.19-.289.146.007.01-.457-.112-.457-.112l-.313.71.82.2.449.114-.26 1.03.628.154.258-1.019c.172.046.339.089.502.128l-.257 1.014.63.155.26-1.028c1.074.2 1.882.12 2.222-.836.274-.77-.014-1.214-.579-1.503.412-.093.722-.36.805-.91zm-1.44 1.986c-.194.77-1.51.353-1.937.25l.345-1.365c.427.105 1.796.312 1.593 1.115zm.196-1.997c-.178.7-1.274.345-1.63.257l.314-1.237c.356.087 1.5.25 1.316.98z" })))),
1037
1037
  },
1038
1038
  'card-dinersclub': {
1039
1039
  markup: () => (h("g", null,
1040
1040
  h("path", { d: "M2 18.667v-13.2C2 4.66 2.66 4 3.467 4h19.066C23.34 4 24 4.66 24 5.467v13.2a1.47 1.47 0 0 1-1.467 1.466H3.467A1.47 1.47 0 0 1 2 18.667z", class: "stroke-primary" }),
1041
1041
  h("g", { class: "fill-primary" },
1042
1042
  h("path", { d: "M10.8 10.388v3.357a1.832 1.832 0 0 0 0-3.357zm-2.567 1.679c0 .751.454 1.395 1.1 1.678v-3.357c-.646.283-1.1.927-1.1 1.679z" }),
1043
- h("path", { d: "M15.933 8.4h-5.866a3.667 3.667 0 1 0 0 7.333h5.866a3.667 3.667 0 1 0 0-7.333zM10.067 15a2.934 2.934 0 1 1 0-5.867 2.934 2.934 0 0 1 0 5.867z" }))))
1043
+ h("path", { d: "M15.933 8.4h-5.866a3.667 3.667 0 1 0 0 7.333h5.866a3.667 3.667 0 1 0 0-7.333zM10.067 15a2.934 2.934 0 1 1 0-5.867 2.934 2.934 0 0 1 0 5.867z" })))),
1044
1044
  },
1045
1045
  'card-dinersclub-color': {
1046
1046
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
@@ -1048,13 +1048,13 @@ const icons = {
1048
1048
  h("path", { fill: "#0068AC", d: "M22.565 4H3.435C2.642 4 2 4.632 2 5.412v13.176C2 19.368 2.642 20 3.435 20h19.13c.793 0 1.435-.632 1.435-1.412V5.412C24 4.632 23.358 4 22.565 4z" }),
1049
1049
  h("path", { fill: "#FFF", d: "M11.565 10.184v3.632C12.388 13.606 13 12.874 13 12c0-.874-.612-1.605-1.435-1.816z" }),
1050
1050
  h("path", { fill: "#FFF", d: "M14.913 8.235h-3.826c-2.113 0-3.826 1.686-3.826 3.765 0 2.08 1.713 3.765 3.826 3.765h3.826c2.113 0 3.826-1.686 3.826-3.765 0-2.08-1.713-3.765-3.826-3.765zm-3.826 6.589c-1.583 0-2.87-1.267-2.87-2.824s1.287-2.824 2.87-2.824c1.583 0 2.87 1.267 2.87 2.824s-1.287 2.824-2.87 2.824z" }),
1051
- h("path", { fill: "#FFF", d: "M10.609 10.184c-.823.21-1.435.942-1.435 1.816 0 .874.612 1.605 1.435 1.816v-3.632z" }))))
1051
+ h("path", { fill: "#FFF", d: "M10.609 10.184c-.823.21-1.435.942-1.435 1.816 0 .874.612 1.605 1.435 1.816v-3.632z" })))),
1052
1052
  },
1053
1053
  'card-discover': {
1054
1054
  markup: () => (h("g", null,
1055
1055
  h("path", { d: "M2 18.667v-13.2C2 4.66 2.66 4 3.467 4h19.066C23.34 4 24 4.66 24 5.467v13.2a1.47 1.47 0 0 1-1.467 1.466H3.467A1.47 1.47 0 0 1 2 18.667z", class: "stroke-primary" }),
1056
1056
  h("g", { class: "fill-primary" },
1057
- h("path", { d: "M13.502 10.61c-.824 0-1.493.644-1.493 1.439 0 .845.64 1.476 1.493 1.476.832 0 1.488-.64 1.488-1.46 0-.815-.65-1.454-1.488-1.454zm-8.473.053h-.803v2.8h.798c.424 0 .73-.101 1-.324.318-.264.507-.662.507-1.075 0-.827-.617-1.4-1.502-1.4zm.638 2.103c-.173.155-.394.222-.748.222h-.146v-1.85h.146c.354 0 .566.063.748.226a.943.943 0 0 1 .301.696.96.96 0 0 1-.3.706zm1.116-2.103h.544v2.8h-.544zm1.88 1.073c-.328-.12-.424-.2-.424-.352 0-.176.171-.31.407-.31.164 0 .298.066.442.226l.284-.372a1.22 1.22 0 0 0-.822-.311c-.495 0-.873.344-.873.8 0 .387.176.583.688.77.214.074.323.125.378.16a.33.33 0 0 1 .164.288c0 .228-.18.395-.425.395-.26 0-.47-.13-.595-.374l-.352.341c.251.369.553.534.969.534.566 0 .966-.38.966-.92 0-.446-.186-.648-.807-.875zm.978.328c0 .823.646 1.46 1.478 1.46.235 0 .436-.045.683-.162v-.644c-.219.22-.41.307-.66.307-.549 0-.938-.398-.938-.965 0-.537.402-.961.915-.961.259 0 .457.091.683.315v-.644a1.403 1.403 0 0 0-.672-.17 1.47 1.47 0 0 0-1.489 1.464zm6.585.479l-.747-1.88h-.595l1.186 2.87h.293l1.21-2.87h-.591zm1.595.92h1.548v-.475h-1.002v-.755h.964v-.475h-.964v-.621h1.002v-.474h-1.548zm3.709-1.973c0-.525-.36-.827-.99-.827h-.81v2.8h.547v-1.126h.071l.754 1.126h.672l-.88-1.18c.41-.084.636-.366.636-.794zm-1.095.46h-.159v-.846h.168c.341 0 .524.143.524.416 0 .28-.183.43-.533.43z" }))))
1057
+ h("path", { d: "M13.502 10.61c-.824 0-1.493.644-1.493 1.439 0 .845.64 1.476 1.493 1.476.832 0 1.488-.64 1.488-1.46 0-.815-.65-1.454-1.488-1.454zm-8.473.053h-.803v2.8h.798c.424 0 .73-.101 1-.324.318-.264.507-.662.507-1.075 0-.827-.617-1.4-1.502-1.4zm.638 2.103c-.173.155-.394.222-.748.222h-.146v-1.85h.146c.354 0 .566.063.748.226a.943.943 0 0 1 .301.696.96.96 0 0 1-.3.706zm1.116-2.103h.544v2.8h-.544zm1.88 1.073c-.328-.12-.424-.2-.424-.352 0-.176.171-.31.407-.31.164 0 .298.066.442.226l.284-.372a1.22 1.22 0 0 0-.822-.311c-.495 0-.873.344-.873.8 0 .387.176.583.688.77.214.074.323.125.378.16a.33.33 0 0 1 .164.288c0 .228-.18.395-.425.395-.26 0-.47-.13-.595-.374l-.352.341c.251.369.553.534.969.534.566 0 .966-.38.966-.92 0-.446-.186-.648-.807-.875zm.978.328c0 .823.646 1.46 1.478 1.46.235 0 .436-.045.683-.162v-.644c-.219.22-.41.307-.66.307-.549 0-.938-.398-.938-.965 0-.537.402-.961.915-.961.259 0 .457.091.683.315v-.644a1.403 1.403 0 0 0-.672-.17 1.47 1.47 0 0 0-1.489 1.464zm6.585.479l-.747-1.88h-.595l1.186 2.87h.293l1.21-2.87h-.591zm1.595.92h1.548v-.475h-1.002v-.755h.964v-.475h-.964v-.621h1.002v-.474h-1.548zm3.709-1.973c0-.525-.36-.827-.99-.827h-.81v2.8h.547v-1.126h.071l.754 1.126h.672l-.88-1.18c.41-.084.636-.366.636-.794zm-1.095.46h-.159v-.846h.168c.341 0 .524.143.524.416 0 .28-.183.43-.533.43z" })))),
1058
1058
  },
1059
1059
  'card-discover-color': {
1060
1060
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
@@ -1063,26 +1063,26 @@ const icons = {
1063
1063
  h("path", { fill: "#E6E6E6", d: "M24 18.588V11.91c-1.912 2.958-8.02 7.06-15.5 8.09h14.065c.793 0 1.435-.632 1.435-1.412z" }),
1064
1064
  h("path", { fill: "#FA7000", d: "M24 18.588V11.91c-1.912 2.958-8.02 7.06-15.5 8.09h14.065c.793 0 1.435-.632 1.435-1.412zm-10.508-7.994c-.808 0-1.464.622-1.464 1.39 0 .815.627 1.424 1.464 1.424.817 0 1.46-.618 1.46-1.41.001-.786-.638-1.404-1.46-1.404z" }),
1065
1065
  h("path", { fill: "#444", d: "M5.179 10.645H4.39v2.703h.783c.416 0 .717-.098.98-.313.313-.254.499-.64.499-1.038 0-.798-.606-1.352-1.474-1.352zm.626 2.03c-.17.15-.387.215-.734.215h-.144v-1.787h.144c.347 0 .556.06.735.218a.905.905 0 0 1 .295.672c0 .26-.111.52-.296.682zm1.095-2.03h1v2.703h-1z" }),
1066
- h("path", { fill: "#444", d: "M8.744 11.68c-.322-.115-.416-.193-.416-.339 0-.17.168-.299.4-.299.16 0 .292.063.433.218l.279-.36c-.23-.2-.506-.3-.807-.3-.485 0-.856.333-.856.773 0 .373.172.563.675.743.21.072.316.12.37.154a.32.32 0 0 1 .161.279c0 .22-.177.381-.416.381a.634.634 0 0 1-.585-.361l-.345.33c.247.355.543.514.95.514.557 0 .948-.366.948-.888.001-.43-.18-.625-.79-.844zm.96.317c0 .795.634 1.411 1.45 1.411.23 0 .427-.045.67-.158v-.62c-.214.211-.403.295-.647.295-.54 0-.921-.384-.921-.932 0-.517.394-.928.897-.928.254 0 .449.089.671.304v-.62a1.389 1.389 0 0 0-.66-.165c-.81 0-1.46.628-1.46 1.413zm6.461.463l-.733-1.815h-.584l1.165 2.771h.287l1.187-2.771h-.58zm1.565.888h1.519v-.458h-.983v-.73h.946v-.457h-.946v-.6h.983v-.458H17.73zm3.64-1.906c0-.506-.353-.797-.972-.797h-.796v2.702h.537v-1.086h.07l.74 1.086h.66l-.865-1.139c.404-.08.626-.352.626-.766zm-1.075.446h-.155v-.817h.164c.335 0 .514.138.514.401 0 .27-.18.416-.523.416z" }))))
1066
+ h("path", { fill: "#444", d: "M8.744 11.68c-.322-.115-.416-.193-.416-.339 0-.17.168-.299.4-.299.16 0 .292.063.433.218l.279-.36c-.23-.2-.506-.3-.807-.3-.485 0-.856.333-.856.773 0 .373.172.563.675.743.21.072.316.12.37.154a.32.32 0 0 1 .161.279c0 .22-.177.381-.416.381a.634.634 0 0 1-.585-.361l-.345.33c.247.355.543.514.95.514.557 0 .948-.366.948-.888.001-.43-.18-.625-.79-.844zm.96.317c0 .795.634 1.411 1.45 1.411.23 0 .427-.045.67-.158v-.62c-.214.211-.403.295-.647.295-.54 0-.921-.384-.921-.932 0-.517.394-.928.897-.928.254 0 .449.089.671.304v-.62a1.389 1.389 0 0 0-.66-.165c-.81 0-1.46.628-1.46 1.413zm6.461.463l-.733-1.815h-.584l1.165 2.771h.287l1.187-2.771h-.58zm1.565.888h1.519v-.458h-.983v-.73h.946v-.457h-.946v-.6h.983v-.458H17.73zm3.64-1.906c0-.506-.353-.797-.972-.797h-.796v2.702h.537v-1.086h.07l.74 1.086h.66l-.865-1.139c.404-.08.626-.352.626-.766zm-1.075.446h-.155v-.817h.164c.335 0 .514.138.514.401 0 .27-.18.416-.523.416z" })))),
1067
1067
  },
1068
1068
  'card-googlepay': {
1069
1069
  markup: () => (h("g", null,
1070
1070
  h("path", { d: "M2 18.667v-13.2C2 4.66 2.66 4 3.467 4h19.066C23.34 4 24 4.66 24 5.467v13.2a1.47 1.47 0 0 1-1.467 1.466H3.467A1.47 1.47 0 0 1 2 18.667z", class: "stroke-primary" }),
1071
1071
  h("g", { class: "fill-primary" },
1072
- h("path", { d: "M9.883 13.533a.55.55 0 0 1-.55-.55V11.15a.55.55 0 0 1 1.1 0v1.833a.55.55 0 0 1-.55.55zm6.234 0a.55.55 0 0 1-.55-.55V11.15a.55.55 0 0 1 1.1 0v1.833a.55.55 0 0 1-.55.55zM10.8 10.6v4.033c0 .203.164.367.367.367h.366v.917a.55.55 0 0 0 1.1 0V15h.734v.917a.55.55 0 0 0 1.1 0V15h.366a.367.367 0 0 0 .367-.367V10.6h-4.4zm0-.367h4.4c0-.614-.252-1.168-.658-1.568l.585-.779a.367.367 0 1 0-.587-.44l-.6.8a2.187 2.187 0 0 0-1.88 0l-.6-.8a.367.367 0 0 0-.587.44l.585.78a2.193 2.193 0 0 0-.658 1.566z" }))))
1072
+ h("path", { d: "M9.883 13.533a.55.55 0 0 1-.55-.55V11.15a.55.55 0 0 1 1.1 0v1.833a.55.55 0 0 1-.55.55zm6.234 0a.55.55 0 0 1-.55-.55V11.15a.55.55 0 0 1 1.1 0v1.833a.55.55 0 0 1-.55.55zM10.8 10.6v4.033c0 .203.164.367.367.367h.366v.917a.55.55 0 0 0 1.1 0V15h.734v.917a.55.55 0 0 0 1.1 0V15h.366a.367.367 0 0 0 .367-.367V10.6h-4.4zm0-.367h4.4c0-.614-.252-1.168-.658-1.568l.585-.779a.367.367 0 1 0-.587-.44l-.6.8a2.187 2.187 0 0 0-1.88 0l-.6-.8a.367.367 0 0 0-.587.44l.585.78a2.193 2.193 0 0 0-.658 1.566z" })))),
1073
1073
  },
1074
1074
  'card-googlepay-color': {
1075
1075
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
1076
1076
  h("g", null,
1077
1077
  h("path", { fill: "#E6E6E6", "fill-rule": "nonzero", d: "M22.565 4H3.435C2.642 4 2 4.632 2 5.412v13.176C2 19.368 2.642 20 3.435 20h19.13c.793 0 1.435-.632 1.435-1.412V5.412C24 4.632 23.358 4 22.565 4z" }),
1078
1078
  h("path", { fill: "#76C450", d: "M9.652 13.412a.475.475 0 0 1-.478-.47v-1.883c0-.26.214-.47.478-.47s.478.21.478.47v1.882c0 .26-.214.47-.478.47zm6.696 0a.475.475 0 0 1-.478-.47v-1.883c0-.26.214-.47.478-.47s.478.21.478.47v1.882c0 .26-.214.47-.478.47zm-5.739-2.824v3.765c0 .26.214.47.478.47h.478v.942c0 .26.214.47.478.47s.479-.21.479-.47v-.941h.956v.94c0 .26.215.471.479.471s.478-.21.478-.47v-.941h.478a.475.475 0 0 0 .478-.471v-3.765H10.61z" }),
1079
- h("path", { fill: "#76C450", "fill-rule": "nonzero", d: "M10.609 10.118h4.782c0-.732-.346-1.377-.878-1.809l.599-.885a.233.233 0 0 0-.066-.326.24.24 0 0 0-.332.066l-.6.884A2.392 2.392 0 0 0 13 7.765c-.405 0-.78.108-1.115.283l-.6-.884a.241.241 0 0 0-.33-.066.233.233 0 0 0-.067.326l.6.885a2.323 2.323 0 0 0-.88 1.809z" }))))
1079
+ h("path", { fill: "#76C450", "fill-rule": "nonzero", d: "M10.609 10.118h4.782c0-.732-.346-1.377-.878-1.809l.599-.885a.233.233 0 0 0-.066-.326.24.24 0 0 0-.332.066l-.6.884A2.392 2.392 0 0 0 13 7.765c-.405 0-.78.108-1.115.283l-.6-.884a.241.241 0 0 0-.33-.066.233.233 0 0 0-.067.326l.6.885a2.323 2.323 0 0 0-.88 1.809z" })))),
1080
1080
  },
1081
1081
  'card-jcb': {
1082
1082
  markup: () => (h("g", null,
1083
1083
  h("path", { d: "M2 18.667v-13.2C2 4.66 2.66 4 3.467 4h19.066C23.34 4 24 4.66 24 5.467v13.2a1.47 1.47 0 0 1-1.467 1.466H3.467A1.47 1.47 0 0 1 2 18.667z", class: "stroke-primary" }),
1084
1084
  h("g", { class: "fill-primary" },
1085
- h("path", { d: "M16.637 12.26h.897c.256 0 .403.137.445.321a.442.442 0 0 1 0 .196c-.043.187-.198.321-.43.321h-.912v-.838zm1.235-.949a.413.413 0 0 1 0 .179c-.048.217-.221.297-.445.297h-.79v-.773h.805c.253 0 .391.122.43.297zM19.673 7.3v8.103c0 .79-.64 1.43-1.43 1.43H15.86v-3.239h2.471c.537-.004 1.004-.277 1.004-.794a.678.678 0 0 0-.007-.099c-.054-.388-.42-.63-.904-.667v-.019c.483-.074.724-.382.724-.729a.661.661 0 0 0-.341-.592c-.267-.159-.57-.155-.843-.155H15.86V8.73c0-.79.64-1.43 1.43-1.43h2.383zM6.327 12.813V8.73c0-.79.64-1.43 1.43-1.43h2.383v8.103c0 .79-.638 1.43-1.428 1.43H6.327v-3.348c.58.16 1.98.338 2.804.024.518-.195.788-.565.788-1.126v-1.844H8.552v1.844c0 .372-.205.659-.57.753-.47.122-1.161-.084-1.655-.323zm4.766-1.843V8.73c0-.79.64-1.43 1.43-1.43h2.384v8.103c0 .79-.64 1.43-1.43 1.43h-2.384v-3.668c.38.326.916.45 1.41.496a6.292 6.292 0 0 0 2.067-.176v-.672c-.431.215-.968.408-1.576.347-.669-.078-1.002-.496-1.002-1.093 0-.628.37-1.03 1.017-1.095.52-.052 1.074.104 1.562.349v-.673a6.414 6.414 0 0 0-1.837-.19c-.57.027-1.209.14-1.64.511z" }))))
1085
+ h("path", { d: "M16.637 12.26h.897c.256 0 .403.137.445.321a.442.442 0 0 1 0 .196c-.043.187-.198.321-.43.321h-.912v-.838zm1.235-.949a.413.413 0 0 1 0 .179c-.048.217-.221.297-.445.297h-.79v-.773h.805c.253 0 .391.122.43.297zM19.673 7.3v8.103c0 .79-.64 1.43-1.43 1.43H15.86v-3.239h2.471c.537-.004 1.004-.277 1.004-.794a.678.678 0 0 0-.007-.099c-.054-.388-.42-.63-.904-.667v-.019c.483-.074.724-.382.724-.729a.661.661 0 0 0-.341-.592c-.267-.159-.57-.155-.843-.155H15.86V8.73c0-.79.64-1.43 1.43-1.43h2.383zM6.327 12.813V8.73c0-.79.64-1.43 1.43-1.43h2.383v8.103c0 .79-.638 1.43-1.428 1.43H6.327v-3.348c.58.16 1.98.338 2.804.024.518-.195.788-.565.788-1.126v-1.844H8.552v1.844c0 .372-.205.659-.57.753-.47.122-1.161-.084-1.655-.323zm4.766-1.843V8.73c0-.79.64-1.43 1.43-1.43h2.384v8.103c0 .79-.64 1.43-1.43 1.43h-2.384v-3.668c.38.326.916.45 1.41.496a6.292 6.292 0 0 0 2.067-.176v-.672c-.431.215-.968.408-1.576.347-.669-.078-1.002-.496-1.002-1.093 0-.628.37-1.03 1.017-1.095.52-.052 1.074.104 1.562.349v-.673a6.414 6.414 0 0 0-1.837-.19c-.57.027-1.209.14-1.64.511z" })))),
1086
1086
  },
1087
1087
  'card-jcb-color': {
1088
1088
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
@@ -1091,12 +1091,12 @@ const icons = {
1091
1091
  h("path", { fill: "#FFF", d: "M6.304 10.118h3.826v4.235H6.304zm4.783 0h3.826v4.235h-3.826zm4.783 0h3.826v4.235H15.87z" }),
1092
1092
  h("path", { fill: "#269732", d: "M16.65 12.19h.9c.256 0 .403.136.445.318a.42.42 0 0 1 0 .193c-.042.185-.198.317-.43.317h-.916v-.827zm1.238-.936a.404.404 0 0 1 0 .176c-.048.214-.222.294-.446.294h-.793v-.764h.808c.253 0 .392.12.43.294zm1.808-3.96v8c0 .78-.643 1.412-1.435 1.412H15.87v-3.198h2.48c.538-.004 1.006-.274 1.006-.784a.733.733 0 0 0-.007-.098c-.054-.383-.421-.622-.906-.659v-.018c.484-.074.726-.378.726-.72a.652.652 0 0 0-.343-.585c-.268-.156-.57-.152-.846-.152h-2.11V8.706c0-.78.642-1.412 1.434-1.412h2.392z" }),
1093
1093
  h("path", { fill: "#034D9B", d: "M6.304 12.737V8.706c0-.78.643-1.412 1.435-1.412h2.391v8c0 .78-.64 1.412-1.432 1.412H6.304V13.4c.582.158 1.988.333 2.813.024.52-.193.792-.558.792-1.112v-1.82H8.537v1.82c0 .368-.205.65-.572.744-.472.12-1.165-.083-1.66-.32z" }),
1094
- h("path", { fill: "#AD1031", d: "M11.087 10.917V8.706c0-.78.642-1.412 1.435-1.412h2.391v8c0 .78-.642 1.412-1.434 1.412h-2.392v-3.622c.381.322.919.444 1.415.49a6.37 6.37 0 0 0 2.074-.174v-.663c-.433.212-.971.402-1.582.342-.67-.077-1.005-.49-1.005-1.079 0-.62.37-1.016 1.02-1.08.52-.051 1.077.102 1.567.344V10.6a6.527 6.527 0 0 0-1.843-.189c-.572.028-1.213.14-1.646.506z" }))))
1094
+ h("path", { fill: "#AD1031", d: "M11.087 10.917V8.706c0-.78.642-1.412 1.435-1.412h2.391v8c0 .78-.642 1.412-1.434 1.412h-2.392v-3.622c.381.322.919.444 1.415.49a6.37 6.37 0 0 0 2.074-.174v-.663c-.433.212-.971.402-1.582.342-.67-.077-1.005-.49-1.005-1.079 0-.62.37-1.016 1.02-1.08.52-.051 1.077.102 1.567.344V10.6a6.527 6.527 0 0 0-1.843-.189c-.572.028-1.213.14-1.646.506z" })))),
1095
1095
  },
1096
1096
  'card-maestro': {
1097
1097
  markup: () => (h("g", null,
1098
1098
  h("path", { d: "M22.533 20.133H3.467A1.47 1.47 0 0 1 2 18.667v-13.2C2 4.66 2.66 4 3.467 4h19.066C23.34 4 24 4.66 24 5.467v13.2a1.47 1.47 0 0 1-1.467 1.466z", class: "stroke-primary" }),
1099
- h("path", { d: "M6.4 12.067c0 2.227 1.818 4.033 4.062 4.033a4.06 4.06 0 0 0 2.541-.89c.695.555 1.574.89 2.535.89 2.244 0 4.062-1.806 4.062-4.033 0-2.228-1.818-4.034-4.062-4.034-.961 0-1.843.333-2.538.888a4.06 4.06 0 0 0-2.538-.888C8.218 8.033 6.4 9.84 6.4 12.067zm1.015 0c0-1.668 1.367-3.025 3.047-3.025.899 0 1.706.39 2.264 1.008h-.701c-.095.162-.179.33-.25.504h1.32c.094.16.172.328.235.504h-1.72a3.939 3.939 0 0 0-.098.505h1.95c.028.164.046.332.046.504h-2.03c0 .17.014.338.034.504h1.95a2.85 2.85 0 0 1-.132.504h-1.72c.045.173.099.341.165.504h1.321c-.106.181-.23.35-.37.504h-.701c.08.138.17.27.266.396a3.04 3.04 0 0 1-1.83.613c-1.68 0-3.046-1.357-3.046-3.025z", class: "fill-primary" })))
1099
+ h("path", { d: "M6.4 12.067c0 2.227 1.818 4.033 4.062 4.033a4.06 4.06 0 0 0 2.541-.89c.695.555 1.574.89 2.535.89 2.244 0 4.062-1.806 4.062-4.033 0-2.228-1.818-4.034-4.062-4.034-.961 0-1.843.333-2.538.888a4.06 4.06 0 0 0-2.538-.888C8.218 8.033 6.4 9.84 6.4 12.067zm1.015 0c0-1.668 1.367-3.025 3.047-3.025.899 0 1.706.39 2.264 1.008h-.701c-.095.162-.179.33-.25.504h1.32c.094.16.172.328.235.504h-1.72a3.939 3.939 0 0 0-.098.505h1.95c.028.164.046.332.046.504h-2.03c0 .17.014.338.034.504h1.95a2.85 2.85 0 0 1-.132.504h-1.72c.045.173.099.341.165.504h1.321c-.106.181-.23.35-.37.504h-.701c.08.138.17.27.266.396a3.04 3.04 0 0 1-1.83.613c-1.68 0-3.046-1.357-3.046-3.025z", class: "fill-primary" }))),
1100
1100
  },
1101
1101
  'card-maestro-color': {
1102
1102
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
@@ -1105,13 +1105,13 @@ const icons = {
1105
1105
  h("g", null,
1106
1106
  h("path", { fill: "#7375CF", d: "M11.299 9.062h3.348v6.083h-3.348z" }),
1107
1107
  h("path", { fill: "#EB001B", d: "M11.512 12.104a3.877 3.877 0 0 1 1.46-3.041 3.796 3.796 0 0 0-5.174.417 3.9 3.9 0 0 0 0 5.248 3.796 3.796 0 0 0 5.175.417 3.877 3.877 0 0 1-1.461-3.04z" }),
1108
- h("path", { fill: "#01A2E5", d: "M19.164 12.104a3.872 3.872 0 0 1-2.154 3.48 3.792 3.792 0 0 1-4.037-.439 3.884 3.884 0 0 0 1.462-3.041 3.884 3.884 0 0 0-1.462-3.041 3.792 3.792 0 0 1 4.037-.439 3.872 3.872 0 0 1 2.154 3.48z" })))))
1108
+ h("path", { fill: "#01A2E5", d: "M19.164 12.104a3.872 3.872 0 0 1-2.154 3.48 3.792 3.792 0 0 1-4.037-.439 3.884 3.884 0 0 0 1.462-3.041 3.884 3.884 0 0 0-1.462-3.041 3.792 3.792 0 0 1 4.037-.439 3.872 3.872 0 0 1 2.154 3.48z" }))))),
1109
1109
  },
1110
1110
  'card-mastercard': {
1111
1111
  markup: () => (h("g", null,
1112
1112
  h("path", { d: "M2 18.667v-13.2C2 4.66 2.66 4 3.467 4h19.066C23.34 4 24 4.66 24 5.467v13.2a1.47 1.47 0 0 1-1.467 1.466H3.467A1.47 1.47 0 0 1 2 18.667z", class: "stroke-primary" }),
1113
1113
  h("g", { class: "fill-primary" },
1114
- h("path", { d: "M15.538 8.033A4.06 4.06 0 0 0 13 8.921a4.056 4.056 0 0 0-2.538-.888C8.218 8.033 6.4 9.84 6.4 12.067S8.218 16.1 10.462 16.1c.96 0 1.84-.335 2.535-.89.696.556 1.579.89 2.541.89 2.244 0 4.062-1.806 4.062-4.033 0-2.228-1.818-4.034-4.062-4.034zm0 7.059a3.04 3.04 0 0 1-1.83-.613 3.92 3.92 0 0 0 .267-.396h-.7a3.011 3.011 0 0 1-.37-.504h1.32c.067-.163.12-.331.165-.504h-1.72a3.014 3.014 0 0 1-.132-.504h1.95c.02-.166.035-.333.035-.504h-2.03c0-.172.018-.34.045-.505h1.95a4.003 4.003 0 0 0-.098-.504h-1.72c.063-.176.141-.344.234-.504h1.321a3.978 3.978 0 0 0-.25-.504h-.7a3.046 3.046 0 0 1 2.264-1.008c1.68 0 3.046 1.357 3.046 3.025s-1.367 3.025-3.047 3.025z" }))))
1114
+ h("path", { d: "M15.538 8.033A4.06 4.06 0 0 0 13 8.921a4.056 4.056 0 0 0-2.538-.888C8.218 8.033 6.4 9.84 6.4 12.067S8.218 16.1 10.462 16.1c.96 0 1.84-.335 2.535-.89.696.556 1.579.89 2.541.89 2.244 0 4.062-1.806 4.062-4.033 0-2.228-1.818-4.034-4.062-4.034zm0 7.059a3.04 3.04 0 0 1-1.83-.613 3.92 3.92 0 0 0 .267-.396h-.7a3.011 3.011 0 0 1-.37-.504h1.32c.067-.163.12-.331.165-.504h-1.72a3.014 3.014 0 0 1-.132-.504h1.95c.02-.166.035-.333.035-.504h-2.03c0-.172.018-.34.045-.505h1.95a4.003 4.003 0 0 0-.098-.504h-1.72c.063-.176.141-.344.234-.504h1.321a3.978 3.978 0 0 0-.25-.504h-.7a3.046 3.046 0 0 1 2.264-1.008c1.68 0 3.046 1.357 3.046 3.025s-1.367 3.025-3.047 3.025z" })))),
1115
1115
  },
1116
1116
  'card-mastercard-color': {
1117
1117
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
@@ -1120,13 +1120,13 @@ const icons = {
1120
1120
  h("g", null,
1121
1121
  h("path", { fill: "#FF5F00", d: "M11.299 9.062h3.348v6.083h-3.348z" }),
1122
1122
  h("path", { fill: "#EB001B", d: "M11.512 12.104a3.877 3.877 0 0 1 1.46-3.041 3.796 3.796 0 0 0-5.174.417 3.9 3.9 0 0 0 0 5.248 3.796 3.796 0 0 0 5.175.417 3.877 3.877 0 0 1-1.461-3.04z" }),
1123
- h("path", { fill: "#F79E1B", d: "M19.164 12.104a3.872 3.872 0 0 1-2.154 3.48 3.792 3.792 0 0 1-4.037-.439 3.884 3.884 0 0 0 1.462-3.041 3.884 3.884 0 0 0-1.462-3.041 3.792 3.792 0 0 1 4.037-.439 3.872 3.872 0 0 1 2.154 3.48z" })))))
1123
+ h("path", { fill: "#F79E1B", d: "M19.164 12.104a3.872 3.872 0 0 1-2.154 3.48 3.792 3.792 0 0 1-4.037-.439 3.884 3.884 0 0 0 1.462-3.041 3.884 3.884 0 0 0-1.462-3.041 3.792 3.792 0 0 1 4.037-.439 3.872 3.872 0 0 1 2.154 3.48z" }))))),
1124
1124
  },
1125
1125
  'card-paypal': {
1126
1126
  markup: () => (h("g", null,
1127
1127
  h("path", { d: "M2 18.667v-13.2C2 4.66 2.66 4 3.467 4h19.066C23.34 4 24 4.66 24 5.467v13.2a1.47 1.47 0 0 1-1.467 1.466H3.467A1.47 1.47 0 0 1 2 18.667z", class: "stroke-primary" }),
1128
1128
  h("g", { class: "fill-primary" },
1129
- h("path", { d: "M15.886 9.867h-1.284a.179.179 0 0 0-.177.15l-.519 3.294c-.01.065.04.123.106.123h.659a.125.125 0 0 0 .123-.105l.147-.934a.178.178 0 0 1 .177-.15h.406c.846 0 1.334-.41 1.462-1.222.058-.354.002-.633-.164-.829-.182-.214-.506-.327-.936-.327zm.148 1.202c-.07.461-.422.461-.763.461h-.193l.136-.86a.107.107 0 0 1 .105-.09c.282 0 .53-.013.653.131.067.08.088.197.062.358zM6.725 9.867H5.441a.179.179 0 0 0-.177.15l-.519 3.294c-.01.065.04.123.106.123h.613a.179.179 0 0 0 .177-.15l.14-.889a.178.178 0 0 1 .176-.15h.406c.846 0 1.335-.41 1.462-1.222.058-.354.002-.633-.164-.829-.181-.214-.506-.327-.936-.327zm.149 1.202c-.07.461-.423.461-.763.461h-.194l.136-.86a.107.107 0 0 1 .106-.09h.088c.232 0 .451 0 .564.131.068.08.088.197.063.358zm3.69-.014H9.95a.107.107 0 0 0-.105.09l-.027.172c-.06-.086-.179-.32-.77-.32-.68 0-1.26.515-1.372 1.237-.06.36.024.705.228.945.188.22.456.313.775.313.548 0 .851-.352.851-.352l-.027.17c-.01.066.04.125.106.125h.554a.179.179 0 0 0 .176-.151l.333-2.105a.108.108 0 0 0-.107-.124zm-.857 1.197a.686.686 0 0 1-.694.587c-.179 0-.321-.057-.413-.166a.522.522 0 0 1-.096-.432.688.688 0 0 1 .689-.592c.174 0 .316.058.41.168a.53.53 0 0 1 .104.435zm10.018-1.197h-.615a.107.107 0 0 0-.105.09l-.028.172c-.06-.086-.178-.32-.769-.32-.68 0-1.26.515-1.373 1.237-.058.36.025.705.23.945.187.22.455.313.774.313.548 0 .851-.352.851-.352l-.027.17c-.01.066.04.125.105.125h.554a.179.179 0 0 0 .177-.151l.332-2.105a.108.108 0 0 0-.106-.124zm-.857 1.197a.686.686 0 0 1-.694.587c-.179 0-.322-.057-.413-.166a.522.522 0 0 1-.097-.432.688.688 0 0 1 .69-.592c.174 0 .316.058.41.168.094.11.13.265.104.435zm-5.028-1.197h-.618a.18.18 0 0 0-.148.078l-.853 1.256-.361-1.207a.178.178 0 0 0-.171-.127h-.609a.107.107 0 0 0-.101.141l.68 1.998-.64.904c-.05.07 0 .169.088.169h.617a.178.178 0 0 0 .147-.077l2.056-2.967a.107.107 0 0 0-.088-.168zm6.61-1.098l-.527 3.354c-.01.065.04.123.105.123h.53a.179.179 0 0 0 .177-.15l.52-3.294a.107.107 0 0 0-.106-.123h-.593a.107.107 0 0 0-.106.09z" }))))
1129
+ h("path", { d: "M15.886 9.867h-1.284a.179.179 0 0 0-.177.15l-.519 3.294c-.01.065.04.123.106.123h.659a.125.125 0 0 0 .123-.105l.147-.934a.178.178 0 0 1 .177-.15h.406c.846 0 1.334-.41 1.462-1.222.058-.354.002-.633-.164-.829-.182-.214-.506-.327-.936-.327zm.148 1.202c-.07.461-.422.461-.763.461h-.193l.136-.86a.107.107 0 0 1 .105-.09c.282 0 .53-.013.653.131.067.08.088.197.062.358zM6.725 9.867H5.441a.179.179 0 0 0-.177.15l-.519 3.294c-.01.065.04.123.106.123h.613a.179.179 0 0 0 .177-.15l.14-.889a.178.178 0 0 1 .176-.15h.406c.846 0 1.335-.41 1.462-1.222.058-.354.002-.633-.164-.829-.181-.214-.506-.327-.936-.327zm.149 1.202c-.07.461-.423.461-.763.461h-.194l.136-.86a.107.107 0 0 1 .106-.09h.088c.232 0 .451 0 .564.131.068.08.088.197.063.358zm3.69-.014H9.95a.107.107 0 0 0-.105.09l-.027.172c-.06-.086-.179-.32-.77-.32-.68 0-1.26.515-1.372 1.237-.06.36.024.705.228.945.188.22.456.313.775.313.548 0 .851-.352.851-.352l-.027.17c-.01.066.04.125.106.125h.554a.179.179 0 0 0 .176-.151l.333-2.105a.108.108 0 0 0-.107-.124zm-.857 1.197a.686.686 0 0 1-.694.587c-.179 0-.321-.057-.413-.166a.522.522 0 0 1-.096-.432.688.688 0 0 1 .689-.592c.174 0 .316.058.41.168a.53.53 0 0 1 .104.435zm10.018-1.197h-.615a.107.107 0 0 0-.105.09l-.028.172c-.06-.086-.178-.32-.769-.32-.68 0-1.26.515-1.373 1.237-.058.36.025.705.23.945.187.22.455.313.774.313.548 0 .851-.352.851-.352l-.027.17c-.01.066.04.125.105.125h.554a.179.179 0 0 0 .177-.151l.332-2.105a.108.108 0 0 0-.106-.124zm-.857 1.197a.686.686 0 0 1-.694.587c-.179 0-.322-.057-.413-.166a.522.522 0 0 1-.097-.432.688.688 0 0 1 .69-.592c.174 0 .316.058.41.168.094.11.13.265.104.435zm-5.028-1.197h-.618a.18.18 0 0 0-.148.078l-.853 1.256-.361-1.207a.178.178 0 0 0-.171-.127h-.609a.107.107 0 0 0-.101.141l.68 1.998-.64.904c-.05.07 0 .169.088.169h.617a.178.178 0 0 0 .147-.077l2.056-2.967a.107.107 0 0 0-.088-.168zm6.61-1.098l-.527 3.354c-.01.065.04.123.105.123h.53a.179.179 0 0 0 .177-.15l.52-3.294a.107.107 0 0 0-.106-.123h-.593a.107.107 0 0 0-.106.09z" })))),
1130
1130
  },
1131
1131
  'card-paypal-color': {
1132
1132
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
@@ -1136,31 +1136,31 @@ const icons = {
1136
1136
  h("path", { fill: "#113984", d: "M6.457 9.743H5.118a.185.185 0 0 0-.183.154l-.542 3.379a.11.11 0 0 0 .11.127h.64c.091 0 .17-.066.184-.155l.146-.911a.185.185 0 0 1 .184-.154h.424c.881 0 1.39-.42 1.524-1.253.06-.364.002-.65-.171-.85-.191-.22-.528-.337-.977-.337zm.155 1.234c-.073.473-.44.473-.795.473h-.203l.142-.883a.111.111 0 0 1 .11-.093h.093c.242 0 .47 0 .588.135.07.082.092.202.065.368zm3.848-.015h-.64a.111.111 0 0 0-.111.093l-.029.176c-.062-.089-.186-.328-.802-.328-.708 0-1.314.528-1.432 1.269-.06.37.026.723.24.97.195.226.474.32.807.32.57 0 .888-.36.888-.36l-.03.175a.11.11 0 0 0 .111.127h.578c.091 0 .17-.066.184-.155l.346-2.16a.11.11 0 0 0-.11-.127zm-.893 1.228a.711.711 0 0 1-.724.602c-.186 0-.335-.058-.43-.17a.53.53 0 0 1-.1-.443.714.714 0 0 1 .718-.607c.182 0 .33.06.427.172a.54.54 0 0 1 .109.446z" }),
1137
1137
  h("path", { fill: "#009EE3", d: "M20.012 10.962h-.641a.111.111 0 0 0-.11.093l-.029.176c-.062-.089-.186-.328-.802-.328-.709 0-1.314.528-1.432 1.269-.061.37.026.723.239.97.196.226.475.32.808.32.57 0 .887-.36.887-.36l-.028.175a.11.11 0 0 0 .11.127h.578c.091 0 .17-.066.184-.155l.346-2.16a.11.11 0 0 0-.11-.127zm-.894 1.228a.712.712 0 0 1-.723.602c-.186 0-.335-.058-.43-.17a.53.53 0 0 1-.101-.443.714.714 0 0 1 .719-.607c.182 0 .33.06.427.172a.54.54 0 0 1 .108.446z" }),
1138
1138
  h("path", { fill: "#113984", d: "M13.876 10.962h-.645c-.062 0-.12.03-.154.08l-.89 1.289-.376-1.238a.186.186 0 0 0-.178-.131h-.634a.11.11 0 0 0-.106.145l.71 2.05-.668.927a.11.11 0 0 0 .091.173h.644a.19.19 0 0 0 .153-.078l2.144-3.044a.11.11 0 0 0-.091-.173z" }),
1139
- h("path", { fill: "#009EE3", d: "M20.768 9.836l-.55 3.44a.11.11 0 0 0 .11.128h.554a.185.185 0 0 0 .183-.155l.542-3.378a.11.11 0 0 0-.11-.127h-.62a.11.11 0 0 0-.11.092z" }))))
1139
+ h("path", { fill: "#009EE3", d: "M20.768 9.836l-.55 3.44a.11.11 0 0 0 .11.128h.554a.185.185 0 0 0 .183-.155l.542-3.378a.11.11 0 0 0-.11-.127h-.62a.11.11 0 0 0-.11.092z" })))),
1140
1140
  },
1141
1141
  'card-stripe': {
1142
1142
  markup: () => (h("g", null,
1143
1143
  h("path", { d: "M2 18.667v-13.2C2 4.66 2.66 4 3.467 4h19.066C23.34 4 24 4.66 24 5.467v13.2a1.47 1.47 0 0 1-1.467 1.466H3.467A1.47 1.47 0 0 1 2 18.667z", class: "stroke-primary" }),
1144
- h("path", { d: "M18.256 11.871c.029-.456.152-.67.386-.67.23 0 .35.218.366.67h-.752zm1.71.272c0-.51-.11-.913-.328-1.197-.222-.288-.555-.436-.98-.436-.867 0-1.406.642-1.406 1.67 0 .576.144 1.008.428 1.283.255.247.621.37 1.094.37.436 0 .84-.102 1.094-.27l-.11-.7c-.252.136-.544.21-.873.21-.197 0-.333-.041-.432-.128-.107-.09-.168-.239-.189-.448h1.69a7.1 7.1 0 0 0 .013-.354zm-4.08.69c-.082.157-.21.24-.357.24a.606.606 0 0 1-.276-.062v-1.522c.172-.181.329-.202.386-.202.26 0 .387.28.387.827 0 .313-.045.555-.14.72zm.848-1.973c-.181-.235-.432-.35-.753-.35-.296 0-.555.124-.798.383l-.053-.321h-.897v4.384l1.02-.169V13.76c.156.05.317.074.46.074.256 0 .626-.065.914-.378.275-.3.415-.765.415-1.378 0-.543-.103-.954-.308-1.217zm-3.927-.288h1.025v3.2h-1.025v-3.2zm.515-.317a.537.537 0 0 0 .534-.539.535.535 0 1 0-1.073 0c0 .296.238.539.539.539zm-.954.272c-.288 0-.519.151-.61.423l-.06-.378h-.893v3.2h1.02v-2.078c.127-.156.308-.212.555-.212.053 0 .111 0 .181.012v-.942a.815.815 0 0 0-.194-.025zm-1.957.801l.124-.757h-.652v-.918l-.876.144-.126.774-.308.05-.115.707h.422v1.484c0 .387.098.655.3.819.169.136.411.202.753.202.263 0 .423-.046.534-.075v-.801a1.403 1.403 0 0 1-.296.045c-.201 0-.288-.103-.288-.338v-1.337h.528v.001zm-2.922.449c-.3-.111-.465-.198-.465-.334 0-.115.095-.18.264-.18.308 0 .625.118.843.225l.124-.76a2.373 2.373 0 0 0-1.016-.219c-.346 0-.634.091-.84.26-.213.176-.324.432-.324.74 0 .56.341.798.896 1 .358.127.477.218.477.357 0 .136-.115.214-.325.214-.259 0-.686-.127-.966-.292l-.124.77c.239.135.683.275 1.144.275.366 0 .67-.086.876-.25.23-.182.349-.449.349-.794 0-.572-.35-.81-.913-1.012z", class: "fill-primary" })))
1144
+ h("path", { d: "M18.256 11.871c.029-.456.152-.67.386-.67.23 0 .35.218.366.67h-.752zm1.71.272c0-.51-.11-.913-.328-1.197-.222-.288-.555-.436-.98-.436-.867 0-1.406.642-1.406 1.67 0 .576.144 1.008.428 1.283.255.247.621.37 1.094.37.436 0 .84-.102 1.094-.27l-.11-.7c-.252.136-.544.21-.873.21-.197 0-.333-.041-.432-.128-.107-.09-.168-.239-.189-.448h1.69a7.1 7.1 0 0 0 .013-.354zm-4.08.69c-.082.157-.21.24-.357.24a.606.606 0 0 1-.276-.062v-1.522c.172-.181.329-.202.386-.202.26 0 .387.28.387.827 0 .313-.045.555-.14.72zm.848-1.973c-.181-.235-.432-.35-.753-.35-.296 0-.555.124-.798.383l-.053-.321h-.897v4.384l1.02-.169V13.76c.156.05.317.074.46.074.256 0 .626-.065.914-.378.275-.3.415-.765.415-1.378 0-.543-.103-.954-.308-1.217zm-3.927-.288h1.025v3.2h-1.025v-3.2zm.515-.317a.537.537 0 0 0 .534-.539.535.535 0 1 0-1.073 0c0 .296.238.539.539.539zm-.954.272c-.288 0-.519.151-.61.423l-.06-.378h-.893v3.2h1.02v-2.078c.127-.156.308-.212.555-.212.053 0 .111 0 .181.012v-.942a.815.815 0 0 0-.194-.025zm-1.957.801l.124-.757h-.652v-.918l-.876.144-.126.774-.308.05-.115.707h.422v1.484c0 .387.098.655.3.819.169.136.411.202.753.202.263 0 .423-.046.534-.075v-.801a1.403 1.403 0 0 1-.296.045c-.201 0-.288-.103-.288-.338v-1.337h.528v.001zm-2.922.449c-.3-.111-.465-.198-.465-.334 0-.115.095-.18.264-.18.308 0 .625.118.843.225l.124-.76a2.373 2.373 0 0 0-1.016-.219c-.346 0-.634.091-.84.26-.213.176-.324.432-.324.74 0 .56.341.798.896 1 .358.127.477.218.477.357 0 .136-.115.214-.325.214-.259 0-.686-.127-.966-.292l-.124.77c.239.135.683.275 1.144.275.366 0 .67-.086.876-.25.23-.182.349-.449.349-.794 0-.572-.35-.81-.913-1.012z", class: "fill-primary" }))),
1145
1145
  },
1146
1146
  'card-stripe-color': {
1147
1147
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
1148
1148
  h("g", { "fill-rule": "nonzero" },
1149
1149
  h("path", { fill: "#009BF1", d: "M22.565 4H3.435C2.642 4 2 4.632 2 5.412v13.176C2 19.368 2.642 20 3.435 20h19.13c.793 0 1.435-.632 1.435-1.412V5.412C24 4.632 23.358 4 22.565 4z" }),
1150
- h("path", { fill: "#FFF", d: "M18.773 11.789c.031-.494.167-.725.424-.725.253 0 .384.236.403.725h-.827zm1.88.293c0-.55-.123-.986-.362-1.293-.244-.311-.61-.471-1.076-.471-.953 0-1.545.693-1.545 1.804 0 .622.159 1.09.47 1.387.28.267.682.4 1.202.4.478 0 .921-.11 1.202-.293l-.122-.756a2.013 2.013 0 0 1-.958.227c-.217 0-.366-.044-.475-.138-.117-.098-.185-.258-.208-.485h1.857c.005-.053.014-.302.014-.382zm-4.483.747c-.09.17-.23.258-.393.258a.67.67 0 0 1-.302-.067v-1.644c.19-.196.361-.218.424-.218.285 0 .425.302.425.893 0 .338-.05.6-.154.778zm.931-2.133c-.199-.254-.474-.378-.827-.378-.325 0-.61.133-.876.413l-.06-.347h-.984v4.739l1.12-.182v-1.112c.172.053.348.08.507.08.28 0 .686-.07 1.002-.409.303-.324.457-.827.457-1.489 0-.587-.113-1.031-.339-1.315zm-4.312-.312h1.124v3.458H12.79v-3.458zm.564-.342a.582.582 0 1 0 0-1.164.583.583 0 0 0-.591.582c0 .32.261.582.591.582zm-1.048.294c-.316 0-.569.164-.669.457l-.067-.409h-.98v3.459h1.12v-2.245c.14-.169.338-.23.61-.23.058 0 .121 0 .198.013v-1.018a.921.921 0 0 0-.212-.027zm-2.149.866l.136-.818h-.716v-.993l-.962.156-.138.837-.338.054-.127.764h.463v1.605c0 .417.109.706.33.884.185.147.452.218.827.218.29 0 .465-.049.587-.08v-.867a1.562 1.562 0 0 1-.325.05c-.221 0-.316-.112-.316-.365v-1.445h.58zm-3.209.485c-.33-.12-.51-.214-.51-.36 0-.125.104-.196.29-.196.338 0 .686.129.925.245l.135-.823a2.639 2.639 0 0 0-1.115-.236c-.38 0-.696.098-.922.28-.235.191-.357.467-.357.8 0 .605.375.863.985 1.08.393.138.524.236.524.387 0 .147-.126.231-.357.231-.284 0-.754-.138-1.061-.316l-.136.832c.262.147.75.298 1.256.298.402 0 .736-.093.962-.27.253-.197.384-.486.384-.859 0-.618-.384-.876-1.003-1.093z" }))))
1150
+ h("path", { fill: "#FFF", d: "M18.773 11.789c.031-.494.167-.725.424-.725.253 0 .384.236.403.725h-.827zm1.88.293c0-.55-.123-.986-.362-1.293-.244-.311-.61-.471-1.076-.471-.953 0-1.545.693-1.545 1.804 0 .622.159 1.09.47 1.387.28.267.682.4 1.202.4.478 0 .921-.11 1.202-.293l-.122-.756a2.013 2.013 0 0 1-.958.227c-.217 0-.366-.044-.475-.138-.117-.098-.185-.258-.208-.485h1.857c.005-.053.014-.302.014-.382zm-4.483.747c-.09.17-.23.258-.393.258a.67.67 0 0 1-.302-.067v-1.644c.19-.196.361-.218.424-.218.285 0 .425.302.425.893 0 .338-.05.6-.154.778zm.931-2.133c-.199-.254-.474-.378-.827-.378-.325 0-.61.133-.876.413l-.06-.347h-.984v4.739l1.12-.182v-1.112c.172.053.348.08.507.08.28 0 .686-.07 1.002-.409.303-.324.457-.827.457-1.489 0-.587-.113-1.031-.339-1.315zm-4.312-.312h1.124v3.458H12.79v-3.458zm.564-.342a.582.582 0 1 0 0-1.164.583.583 0 0 0-.591.582c0 .32.261.582.591.582zm-1.048.294c-.316 0-.569.164-.669.457l-.067-.409h-.98v3.459h1.12v-2.245c.14-.169.338-.23.61-.23.058 0 .121 0 .198.013v-1.018a.921.921 0 0 0-.212-.027zm-2.149.866l.136-.818h-.716v-.993l-.962.156-.138.837-.338.054-.127.764h.463v1.605c0 .417.109.706.33.884.185.147.452.218.827.218.29 0 .465-.049.587-.08v-.867a1.562 1.562 0 0 1-.325.05c-.221 0-.316-.112-.316-.365v-1.445h.58zm-3.209.485c-.33-.12-.51-.214-.51-.36 0-.125.104-.196.29-.196.338 0 .686.129.925.245l.135-.823a2.639 2.639 0 0 0-1.115-.236c-.38 0-.696.098-.922.28-.235.191-.357.467-.357.8 0 .605.375.863.985 1.08.393.138.524.236.524.387 0 .147-.126.231-.357.231-.284 0-.754-.138-1.061-.316l-.136.832c.262.147.75.298 1.256.298.402 0 .736-.093.962-.27.253-.197.384-.486.384-.859 0-.618-.384-.876-1.003-1.093z" })))),
1151
1151
  },
1152
1152
  'card-visa': {
1153
1153
  markup: () => (h("g", null,
1154
1154
  h("path", { d: "M2 18.667v-13.2C2 4.66 2.66 4 3.467 4h19.066C23.34 4 24 4.66 24 5.467v13.2a1.47 1.47 0 0 1-1.467 1.466H3.467A1.47 1.47 0 0 1 2 18.667z", class: "stroke-primary" }),
1155
1155
  h("g", { class: "fill-primary" },
1156
- h("path", { d: "M10.88 14.204h1.162l.727-4.263h-1.162zm4.231-2.552c-.406-.197-.655-.329-.652-.528 0-.177.21-.367.665-.367.373-.006.673.07.974.213l.158-.924a3.001 3.001 0 0 0-1.042-.18c-1.148 0-1.957.579-1.963 1.408-.007.612.577.954 1.018 1.158.452.208.604.342.602.528-.003.286-.361.416-.695.416-.516 0-.776-.08-1.243-.291l-.164.954c.272.12.774.223 1.295.228 1.221 0 2.014-.572 2.023-1.457.004-.484-.305-.854-.976-1.158zm4.124-1.707h-.898c-.278 0-.486.076-.608.353l-1.726 3.907h1.22s.2-.526.245-.64l1.488.001c.035.15.141.639.141.639h1.078l-.94-4.26zm-1.433 2.747c.048-.123.523-1.34.617-1.598.157.735.004.022.348 1.598h-.965zM9.906 9.944l-1.138 2.907-.121-.59L8.24 10.3c-.07-.27-.275-.35-.527-.36H5.839l-.014.09c.455.11.863.27 1.22.467L8.078 14.2l1.23-.001 1.828-4.255h-1.23z" }))))
1156
+ h("path", { d: "M10.88 14.204h1.162l.727-4.263h-1.162zm4.231-2.552c-.406-.197-.655-.329-.652-.528 0-.177.21-.367.665-.367.373-.006.673.07.974.213l.158-.924a3.001 3.001 0 0 0-1.042-.18c-1.148 0-1.957.579-1.963 1.408-.007.612.577.954 1.018 1.158.452.208.604.342.602.528-.003.286-.361.416-.695.416-.516 0-.776-.08-1.243-.291l-.164.954c.272.12.774.223 1.295.228 1.221 0 2.014-.572 2.023-1.457.004-.484-.305-.854-.976-1.158zm4.124-1.707h-.898c-.278 0-.486.076-.608.353l-1.726 3.907h1.22s.2-.526.245-.64l1.488.001c.035.15.141.639.141.639h1.078l-.94-4.26zm-1.433 2.747c.048-.123.523-1.34.617-1.598.157.735.004.022.348 1.598h-.965zM9.906 9.944l-1.138 2.907-.121-.59L8.24 10.3c-.07-.27-.275-.35-.527-.36H5.839l-.014.09c.455.11.863.27 1.22.467L8.078 14.2l1.23-.001 1.828-4.255h-1.23z" })))),
1157
1157
  },
1158
1158
  'card-visa-color': {
1159
1159
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
1160
1160
  h("g", { "fill-rule": "nonzero" },
1161
1161
  h("path", { fill: "#E6E6E6", d: "M2 7.294h22v8.941H2z" }),
1162
1162
  h("path", { fill: "#E79800", d: "M3.435 20h19.13c.793 0 1.435-.632 1.435-1.412v-2.353H2v2.353C2 19.368 2.642 20 3.435 20z" }),
1163
- h("path", { fill: "#1A1876", d: "M22.565 4H3.435C2.642 4 2 4.632 2 5.412v2.353h22V5.412C24 4.632 23.358 4 22.565 4zM10.723 14.259h1.247l.781-4.507h-1.248zm4.545-2.697c-.436-.209-.703-.348-.7-.559 0-.187.226-.387.715-.387.4-.007.722.073 1.046.224l.17-.977a3.27 3.27 0 0 0-1.12-.19c-1.233 0-2.102.612-2.109 1.488-.007.647.62 1.009 1.094 1.224.486.221.65.362.647.56-.003.302-.388.44-.747.44-.554 0-.833-.085-1.336-.309l-.175 1.01c.292.125.831.234 1.391.24 1.312 0 2.164-.605 2.174-1.54.003-.513-.33-.903-1.05-1.224zm4.431-1.805h-.965c-.299 0-.522.08-.653.373l-1.854 4.13h1.31s.215-.555.264-.677l1.599.002c.037.158.152.675.152.675h1.158l-1.011-4.503zm-1.539 2.905c.052-.13.561-1.417.663-1.69.169.777.004.023.373 1.69H18.16zM9.676 9.756l-1.223 3.073-.13-.625-.438-2.07c-.075-.286-.294-.371-.565-.381H5.306l-.016.094c.49.116.928.285 1.312.494l1.11 3.914 1.32-.002 1.966-4.498H9.676z" }))))
1163
+ h("path", { fill: "#1A1876", d: "M22.565 4H3.435C2.642 4 2 4.632 2 5.412v2.353h22V5.412C24 4.632 23.358 4 22.565 4zM10.723 14.259h1.247l.781-4.507h-1.248zm4.545-2.697c-.436-.209-.703-.348-.7-.559 0-.187.226-.387.715-.387.4-.007.722.073 1.046.224l.17-.977a3.27 3.27 0 0 0-1.12-.19c-1.233 0-2.102.612-2.109 1.488-.007.647.62 1.009 1.094 1.224.486.221.65.362.647.56-.003.302-.388.44-.747.44-.554 0-.833-.085-1.336-.309l-.175 1.01c.292.125.831.234 1.391.24 1.312 0 2.164-.605 2.174-1.54.003-.513-.33-.903-1.05-1.224zm4.431-1.805h-.965c-.299 0-.522.08-.653.373l-1.854 4.13h1.31s.215-.555.264-.677l1.599.002c.037.158.152.675.152.675h1.158l-1.011-4.503zm-1.539 2.905c.052-.13.561-1.417.663-1.69.169.777.004.023.373 1.69H18.16zM9.676 9.756l-1.223 3.073-.13-.625-.438-2.07c-.075-.286-.294-.371-.565-.381H5.306l-.016.094c.49.116.928.285 1.312.494l1.11 3.914 1.32-.002 1.966-4.498H9.676z" })))),
1164
1164
  },
1165
1165
  cart: {
1166
1166
  markup: () => (h("g", null,
@@ -1168,7 +1168,7 @@ const icons = {
1168
1168
  h("g", { class: "stroke-primary", transform: "translate(2 2)" },
1169
1169
  h("path", { d: "M0 0h2.933v14.667h18.334" }),
1170
1170
  h("circle", { cx: "4.4", cy: "19.8", r: "2.2" }),
1171
- h("circle", { cx: "19.8", cy: "19.8", r: "2.2" }))))
1171
+ h("circle", { cx: "19.8", cy: "19.8", r: "2.2" })))),
1172
1172
  },
1173
1173
  'cart-moving': {
1174
1174
  markup: () => (h("g", null,
@@ -1177,14 +1177,14 @@ const icons = {
1177
1177
  h("circle", { cx: "17.311", cy: "2.164", r: "2.164" })),
1178
1178
  h("g", { class: "stroke-primary" },
1179
1179
  h("path", { d: "M5.065 5.065h18.033l-2.164 11.541H2.18m1.443-2.885H7.95m-2.885-2.885h4.328" }),
1180
- h("path", { d: "M2.18 2.18h2.885v5.77" }))))
1180
+ h("path", { d: "M2.18 2.18h2.885v5.77" })))),
1181
1181
  },
1182
1182
  cash: {
1183
1183
  markup: () => (h("g", null,
1184
1184
  h("g", { class: "stroke-primary" },
1185
1185
  h("path", { d: "M2 5h22v16.133H2z" }),
1186
1186
  h("path", { d: "M18.133 7.933H7.867c0 1.657-1.277 2.934-2.934 2.934v4.4c1.657 0 2.934 1.276 2.934 2.933h10.266c0-1.657 1.277-2.933 2.934-2.933v-4.4c-1.657 0-2.934-1.277-2.934-2.934z" })),
1187
- h("circle", { cx: "13", cy: "13.067", r: "2.2", class: "stroke-secondary filled" })))
1187
+ h("circle", { cx: "13", cy: "13.067", r: "2.2", class: "stroke-secondary filled" }))),
1188
1188
  },
1189
1189
  'cash-bills': {
1190
1190
  markup: () => (h("g", null,
@@ -1192,7 +1192,7 @@ const icons = {
1192
1192
  h("path", { d: "M0 0h22v16.133H0z" }),
1193
1193
  h("circle", { cx: "11", cy: "8.067", r: "2.2" }),
1194
1194
  h("path", { d: "M16.133 2.933H5.867c0 1.657-1.277 2.934-2.934 2.934v4.4c1.657 0 2.934 1.276 2.934 2.933h10.266c0-1.657 1.277-2.933 2.934-2.933v-4.4c-1.657 0-2.934-1.277-2.934-2.934z" })),
1195
- h("path", { class: "stroke-secondary", d: "M5.667 5.2h14.667m-11-2.2h7.333" })))
1195
+ h("path", { class: "stroke-secondary", d: "M5.667 5.2h14.667m-11-2.2h7.333" }))),
1196
1196
  },
1197
1197
  'cash-coins': {
1198
1198
  markup: () => (h("g", null,
@@ -1203,7 +1203,7 @@ const icons = {
1203
1203
  h("g", { class: "stroke-secondary", transform: "translate(15 13)" },
1204
1204
  h("path", { d: "M.2 5.867V8.8c0 1.215 1.97 2.2 4.4 2.2C7.03 11 9 10.015 9 8.8V5.867" }),
1205
1205
  h("path", { d: "M.2 2.933v2.934c0 1.215 1.97 2.2 4.4 2.2 2.43 0 4.4-.985 4.4-2.2V2.933" }),
1206
- h("ellipse", { cx: "4.6", cy: "2.933", rx: "4.4", ry: "2.2" }))))
1206
+ h("ellipse", { cx: "4.6", cy: "2.933", rx: "4.4", ry: "2.2" })))),
1207
1207
  },
1208
1208
  'cash-in-hand': {
1209
1209
  markup: () => (h("g", null,
@@ -1213,46 +1213,46 @@ const icons = {
1213
1213
  h("path", { d: "M11.713 9.377H0V0h20.197v9.377h-2.164" }),
1214
1214
  h("circle", { cx: "10.098", cy: "4.689", r: "1.803", class: "filled" }),
1215
1215
  h("path", { d: "M5.77 2.885H2.885" })),
1216
- h("path", { class: "stroke-primary", d: "M7.508 16.607v.36a6.853 6.853 0 0 0 6.853 6.853 6.853 6.853 0 0 0 6.852-6.853v-6.852c-1.63 0-2.885 1.255-2.885 2.885v2.164c-2.224 0-4.328 1.563-4.328 3.606" })))
1216
+ h("path", { class: "stroke-primary", d: "M7.508 16.607v.36a6.853 6.853 0 0 0 6.853 6.853 6.853 6.853 0 0 0 6.852-6.853v-6.852c-1.63 0-2.885 1.255-2.885 2.885v2.164c-2.224 0-4.328 1.563-4.328 3.606" }))),
1217
1217
  },
1218
1218
  'cash-register': {
1219
1219
  markup: () => (h("g", null,
1220
1220
  h("path", { class: "stroke-primary", d: "M4.344 19.13v-3.967l2.885-4.328V7.95H18.77v2.885l2.885 4.328v3.967m2.164 4.689H2.18V19.13h21.639zM15.885 5.065V7.95" }),
1221
- h("path", { class: "stroke-secondary filled", d: "M13 2.18h5.77v2.885H13zm-2.885 8.656h5.77v3.246h-5.77z" })))
1221
+ h("path", { class: "stroke-secondary filled", d: "M13 2.18h5.77v2.885H13zm-2.885 8.656h5.77v3.246h-5.77z" }))),
1222
1222
  },
1223
1223
  certificate: {
1224
1224
  markup: () => (h("g", null,
1225
1225
  h("path", { d: "M4.186 2.186v21.628h17.899V2.186z", class: "stroke-primary" }),
1226
1226
  h("g", { class: "stroke-secondary", transform: "translate(7.915 5.864)" },
1227
1227
  h("path", { d: "M0 11.983h5.966m2.984 0h1.49M0 9h5.966M8.95 9h1.49" }),
1228
- h("circle", { cx: "5.22", cy: "3.034", r: "2.983", class: "filled" }))))
1228
+ h("circle", { cx: "5.22", cy: "3.034", r: "2.983", class: "filled" })))),
1229
1229
  },
1230
1230
  chat: {
1231
1231
  markup: () => (h("g", null,
1232
1232
  h("path", { d: "M19.6 8.133H24v11h-2.933V22.8l-5.134-3.667h-4.4", class: "stroke-secondary" }),
1233
- h("path", { d: "M19.6 3H2v12.467h3.667V20.6l5.866-5.133H19.6z", class: "stroke-primary filled" })))
1233
+ h("path", { d: "M19.6 3H2v12.467h3.667V20.6l5.866-5.133H19.6z", class: "stroke-primary filled" }))),
1234
1234
  },
1235
1235
  'chat-question': {
1236
1236
  markup: () => (h("g", null,
1237
1237
  h("path", { d: "M21.295 17.534c1.587-1.55 2.525-3.534 2.525-5.698 0-4.905-4.833-8.656-10.82-8.656S2.18 6.931 2.18 11.836c0 4.905 4.833 8.836 10.82 8.836 1.046 0 2.056-.144 3.03-.36l5.626 2.344-.36-5.122z", class: "stroke-primary filled" }),
1238
1238
  h("g", { class: "stroke-secondary", transform: "translate(10.5 7.5)" },
1239
1239
  h("circle", { cx: "2.375", cy: "8.875", r: "1" }),
1240
- h("path", { d: "M0 1.5C.39.625 1.328 0 2.396 0 3.828 0 5 1.125 5 2.5S3.828 5 2.396 5v1.5" }))))
1240
+ h("path", { d: "M0 1.5C.39.625 1.328 0 2.396 0 3.828 0 5 1.125 5 2.5S3.828 5 2.396 5v1.5" })))),
1241
1241
  },
1242
1242
  'chat-bubbles': {
1243
1243
  markup: () => (h("g", null,
1244
1244
  h("path", { d: "M11.197 19.46c1.338.916 3.107 1.474 5.049 1.474a9.7 9.7 0 0 0 2.471-.32l2.939 1.763v-3.178c1.337-1.04 2.164-2.464 2.164-4.035 0-.766-.197-1.496-.553-2.164", class: "stroke-secondary" }),
1245
- h("path", { d: "M11.918 2.18C6.54 2.18 2.18 5.571 2.18 9.754c0 1.802.813 3.455 2.164 4.756v4.982l4.915-2.457c.846.186 1.736.293 2.659.293 5.378 0 9.738-3.391 9.738-7.574s-4.36-7.574-9.738-7.574z", class: "stroke-primary filled" })))
1245
+ h("path", { d: "M11.918 2.18C6.54 2.18 2.18 5.571 2.18 9.754c0 1.802.813 3.455 2.164 4.756v4.982l4.915-2.457c.846.186 1.736.293 2.659.293 5.378 0 9.738-3.391 9.738-7.574s-4.36-7.574-9.738-7.574z", class: "stroke-primary filled" }))),
1246
1246
  },
1247
1247
  'chat-round': {
1248
1248
  markup: () => (h("g", null,
1249
1249
  h("path", { d: "M21.295 17.534c1.587-1.55 2.525-3.534 2.525-5.698 0-4.905-4.833-8.656-10.82-8.656S2.18 6.931 2.18 11.836c0 4.905 4.833 8.836 10.82 8.836 1.046 0 2.056-.144 3.03-.36l5.626 2.344-.36-5.122z", class: "stroke-primary filled" }),
1250
- h("path", { class: "stroke-secondary", d: "M7.95 9.672h10.098M7.95 14h5.77" })))
1250
+ h("path", { class: "stroke-secondary", d: "M7.95 9.672h10.098M7.95 14h5.77" }))),
1251
1251
  },
1252
1252
  check: {
1253
1253
  markup: () => (h("g", null,
1254
1254
  h("path", { d: "M24 8v11H2V8z", class: "stroke-primary" }),
1255
- h("path", { class: "stroke-secondary", d: "M6.508 12.689h12.984M6.508 15.574h5.77m4.328 0h2.886" })))
1255
+ h("path", { class: "stroke-secondary", d: "M6.508 12.689h12.984M6.508 15.574h5.77m4.328 0h2.886" }))),
1256
1256
  },
1257
1257
  'check-add': {
1258
1258
  markup: () => (h("g", null,
@@ -1260,13 +1260,13 @@ const icons = {
1260
1260
  h("g", { class: "stroke-secondary", transform: "translate(6.508 10.689)" },
1261
1261
  h("path", { d: "M0 0h12.984M0 2.885h5.77" }),
1262
1262
  h("circle", { cx: "12.984", cy: "6.361", r: "4.328", class: "filled" }),
1263
- h("path", { d: "M12.984 4.918v2.885m-1.443-1.442h2.885" }))))
1263
+ h("path", { d: "M12.984 4.918v2.885m-1.443-1.442h2.885" })))),
1264
1264
  },
1265
1265
  'check-edit': {
1266
1266
  markup: () => (h("g", null,
1267
1267
  h("path", { d: "M10.475 14.082l-3.606 1.082 1.082-3.607 9.377-9.377 2.524 2.525z", class: "stroke-secondary" }),
1268
1268
  h("g", { class: "stroke-primary" },
1269
- h("path", { d: "M6.508 17.689h12.984M6.508 20.574h5.77m4.328 0h2.886M15.566 13H24v11H2V13h2.933" }))))
1269
+ h("path", { d: "M6.508 17.689h12.984M6.508 20.574h5.77m4.328 0h2.886M15.566 13H24v11H2V13h2.933" })))),
1270
1270
  },
1271
1271
  'check-remove': {
1272
1272
  markup: () => (h("g", null,
@@ -1274,37 +1274,37 @@ const icons = {
1274
1274
  h("g", { class: "stroke-secondary", transform: "translate(6.508 10.689)" },
1275
1275
  h("path", { d: "M0 0h12.984M0 2.885h5.77" }),
1276
1276
  h("circle", { cx: "12.984", cy: "6.361", r: "4.328", class: "filled" }),
1277
- h("path", { d: "M11.541 6.361h2.885" }))))
1277
+ h("path", { d: "M11.541 6.361h2.885" })))),
1278
1278
  },
1279
1279
  checkmark: {
1280
- markup: () => h("path", { class: "stroke-primary", d: "M5 15.222L11.032 21 21 5" })
1280
+ markup: () => (h("path", { class: "stroke-primary", d: "M5 15.222L11.032 21 21 5" })),
1281
1281
  },
1282
1282
  'checkmark-outline': {
1283
- markup: () => (h("path", { d: "M9.912 21.175l-7.719-7.719 3.088-3.088L9.912 15 20.719 4.193l3.088 3.088z", class: "stroke-primary filled" }))
1283
+ markup: () => (h("path", { d: "M9.912 21.175l-7.719-7.719 3.088-3.088L9.912 15 20.719 4.193l3.088 3.088z", class: "stroke-primary filled" })),
1284
1284
  },
1285
1285
  'chevron-double-right': {
1286
1286
  markup: () => (h("g", { class: "chevron-double-right" },
1287
1287
  h("g", { class: "stroke-primary" },
1288
1288
  h("path", { d: "M12 2l11 11-11 11" }),
1289
- h("path", { d: "M3 2l11 11L3 24" }))))
1289
+ h("path", { d: "M3 2l11 11L3 24" })))),
1290
1290
  },
1291
1291
  'chevron-double-left': {
1292
1292
  markup: () => (h("g", { class: "chevron-double-left" },
1293
1293
  h("g", { class: "stroke-primary" },
1294
1294
  h("path", { d: "M14 24L3 13 14 2" }),
1295
- h("path", { d: "M23 24L12 13 23 2" }))))
1295
+ h("path", { d: "M23 24L12 13 23 2" })))),
1296
1296
  },
1297
1297
  'chevron-down': {
1298
- markup: () => h("path", { d: "M24 8L13 19 2 8", class: "stroke-primary" })
1298
+ markup: () => (h("path", { d: "M24 8L13 19 2 8", class: "stroke-primary" })),
1299
1299
  },
1300
1300
  'chevron-left': {
1301
- markup: () => h("path", { d: "M18.5 24l-11-11 11-11", class: "stroke-primary" })
1301
+ markup: () => (h("path", { d: "M18.5 24l-11-11 11-11", class: "stroke-primary" })),
1302
1302
  },
1303
1303
  'chevron-right': {
1304
- markup: () => h("path", { d: "M7.5 24l11-11-11-11", class: "stroke-primary" })
1304
+ markup: () => (h("path", { d: "M7.5 24l11-11-11-11", class: "stroke-primary" })),
1305
1305
  },
1306
1306
  'chevron-up': {
1307
- markup: () => h("path", { d: "M2 19L13 8l11 11", class: "stroke-primary" })
1307
+ markup: () => (h("path", { d: "M2 19L13 8l11 11", class: "stroke-primary" })),
1308
1308
  },
1309
1309
  clipboard: {
1310
1310
  markup: () => (h("g", null,
@@ -1312,10 +1312,10 @@ const icons = {
1312
1312
  h("path", { d: "M19.258 5.194h2.129v18.451H4.355V5.194h2.129" }),
1313
1313
  h("path", { d: "M15 4.484a2.129 2.129 0 1 0-4.258 0H8.613v2.839h8.516V4.484H15z", class: "filled" })),
1314
1314
  h("g", { class: "stroke-secondary" },
1315
- h("path", { d: "M8 10.5h10m-10 4h10m-10 4h4" }))))
1315
+ h("path", { d: "M8 10.5h10m-10 4h10m-10 4h4" })))),
1316
1316
  },
1317
1317
  close: {
1318
- markup: () => h("path", { class: "stroke-primary", d: "M20 6L6 20M20 20L6 6" })
1318
+ markup: () => (h("path", { class: "stroke-primary", d: "M20 6L6 20M20 20L6 6" })),
1319
1319
  },
1320
1320
  coins: {
1321
1321
  markup: () => (h("g", null,
@@ -1332,14 +1332,14 @@ const icons = {
1332
1332
  h("g", { class: "stroke-secondary", transform: "translate(8.6 13.389)" },
1333
1333
  h("path", { d: "M0 2.226v2.968c0 1.23 1.97 2.227 4.4 2.227 2.43 0 4.4-.997 4.4-2.227V2.226" }),
1334
1334
  h("path", { d: "M0 5v2.968c0 1.23 1.97 2.226 4.4 2.226 2.43 0 4.4-.996 4.4-2.226V5" }),
1335
- h("ellipse", { cx: "4.4", cy: "2.139", rx: "4.4", ry: "2.139" }))))
1335
+ h("ellipse", { cx: "4.4", cy: "2.139", rx: "4.4", ry: "2.139" })))),
1336
1336
  },
1337
1337
  compass: {
1338
1338
  markup: () => (h("g", null,
1339
1339
  h("g", { class: "stroke-primary", transform: "translate(5.667 5.667)" },
1340
1340
  h("path", { d: "M14.667 0L9.9 9.9 0 14.667l4.767-9.9z" }),
1341
1341
  h("circle", { cx: "7.333", cy: "7.333", r: "1.1", class: "filled" })),
1342
- h("path", { class: "stroke-secondary", d: "M13 2v2.2M24 13h-2.2M13 24v-2.2M2 13h2.2" })))
1342
+ h("path", { class: "stroke-secondary", d: "M13 2v2.2M24 13h-2.2M13 24v-2.2M2 13h2.2" }))),
1343
1343
  },
1344
1344
  conversation: {
1345
1345
  markup: () => (h("g", null,
@@ -1347,12 +1347,12 @@ const icons = {
1347
1347
  h("g", { class: "stroke-primary", transform: "translate(2 12.267)" },
1348
1348
  h("circle", { cx: "17.6", cy: "2.2", r: "2.2" }),
1349
1349
  h("circle", { cx: "4.4", cy: "2.2", r: "2.2" }),
1350
- h("path", { d: "M8.8 11V8.813c0-.52-.273-1-.721-1.265C7.366 7.126 6.129 6.6 4.4 6.6c-1.752 0-2.98.523-3.686.944A1.465 1.465 0 0 0 0 8.804V11h8.8zM22 11V8.813c0-.52-.273-1-.721-1.265-.713-.422-1.95-.948-3.679-.948-1.752 0-2.98.523-3.686.944a1.465 1.465 0 0 0-.714 1.26V11H22z" }))))
1350
+ h("path", { d: "M8.8 11V8.813c0-.52-.273-1-.721-1.265C7.366 7.126 6.129 6.6 4.4 6.6c-1.752 0-2.98.523-3.686.944A1.465 1.465 0 0 0 0 8.804V11h8.8zM22 11V8.813c0-.52-.273-1-.721-1.265-.713-.422-1.95-.948-3.679-.948-1.752 0-2.98.523-3.686.944a1.465 1.465 0 0 0-.714 1.26V11H22z" })))),
1351
1351
  },
1352
1352
  copy: {
1353
1353
  markup: () => (h("g", null,
1354
1354
  h("path", { d: "M17.968 8.032h5.677v15.613H8.032v-5.677", class: "stroke-secondary" }),
1355
- h("path", { d: "M2.355 2.355h15.613v15.613H2.355z", class: "stroke-primary" })))
1355
+ h("path", { d: "M2.355 2.355h15.613v15.613H2.355z", class: "stroke-primary" }))),
1356
1356
  },
1357
1357
  coupon: {
1358
1358
  markup: () => (h("g", null,
@@ -1360,32 +1360,32 @@ const icons = {
1360
1360
  h("g", { class: "stroke-primary", transform: "translate(2 2)" },
1361
1361
  h("path", { d: "M3.424 3.923l11.002 9.06M3.462 10.531l10.964-9.088" }),
1362
1362
  h("circle", { cx: "2.164", cy: "12.262", r: "2.164" }),
1363
- h("circle", { cx: "2.164", cy: "2.164", r: "2.164" }))))
1363
+ h("circle", { cx: "2.164", cy: "2.164", r: "2.164" })))),
1364
1364
  },
1365
1365
  'currency-dollar': {
1366
1366
  markup: () => (h("g", null,
1367
1367
  h("path", { d: "M18.999 5.916C16.189 4.655 8.733 4.086 8.733 8.6 8.733 14.23 19 12.039 19 17.007s-6.5 4.595-11 2.98", class: "stroke-primary" }),
1368
- h("path", { d: "M13.867 2v22", class: "stroke-secondary" })))
1368
+ h("path", { d: "M13.867 2v22", class: "stroke-secondary" }))),
1369
1369
  },
1370
1370
  'currency-dollar-circle': {
1371
1371
  markup: () => (h("g", null,
1372
1372
  h("circle", { cx: "13", cy: "13", r: "10.522", class: "stroke-primary" }),
1373
- h("path", { class: "stroke-secondary", d: "M13 6.304v13.391m3.228-11.268c-1.55-.853-6.434-1.489-6.434 1.447 0 3.514 6.202 2.273 6.202 5.374 0 3.101-4.03 2.868-6.822 1.86" })))
1373
+ h("path", { class: "stroke-secondary", d: "M13 6.304v13.391m3.228-11.268c-1.55-.853-6.434-1.489-6.434 1.447 0 3.514 6.202 2.273 6.202 5.374 0 3.101-4.03 2.868-6.822 1.86" }))),
1374
1374
  },
1375
1375
  'currency-euro': {
1376
1376
  markup: () => (h("g", null,
1377
1377
  h("path", { d: "M21.642 22.962c-1.417.742-2.948.83-4.4.83-5.96 0-9.714-4.832-9.714-10.792s3.753-10.792 9.714-10.792c1.45 0 3.12.12 4.4.83", class: "stroke-primary" }),
1378
- h("path", { class: "stroke-secondary", d: "M4.208 10.51h12.453M4.208 15.491h12.453" })))
1378
+ h("path", { class: "stroke-secondary", d: "M4.208 10.51h12.453M4.208 15.491h12.453" }))),
1379
1379
  },
1380
1380
  'currency-pound': {
1381
1381
  markup: () => (h("g", null,
1382
1382
  h("path", { class: "stroke-primary", d: "M20.233 5.735c-1.545-2.317-2.832-3.531-5.885-3.531-3.25 0-5.885 2.454-5.885 5.704v15.481m-3.259 0h15.481" }),
1383
- h("path", { d: "M5.204 13.611h9.777", class: "stroke-secondary" })))
1383
+ h("path", { d: "M5.204 13.611h9.777", class: "stroke-secondary" }))),
1384
1384
  },
1385
1385
  'currency-yen': {
1386
1386
  markup: () => (h("g", null,
1387
1387
  h("path", { class: "stroke-primary", d: "M6.2 2.2l7.2 9.6 7.2-9.6m-7.2 9.6v12" }),
1388
- h("path", { class: "stroke-secondary", d: "M7 12.2h12.8M7 17h12.8" })))
1388
+ h("path", { class: "stroke-secondary", d: "M7 12.2h12.8M7 17h12.8" }))),
1389
1389
  },
1390
1390
  dashboard: {
1391
1391
  markup: () => (h("g", { class: "dashboard" },
@@ -1394,12 +1394,12 @@ const icons = {
1394
1394
  h("path", { d: "M3 3h9v12H3z" }),
1395
1395
  h("path", { d: "M3 18h9v5H3z" }),
1396
1396
  h("path", { d: "M14.5 3h9v7h-9z" }),
1397
- h("path", { d: "M14.5 13h9v10h-9z" }))))
1397
+ h("path", { d: "M14.5 13h9v10h-9z" })))),
1398
1398
  },
1399
1399
  desktop: {
1400
1400
  markup: () => (h("g", null,
1401
1401
  h("path", { class: "stroke-primary", d: "M22.377 19.77H3.623a1.443 1.443 0 0 1-1.443-1.442V4.623c0-.797.646-1.443 1.443-1.443h18.754c.796 0 1.442.646 1.442 1.443v13.705c0 .796-.646 1.442-1.442 1.442zM2.18 15.442h21.64" }),
1402
- h("path", { class: "stroke-secondary", d: "M15.163 21.574v1.803m-4.328 0v-1.803M7.95 23.377h10.098m-5.77-17.311h1.442" })))
1402
+ h("path", { class: "stroke-secondary", d: "M15.163 21.574v1.803m-4.328 0v-1.803M7.95 23.377h10.098m-5.77-17.311h1.442" }))),
1403
1403
  },
1404
1404
  diploma: {
1405
1405
  markup: () => (h("g", null,
@@ -1407,20 +1407,20 @@ const icons = {
1407
1407
  h("path", { d: "M17.258 6.903l-5.677-3.548-5.678 3.548m8.517 14.194H2.355V6.903h19.161v5.264m-14.903-.296h7.097m-7.097 4.258h4.258" })),
1408
1408
  h("g", { class: "stroke-secondary", transform: "translate(16.548 11.871)" },
1409
1409
  h("path", { d: "M6.387 5.677v6.417l-2.839-1.449-2.838 1.42V5.677" }),
1410
- h("circle", { cx: "3.548", cy: "3.548", r: "3.548" }))))
1410
+ h("circle", { cx: "3.548", cy: "3.548", r: "3.548" })))),
1411
1411
  },
1412
1412
  divider: {
1413
1413
  markup: () => (h("g", { class: "divider" },
1414
1414
  h("g", { class: "stroke-primary" },
1415
1415
  h("path", { d: "M3 5h20v5H3z" }),
1416
1416
  h("path", { d: "M3 17h20v5H3z" })),
1417
- h("path", { d: "M2 13.5h22", class: "stroke-secondary" })))
1417
+ h("path", { d: "M2 13.5h22", class: "stroke-secondary" }))),
1418
1418
  },
1419
1419
  document: {
1420
1420
  markup: () => (h("g", null,
1421
1421
  h("path", { d: "M15.733 2H4v22h17.6V7.867z", class: "stroke-primary" }),
1422
1422
  h("path", { d: "M15.733 2v5.867H21.6z", class: "stroke-primary filled" }),
1423
- h("path", { class: "stroke-secondary", d: "M8.4 18.867h8.8M8.4 15.2h8.8m-8.8-3.666h8.8M8.4 7.867h2.933" })))
1423
+ h("path", { class: "stroke-secondary", d: "M8.4 18.867h8.8M8.4 15.2h8.8m-8.8-3.666h8.8M8.4 7.867h2.933" }))),
1424
1424
  },
1425
1425
  'document-add': {
1426
1426
  markup: () => (h("g", null,
@@ -1430,12 +1430,12 @@ const icons = {
1430
1430
  h("g", { class: "stroke-secondary", transform: "translate(8.4 7.867)" },
1431
1431
  h("path", { d: "M0 11h4.1M0 7.333h6.1M0 3.667h8.8M0 0h2.933" }),
1432
1432
  h("circle", { cx: "11.367", cy: "11.733", r: "4.4", class: "filled" }),
1433
- h("path", { d: "M11.367 10.267V13.2M9.9 11.733h2.933" }))))
1433
+ h("path", { d: "M11.367 10.267V13.2M9.9 11.733h2.933" })))),
1434
1434
  },
1435
1435
  'document-checklist': {
1436
1436
  markup: () => (h("g", null,
1437
1437
  h("path", { class: "stroke-primary", d: "M22.207 2H4v22l3.034-1.897L10.069 24l3.034-1.897L16.138 24l3.034-1.897L22.207 24zm-9.104 6.069h5.31m-5.31 5.31h5.31m-5.31 5.31h5.31m-10.62 0H9.31" }),
1438
- h("path", { class: "stroke-secondary", d: "M7.793 8.069l.759.759 2.275-2.276M7.793 13.38l.759.758 2.275-2.276" })))
1438
+ h("path", { class: "stroke-secondary", d: "M7.793 8.069l.759.759 2.275-2.276M7.793 13.38l.759.758 2.275-2.276" }))),
1439
1439
  },
1440
1440
  'document-remove': {
1441
1441
  markup: () => (h("g", null,
@@ -1445,62 +1445,62 @@ const icons = {
1445
1445
  h("g", { class: "stroke-secondary", transform: "translate(8.4 7.867)" },
1446
1446
  h("path", { d: "M0 11h4.1M0 7.333h6.1M0 3.667h8.8M0 0h2.933" }),
1447
1447
  h("circle", { cx: "11.367", cy: "11.733", r: "4.4", class: "filled" }),
1448
- h("path", { d: "M9.9 11.733h2.933" }))))
1448
+ h("path", { d: "M9.9 11.733h2.933" })))),
1449
1449
  },
1450
1450
  download: {
1451
1451
  markup: () => (h("g", null,
1452
1452
  h("path", { class: "stroke-secondary", d: "M13 2v16.133m5.866-5.866L13 18.133l-5.867-5.866" }),
1453
- h("path", { d: "M2 19.233v4.4h22v-4.4", class: "stroke-primary" })))
1453
+ h("path", { d: "M2 19.233v4.4h22v-4.4", class: "stroke-primary" }))),
1454
1454
  },
1455
1455
  'drag-handle': {
1456
1456
  markup: () => (h("g", null,
1457
1457
  h("g", { class: "filled" },
1458
- h("path", { d: "M9 3h3v3H9zm6 0h3v3h-3zm-6 8h3v3H9zm6 0h3v3h-3zm-6 8h3v3H9zm6 0h3v3h-3z" }))))
1458
+ h("path", { d: "M9 3h3v3H9zm6 0h3v3h-3zm-6 8h3v3H9zm6 0h3v3h-3zm-6 8h3v3H9zm6 0h3v3h-3z" })))),
1459
1459
  },
1460
1460
  edit: {
1461
1461
  markup: () => (h("g", null,
1462
1462
  h("path", { d: "M7.6 23.2L2 24l.8-5.6L19.2 2 24 6.8z", class: "stroke-primary" }),
1463
- h("path", { class: "stroke-secondary", d: "M2.8 18.4l4.8 4.8m8.4-18l4.8 4.8" })))
1463
+ h("path", { class: "stroke-secondary", d: "M2.8 18.4l4.8 4.8m8.4-18l4.8 4.8" }))),
1464
1464
  },
1465
1465
  ellipsis: {
1466
1466
  markup: () => (h("g", { class: "stroke-primary uniform" },
1467
1467
  h("circle", { cx: "22", cy: "13", r: "1.45" }),
1468
1468
  h("circle", { cx: "13", cy: "13", r: "1.45" }),
1469
- h("circle", { cx: "4", cy: "13", r: "1.45" })))
1469
+ h("circle", { cx: "4", cy: "13", r: "1.45" }))),
1470
1470
  },
1471
1471
  error: {
1472
1472
  markup: () => (h("g", null,
1473
1473
  h("path", { d: "M2 23.429L13 3l11 20.429z", class: "stroke-primary" }),
1474
1474
  h("g", { class: "stroke-secondary", transform: "translate(11.607 9.857)" },
1475
1475
  h("path", { d: "M1.393.643v5" }),
1476
- h("circle", { cx: "1.393", cy: "9.393", r: "1" }))))
1476
+ h("circle", { cx: "1.393", cy: "9.393", r: "1" })))),
1477
1477
  },
1478
1478
  'external-link': {
1479
1479
  markup: () => (h("g", null,
1480
1480
  h("path", { d: "M9.333 6.4H2V24h17.6v-7.333", class: "stroke-primary" }),
1481
- h("path", { class: "stroke-secondary", d: "M11.533 14.467L24 2m-8.8 0H24v8.8" })))
1481
+ h("path", { class: "stroke-secondary", d: "M11.533 14.467L24 2m-8.8 0H24v8.8" }))),
1482
1482
  },
1483
1483
  'eye-hide': {
1484
1484
  markup: () => (h("g", null,
1485
1485
  h("path", { d: "M2 13.071S6.95 6 13 6c6.01 0 11 7.071 11 7.071s-5.029 7.072-11 7.072c-6.01 0-11-7.072-11-7.072z", class: "stroke-primary" }),
1486
1486
  h("circle", { cx: "13", cy: "13.071", r: "3.929", class: "stroke-secondary" }),
1487
- h("path", { d: "M3 22.857L21.857 4", class: "stroke-primary" })))
1487
+ h("path", { d: "M3 22.857L21.857 4", class: "stroke-primary" }))),
1488
1488
  },
1489
1489
  'eye-show': {
1490
1490
  markup: () => (h("g", null,
1491
1491
  h("path", { d: "M2 13.071S6.95 6 13 6c6.01 0 11 7.071 11 7.071s-5.029 7.072-11 7.072c-6.01 0-11-7.072-11-7.072z", class: "stroke-primary" }),
1492
- h("circle", { cx: "13", cy: "13.071", r: "3.929", class: "stroke-secondary" })))
1492
+ h("circle", { cx: "13", cy: "13.071", r: "3.929", class: "stroke-secondary" }))),
1493
1493
  },
1494
1494
  'face-id': {
1495
1495
  markup: () => (h("g", null,
1496
1496
  h("path", { class: "stroke-secondary", d: "M7.5 2H3.9C2.596 2 2 2.669 2 3.627V7.5M2 18v3.6c0 1.304.669 1.9 1.627 1.9H7.5m16-16V3.9c0-1.304-.669-1.9-1.627-1.9H18m0 21.5h3.6c1.304 0 1.9-.669 1.9-1.627V18" }),
1497
- h("path", { class: "stroke-primary", d: "M8.5 9.5v2m9-2v2m-4.25-2v4.633c0 .773-.566 1.095-1.398 1.095M9.534 17.84c1.097.923 2.23 1.374 3.401 1.354 1.17-.02 2.305-.51 3.402-1.47" })))
1497
+ h("path", { class: "stroke-primary", d: "M8.5 9.5v2m9-2v2m-4.25-2v4.633c0 .773-.566 1.095-1.398 1.095M9.534 17.84c1.097.923 2.23 1.374 3.401 1.354 1.17-.02 2.305-.51 3.402-1.47" }))),
1498
1498
  },
1499
1499
  filebox: {
1500
1500
  markup: () => (h("g", null,
1501
1501
  h("path", { d: "M2.18 3.18h21.639v4.328H2.18z", class: "stroke-secondary" }),
1502
1502
  h("path", { d: "M21.656 9.672v12.262H4.344V9.672", class: "stroke-primary" }),
1503
- h("path", { d: "M10.115 11.115h5.77v3.607h-5.77z", class: "stroke-secondary filled" })))
1503
+ h("path", { d: "M10.115 11.115h5.77v3.607h-5.77z", class: "stroke-secondary filled" }))),
1504
1504
  },
1505
1505
  'filetype-csv': {
1506
1506
  markup: () => (h("g", null,
@@ -1511,7 +1511,7 @@ const icons = {
1511
1511
  h("path", { d: "M15.566 2v5.867h5.867" })),
1512
1512
  h("g", { class: "filled" },
1513
1513
  h("path", { d: "M9.82 15.57a.783.783 0 0 0-.623.293c-.147.184-.22.477-.22.844 0 .77.293 1.136.843 1.136.257 0 .513-.073.88-.183v.623c-.293.11-.587.184-.953.184-.514 0-.88-.147-1.137-.44-.257-.294-.403-.734-.403-1.284 0-.366.073-.66.183-.916.11-.257.33-.477.55-.624.257-.146.513-.22.843-.22a2 2 0 0 1 .99.257l-.183.55c-.11-.073-.257-.11-.367-.147a1.56 1.56 0 0 0-.403-.073zm3.703 1.907c0 .293-.11.55-.33.733-.22.183-.513.257-.916.257-.367 0-.697-.074-.954-.22v-.66c.22.11.44.183.587.22.147.036.293.073.44.073a.92.92 0 0 0 .367-.073.333.333 0 0 0 .11-.257c0-.073-.037-.11-.074-.183-.036-.074-.11-.11-.146-.147l-.44-.22c-.22-.11-.367-.183-.477-.293a1.142 1.142 0 0 1-.257-.33.871.871 0 0 1-.11-.44c0-.294.11-.55.294-.697.22-.183.476-.257.843-.257.183 0 .33.037.513.074.147.036.33.11.514.183l-.22.55c-.184-.073-.33-.11-.44-.147-.11-.036-.22-.036-.367-.036s-.257.036-.33.11c-.073.073-.073.11-.073.22 0 .073 0 .11.036.183.037.073.074.11.147.147.073.036.22.11.44.256.33.147.55.294.66.44.11.147.183.294.183.514zm2.64-2.457h.734l-1.137 3.41h-.77l-1.137-3.41h.734l.623 2.017c.037.11.073.256.11.403.037.147.073.257.073.33 0-.147.074-.403.184-.733l.586-2.017z" })),
1514
- h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" })))
1514
+ h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }))),
1515
1515
  },
1516
1516
  'filetype-doc': {
1517
1517
  markup: () => (h("g", null,
@@ -1522,7 +1522,7 @@ const icons = {
1522
1522
  h("path", { d: "M15.566 2v5.867h5.867" })),
1523
1523
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1524
1524
  h("g", { class: "filled" },
1525
- h("path", { d: "M10.616 16.777c0 .55-.146.99-.476 1.283-.33.294-.77.44-1.394.44h-.953v-3.41h1.063c.55 0 .99.147 1.284.44.33.294.476.697.476 1.247zm-.77 0c0-.733-.33-1.1-.953-1.1h-.367v2.2h.294c.696.037 1.026-.33 1.026-1.1zm4.657 0c0 .55-.147.99-.403 1.283-.294.294-.697.44-1.21.44-.514 0-.917-.146-1.21-.44-.294-.293-.404-.733-.404-1.32 0-.55.147-.99.404-1.283.293-.293.696-.44 1.21-.44.513 0 .916.147 1.21.44.256.33.403.77.403 1.32zm-2.493 0c0 .367.073.66.22.843.146.184.366.294.66.294.586 0 .88-.367.88-1.137s-.294-1.137-.844-1.137c-.293 0-.513.11-.66.294-.183.183-.256.476-.256.843zm4.73-1.137a.783.783 0 0 0-.624.294c-.146.183-.22.476-.22.843 0 .77.294 1.137.844 1.137.256 0 .513-.074.88-.184v.624c-.294.146-.587.183-.954.183-.513 0-.88-.147-1.136-.44-.257-.293-.404-.733-.404-1.283 0-.367.074-.66.184-.917.146-.257.33-.477.55-.623.256-.147.513-.22.843-.22.33 0 .66.073.99.256l-.22.587c-.11-.073-.257-.11-.367-.147a.62.62 0 0 0-.366-.11z" }))))
1525
+ h("path", { d: "M10.616 16.777c0 .55-.146.99-.476 1.283-.33.294-.77.44-1.394.44h-.953v-3.41h1.063c.55 0 .99.147 1.284.44.33.294.476.697.476 1.247zm-.77 0c0-.733-.33-1.1-.953-1.1h-.367v2.2h.294c.696.037 1.026-.33 1.026-1.1zm4.657 0c0 .55-.147.99-.403 1.283-.294.294-.697.44-1.21.44-.514 0-.917-.146-1.21-.44-.294-.293-.404-.733-.404-1.32 0-.55.147-.99.404-1.283.293-.293.696-.44 1.21-.44.513 0 .916.147 1.21.44.256.33.403.77.403 1.32zm-2.493 0c0 .367.073.66.22.843.146.184.366.294.66.294.586 0 .88-.367.88-1.137s-.294-1.137-.844-1.137c-.293 0-.513.11-.66.294-.183.183-.256.476-.256.843zm4.73-1.137a.783.783 0 0 0-.624.294c-.146.183-.22.476-.22.843 0 .77.294 1.137.844 1.137.256 0 .513-.074.88-.184v.624c-.294.146-.587.183-.954.183-.513 0-.88-.147-1.136-.44-.257-.293-.404-.733-.404-1.283 0-.367.074-.66.184-.917.146-.257.33-.477.55-.623.256-.147.513-.22.843-.22.33 0 .66.073.99.256l-.22.587c-.11-.073-.257-.11-.367-.147a.62.62 0 0 0-.366-.11z" })))),
1526
1526
  },
1527
1527
  'filetype-docx': {
1528
1528
  markup: () => (h("g", null,
@@ -1533,7 +1533,7 @@ const icons = {
1533
1533
  h("path", { d: "M15.566 2v5.867h5.867" })),
1534
1534
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1535
1535
  h("g", { class: "filled" },
1536
- h("path", { d: "M8.967 16.777c0 .55-.147.99-.477 1.283-.33.293-.77.44-1.393.44h-.954v-3.41h1.064c.55 0 .99.147 1.283.44.33.293.477.697.477 1.247zm-.734 0c0-.734-.33-1.1-.953-1.1h-.367v2.2h.294c.66.036 1.026-.33 1.026-1.1zm4.62 0c0 .55-.146.99-.403 1.283-.293.293-.697.44-1.21.44s-.917-.147-1.21-.44c-.293-.293-.403-.733-.403-1.32 0-.55.146-.99.403-1.283.257-.294.697-.44 1.21-.44s.917.146 1.21.44c.257.33.403.77.403 1.32zm-2.493 0c0 .366.073.66.22.843.147.183.367.293.66.293.587 0 .88-.366.88-1.136 0-.77-.293-1.137-.843-1.137-.294 0-.514.11-.66.293-.184.184-.257.477-.257.844zm4.73-1.137a.783.783 0 0 0-.623.293c-.147.184-.22.477-.22.844 0 .77.293 1.136.843 1.136.257 0 .513-.073.88-.183v.623c-.293.11-.587.184-.953.184-.514 0-.88-.147-1.137-.44-.257-.294-.403-.734-.403-1.284 0-.366.073-.66.183-.916.11-.257.33-.477.55-.624.257-.146.513-.22.843-.22a2 2 0 0 1 .99.257l-.22.587c-.11-.074-.256-.11-.366-.147-.11-.037-.22-.11-.367-.11zm4.473 2.86h-.806l-.807-1.283-.807 1.283h-.77l1.137-1.76-1.063-1.65h.806l.734 1.21.733-1.21h.77l-1.063 1.687z" }))))
1536
+ h("path", { d: "M8.967 16.777c0 .55-.147.99-.477 1.283-.33.293-.77.44-1.393.44h-.954v-3.41h1.064c.55 0 .99.147 1.283.44.33.293.477.697.477 1.247zm-.734 0c0-.734-.33-1.1-.953-1.1h-.367v2.2h.294c.66.036 1.026-.33 1.026-1.1zm4.62 0c0 .55-.146.99-.403 1.283-.293.293-.697.44-1.21.44s-.917-.147-1.21-.44c-.293-.293-.403-.733-.403-1.32 0-.55.146-.99.403-1.283.257-.294.697-.44 1.21-.44s.917.146 1.21.44c.257.33.403.77.403 1.32zm-2.493 0c0 .366.073.66.22.843.147.183.367.293.66.293.587 0 .88-.366.88-1.136 0-.77-.293-1.137-.843-1.137-.294 0-.514.11-.66.293-.184.184-.257.477-.257.844zm4.73-1.137a.783.783 0 0 0-.623.293c-.147.184-.22.477-.22.844 0 .77.293 1.136.843 1.136.257 0 .513-.073.88-.183v.623c-.293.11-.587.184-.953.184-.514 0-.88-.147-1.137-.44-.257-.294-.403-.734-.403-1.284 0-.366.073-.66.183-.916.11-.257.33-.477.55-.624.257-.146.513-.22.843-.22a2 2 0 0 1 .99.257l-.22.587c-.11-.074-.256-.11-.366-.147-.11-.037-.22-.11-.367-.11zm4.473 2.86h-.806l-.807-1.283-.807 1.283h-.77l1.137-1.76-1.063-1.65h.806l.734 1.21.733-1.21h.77l-1.063 1.687z" })))),
1537
1537
  },
1538
1538
  'filetype-gif': {
1539
1539
  markup: () => (h("g", null,
@@ -1544,7 +1544,7 @@ const icons = {
1544
1544
  h("path", { d: "M15.566 2v5.867h5.867" })),
1545
1545
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1546
1546
  h("g", { class: "filled" },
1547
- h("path", { d: "M10.433 16.593h1.357v1.76c-.22.074-.44.11-.623.147-.184.037-.404.037-.587.037-.513 0-.917-.147-1.173-.44-.257-.294-.404-.734-.404-1.284s.147-.99.477-1.283c.33-.293.733-.477 1.32-.477.367 0 .697.074 1.027.22l-.294.55a1.97 1.97 0 0 0-.77-.183c-.33 0-.55.11-.733.33a1.24 1.24 0 0 0-.293.843c0 .367.073.66.22.844.146.183.366.293.66.293.146 0 .293 0 .476-.037v-.696h-.66v-.624zm2.274 1.907v-3.41h.733v3.41zm2.383 0h-.697v-3.41H16.3v.587h-1.247v.88h1.137v.586h-1.137V18.5z" }))))
1547
+ h("path", { d: "M10.433 16.593h1.357v1.76c-.22.074-.44.11-.623.147-.184.037-.404.037-.587.037-.513 0-.917-.147-1.173-.44-.257-.294-.404-.734-.404-1.284s.147-.99.477-1.283c.33-.293.733-.477 1.32-.477.367 0 .697.074 1.027.22l-.294.55a1.97 1.97 0 0 0-.77-.183c-.33 0-.55.11-.733.33a1.24 1.24 0 0 0-.293.843c0 .367.073.66.22.844.146.183.366.293.66.293.146 0 .293 0 .476-.037v-.696h-.66v-.624zm2.274 1.907v-3.41h.733v3.41zm2.383 0h-.697v-3.41H16.3v.587h-1.247v.88h1.137v.586h-1.137V18.5z" })))),
1548
1548
  },
1549
1549
  'filetype-iso': {
1550
1550
  markup: () => (h("g", null,
@@ -1555,7 +1555,7 @@ const icons = {
1555
1555
  h("path", { d: "M15.566 2v5.867h5.867" })),
1556
1556
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1557
1557
  h("g", { class: "filled" },
1558
- h("path", { d: "M8.967 18.5v-3.41H9.7v3.41zm3.666-.953c0 .293-.11.55-.33.733-.22.183-.513.257-.916.257-.367 0-.697-.074-.954-.22v-.66c.22.11.44.183.587.22.147.036.293.073.44.073a.92.92 0 0 0 .367-.073.333.333 0 0 0 .11-.257c0-.073-.037-.11-.074-.183-.036-.074-.11-.11-.146-.147l-.44-.22c-.22-.11-.367-.183-.477-.293a1.142 1.142 0 0 1-.257-.33.74.74 0 0 1-.11-.404c0-.293.11-.55.294-.696.22-.184.476-.257.843-.257.183 0 .33.037.513.073.147.037.33.11.514.184l-.22.55c-.184-.074-.33-.11-.44-.147-.11-.037-.22-.037-.367-.037s-.257.037-.33.11c-.073.074-.073.074-.073.184 0 .073 0 .11.036.183.037.073.074.11.147.147.073.036.22.11.44.256.33.147.55.294.66.44.11.147.183.294.183.514zm3.814-.77c0 .55-.147.99-.404 1.283-.293.293-.696.44-1.21.44-.513 0-.916-.147-1.21-.44-.293-.293-.403-.733-.403-1.32 0-.55.147-.99.403-1.283.294-.294.697-.44 1.21-.44.514 0 .917.146 1.21.44.257.33.404.77.404 1.32zm-2.494 0c0 .366.074.66.22.843.147.183.367.293.66.293.587 0 .88-.366.88-1.136 0-.77-.293-1.137-.843-1.137-.293 0-.513.11-.66.293-.183.184-.257.477-.257.844z" }))))
1558
+ h("path", { d: "M8.967 18.5v-3.41H9.7v3.41zm3.666-.953c0 .293-.11.55-.33.733-.22.183-.513.257-.916.257-.367 0-.697-.074-.954-.22v-.66c.22.11.44.183.587.22.147.036.293.073.44.073a.92.92 0 0 0 .367-.073.333.333 0 0 0 .11-.257c0-.073-.037-.11-.074-.183-.036-.074-.11-.11-.146-.147l-.44-.22c-.22-.11-.367-.183-.477-.293a1.142 1.142 0 0 1-.257-.33.74.74 0 0 1-.11-.404c0-.293.11-.55.294-.696.22-.184.476-.257.843-.257.183 0 .33.037.513.073.147.037.33.11.514.184l-.22.55c-.184-.074-.33-.11-.44-.147-.11-.037-.22-.037-.367-.037s-.257.037-.33.11c-.073.074-.073.074-.073.184 0 .073 0 .11.036.183.037.073.074.11.147.147.073.036.22.11.44.256.33.147.55.294.66.44.11.147.183.294.183.514zm3.814-.77c0 .55-.147.99-.404 1.283-.293.293-.696.44-1.21.44-.513 0-.916-.147-1.21-.44-.293-.293-.403-.733-.403-1.32 0-.55.147-.99.403-1.283.294-.294.697-.44 1.21-.44.514 0 .917.146 1.21.44.257.33.404.77.404 1.32zm-2.494 0c0 .366.074.66.22.843.147.183.367.293.66.293.587 0 .88-.366.88-1.136 0-.77-.293-1.137-.843-1.137-.293 0-.513.11-.66.293-.183.184-.257.477-.257.844z" })))),
1559
1559
  },
1560
1560
  'filetype-jpg': {
1561
1561
  markup: () => (h("g", null,
@@ -1566,7 +1566,7 @@ const icons = {
1566
1566
  h("path", { d: "M15.566 2v5.867h5.867" })),
1567
1567
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1568
1568
  h("g", { class: "filled" },
1569
- h("path", { d: "M8.6 19.49c-.147 0-.293 0-.44-.037v-.586c.11.036.22.036.33.036.147 0 .257-.036.33-.146a.816.816 0 0 0 .147-.477v-3.19H9.7v3.19c0 .403-.073.697-.257.917-.183.22-.476.293-.843.293zm4.363-3.337c0 .367-.11.66-.33.844-.22.183-.55.293-.99.293h-.293v1.21h-.733v-3.41h1.1c.403 0 .733.073.953.257.183.183.293.476.293.806zm-1.613.55h.22c.22 0 .403-.036.513-.146.11-.11.184-.22.184-.367 0-.183-.037-.293-.147-.367-.11-.073-.22-.11-.44-.11h-.33v.99zm3.667-.11h1.356v1.76c-.22.074-.44.11-.623.147-.183.037-.403.037-.587.037-.513 0-.916-.147-1.173-.44-.257-.294-.403-.734-.403-1.284s.146-.99.476-1.283c.33-.293.734-.477 1.32-.477.367 0 .697.074 1.027.22l-.257.587a1.97 1.97 0 0 0-.77-.183c-.33 0-.55.11-.733.33-.183.22-.293.476-.293.843s.073.66.22.843c.146.184.366.294.66.294.146 0 .293 0 .476-.037v-.697h-.66v-.66h-.036z" }))))
1569
+ h("path", { d: "M8.6 19.49c-.147 0-.293 0-.44-.037v-.586c.11.036.22.036.33.036.147 0 .257-.036.33-.146a.816.816 0 0 0 .147-.477v-3.19H9.7v3.19c0 .403-.073.697-.257.917-.183.22-.476.293-.843.293zm4.363-3.337c0 .367-.11.66-.33.844-.22.183-.55.293-.99.293h-.293v1.21h-.733v-3.41h1.1c.403 0 .733.073.953.257.183.183.293.476.293.806zm-1.613.55h.22c.22 0 .403-.036.513-.146.11-.11.184-.22.184-.367 0-.183-.037-.293-.147-.367-.11-.073-.22-.11-.44-.11h-.33v.99zm3.667-.11h1.356v1.76c-.22.074-.44.11-.623.147-.183.037-.403.037-.587.037-.513 0-.916-.147-1.173-.44-.257-.294-.403-.734-.403-1.284s.146-.99.476-1.283c.33-.293.734-.477 1.32-.477.367 0 .697.074 1.027.22l-.257.587a1.97 1.97 0 0 0-.77-.183c-.33 0-.55.11-.733.33-.183.22-.293.476-.293.843s.073.66.22.843c.146.184.366.294.66.294.146 0 .293 0 .476-.037v-.697h-.66v-.66h-.036z" })))),
1570
1570
  },
1571
1571
  'filetype-otf': {
1572
1572
  markup: () => (h("g", null,
@@ -1577,7 +1577,7 @@ const icons = {
1577
1577
  h("path", { d: "M15.566 2v5.867h5.867" })),
1578
1578
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1579
1579
  h("g", { class: "filled" },
1580
- h("path", { d: "M11.46 16.777c0 .55-.147.99-.403 1.283-.294.293-.697.44-1.21.44-.514 0-.917-.147-1.21-.44-.294-.293-.404-.733-.404-1.32 0-.55.147-.99.404-1.283.293-.294.696-.44 1.21-.44.513 0 .916.146 1.21.44.256.33.403.77.403 1.32zm-2.457 0c0 .366.074.66.22.843.147.183.367.293.66.293.587 0 .88-.366.88-1.136 0-.77-.293-1.137-.843-1.137-.293 0-.513.11-.66.293-.183.184-.257.477-.257.844zm4.584 1.723h-.734v-2.787h-.916v-.586h2.566v.586h-.916zm2.236 0h-.696v-3.41h1.943v.587h-1.247v.88h1.137v.586h-1.137z" }))))
1580
+ h("path", { d: "M11.46 16.777c0 .55-.147.99-.403 1.283-.294.293-.697.44-1.21.44-.514 0-.917-.147-1.21-.44-.294-.293-.404-.733-.404-1.32 0-.55.147-.99.404-1.283.293-.294.696-.44 1.21-.44.513 0 .916.146 1.21.44.256.33.403.77.403 1.32zm-2.457 0c0 .366.074.66.22.843.147.183.367.293.66.293.587 0 .88-.366.88-1.136 0-.77-.293-1.137-.843-1.137-.293 0-.513.11-.66.293-.183.184-.257.477-.257.844zm4.584 1.723h-.734v-2.787h-.916v-.586h2.566v.586h-.916zm2.236 0h-.696v-3.41h1.943v.587h-1.247v.88h1.137v.586h-1.137z" })))),
1581
1581
  },
1582
1582
  'filetype-pdf': {
1583
1583
  markup: () => (h("g", null,
@@ -1588,7 +1588,7 @@ const icons = {
1588
1588
  h("path", { d: "M15.566 2v5.867h5.867" })),
1589
1589
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1590
1590
  h("g", { class: "filled" },
1591
- h("path", { d: "M10.553 16.047c0 .366-.11.66-.33.843-.22.183-.55.293-.99.293H8.94v1.21h-.733v-3.41h1.1c.403 0 .733.074.953.257.183.183.293.477.293.807zm-1.65.55h.22c.22 0 .404-.037.514-.147.11-.11.183-.22.183-.367 0-.183-.037-.293-.147-.366-.11-.074-.22-.11-.44-.11h-.33v.99zm5.207.073c0 .55-.147.99-.477 1.283-.33.294-.77.44-1.393.44h-.953v-3.41h1.063c.55 0 .99.147 1.283.44.33.294.477.697.477 1.247zm-.77 0c0-.733-.33-1.1-.953-1.1h-.367v2.2h.293c.697.037 1.027-.33 1.027-1.1zm2.273 1.723h-.696v-3.41h1.943v.587h-1.247v.88h1.137v.587h-1.137z" }))))
1591
+ h("path", { d: "M10.553 16.047c0 .366-.11.66-.33.843-.22.183-.55.293-.99.293H8.94v1.21h-.733v-3.41h1.1c.403 0 .733.074.953.257.183.183.293.477.293.807zm-1.65.55h.22c.22 0 .404-.037.514-.147.11-.11.183-.22.183-.367 0-.183-.037-.293-.147-.366-.11-.074-.22-.11-.44-.11h-.33v.99zm5.207.073c0 .55-.147.99-.477 1.283-.33.294-.77.44-1.393.44h-.953v-3.41h1.063c.55 0 .99.147 1.283.44.33.294.477.697.477 1.247zm-.77 0c0-.733-.33-1.1-.953-1.1h-.367v2.2h.293c.697.037 1.027-.33 1.027-1.1zm2.273 1.723h-.696v-3.41h1.943v.587h-1.247v.88h1.137v.587h-1.137z" })))),
1592
1592
  },
1593
1593
  'filetype-png': {
1594
1594
  markup: () => (h("g", null,
@@ -1599,7 +1599,7 @@ const icons = {
1599
1599
  h("path", { d: "M15.566 2v5.867h5.867" })),
1600
1600
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1601
1601
  h("g", { class: "filled" },
1602
- h("path", { d: "M10.347 16.1c0 .367-.11.66-.33.843-.22.184-.55.294-.99.294h-.294v1.21H8v-3.41h1.1c.403 0 .733.073.953.256.22.184.294.477.294.807zm-1.614.55h.22c.22 0 .404-.037.514-.147a.451.451 0 0 0 .183-.366c0-.184-.037-.294-.147-.367-.11-.073-.22-.11-.44-.11h-.33v.99zm5.39 1.797h-.916L11.74 15.88h-.037c.037.44.037.77.037.99v1.577h-.66v-3.41h.917l1.466 2.566c-.036-.44-.036-.77-.036-.953v-1.613h.66v3.41h.036zm2.237-1.907h1.357v1.76c-.22.073-.44.11-.624.147a3.154 3.154 0 0 1-.586.036c-.514 0-.917-.146-1.174-.44-.256-.293-.403-.733-.403-1.283 0-.55.147-.99.477-1.283.33-.294.733-.477 1.32-.477.366 0 .696.073 1.026.22l-.256.587a1.97 1.97 0 0 0-.77-.184c-.33 0-.55.11-.734.33a1.24 1.24 0 0 0-.293.844c0 .366.073.66.22.843.147.183.367.293.66.293.147 0 .293 0 .477-.036V17.2h-.66v-.66h-.037z" }))))
1602
+ h("path", { d: "M10.347 16.1c0 .367-.11.66-.33.843-.22.184-.55.294-.99.294h-.294v1.21H8v-3.41h1.1c.403 0 .733.073.953.256.22.184.294.477.294.807zm-1.614.55h.22c.22 0 .404-.037.514-.147a.451.451 0 0 0 .183-.366c0-.184-.037-.294-.147-.367-.11-.073-.22-.11-.44-.11h-.33v.99zm5.39 1.797h-.916L11.74 15.88h-.037c.037.44.037.77.037.99v1.577h-.66v-3.41h.917l1.466 2.566c-.036-.44-.036-.77-.036-.953v-1.613h.66v3.41h.036zm2.237-1.907h1.357v1.76c-.22.073-.44.11-.624.147a3.154 3.154 0 0 1-.586.036c-.514 0-.917-.146-1.174-.44-.256-.293-.403-.733-.403-1.283 0-.55.147-.99.477-1.283.33-.294.733-.477 1.32-.477.366 0 .696.073 1.026.22l-.256.587a1.97 1.97 0 0 0-.77-.184c-.33 0-.55.11-.734.33a1.24 1.24 0 0 0-.293.844c0 .366.073.66.22.843.147.183.367.293.66.293.147 0 .293 0 .477-.036V17.2h-.66v-.66h-.037z" })))),
1603
1603
  },
1604
1604
  'filetype-svg': {
1605
1605
  markup: () => (h("g", null,
@@ -1610,7 +1610,7 @@ const icons = {
1610
1610
  h("path", { d: "M15.566 2v5.867h5.867" })),
1611
1611
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1612
1612
  h("g", { class: "filled" },
1613
- h("path", { d: "M10.397 17.547c0 .293-.11.55-.33.733-.22.183-.514.257-.917.257-.367 0-.697-.074-.953-.22v-.66c.22.11.44.183.586.22.147.036.294.073.44.073a.92.92 0 0 0 .367-.073.333.333 0 0 0 .11-.257c0-.073-.037-.11-.073-.183a.286.286 0 0 0-.147-.147l-.44-.22c-.22-.11-.367-.183-.477-.293-.11-.074-.183-.184-.256-.33a.74.74 0 0 1-.11-.404c0-.293.11-.55.293-.696.22-.184.477-.257.843-.257.184 0 .33.037.514.073.146.037.33.11.513.184l-.22.55c-.183-.074-.33-.11-.44-.147-.11-.037-.22-.037-.367-.037-.146 0-.256.037-.33.11a.333.333 0 0 0-.11.257c0 .073 0 .11.037.183.037.074.073.11.147.147.073.037.22.11.44.257.33.146.55.293.66.44.11.146.22.22.22.44zm2.64-2.457h.733l-1.173 3.41h-.77l-1.137-3.41h.733l.624 2.017a6.6 6.6 0 0 1 .11.403c.036.147.073.257.073.33 0-.147.073-.403.183-.733l.624-2.017zm2.53 1.503h1.356v1.76c-.22.074-.44.11-.623.147-.183.037-.403.037-.587.037-.513 0-.916-.147-1.173-.44-.257-.294-.403-.734-.403-1.284s.146-.99.476-1.283c.33-.293.734-.477 1.32-.477.367 0 .697.074 1.027.22l-.257.587a1.97 1.97 0 0 0-.77-.183c-.33 0-.55.11-.733.33-.183.22-.293.476-.293.843s.073.66.22.843c.146.184.366.294.66.294.146 0 .293 0 .44-.037v-.697h-.66v-.66z" }))))
1613
+ h("path", { d: "M10.397 17.547c0 .293-.11.55-.33.733-.22.183-.514.257-.917.257-.367 0-.697-.074-.953-.22v-.66c.22.11.44.183.586.22.147.036.294.073.44.073a.92.92 0 0 0 .367-.073.333.333 0 0 0 .11-.257c0-.073-.037-.11-.073-.183a.286.286 0 0 0-.147-.147l-.44-.22c-.22-.11-.367-.183-.477-.293-.11-.074-.183-.184-.256-.33a.74.74 0 0 1-.11-.404c0-.293.11-.55.293-.696.22-.184.477-.257.843-.257.184 0 .33.037.514.073.146.037.33.11.513.184l-.22.55c-.183-.074-.33-.11-.44-.147-.11-.037-.22-.037-.367-.037-.146 0-.256.037-.33.11a.333.333 0 0 0-.11.257c0 .073 0 .11.037.183.037.074.073.11.147.147.073.037.22.11.44.257.33.146.55.293.66.44.11.146.22.22.22.44zm2.64-2.457h.733l-1.173 3.41h-.77l-1.137-3.41h.733l.624 2.017a6.6 6.6 0 0 1 .11.403c.036.147.073.257.073.33 0-.147.073-.403.183-.733l.624-2.017zm2.53 1.503h1.356v1.76c-.22.074-.44.11-.623.147-.183.037-.403.037-.587.037-.513 0-.916-.147-1.173-.44-.257-.294-.403-.734-.403-1.284s.146-.99.476-1.283c.33-.293.734-.477 1.32-.477.367 0 .697.074 1.027.22l-.257.587a1.97 1.97 0 0 0-.77-.183c-.33 0-.55.11-.733.33-.183.22-.293.476-.293.843s.073.66.22.843c.146.184.366.294.66.294.146 0 .293 0 .44-.037v-.697h-.66v-.66z" })))),
1614
1614
  },
1615
1615
  'filetype-txt': {
1616
1616
  markup: () => (h("g", null,
@@ -1621,7 +1621,7 @@ const icons = {
1621
1621
  h("path", { d: "M15.566 2v5.867h5.867" })),
1622
1622
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1623
1623
  h("g", { class: "filled" },
1624
- h("path", { d: "M9.92 18.5h-.733v-2.787H8.27v-.586h2.567v.586H9.92zm4.29 0h-.807l-.806-1.283-.77 1.283h-.77l1.136-1.76-1.063-1.65h.77l.733 1.21.734-1.21h.77l-1.064 1.687zm1.833 0h-.733v-2.787h-.917v-.586h2.567v.586h-.917z" }))))
1624
+ h("path", { d: "M9.92 18.5h-.733v-2.787H8.27v-.586h2.567v.586H9.92zm4.29 0h-.807l-.806-1.283-.77 1.283h-.77l1.136-1.76-1.063-1.65h.77l.733 1.21.734-1.21h.77l-1.064 1.687zm1.833 0h-.733v-2.787h-.917v-.586h2.567v.586h-.917z" })))),
1625
1625
  },
1626
1626
  'filetype-xlsx': {
1627
1627
  markup: () => (h("g", null,
@@ -1632,7 +1632,7 @@ const icons = {
1632
1632
  h("path", { d: "M15.566 2v5.867h5.867" })),
1633
1633
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1634
1634
  h("g", { class: "filled" },
1635
- h("path", { d: "M9.847 18.5H9.04l-.807-1.283-.806 1.283h-.77l1.136-1.76-1.063-1.65h.807l.733 1.21.733-1.21h.77L8.71 16.777zm.513 0v-3.41h.733v2.823h1.394v.587zm4.803-.953c0 .293-.11.55-.33.733-.22.183-.513.257-.916.257-.367 0-.697-.074-.954-.22v-.66c.22.11.44.183.587.22.147.036.293.073.44.073a.92.92 0 0 0 .367-.073.333.333 0 0 0 .11-.257c0-.073-.037-.11-.074-.183-.036-.074-.11-.11-.146-.147l-.44-.22c-.22-.11-.367-.183-.477-.293a1.142 1.142 0 0 1-.257-.33.74.74 0 0 1-.11-.404c0-.293.11-.55.294-.696.22-.184.476-.257.843-.257.183 0 .33.037.513.073.147.037.33.11.514.184l-.22.55c-.184-.074-.33-.11-.44-.147-.11-.037-.22-.037-.367-.037s-.257.037-.33.11a.333.333 0 0 0-.11.257c0 .073 0 .11.037.183.036.074.073.11.146.147.074.037.22.11.44.257.33.146.55.293.66.44.11.146.22.22.22.44zm3.447.953h-.807l-.806-1.283-.807 1.283h-.77l1.137-1.76-1.064-1.65h.807l.733 1.21.734-1.21h.77l-1.064 1.687z" }))))
1635
+ h("path", { d: "M9.847 18.5H9.04l-.807-1.283-.806 1.283h-.77l1.136-1.76-1.063-1.65h.807l.733 1.21.733-1.21h.77L8.71 16.777zm.513 0v-3.41h.733v2.823h1.394v.587zm4.803-.953c0 .293-.11.55-.33.733-.22.183-.513.257-.916.257-.367 0-.697-.074-.954-.22v-.66c.22.11.44.183.587.22.147.036.293.073.44.073a.92.92 0 0 0 .367-.073.333.333 0 0 0 .11-.257c0-.073-.037-.11-.074-.183-.036-.074-.11-.11-.146-.147l-.44-.22c-.22-.11-.367-.183-.477-.293a1.142 1.142 0 0 1-.257-.33.74.74 0 0 1-.11-.404c0-.293.11-.55.294-.696.22-.184.476-.257.843-.257.183 0 .33.037.513.073.147.037.33.11.514.184l-.22.55c-.184-.074-.33-.11-.44-.147-.11-.037-.22-.037-.367-.037s-.257.037-.33.11a.333.333 0 0 0-.11.257c0 .073 0 .11.037.183.036.074.073.11.146.147.074.037.22.11.44.257.33.146.55.293.66.44.11.146.22.22.22.44zm3.447.953h-.807l-.806-1.283-.807 1.283h-.77l1.137-1.76-1.064-1.65h.807l.733 1.21.734-1.21h.77l-1.064 1.687z" })))),
1636
1636
  },
1637
1637
  'filetype-xml': {
1638
1638
  markup: () => (h("g", null,
@@ -1643,97 +1643,97 @@ const icons = {
1643
1643
  h("path", { d: "M15.566 2v5.867h5.867" })),
1644
1644
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1645
1645
  h("g", { class: "filled" },
1646
- h("path", { d: "M10.543 18.5H9.7l-.807-1.283-.77 1.283h-.77l1.137-1.76-1.063-1.65h.806l.734 1.21.733-1.21h.77l-1.063 1.687zm1.944 0l-.807-2.677h-.037c.037.55.037.917.037 1.1V18.5h-.66v-3.41h.99l.807 2.603.843-2.603h.99v3.41h-.66v-1.87c0-.11 0-.367.037-.807h-.037l-.843 2.677h-.66zm3.153 0v-3.41h.733v2.823h1.394v.587z" }))))
1646
+ h("path", { d: "M10.543 18.5H9.7l-.807-1.283-.77 1.283h-.77l1.137-1.76-1.063-1.65h.806l.734 1.21.733-1.21h.77l-1.063 1.687zm1.944 0l-.807-2.677h-.037c.037.55.037.917.037 1.1V18.5h-.66v-3.41h.99l.807 2.603.843-2.603h.99v3.41h-.66v-1.87c0-.11 0-.367.037-.807h-.037l-.843 2.677h-.66zm3.153 0v-3.41h.733v2.823h1.394v.587z" })))),
1647
1647
  },
1648
1648
  filter: {
1649
- markup: () => h("path", { d: "M2 2h22l-8.643 11.786V24h-4.714V13.786z", class: "stroke-primary" })
1649
+ markup: () => (h("path", { d: "M2 2h22l-8.643 11.786V24h-4.714V13.786z", class: "stroke-primary" })),
1650
1650
  },
1651
1651
  fingerprint: {
1652
1652
  markup: () => (h("g", null,
1653
1653
  h("path", { class: "stroke-primary", d: "M4.761 5.666a11.107 11.107 0 0 0-2.546 9.51M18.951 3.948a10.64 10.64 0 0 0-8.271-1.723 10.69 10.69 0 0 0-4.345 1.974m17.083 6.631a11.003 11.003 0 0 0-2.882-5.53m3.184 7.924a8.205 8.205 0 0 0-.296-2.395M2.221 15.176c.044.168.092.334.144.5m10.797 8.317a15.28 15.28 0 0 0 2.594-7.969M11.016 4.96c-4.28.989-7.024 5.275-6.152 9.674l.004-.001a4.17 4.17 0 0 1-1.36 3.972m16.986 2.143a20.87 20.87 0 0 0 .277-9.375h-.001c-.752-3.793-3.952-6.45-7.59-6.612" }),
1654
1654
  h("g", { class: "stroke-secondary" },
1655
1655
  h("path", { d: "M10.025 23.627a12.505 12.505 0 0 0 2.795-10.624m2.852.764c-.048-.434-.115-.87-.202-1.307l.003-.002c-.295-1.491-1.725-2.457-3.192-2.156-1.467.301-2.416 1.754-2.12 3.246.078.666.93 5.381-2.812 8.94m.252-10.955a5.567 5.567 0 0 0-.089 2.558l.007-.002a6.942 6.942 0 0 1-2.351 6.688" }),
1656
- h("path", { d: "M16.697 23.267a18.064 18.064 0 0 0 1.424-11.35c-.192-.95-1.76-5.253-6.374-4.307a5.373 5.373 0 0 0-3.082 1.865" }))))
1656
+ h("path", { d: "M16.697 23.267a18.064 18.064 0 0 0 1.424-11.35c-.192-.95-1.76-5.253-6.374-4.307a5.373 5.373 0 0 0-3.082 1.865" })))),
1657
1657
  },
1658
1658
  flag: {
1659
1659
  markup: () => (h("g", null,
1660
1660
  h("path", { d: "M2 5.474l10.421 18.14", class: "stroke-primary" }),
1661
- h("path", { d: "M23.062 10.801c-4.255 3.812-9.42-.857-12.58 4.713l-4.97-8.607c3.16-5.57 8.36-.842 12.58-4.713l4.97 8.607z", class: "stroke-secondary filled" })))
1661
+ h("path", { d: "M23.062 10.801c-4.255 3.812-9.42-.857-12.58 4.713l-4.97-8.607c3.16-5.57 8.36-.842 12.58-4.713l4.97 8.607z", class: "stroke-secondary filled" }))),
1662
1662
  },
1663
1663
  gear: {
1664
1664
  markup: () => (h("g", null,
1665
1665
  h("path", { d: "M24 14.467v-2.934l-3.151-.393a8.002 8.002 0 0 0-.984-2.374l1.95-2.507-2.074-2.074-2.507 1.95a8.03 8.03 0 0 0-2.374-.983L14.467 2h-2.934l-.393 3.152c-.852.2-1.651.535-2.374.983l-2.507-1.95-2.074 2.074 1.95 2.507a8.03 8.03 0 0 0-.983 2.374L2 11.533v2.934l3.152.393c.2.852.535 1.651.983 2.374l-1.95 2.507 2.074 2.074 2.507-1.95a8.03 8.03 0 0 0 2.374.984L11.533 24h2.934l.393-3.151a7.983 7.983 0 0 0 2.374-.984l2.507 1.95 2.074-2.074-1.95-2.507a8.03 8.03 0 0 0 .984-2.374L24 14.467z", class: "stroke-primary" }),
1666
- h("circle", { cx: "13", cy: "13", r: "2.933", class: "stroke-secondary filled" })))
1666
+ h("circle", { cx: "13", cy: "13", r: "2.933", class: "stroke-secondary filled" }))),
1667
1667
  },
1668
1668
  'gesture-hand': {
1669
1669
  markup: () => (h("g", { class: "stroke-primary" },
1670
1670
  h("path", { d: "M13.44 12.44v-1.303a1.678 1.678 0 1 1 3.357 0v1.305m0-.561a1.679 1.679 0 0 1 3.356 0v.933" }),
1671
- h("path", { d: "M20.153 12.814s.046-1.492 1.491-1.492c.862 0 1.492.513 1.492 1.492 0 5.872-2.238 11.186-2.238 11.186H7.848l-4.723-9.444a1.003 1.003 0 0 1 .545-1.388 2.61 2.61 0 0 1 3.088.996l1.276 1.914c.614.921 2.05.487 2.05-.62V3.678a1.678 1.678 0 1 1 3.357 0v8.39" })))
1671
+ h("path", { d: "M20.153 12.814s.046-1.492 1.491-1.492c.862 0 1.492.513 1.492 1.492 0 5.872-2.238 11.186-2.238 11.186H7.848l-4.723-9.444a1.003 1.003 0 0 1 .545-1.388 2.61 2.61 0 0 1 3.088.996l1.276 1.914c.614.921 2.05.487 2.05-.62V3.678a1.678 1.678 0 1 1 3.357 0v8.39" }))),
1672
1672
  },
1673
1673
  'gesture-scroll-horizontal': {
1674
1674
  markup: () => (h("g", null,
1675
1675
  h("g", { class: "stroke-primary" },
1676
1676
  h("path", { d: "M10.724 12.862v2.276m2.656-3.035v-.948a1.327 1.327 0 1 1 2.654 0v.948m0 .38v-.57a1.329 1.329 0 0 1 2.656.001v.948" }),
1677
1677
  h("path", { d: "M18.69 12.672c0-.733.594-1.327 1.327-1.327.7 0 1.24.62 1.14 1.314l-1.33 9.307h-9.102c0-1.454-2.655-3.54-2.655-5.31V14c0-.629.51-1.138 1.138-1.138h1.517V4.328a1.327 1.327 0 0 1 2.654 0v7.396" })),
1678
- h("path", { class: "stroke-secondary", d: "M15.655 6.034H24M20.966 3L24 6.034l-3.034 3.035M8.448 6.034H2M5.034 3L2 6.034l3.034 3.035" })))
1678
+ h("path", { class: "stroke-secondary", d: "M15.655 6.034H24M20.966 3L24 6.034l-3.034 3.035M8.448 6.034H2M5.034 3L2 6.034l3.034 3.035" }))),
1679
1679
  },
1680
1680
  'gesture-scroll-vertical': {
1681
1681
  markup: () => (h("g", null,
1682
1682
  h("g", { class: "stroke-primary" },
1683
1683
  h("path", { d: "M13.56 12.695v2.237m2.61-2.982v-.933a1.305 1.305 0 0 1 2.61 0v.932m0 .373v-.56a1.305 1.305 0 0 1 2.61.001v.932" }),
1684
1684
  h("path", { d: "M21.39 12.508c0-.72.584-1.305 1.305-1.305.689 0 1.218.61 1.12 1.292l-1.307 9.15H13.56c0-1.43-2.61-3.481-2.61-5.221v-2.61c0-.618.5-1.12 1.119-1.12h1.491V5.052a1.305 1.305 0 1 1 2.61 0v6.525" })),
1685
- h("path", { class: "stroke-secondary", d: "M4.983 13.44v7.458m2.983-2.983l-2.983 2.983L2 17.915m2.983-7.457V3m2.983 2.983L4.983 3 2 5.983" })))
1685
+ h("path", { class: "stroke-secondary", d: "M4.983 13.44v7.458m2.983-2.983l-2.983 2.983L2 17.915m2.983-7.457V3m2.983 2.983L4.983 3 2 5.983" }))),
1686
1686
  },
1687
1687
  'gesture-stretch': {
1688
1688
  markup: () => (h("g", null,
1689
1689
  h("g", { class: "stroke-primary" },
1690
1690
  h("path", { d: "M21.647 14.367c2.181.35 2.644 2.22 2.2 3.908L22.34 24h-8.296l-4.713-6.123a1.613 1.613 0 1 1 2.348-2.213l.877.946c.541.584 1.53.254 1.594-.54.177-2.192-.22-4.897-.97-6.078a1.384 1.384 0 0 1 .632-2.017c.63-.27 1.37-.002 1.732.58.653 1.05 1.228 2.694 1.521 4.458.08.472.186 1.463.221 1.83m-.248-1.987c2.266-.209 2.974 1.305 2.974 2.978m-.698-2.266c1.973-.248 2.846.812 2.752 2.848" })),
1691
- h("path", { class: "stroke-secondary", d: "M12.267 2L2 12.267M8.6 2h3.667v3.667M2 8.6v3.667h3.667" })))
1691
+ h("path", { class: "stroke-secondary", d: "M12.267 2L2 12.267M8.6 2h3.667v3.667M2 8.6v3.667h3.667" }))),
1692
1692
  },
1693
1693
  'gesture-swipe-down': {
1694
1694
  markup: () => (h("g", null,
1695
1695
  h("g", { class: "stroke-primary" },
1696
1696
  h("path", { d: "M13.193 13.807v2.316m2.702-3.088v-.965a1.35 1.35 0 1 1 2.701 0v.965m0 .386v-.579a1.35 1.35 0 1 1 2.702 0v.965" }),
1697
1697
  h("path", { d: "M21.298 13.614c0-.746.605-1.35 1.351-1.35.713 0 1.26.63 1.16 1.337l-1.353 9.47h-9.263c0-1.48-2.702-3.603-2.702-5.404v-2.702c0-.64.519-1.158 1.158-1.158h1.544V5.123a1.351 1.351 0 0 1 2.702-.001v7.528" })),
1698
- h("path", { class: "stroke-secondary", d: "M5.474 14.193V3M2 10.719l3.474 3.474 3.473-3.474" })))
1698
+ h("path", { class: "stroke-secondary", d: "M5.474 14.193V3M2 10.719l3.474 3.474 3.473-3.474" }))),
1699
1699
  },
1700
1700
  'gesture-swipe-left': {
1701
1701
  markup: () => (h("g", null,
1702
1702
  h("g", { class: "stroke-primary" },
1703
1703
  h("path", { d: "M11.241 14.241v2.276m2.656-3.034v-.949a1.328 1.328 0 0 1 2.655 0v.949m0 .379v-.569a1.327 1.327 0 1 1 2.655 0v.948" }),
1704
1704
  h("path", { d: "M19.207 14.052c0-.733.594-1.328 1.327-1.328.701 0 1.24.62 1.14 1.314l-1.33 9.307h-9.102c0-1.454-2.655-3.54-2.655-5.31v-2.656c0-.628.51-1.138 1.138-1.138h1.517V5.707a1.329 1.329 0 0 1 2.656 0v7.396" })),
1705
- h("path", { class: "stroke-secondary", d: "M23 7.414h-6.828M1 7.414h7.966M4.414 4L1 7.414l3.414 3.414" })))
1705
+ h("path", { class: "stroke-secondary", d: "M23 7.414h-6.828M1 7.414h7.966M4.414 4L1 7.414l3.414 3.414" }))),
1706
1706
  },
1707
1707
  'gesture-swipe-right': {
1708
1708
  markup: () => (h("g", null,
1709
1709
  h("g", { class: "stroke-primary" },
1710
1710
  h("path", { d: "M9.207 14.241v2.276m2.655-3.034v-.949a1.327 1.327 0 1 1 2.655 0v.949m0 .379v-.569a1.327 1.327 0 1 1 2.655 0v.948" }),
1711
1711
  h("path", { d: "M17.172 14.052c0-.733.595-1.328 1.328-1.328.7 0 1.239.62 1.14 1.314l-1.33 9.307H9.207c0-1.454-2.655-3.54-2.655-5.31v-2.656c0-.628.51-1.138 1.138-1.138h1.517V5.707a1.328 1.328 0 0 1 2.655 0v7.396" })),
1712
- h("path", { class: "stroke-secondary", d: "M6.931 7.414H2m22 0h-9.862M20.586 4L24 7.414l-3.414 3.414" })))
1712
+ h("path", { class: "stroke-secondary", d: "M6.931 7.414H2m22 0h-9.862M20.586 4L24 7.414l-3.414 3.414" }))),
1713
1713
  },
1714
1714
  'gesture-swipe-up': {
1715
1715
  markup: () => (h("g", null,
1716
1716
  h("g", { class: "stroke-primary" },
1717
1717
  h("path", { d: "M13.193 13.421v2.316m2.702-3.087v-.966a1.35 1.35 0 1 1 2.701 0v.965m0 .386v-.579a1.35 1.35 0 1 1 2.702 0v.965" }),
1718
1718
  h("path", { d: "M21.298 13.228c0-.746.605-1.35 1.351-1.35.713 0 1.26.63 1.16 1.337l-1.353 9.47h-9.263c0-1.48-2.702-3.603-2.702-5.404v-2.702c0-.64.519-1.158 1.158-1.158h1.544V4.737a1.351 1.351 0 0 1 2.702-.001v7.527" })),
1719
- h("path", { class: "stroke-secondary", d: "M5.474 3v11.579M2 6.474L5.474 3l3.473 3.474" })))
1719
+ h("path", { class: "stroke-secondary", d: "M5.474 3v11.579M2 6.474L5.474 3l3.473 3.474" }))),
1720
1720
  },
1721
1721
  'gesture-tap': {
1722
1722
  markup: () => (h("g", null,
1723
1723
  h("path", { class: "stroke-secondary", d: "M9.057 10.067a3.667 3.667 0 1 1 6.11.367m-6.6 2.841a6.233 6.233 0 1 1 9.168-2.108" }),
1724
1724
  h("g", { class: "stroke-primary" },
1725
1725
  h("path", { d: "M10.767 15.2v2.2m2.566-2.934v-.916a1.284 1.284 0 0 1 2.567 0v.916m0 .367v-.55a1.283 1.283 0 1 1 2.567 0v.917" }),
1726
- h("path", { d: "M18.467 15.016c0-.708.574-1.283 1.283-1.283.677 0 1.198.6 1.102 1.27L19.567 24h-8.8c0-1.407-2.567-3.422-2.567-5.134V16.3a1.1 1.1 0 0 1 1.1-1.1h1.467V8.416a1.283 1.283 0 0 1 2.566 0V14.1" }))))
1726
+ h("path", { d: "M18.467 15.016c0-.708.574-1.283 1.283-1.283.677 0 1.198.6 1.102 1.27L19.567 24h-8.8c0-1.407-2.567-3.422-2.567-5.134V16.3a1.1 1.1 0 0 1 1.1-1.1h1.467V8.416a1.283 1.283 0 0 1 2.566 0V14.1" })))),
1727
1727
  },
1728
1728
  gift: {
1729
1729
  markup: () => (h("g", null,
1730
1730
  h("path", { class: "stroke-primary", d: "M21.8 10.113v13.276H4.2V10.113M2 6.425h22v3.688H2z" }),
1731
- h("path", { class: "stroke-secondary", d: "M6.4 4.213C6.4 2.99 7.385 2 8.6 2 11.854 2 13 6.425 13 6.425H8.6c-1.215 0-2.2-.99-2.2-2.212zm13.2 0A2.206 2.206 0 0 0 17.4 2C14.146 2 13 6.425 13 6.425h4.4c1.215 0 2.2-.99 2.2-2.212zm-4.4 2.212v16.964h-4.4V6.425" })))
1731
+ h("path", { class: "stroke-secondary", d: "M6.4 4.213C6.4 2.99 7.385 2 8.6 2 11.854 2 13 6.425 13 6.425H8.6c-1.215 0-2.2-.99-2.2-2.212zm13.2 0A2.206 2.206 0 0 0 17.4 2C14.146 2 13 6.425 13 6.425h4.4c1.215 0 2.2-.99 2.2-2.212zm-4.4 2.212v16.964h-4.4V6.425" }))),
1732
1732
  },
1733
1733
  'gold-bars': {
1734
1734
  markup: () => (h("g", null,
1735
1735
  h("path", { class: "stroke-primary", d: "M10.8 17.1H5.666l-2.933 6.679H13zm9.533 0H15.2L13 23.779h10.266zM2 14.132h2.2m1.026-7.866l1.54 1.558M13 3v2.227m7.773 1.039l-1.54 1.558M24 14.132h-2.2" }),
1736
- h("path", { d: "M15.567 10.421h-5.134L7.5 17.099h11z", class: "stroke-secondary" })))
1736
+ h("path", { d: "M15.567 10.421h-5.134L7.5 17.099h11z", class: "stroke-secondary" }))),
1737
1737
  },
1738
1738
  government: {
1739
1739
  markup: () => (h("g", null,
@@ -1743,26 +1743,26 @@ const icons = {
1743
1743
  h("g", { class: "stroke-secondary" },
1744
1744
  h("path", { d: "M13 6.5V2.18" }),
1745
1745
  h("path", { d: "M13 2.901h2.885v1.443H13z", class: "filled" }),
1746
- h("path", { d: "M5 22.661V19m4-6.339v-1m4 1v-1m4 1v-1m4 11V19" }))))
1746
+ h("path", { d: "M5 22.661V19m4-6.339v-1m4 1v-1m4 1v-1m4 11V19" })))),
1747
1747
  },
1748
1748
  gps: {
1749
- markup: () => h("path", { d: "M24 9.057L2 2l7.057 22 3.735-11.208z", class: "stroke-primary" })
1749
+ markup: () => (h("path", { d: "M24 9.057L2 2l7.057 22 3.735-11.208z", class: "stroke-primary" })),
1750
1750
  },
1751
1751
  'graduation-cap': {
1752
1752
  markup: () => (h("g", null,
1753
1753
  h("g", { class: "stroke-primary" },
1754
1754
  h("path", { d: "M5.667 10.111v4.122c0 1.812 3.322 3.28 7.42 3.28 4.099 0 7.42-1.468 7.42-3.28v-4.122" }),
1755
1755
  h("path", { d: "M13 12.984L2 8.492 13 4l11 4.492z" })),
1756
- h("path", { d: "M17.3 18.315l1.855 2.552h-3.711l1.856-2.552v-6.982", class: "stroke-secondary" })))
1756
+ h("path", { d: "M17.3 18.315l1.855 2.552h-3.711l1.856-2.552v-6.982", class: "stroke-secondary" }))),
1757
1757
  },
1758
1758
  'grid-x2': {
1759
- markup: () => (h("path", { class: "stroke-primary", d: "M2.193 2.193h8.491v8.491H2.193zm13.123 0h8.491v8.491h-8.491zM2.193 15.316h8.491v8.491H2.193zm13.123 0h8.491v8.491h-8.491z" }))
1759
+ markup: () => (h("path", { class: "stroke-primary", d: "M2.193 2.193h8.491v8.491H2.193zm13.123 0h8.491v8.491h-8.491zM2.193 15.316h8.491v8.491H2.193zm13.123 0h8.491v8.491h-8.491z" })),
1760
1760
  },
1761
1761
  'grid-x3': {
1762
- markup: () => (h("path", { class: "stroke-primary", d: "M2 2h4.4v4.4H2zm8.8 0h4.4v4.4h-4.4zm8.8 0H24v4.4h-4.4zM2 10.8h4.4v4.4H2zm8.8 0h4.4v4.4h-4.4zm8.8 0H24v4.4h-4.4zM2 19.6h4.4V24H2zm8.8 0h4.4V24h-4.4zm8.8 0H24V24h-4.4z" }))
1762
+ markup: () => (h("path", { class: "stroke-primary", d: "M2 2h4.4v4.4H2zm8.8 0h4.4v4.4h-4.4zm8.8 0H24v4.4h-4.4zM2 10.8h4.4v4.4H2zm8.8 0h4.4v4.4h-4.4zm8.8 0H24v4.4h-4.4zM2 19.6h4.4V24H2zm8.8 0h4.4V24h-4.4zm8.8 0H24V24h-4.4z" })),
1763
1763
  },
1764
1764
  'hamburger-menu': {
1765
- markup: () => h("path", { class: "stroke-primary", d: "M4 5h18M4 13.5h18M4 22h18" })
1765
+ markup: () => (h("path", { class: "stroke-primary", d: "M4 5h18M4 13.5h18M4 22h18" })),
1766
1766
  },
1767
1767
  'hand-with-coins': {
1768
1768
  markup: () => (h("g", null,
@@ -1773,13 +1773,13 @@ const icons = {
1773
1773
  h("g", { class: "filled", transform: "translate(7.407 3.186)" },
1774
1774
  h("circle", { cx: "11.932", cy: "7.458", r: "2.983" }),
1775
1775
  h("circle", { cx: "2.983", cy: "2.983", r: "2.983" })),
1776
- h("path", { d: "M9.644 6.169h1.493m7.456 4.475h1.492" }))))
1776
+ h("path", { d: "M9.644 6.169h1.493m7.456 4.475h1.492" })))),
1777
1777
  },
1778
1778
  hand: {
1779
1779
  markup: () => (h("g", { class: "stroke-primary" },
1780
1780
  h("path", { d: "M6.4 7.133v-2.2a1.467 1.467 0 1 1 2.933 0v2.2" }),
1781
1781
  h("path", { d: "M9.333 11.199V4.2a1.467 1.467 0 0 1 2.934 0v6.675M12.267 7.133V3.467a1.467 1.467 0 0 1 2.933 0v3.666M15.2 11.286V4.2a1.467 1.467 0 0 1 2.933 0v6.415" }),
1782
- h("path", { d: "M6.4 7.229v9.804a6.967 6.967 0 0 0 13.933 0V10.067c-1.657 0-2.933 1.276-2.933 2.933v2.2c-2.261 0-4.4 1.589-4.4 3.667" })))
1782
+ h("path", { d: "M6.4 7.229v9.804a6.967 6.967 0 0 0 13.933 0V10.067c-1.657 0-2.933 1.276-2.933 2.933v2.2c-2.261 0-4.4 1.589-4.4 3.667" }))),
1783
1783
  },
1784
1784
  handshake: {
1785
1785
  markup: () => (h("g", null,
@@ -1788,48 +1788,48 @@ const icons = {
1788
1788
  h("path", { d: "M18.047 18.763a1.454 1.454 0 0 1 0 2.057 1.454 1.454 0 0 1-2.056 0l-.482-.481m4.492-3.767a1.417 1.417 0 0 0 2.05-.05 1.417 1.417 0 0 0-.034-1.937l-4.738-4.87" })),
1789
1789
  h("g", { class: "stroke-secondary" },
1790
1790
  h("path", { d: "M5.399 16.758l.384-.384a1.464 1.464 0 1 1 2.072 2.072l-.384.384a1.464 1.464 0 0 1-2.071 0 1.464 1.464 0 0 1 0-2.071zm4.549 3.709l.196-.197a1.454 1.454 0 1 1 2.057 2.057l-.197.198a1.454 1.454 0 0 1-2.057-.001 1.454 1.454 0 0 1 0-2.056z" }),
1791
- h("path", { d: "M5.778 16.38l-.216.216a1.415 1.415 0 0 1-2.051-.05 1.417 1.417 0 0 1 .034-1.939l.216-.221a1.417 1.417 0 0 1 1.993-.034 1.417 1.417 0 0 1 .024 2.027zm1.977 2.167l.109-.109a1.454 1.454 0 1 1 2.057 2.057l-.11.11a1.454 1.454 0 0 1-2.056-.002 1.453 1.453 0 0 1 0-2.056zm14.567-6.411V9.897l1.493-1.491-5.221-5.22-1.12 1.119h-2.443a4.5 4.5 0 0 0-3.182 1.318L8.416 9.192a1.268 1.268 0 0 0 1.622 1.933l3.654-2.356a3.322 3.322 0 0 0 5.028-.052" }))))
1791
+ h("path", { d: "M5.778 16.38l-.216.216a1.415 1.415 0 0 1-2.051-.05 1.417 1.417 0 0 1 .034-1.939l.216-.221a1.417 1.417 0 0 1 1.993-.034 1.417 1.417 0 0 1 .024 2.027zm1.977 2.167l.109-.109a1.454 1.454 0 1 1 2.057 2.057l-.11.11a1.454 1.454 0 0 1-2.056-.002 1.453 1.453 0 0 1 0-2.056zm14.567-6.411V9.897l1.493-1.491-5.221-5.22-1.12 1.119h-2.443a4.5 4.5 0 0 0-3.182 1.318L8.416 9.192a1.268 1.268 0 0 0 1.622 1.933l3.654-2.356a3.322 3.322 0 0 0 5.028-.052" })))),
1792
1792
  },
1793
1793
  headset: {
1794
1794
  markup: () => (h("g", null,
1795
1795
  h("path", { class: "stroke-primary", d: "M17.344 23.64h.36a5.05 5.05 0 0 0 5.05-5.05v-7.213A9.377 9.377 0 0 0 13.377 2 9.377 9.377 0 0 0 4 11.377v3.607m11.18 8.656h-2.164" }),
1796
- h("path", { class: "stroke-secondary filled", d: "M9.41 12.459H5.803v5.41c0 1.195.969 2.164 2.164 2.164H9.41v-7.574zm11.541 0h-3.608v7.574h1.443a2.164 2.164 0 0 0 2.164-2.164v-5.41z" })))
1796
+ h("path", { class: "stroke-secondary filled", d: "M9.41 12.459H5.803v5.41c0 1.195.969 2.164 2.164 2.164H9.41v-7.574zm11.541 0h-3.608v7.574h1.443a2.164 2.164 0 0 0 2.164-2.164v-5.41z" }))),
1797
1797
  },
1798
1798
  health: {
1799
1799
  markup: () => (h("g", null,
1800
1800
  h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" }),
1801
- h("path", { d: "M18.867 10.8H15.2V7.133h-4.4V10.8H7.133v4.4H10.8v3.667h4.4V15.2h3.667z", class: "stroke-secondary" })))
1801
+ h("path", { d: "M18.867 10.8H15.2V7.133h-4.4V10.8H7.133v4.4H10.8v3.667h4.4V15.2h3.667z", class: "stroke-secondary" }))),
1802
1802
  },
1803
1803
  heart: {
1804
- markup: () => (h("path", { d: "M17.905 2.18A5.803 5.803 0 0 0 13 4.85a5.803 5.803 0 0 0-4.905-2.67c-3.282 0-5.915 2.67-5.915 5.987C2.18 14.118 13 23.098 13 23.098s10.82-8.98 10.82-14.93c0-3.319-2.633-5.988-5.915-5.988z", class: "stroke-primary" }))
1804
+ markup: () => (h("path", { d: "M17.905 2.18A5.803 5.803 0 0 0 13 4.85a5.803 5.803 0 0 0-4.905-2.67c-3.282 0-5.915 2.67-5.915 5.987C2.18 14.118 13 23.098 13 23.098s10.82-8.98 10.82-14.93c0-3.319-2.633-5.988-5.915-5.988z", class: "stroke-primary" })),
1805
1805
  },
1806
1806
  'heart-add': {
1807
1807
  markup: () => (h("g", null,
1808
1808
  h("path", { d: "M22.55 12.279c.776-1.433 1.27-2.847 1.27-4.122 0-3.301-2.642-5.977-5.902-5.977-2.054 0-3.86 1.064-4.918 2.676-1.057-1.612-2.864-2.676-4.918-2.676-3.26 0-5.902 2.676-5.902 5.977C2.18 14.134 13 23.098 13 23.098s.48-.397 1.238-1.082", class: "stroke-primary" }),
1809
1809
  h("g", { class: "stroke-secondary", transform: "translate(15.164 13.721)" },
1810
1810
  h("circle", { cx: "4.328", cy: "4.328", r: "4.328", class: "filled" }),
1811
- h("path", { d: "M4.328 2.885V5.77M2.885 4.328H5.77" }))))
1811
+ h("path", { d: "M4.328 2.885V5.77M2.885 4.328H5.77" })))),
1812
1812
  },
1813
1813
  'heart-remove': {
1814
1814
  markup: () => (h("g", null,
1815
1815
  h("path", { d: "M22.55 12.279c.776-1.433 1.27-2.847 1.27-4.122 0-3.301-2.642-5.977-5.902-5.977-2.054 0-3.86 1.064-4.918 2.676-1.057-1.612-2.864-2.676-4.918-2.676-3.26 0-5.902 2.676-5.902 5.977C2.18 14.134 13 23.098 13 23.098s.48-.397 1.238-1.082", class: "stroke-primary" }),
1816
1816
  h("g", { class: "stroke-secondary", transform: "translate(15.164 13.721)" },
1817
1817
  h("circle", { cx: "4.328", cy: "4.328", r: "4.328", class: "filled" }),
1818
- h("path", { d: "M2.885 4.328H5.77" }))))
1818
+ h("path", { d: "M2.885 4.328H5.77" })))),
1819
1819
  },
1820
1820
  home: {
1821
1821
  markup: () => (h("g", null,
1822
1822
  h("g", { class: "stroke-primary" },
1823
1823
  h("path", { d: "M4.655 9.194v13.668h6.07v-5.69h4.551v5.69h6.069V9.194" }),
1824
1824
  h("path", { d: "M24 11.483L13 2 2 11.483" })),
1825
- h("path", { d: "M10.725 9.966h4.552v3.793h-4.552z", class: "stroke-secondary filled" })))
1825
+ h("path", { d: "M10.725 9.966h4.552v3.793h-4.552z", class: "stroke-secondary filled" }))),
1826
1826
  },
1827
1827
  'home-chimney': {
1828
1828
  markup: () => (h("g", null,
1829
1829
  h("path", { class: "stroke-secondary filled", d: "M5.542 9.174v-5.31h2.237v3.382m2.984 3.33h4.475v3.729h-4.475z" }),
1830
1830
  h("g", { class: "stroke-primary" },
1831
1831
  h("path", { d: "M4.796 9.818v13.436h5.967v-5.593h4.474v5.593h5.966V9.818" }),
1832
- h("path", { d: "M23.813 12.068L13 2.746 2.186 12.068" }))))
1832
+ h("path", { d: "M23.813 12.068L13 2.746 2.186 12.068" })))),
1833
1833
  },
1834
1834
  'id-badge': {
1835
1835
  markup: () => (h("g", null,
@@ -1840,170 +1840,170 @@ const icons = {
1840
1840
  h("path", { class: "stroke-secondary", d: "M15.2 14.833h5.133M15.2 18.5h5.133" }),
1841
1841
  h("g", { class: "stroke-secondary filled", transform: "translate(4.933 12.633)" },
1842
1842
  h("circle", { cx: "3.667", cy: "1.467", r: "1.467" }),
1843
- h("path", { d: "M7.333 7.7H0a2.933 2.933 0 0 1 2.933-2.933H4.4A2.933 2.933 0 0 1 7.333 7.7z" }))))
1843
+ h("path", { d: "M7.333 7.7H0a2.933 2.933 0 0 1 2.933-2.933H4.4A2.933 2.933 0 0 1 7.333 7.7z" })))),
1844
1844
  },
1845
1845
  inbox: {
1846
1846
  markup: () => (h("g", { class: "stroke-primary" },
1847
1847
  h("path", { d: "M2.18 15.082h7.213v2.524h7.213v-2.524h7.213" }),
1848
- h("path", { d: "M23.819 22.655H2.18v-7.573L6.508 3.18h12.983l4.328 11.902z" })))
1848
+ h("path", { d: "M23.819 22.655H2.18v-7.573L6.508 3.18h12.983l4.328 11.902z" }))),
1849
1849
  },
1850
1850
  'inbox-checked': {
1851
1851
  markup: () => (h("g", null,
1852
1852
  h("g", { class: "stroke-primary" },
1853
1853
  h("path", { d: "M2.18 15.082h7.213v2.524h7.213v-2.524h7.213" }),
1854
1854
  h("path", { d: "M23.819 22.655H2.18v-7.573L6.508 3.18h12.983l4.328 11.902z" })),
1855
- h("path", { d: "M9.393 9.672l2.164 2.164 5.05-5.049", class: "stroke-secondary" })))
1855
+ h("path", { d: "M9.393 9.672l2.164 2.164 5.05-5.049", class: "stroke-secondary" }))),
1856
1856
  },
1857
1857
  'inbox-full': {
1858
1858
  markup: () => (h("g", null,
1859
1859
  h("g", { class: "stroke-primary" },
1860
1860
  h("path", { d: "M2.18 15.082h7.213v2.524h7.213v-2.524h7.213" }),
1861
1861
  h("path", { d: "M23.819 22.655H2.18v-7.573L6.508 3.18h12.983l4.328 11.902z" })),
1862
- h("path", { class: "stroke-secondary", d: "M9.394 6.066h7.213M8.312 8.951h9.377M7.23 11.836h11.541" })))
1862
+ h("path", { class: "stroke-secondary", d: "M9.394 6.066h7.213M8.312 8.951h9.377M7.23 11.836h11.541" }))),
1863
1863
  },
1864
1864
  info: {
1865
1865
  markup: () => (h("g", null,
1866
1866
  h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" }),
1867
1867
  h("g", { class: "stroke-secondary", transform: "translate(10.067 5.3)" },
1868
1868
  h("path", { d: "M0 15.033h5.867M0 5.5h2.933v9.533" }),
1869
- h("circle", { cx: "2.933", cy: "1.1", r: "1.1" }))))
1869
+ h("circle", { cx: "2.933", cy: "1.1", r: "1.1" })))),
1870
1870
  },
1871
1871
  ios: {
1872
1872
  markup: () => (h("g", null,
1873
1873
  h("path", { d: "M21.492 18.552c-.473 1.03-.7 1.49-1.31 2.399-.849 1.27-2.047 2.852-3.532 2.865-1.319.013-1.658-.842-3.448-.832-1.79.01-2.164.848-3.483.836-1.485-.014-2.62-1.442-3.47-2.713-2.376-3.552-2.624-7.721-1.159-9.937 1.042-1.576 2.686-2.497 4.23-2.497 1.574 0 2.563.847 3.864.847 1.262 0 2.031-.848 3.85-.848 1.375 0 2.832.735 3.87 2.005-3.401 1.83-2.848 6.6.588 7.875z", class: "stroke-primary" }),
1874
- h("path", { d: "M16.125 5.587c.69-.884 1.211-2.131 1.022-3.407-1.125.077-2.44.793-3.208 1.726-.698.846-1.274 2.102-1.05 3.322 1.228.039 2.498-.695 3.236-1.641z", class: "stroke-secondary" })))
1874
+ h("path", { d: "M16.125 5.587c.69-.884 1.211-2.131 1.022-3.407-1.125.077-2.44.793-3.208 1.726-.698.846-1.274 2.102-1.05 3.322 1.228.039 2.498-.695 3.236-1.641z", class: "stroke-secondary" }))),
1875
1875
  },
1876
1876
  key: {
1877
1877
  markup: () => (h("g", null,
1878
1878
  h("path", { d: "M18.455 3l-7.486 7.485a6.32 6.32 0 0 0-1.605-.212 6.364 6.364 0 1 0 6.363 6.363c0-.81-.157-1.581-.432-2.294l2.25-2.251V9.364h2.728L23 6.636V3h-4.545z", class: "stroke-primary filled" }),
1879
- h("circle", { cx: "9.364", cy: "16.636", r: "1.818", class: "stroke-secondary" })))
1879
+ h("circle", { cx: "9.364", cy: "16.636", r: "1.818", class: "stroke-secondary" }))),
1880
1880
  },
1881
1881
  laptop: {
1882
1882
  markup: () => (h("g", null,
1883
1883
  h("path", { class: "stroke-primary", d: "M4.344 15.721V5.623c0-.797.646-1.443 1.443-1.443h14.426c.797 0 1.442.646 1.442 1.443V15.72m-9.377-9.376h1.443" }),
1884
- h("path", { d: "M15.885 17.885v1.082h-5.77v-1.082H2.18a2.885 2.885 0 0 0 2.886 2.885h15.868a2.885 2.885 0 0 0 2.886-2.885h-7.935z", class: "stroke-secondary" })))
1884
+ h("path", { d: "M15.885 17.885v1.082h-5.77v-1.082H2.18a2.885 2.885 0 0 0 2.886 2.885h15.868a2.885 2.885 0 0 0 2.886-2.885h-7.935z", class: "stroke-secondary" }))),
1885
1885
  },
1886
1886
  leaf: {
1887
1887
  markup: () => (h("g", null,
1888
1888
  h("path", { d: "M8.5 9.5c4.2-4.2 15-6 15-6s-1.4 10.4-6 15c-4.9 4.9-10.7 1.7-10.7 1.7S3.5 14.5 8.5 9.5z", class: "stroke-primary" }),
1889
- h("path", { d: "M14.5 12.5l-11 9.726", class: "stroke-secondary" })))
1889
+ h("path", { d: "M14.5 12.5l-11 9.726", class: "stroke-secondary" }))),
1890
1890
  },
1891
1891
  lightbulb: {
1892
1892
  markup: () => (h("g", null,
1893
1893
  h("path", { class: "stroke-primary", d: "M20.889 10.067C20.889 5.612 17.332 2 12.944 2 8.557 2 5 5.612 5 10.067a8.074 8.074 0 0 0 4.333 7.179v4.187h7.223v-4.187a8.074 8.074 0 0 0 4.333-7.18zM9.333 23.633h7.223" }),
1894
- h("path", { class: "stroke-secondary", d: "M8.611 12.267c0-.81.647-1.467 1.444-1.467.798 0 1.446.657 1.446 1.467v1.466h-1.446a1.456 1.456 0 0 1-1.444-1.466zm2.889 1.466v5.5m5.778-6.966c0-.81-.647-1.467-1.445-1.467-.797 0-1.444.657-1.444 1.467v1.466h1.444c.798 0 1.445-.656 1.445-1.466zm-2.889 1.466v5.5m-2.889-5.5h2.889" })))
1894
+ h("path", { class: "stroke-secondary", d: "M8.611 12.267c0-.81.647-1.467 1.444-1.467.798 0 1.446.657 1.446 1.467v1.466h-1.446a1.456 1.456 0 0 1-1.444-1.466zm2.889 1.466v5.5m5.778-6.966c0-.81-.647-1.467-1.445-1.467-.797 0-1.444.657-1.444 1.467v1.466h1.444c.798 0 1.445-.656 1.445-1.466zm-2.889 1.466v5.5m-2.889-5.5h2.889" }))),
1895
1895
  },
1896
1896
  linechart: {
1897
1897
  markup: () => (h("g", null,
1898
1898
  h("path", { class: "stroke-secondary", d: "M18.549 12.473l1.784 1.427L24 9.133m-22 6.6l2.567-2.566L6.4 15l2.933-4.033 3.3 3.666 2.039-2.371m1.995 3.471v7.334m0-19.067v5.133" }),
1899
1899
  h("circle", { cx: "16.667", cy: "11.333", r: "2.2", class: "stroke-secondary filled" }),
1900
- h("path", { d: "M2 4h22v19.067H2z", class: "stroke-primary" })))
1900
+ h("path", { d: "M2 4h22v19.067H2z", class: "stroke-primary" }))),
1901
1901
  },
1902
1902
  'linechart-trend': {
1903
1903
  markup: () => (h("g", null,
1904
1904
  h("path", { d: "M2 13h5.133l2.934-5.867 5.866 11.734L18.867 13H24", class: "stroke-secondary" }),
1905
- h("path", { d: "M2 2h22v22H2z", class: "stroke-primary" })))
1905
+ h("path", { d: "M2 2h22v22H2z", class: "stroke-primary" }))),
1906
1906
  },
1907
1907
  link: {
1908
1908
  markup: () => (h("g", { class: "stroke-primary" },
1909
1909
  h("path", { d: "M14.245 11.756a5.28 5.28 0 0 1 0 7.467l-3.111 3.112a5.28 5.28 0 0 1-7.468 0 5.28 5.28 0 0 1 0-7.468l2.49-2.489" }),
1910
- h("path", { d: "M19.845 13.623l2.49-2.49a5.28 5.28 0 0 0 0-7.467 5.28 5.28 0 0 0-7.468 0l-3.111 3.112a5.28 5.28 0 0 0 0 7.467" })))
1910
+ h("path", { d: "M19.845 13.623l2.49-2.49a5.28 5.28 0 0 0 0-7.467 5.28 5.28 0 0 0-7.468 0l-3.111 3.112a5.28 5.28 0 0 0 0 7.467" }))),
1911
1911
  },
1912
1912
  list: {
1913
1913
  markup: () => (h("g", null,
1914
1914
  h("path", { class: "stroke-secondary filled", d: "M3 2h4.714v4.714H3zm0 8.643h4.714v4.714H3zm0 8.643h4.714V24H3z" }),
1915
- h("path", { class: "stroke-primary", d: "M10.643 4.357H24M10.643 13H24m-13.357 8.643H24" })))
1915
+ h("path", { class: "stroke-primary", d: "M10.643 4.357H24M10.643 13H24m-13.357 8.643H24" }))),
1916
1916
  },
1917
1917
  location: {
1918
1918
  markup: () => (h("g", null,
1919
1919
  h("path", { d: "M21.407 10.239c0 5.558-8.204 13.761-8.204 13.761S5 15.797 5 10.239C5 5.025 9.24 2 13.203 2c3.964 0 8.204 3.025 8.204 8.239z", class: "stroke-primary" }),
1920
- h("circle", { cx: "13.203", cy: "10.203", r: "2.983", class: "stroke-secondary filled" })))
1920
+ h("circle", { cx: "13.203", cy: "10.203", r: "2.983", class: "stroke-secondary filled" }))),
1921
1921
  },
1922
1922
  'location-base': {
1923
1923
  markup: () => (h("g", null,
1924
1924
  h("path", { d: "M6.607 17.869L3 23.639h20.197l-3.607-5.77", class: "stroke-primary" }),
1925
1925
  h("g", { class: "stroke-secondary", transform: "translate(5.885 2.026)" },
1926
1926
  h("path", { d: "M14.426 6.885c0 4.25-7.213 11.843-7.213 11.843S0 11.135 0 6.885C0 2.528 3.727 0 7.213 0s7.213 2.528 7.213 6.885z" }),
1927
- h("circle", { cx: "7.213", cy: "7.213", r: "2.164", class: "filled" }))))
1927
+ h("circle", { cx: "7.213", cy: "7.213", r: "2.164", class: "filled" })))),
1928
1928
  },
1929
1929
  'location-prohibited': {
1930
1930
  markup: () => (h("g", null,
1931
1931
  h("g", { class: "stroke-primary", transform: "translate(2.588 2.023)" },
1932
1932
  h("path", { d: "M3.647 14.212L.412 19.388h9.594m5.935-13.212c0 3.813-6.47 10.624-6.47 10.624S3 9.99 3 6.177C3 2.267 6.344 0 9.47 0c3.127 0 6.471 2.268 6.471 6.176z" }),
1933
1933
  h("circle", { cx: "9.471", cy: "6.471", r: "1.941", class: "filled" })),
1934
- h("path", { class: "stroke-secondary", d: "M18.882 16A3.877 3.877 0 0 0 15 19.882a3.877 3.877 0 0 0 3.882 3.883 3.877 3.877 0 0 0 3.883-3.883A3.877 3.877 0 0 0 18.882 16zM16.5 22.5l5-5" })))
1934
+ h("path", { class: "stroke-secondary", d: "M18.882 16A3.877 3.877 0 0 0 15 19.882a3.877 3.877 0 0 0 3.882 3.883 3.877 3.877 0 0 0 3.883-3.883A3.877 3.877 0 0 0 18.882 16zM16.5 22.5l5-5" }))),
1935
1935
  },
1936
1936
  lock: {
1937
1937
  markup: () => (h("g", null,
1938
1938
  h("path", { class: "stroke-primary", d: "M17.467 8.967V6.4a4.4 4.4 0 0 0-4.4-4.4 4.4 4.4 0 0 0-4.4 4.4v2.567m11 15.033h-13.2C5.657 24 5 23.343 5 22.533V12.267c0-.81.657-1.467 1.467-1.467h13.2c.81 0 1.466.657 1.466 1.467v10.266c0 .81-.656 1.467-1.466 1.467z" }),
1939
1939
  h("g", { class: "stroke-secondary filled", transform: "translate(10.867 14.1)" },
1940
1940
  h("path", { d: "M2.2 4.4v2.2" }),
1941
- h("circle", { cx: "2.2", cy: "2.2", r: "2.2" }))))
1941
+ h("circle", { cx: "2.2", cy: "2.2", r: "2.2" })))),
1942
1942
  },
1943
1943
  logout: {
1944
1944
  markup: () => (h("g", null,
1945
1945
  h("path", { class: "stroke-primary", d: "M15.797 13.932v5.593h-5.594M2 2.373V2h13.797v7.458" }),
1946
1946
  h("path", { d: "M2 2l8.203 5.22V24L2 19.525V2", class: "stroke-primary filled" }),
1947
- h("path", { class: "stroke-secondary", d: "M19.898 7.593L24 11.695l-4.102 4.101m-6.712-4.101H24" })))
1947
+ h("path", { class: "stroke-secondary", d: "M19.898 7.593L24 11.695l-4.102 4.101m-6.712-4.101H24" }))),
1948
1948
  },
1949
1949
  loop: {
1950
1950
  markup: () => (h("g", { class: "stroke-primary" },
1951
1951
  h("path", { d: "M15 15.094c1.579 1.128 3.5 2.44 5.072 2.44 2.208 0 3.928-1.764 3.928-3.973 0-2.209-1.72-4.094-3.928-4.094-3.405 0-11.105 8.067-14.144 8.067C3.72 17.534 2 15.77 2 13.561c0-2.209 1.72-4.094 3.928-4.094 1.436 0 3.188 1.214 4.678 2.28" }),
1952
- h("path", { d: "M9.466 8.254l1.14 3.494-3.484 1.137" })))
1952
+ h("path", { d: "M9.466 8.254l1.14 3.494-3.484 1.137" }))),
1953
1953
  },
1954
1954
  mail: {
1955
1955
  markup: () => (h("g", null,
1956
1956
  h("g", { class: "stroke-primary" },
1957
1957
  h("path", { d: "M2 6.467v13.2c0 .81.656 1.466 1.466 1.466h19.067c.81 0 1.467-.656 1.467-1.466v-13.2C24 5.657 23.343 5 22.533 5H3.466C2.656 5 2 5.657 2 6.467z", class: "filled" }),
1958
1958
  h("path", { d: "M4.933 17.467L7.866 13.8m13.2 3.667L18.133 13.8" })),
1959
- h("path", { d: "M4.933 7.933l8.067 6.6 8.067-6.6", class: "stroke-secondary" })))
1959
+ h("path", { d: "M4.933 7.933l8.067 6.6 8.067-6.6", class: "stroke-secondary" }))),
1960
1960
  },
1961
1961
  math: {
1962
1962
  markup: () => (h("g", null,
1963
1963
  h("path", { class: "stroke-primary", d: "M2 2h22v22H2zm11 0v22M2 13h22" }),
1964
- h("path", { class: "stroke-secondary", d: "M7.5 5.143v4.716M9.857 7.5H5.143m4.125 9.233l-3.536 3.535m3.536.001l-3.536-3.537M20.857 7.5h-4.714m4.714 9.429h-4.714m4.714 3.143h-4.714" })))
1964
+ h("path", { class: "stroke-secondary", d: "M7.5 5.143v4.716M9.857 7.5H5.143m4.125 9.233l-3.536 3.535m3.536.001l-3.536-3.537M20.857 7.5h-4.714m4.714 9.429h-4.714m4.714 3.143h-4.714" }))),
1965
1965
  },
1966
1966
  medal: {
1967
1967
  markup: () => (h("g", null,
1968
1968
  h("g", { class: "stroke-primary" },
1969
1969
  h("path", { d: "M8.931 12.63L4.233 3.233h5.6l3.733 7.467m4.636 1.929L22.9 3.233h-5.6L13.566 10.7" })),
1970
1970
  h("circle", { cx: "13.567", cy: "17.233", r: "6.533", class: "stroke-secondary" }),
1971
- h("path", { d: "M13.567 13.857l1.097 2.223 2.453.356-1.775 1.731.419 2.443-2.194-1.153-2.195 1.153.419-2.443-1.775-1.731 2.453-.356z", class: "stroke-secondary filled" })))
1971
+ h("path", { d: "M13.567 13.857l1.097 2.223 2.453.356-1.775 1.731.419 2.443-2.194-1.153-2.195 1.153.419-2.443-1.775-1.731 2.453-.356z", class: "stroke-secondary filled" }))),
1972
1972
  },
1973
1973
  megaphone: {
1974
1974
  markup: () => (h("g", null,
1975
1975
  h("path", { class: "stroke-primary", d: "M9.468 16.957l1.925 4.314c.362.81-.002 1.76-.812 2.122a1.607 1.607 0 0 1-2.123-.812l-3.51-7.866M6.4 8.133v6.6" }),
1976
1976
  h("g", { class: "stroke-secondary" },
1977
1977
  h("path", { d: "M16.667 19.867l-7.333-5.134H5.3a3.3 3.3 0 0 1-3.3-3.3 3.3 3.3 0 0 1 3.3-3.3h4.034L16.667 3v16.867z", class: "filled" }),
1978
- h("path", { d: "M21.067 11.433H24m-4.21-4.766L22.33 5.2m-2.54 11l2.54 1.467" }))))
1978
+ h("path", { d: "M21.067 11.433H24m-4.21-4.766L22.33 5.2m-2.54 11l2.54 1.467" })))),
1979
1979
  },
1980
1980
  'message-forward': {
1981
- markup: () => (h("path", { d: "M24 12.345L14.517 4v4.931C8.443 8.931 2 10.751 2 21.448c2.781-3.793 5.043-4.93 12.517-4.93v4.93L24 12.345z", class: "stroke-primary" }))
1981
+ markup: () => (h("path", { d: "M24 12.345L14.517 4v4.931C8.443 8.931 2 10.751 2 21.448c2.781-3.793 5.043-4.93 12.517-4.93v4.93L24 12.345z", class: "stroke-primary" })),
1982
1982
  },
1983
1983
  'message-reply': {
1984
- markup: () => (h("path", { d: "M2 12.345L11.483 4v4.931C17.557 8.931 24 10.751 24 21.448c-2.781-3.793-5.043-4.93-12.517-4.93v4.93L2 12.345z", class: "stroke-primary filled" }))
1984
+ markup: () => (h("path", { d: "M2 12.345L11.483 4v4.931C17.557 8.931 24 10.751 24 21.448c-2.781-3.793-5.043-4.93-12.517-4.93v4.93L2 12.345z", class: "stroke-primary filled" })),
1985
1985
  },
1986
1986
  'message-response': {
1987
- markup: () => (h("path", { d: "M24 12.345L14.517 4v4.931C7.043 8.931 4.661 7.598 2 4c0 11.14 7.006 12.517 12.517 12.517v4.931L24 12.345z", class: "stroke-primary filled" }))
1987
+ markup: () => (h("path", { d: "M24 12.345L14.517 4v4.931C7.043 8.931 4.661 7.598 2 4c0 11.14 7.006 12.517 12.517 12.517v4.931L24 12.345z", class: "stroke-primary filled" })),
1988
1988
  },
1989
1989
  'mobile-button': {
1990
1990
  markup: () => (h("g", null,
1991
1991
  h("path", { class: "stroke-primary", d: "M4 5.667h15.4M4 17.4h15.4M17.933 24H5.467C4.657 24 4 23.343 4 22.533V3.467C4 2.657 4.657 2 5.467 2h12.466c.81 0 1.467.657 1.467 1.467v19.066c0 .81-.657 1.467-1.467 1.467z" }),
1992
- h("circle", { cx: "11.7", cy: "20.7", r: "1.1", class: "stroke-secondary" })))
1992
+ h("circle", { cx: "11.7", cy: "20.7", r: "1.1", class: "stroke-secondary" }))),
1993
1993
  },
1994
1994
  'mobile-edit': {
1995
1995
  markup: () => (h("g", null,
1996
1996
  h("path", { class: "stroke-primary", d: "M4 6.4h15.4M4 18.133h11.367M13.167 24h-7.7C4.657 24 4 23.343 4 22.533V3.467C4 2.657 4.657 2 5.467 2h12.466c.81 0 1.467.657 1.467 1.467V14.1" }),
1997
1997
  h("g", { class: "stroke-secondary" },
1998
1998
  h("path", { d: "M10.967 4.2h1.467" }),
1999
- h("path", { d: "M17.934 23.267l-2.2.366.366-2.2 6.234-6.233 1.833 1.833z", class: "filled" }))))
1999
+ h("path", { d: "M17.934 23.267l-2.2.366.366-2.2 6.234-6.233 1.833 1.833z", class: "filled" })))),
2000
2000
  },
2001
2001
  'mobile-heart': {
2002
2002
  markup: () => (h("g", null,
2003
2003
  h("path", { class: "stroke-primary", d: "M4 6.4h15.4M4 18.133h8.433M16.467 24h-11C4.657 24 4 23.343 4 22.533V3.467C4 2.657 4.657 2 5.467 2h12.466c.81 0 1.467.657 1.467 1.467v9.166" }),
2004
2004
  h("g", { class: "stroke-secondary" },
2005
2005
  h("path", { d: "M10.967 4.2h1.467" }),
2006
- h("path", { d: "M23.097 15.927c-1.07-1.108-2.856-.926-3.697.384a2.351 2.351 0 0 0-3.697-.384 2.546 2.546 0 0 0 0 3.513l3.697 3.827 3.697-3.827a2.546 2.546 0 0 0 0-3.513z", class: "filled" }))))
2006
+ h("path", { d: "M23.097 15.927c-1.07-1.108-2.856-.926-3.697.384a2.351 2.351 0 0 0-3.697-.384 2.546 2.546 0 0 0 0 3.513l3.697 3.827 3.697-3.827a2.546 2.546 0 0 0 0-3.513z", class: "filled" })))),
2007
2007
  },
2008
2008
  'mobile-location': {
2009
2009
  markup: () => (h("g", null,
@@ -2011,7 +2011,7 @@ const icons = {
2011
2011
  h("g", { class: "stroke-secondary", transform: "translate(10.733 4.1)" },
2012
2012
  h("path", { d: "M5 13.667a3.667 3.667 0 1 1 7.333 0c0 2.245-3.666 5.866-3.666 5.866S5 15.913 5 13.667z", class: "filled" }),
2013
2013
  h("circle", { cx: "8.667", cy: "13.667", r: "1" }),
2014
- h("path", { d: "M.233.1H1.7" }))))
2014
+ h("path", { d: "M.233.1H1.7" })))),
2015
2015
  },
2016
2016
  'mobile-lock': {
2017
2017
  markup: () => (h("g", null,
@@ -2020,26 +2020,26 @@ const icons = {
2020
2020
  h("path", { d: "M.767.467h1.466" }),
2021
2021
  h("path", { d: "M7 15.133h7.333v5.133H7z", class: "filled" }),
2022
2022
  h("path", { d: "M8.467 15.133V12.2a2.2 2.2 0 0 1 2.2-2.2 2.2 2.2 0 0 1 2.2 2.2v2.933" }),
2023
- h("circle", { cx: "10.667", cy: "17.7", r: "1" }))))
2023
+ h("circle", { cx: "10.667", cy: "17.7", r: "1" })))),
2024
2024
  },
2025
2025
  'mobile-remove': {
2026
2026
  markup: () => (h("g", null,
2027
2027
  h("path", { class: "stroke-primary", d: "M4 6.4h15.4M4 18.133h8.8M14.267 24h-8.8C4.657 24 4 23.343 4 22.533V3.467C4 2.657 4.657 2 5.467 2h12.466c.81 0 1.467.657 1.467 1.467V15.2" }),
2028
2028
  h("g", { class: "stroke-secondary", transform: "translate(10 4.2)" },
2029
2029
  h("circle", { cx: "9.4", cy: "15.4", r: "4.4", class: "filled" }),
2030
- h("path", { d: "M7.933 15.4h2.934M.967 0h1.466" }))))
2030
+ h("path", { d: "M7.933 15.4h2.934M.967 0h1.466" })))),
2031
2031
  },
2032
2032
  'mobile-rotate': {
2033
2033
  markup: () => (h("g", null,
2034
2034
  h("path", { class: "stroke-primary", d: "M3.75 13.084l9.334-9.334M11.45 20.784l9.334-9.334m2.786 4.86l-7.26 7.26a1.467 1.467 0 0 1-2.074 0L2.43 11.763a1.467 1.467 0 0 1 0-2.074l7.26-7.26a1.467 1.467 0 0 1 2.074 0L23.57 14.238a1.466 1.466 0 0 1 0 2.074z" }),
2035
- h("path", { class: "stroke-secondary", d: "M7.867 24A5.866 5.866 0 0 1 2 18.133M24 7.867A5.866 5.866 0 0 0 18.133 2" })))
2035
+ h("path", { class: "stroke-secondary", d: "M7.867 24A5.866 5.866 0 0 1 2 18.133M24 7.867A5.866 5.866 0 0 0 18.133 2" }))),
2036
2036
  },
2037
2037
  'mobile-search': {
2038
2038
  markup: () => (h("g", null,
2039
2039
  h("path", { class: "stroke-primary", d: "M4 6.4h15.4M4 18.133h9.167M17.2 24H5.467C4.657 24 4 23.343 4 22.533V3.467C4 2.657 4.657 2 5.467 2h12.466c.81 0 1.467.657 1.467 1.467v11" }),
2040
2040
  h("g", { class: "stroke-secondary", transform: "translate(10.733 3.467)" },
2041
2041
  h("path", { d: "M.233.733H1.7m12.833 19.8L11.26 17.26" }),
2042
- h("circle", { cx: "8.667", cy: "14.667", r: "3.667", class: "filled" }))))
2042
+ h("circle", { cx: "8.667", cy: "14.667", r: "3.667", class: "filled" })))),
2043
2043
  },
2044
2044
  'mobile-settings': {
2045
2045
  markup: () => (h("g", null,
@@ -2047,7 +2047,7 @@ const icons = {
2047
2047
  h("g", { class: "stroke-secondary", transform: "translate(10.905 3.467)" },
2048
2048
  h("path", { d: "M.062.733h1.466" }),
2049
2049
  h("path", { d: "M11.795 15.767c0-.162-.015-.32-.038-.474l1.233-1.275-.733-1.27-1.719.43a3.29 3.29 0 0 0-.823-.476L9.228 11H7.762l-.487 1.702a3.29 3.29 0 0 0-.823.476l-1.718-.43L4 14.018l1.233 1.275a3.26 3.26 0 0 0-.038.474c0 .161.015.319.038.474L4 17.515l.733 1.27 1.719-.43c.248.196.525.357.823.476l.487 1.702h1.466l.486-1.702a3.29 3.29 0 0 0 .824-.476l1.718.43.734-1.27-1.233-1.274a3.26 3.26 0 0 0 .038-.474z", class: "filled" }),
2050
- h("circle", { cx: "8.495", cy: "15.767", r: "1.1" }))))
2050
+ h("circle", { cx: "8.495", cy: "15.767", r: "1.1" })))),
2051
2051
  },
2052
2052
  'mobile-time': {
2053
2053
  markup: () => (h("g", null,
@@ -2055,7 +2055,7 @@ const icons = {
2055
2055
  h("g", { class: "stroke-secondary", transform: "translate(10 4.2)" },
2056
2056
  h("path", { d: "M.967 0h1.466" }),
2057
2057
  h("circle", { cx: "9.4", cy: "15.4", r: "4.4", class: "filled" }),
2058
- h("path", { d: "M9.4 13.567V15.4h1.833" }))))
2058
+ h("path", { d: "M9.4 13.567V15.4h1.833" })))),
2059
2059
  },
2060
2060
  'money-time': {
2061
2061
  markup: () => (h("g", null,
@@ -2063,7 +2063,7 @@ const icons = {
2063
2063
  h("path", { d: "M0 2.2v2.933c0 1.215 1.97 2.2 4.4 2.2 2.43 0 4.4-.985 4.4-2.2V2.2" }),
2064
2064
  h("path", { d: "M0 5.133v2.934c0 1.215 1.97 2.2 4.4 2.2 2.43 0 4.4-.985 4.4-2.2V5.133" }),
2065
2065
  h("ellipse", { cx: "4.4", cy: "2.2", rx: "4.4", ry: "2.2" })),
2066
- h("path", { class: "stroke-primary", d: "M11.533 6.4v5.133h-5.5M13 20.954a9.534 9.534 0 1 1 8.066-9.421" })))
2066
+ h("path", { class: "stroke-primary", d: "M11.533 6.4v5.133h-5.5M13 20.954a9.534 9.534 0 1 1 8.066-9.421" }))),
2067
2067
  },
2068
2068
  motorcycle: {
2069
2069
  markup: () => (h("g", null,
@@ -2071,7 +2071,7 @@ const icons = {
2071
2071
  h("path", { d: "M17.968 17.42c-3.118.593-5.186.801-6.205.623-.92-.162-3.02-1.052-3.02-1.052m14.192-1.416s.299-2.542-2.492-3.26c.567-.64 1.954-1.491 1.954-2.91 0-3.603-5.224-3.12-5.224-3.12.83.554 1.38 1.13 1.646 1.731.4.901-.283 1.772-.851 1.914-.436-.728-1.463-1.119-3.08-1.174-2.428-.083-3.892 2.275-3.892 2.275l-3.063-.459-2.03-.96-3.548-.709v1.42l3.548 3.548m12.373-4.078l-2.985 1.949" })),
2072
2072
  h("g", { class: "stroke-secondary filled", transform: "translate(2.355 13.871)" },
2073
2073
  h("circle", { cx: "3.194", cy: "3.194", r: "3.194" }),
2074
- h("circle", { cx: "18.452", cy: "3.548", r: "2.839" }))))
2074
+ h("circle", { cx: "18.452", cy: "3.548", r: "2.839" })))),
2075
2075
  },
2076
2076
  motorhome: {
2077
2077
  markup: () => (h("g", null,
@@ -2082,20 +2082,20 @@ const icons = {
2082
2082
  h("g", { class: "filled", transform: "translate(3.721 17.174)" },
2083
2083
  h("circle", { cx: "3.148", cy: "2.957", r: "2.164" }),
2084
2084
  h("circle", { cx: "15.049", cy: "2.957", r: "2.164" })),
2085
- h("path", { d: "M5 9h5v4H5zm17.495 7.504h1.324V18h-1.324zm-7-4.504h2.023l1.92 2.547h-3.943zm2.497-3.983h-4" }))))
2085
+ h("path", { d: "M5 9h5v4H5zm17.495 7.504h1.324V18h-1.324zm-7-4.504h2.023l1.92 2.547h-3.943zm2.497-3.983h-4" })))),
2086
2086
  },
2087
2087
  movie: {
2088
2088
  markup: () => (h("g", null,
2089
2089
  h("path", { d: "M4 11h19v13H4z", class: "stroke-primary" }),
2090
2090
  h("path", { d: "M11.339 13.887l5.677 3.548-5.677 3.549z", class: "stroke-secondary filled" }),
2091
- h("path", { class: "stroke-secondary", d: "M20.934 6.107L18.31 2.885m-1.59 3.829l-2.622-3.217m-1.593 3.825L9.887 4.108M8.29 7.929L5.659 4.723M3.886 8.565l19.225-2.772-.554-3.524L3.38 5.052z" })))
2091
+ h("path", { class: "stroke-secondary", d: "M20.934 6.107L18.31 2.885m-1.59 3.829l-2.622-3.217m-1.593 3.825L9.887 4.108M8.29 7.929L5.659 4.723M3.886 8.565l19.225-2.772-.554-3.524L3.38 5.052z" }))),
2092
2092
  },
2093
2093
  music: {
2094
2094
  markup: () => (h("g", null,
2095
2095
  h("path", { class: "stroke-secondary", d: "M9.135 7.107h14.57m.001 11.393V2H9.135v18.857" }),
2096
2096
  h("g", { class: "stroke-primary", transform: "translate(3 15.357)" },
2097
2097
  h("ellipse", { cx: "3.068", cy: "5.5", rx: "3.068", ry: "3.143" }),
2098
- h("ellipse", { cx: "17.638", cy: "3.143", rx: "3.068", ry: "3.143" }))))
2098
+ h("ellipse", { cx: "17.638", cy: "3.143", rx: "3.068", ry: "3.143" })))),
2099
2099
  },
2100
2100
  'nest-egg': {
2101
2101
  markup: () => (h("g", null,
@@ -2105,7 +2105,7 @@ const icons = {
2105
2105
  h("g", { class: "stroke-secondary" },
2106
2106
  h("path", { d: "M5.84 12.59C5.84 7.047 9.04 2 13.04 2c3.967 0 7.2 5.048 7.2 10.59 0 1.89-.717 3.247-.954 3.884-1.4.512-3.364 1.351-6.246 1.351-2.882 0-5.291-.744-6.056-1.281-.232-.63-1.144-2.064-1.144-3.955z", class: "filled" }),
2107
2107
  h("path", { d: "M15.44 7.23c-1.226-.603-4.8-.875-4.8 1.285 0 2.694 4.8 1.645 4.8 4.022 0 2.377-2.836 2.2-4.8 1.426m2.4-8.123v9.6" })),
2108
- h("path", { class: "stroke-primary", d: "M4.795 15.263c1.07.728 3.263 2.562 8.367 2.562 2.503 0 5.164-.753 7.985-2.26" })))
2108
+ h("path", { class: "stroke-primary", d: "M4.795 15.263c1.07.728 3.263 2.562 8.367 2.562 2.503 0 5.164-.753 7.985-2.26" }))),
2109
2109
  },
2110
2110
  newspaper: {
2111
2111
  markup: () => (h("g", null,
@@ -2113,13 +2113,13 @@ const icons = {
2113
2113
  h("path", { d: "M6.4 14.467H2V21.8c0 1.21.99 2.2 2.2 2.2" }),
2114
2114
  h("path", { d: "M6.4 2v19.8c0 1.21-.99 2.2-2.2 2.2h17.6c1.21 0 2.2-.99 2.2-2.2V2H6.4z" })),
2115
2115
  h("path", { class: "stroke-secondary", d: "M17.4 5.667h2.934M17.4 9.334h2.934M10.067 13h10.267M13 20.334h-2.933M13 16.667h-2.933" }),
2116
- h("path", { class: "stroke-secondary filled", d: "M10.067 5.667h4.4v3.667h-4.4zm5.867 11h4.4v3.667h-4.4z" })))
2116
+ h("path", { class: "stroke-secondary filled", d: "M10.067 5.667h4.4v3.667h-4.4zm5.867 11h4.4v3.667h-4.4z" }))),
2117
2117
  },
2118
2118
  options: {
2119
2119
  markup: () => (h("g", { class: "stroke-primary uniform" },
2120
2120
  h("circle", { cx: "13", cy: "22", r: "1.45" }),
2121
2121
  h("circle", { cx: "13", cy: "13", r: "1.45" }),
2122
- h("circle", { cx: "13", cy: "4", r: "1.45" })))
2122
+ h("circle", { cx: "13", cy: "4", r: "1.45" }))),
2123
2123
  },
2124
2124
  'os-android': {
2125
2125
  markup: () => (h("g", null,
@@ -2127,36 +2127,36 @@ const icons = {
2127
2127
  h("path", { class: "stroke-primary", d: "M5.262 16.606a1.082 1.082 0 0 1-1.082-1.082v-5.049a1.081 1.081 0 1 1 2.164 0v5.05c0 .597-.484 1.081-1.082 1.081zm15.868 0a1.082 1.082 0 0 1-1.081-1.082v-5.049a1.082 1.082 0 0 1 2.164 0v5.05c0 .597-.485 1.081-1.082 1.081zM7.787 9.033h10.82m-.001 0a5.41 5.41 0 0 0-10.82 0v10.098H9.59v3.606a1.082 1.082 0 1 0 2.164 0v-3.606h2.885v3.606a1.082 1.082 0 1 0 2.164 0v-3.606h1.803V9.032z" }),
2128
2128
  h("g", { class: "stroke-secondary filled", transform: "translate(10.311 5.787)" },
2129
2129
  h("circle", { cx: ".721", cy: ".721", r: "1" }),
2130
- h("circle", { cx: "5.049", cy: ".721", r: "1" }))))
2130
+ h("circle", { cx: "5.049", cy: ".721", r: "1" })))),
2131
2131
  },
2132
2132
  'os-android-color': {
2133
2133
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
2134
2134
  h("g", { "fill-rule": "nonzero", transform: "translate(4 2)" },
2135
2135
  h("path", { fill: "#72C472", d: "M1.196 14.348c-.66 0-1.196-.535-1.196-1.196v-5.26a1.195 1.195 0 1 1 2.391 0v5.26c0 .66-.535 1.196-1.195 1.196zm14.826 0c-.66 0-1.196-.535-1.196-1.196v-5.26a1.195 1.195 0 1 1 2.391 0v5.26c0 .66-.535 1.196-1.195 1.196zM2.87 6.696v10.043c0 .529.428.957.956.957h.957v3.108a1.195 1.195 0 1 0 2.39 0v-3.108h2.87v3.108a1.195 1.195 0 1 0 2.392 0v-3.108h.956a.956.956 0 0 0 .957-.957V6.696H2.87zm8.543-5.001L12.39.423a.24.24 0 0 0-.379-.291l-1.03 1.342A5.706 5.706 0 0 0 8.608.957c-.847 0-1.648.188-2.371.518L5.208.132a.24.24 0 0 0-.38.291l.976 1.272a5.737 5.737 0 0 0-2.91 4.522h11.43a5.738 5.738 0 0 0-2.91-4.522z" }),
2136
2136
  h("circle", { cx: "5.978", cy: "3.587", r: "1", fill: "#FFF" }),
2137
- h("circle", { cx: "11.239", cy: "3.587", r: "1", fill: "#FFF" }))))
2137
+ h("circle", { cx: "11.239", cy: "3.587", r: "1", fill: "#FFF" })))),
2138
2138
  },
2139
2139
  'os-android-filled': {
2140
2140
  markup: () => (h("g", null,
2141
- h("path", { d: "M18.348 8.696v10.043a.956.956 0 0 1-.957.957h-.956v3.108a1.195 1.195 0 1 1-2.392 0v-3.108h-2.87v3.108a1.195 1.195 0 1 1-2.39 0v-3.108h-.957a.956.956 0 0 1-.956-.957V8.696h11.478zm-13.152 0c.66 0 1.195.535 1.195 1.195v5.261c0 .62-.47 1.128-1.073 1.19l-.122.006c-.66 0-1.196-.535-1.196-1.196v-5.26c0-.62.47-1.129 1.073-1.19l.123-.006zm14.826 0c.66 0 1.195.535 1.195 1.195v5.261c0 .62-.47 1.128-1.073 1.19l-.122.006c-.66 0-1.196-.535-1.196-1.196v-5.26c0-.62.47-1.129 1.073-1.19l.123-.006zM16.01 2.132a.239.239 0 1 1 .38.291l-.977 1.272a5.738 5.738 0 0 1 2.91 4.522H6.894a5.737 5.737 0 0 1 2.911-4.522l-.976-1.271a.24.24 0 0 1 .38-.292l1.03 1.343a5.699 5.699 0 0 1 2.37-.518c.848 0 1.648.188 2.371.517zM9.978 4.87a.718.718 0 1 0 0 1.435.718.718 0 0 0 0-1.435zm5.261 0a.718.718 0 1 0 0 1.435.718.718 0 0 0 0-1.435z", class: "filled" })))
2141
+ h("path", { d: "M18.348 8.696v10.043a.956.956 0 0 1-.957.957h-.956v3.108a1.195 1.195 0 1 1-2.392 0v-3.108h-2.87v3.108a1.195 1.195 0 1 1-2.39 0v-3.108h-.957a.956.956 0 0 1-.956-.957V8.696h11.478zm-13.152 0c.66 0 1.195.535 1.195 1.195v5.261c0 .62-.47 1.128-1.073 1.19l-.122.006c-.66 0-1.196-.535-1.196-1.196v-5.26c0-.62.47-1.129 1.073-1.19l.123-.006zm14.826 0c.66 0 1.195.535 1.195 1.195v5.261c0 .62-.47 1.128-1.073 1.19l-.122.006c-.66 0-1.196-.535-1.196-1.196v-5.26c0-.62.47-1.129 1.073-1.19l.123-.006zM16.01 2.132a.239.239 0 1 1 .38.291l-.977 1.272a5.738 5.738 0 0 1 2.91 4.522H6.894a5.737 5.737 0 0 1 2.911-4.522l-.976-1.271a.24.24 0 0 1 .38-.292l1.03 1.343a5.699 5.699 0 0 1 2.37-.518c.848 0 1.648.188 2.371.517zM9.978 4.87a.718.718 0 1 0 0 1.435.718.718 0 0 0 0-1.435zm5.261 0a.718.718 0 1 0 0 1.435.718.718 0 0 0 0-1.435z", class: "filled" }))),
2142
2142
  },
2143
2143
  'os-apple': {
2144
2144
  markup: () => (h("g", null,
2145
2145
  h("path", { d: "M21.492 18.552c-.473 1.03-.7 1.49-1.31 2.399-.849 1.27-2.047 2.852-3.532 2.865-1.319.013-1.658-.842-3.448-.832-1.79.01-2.164.848-3.483.836-1.485-.014-2.62-1.442-3.47-2.713-2.376-3.552-2.624-7.721-1.159-9.937 1.042-1.576 2.686-2.497 4.23-2.497 1.574 0 2.563.847 3.864.847 1.262 0 2.031-.848 3.85-.848 1.375 0 2.832.735 3.87 2.005-3.401 1.83-2.848 6.6.588 7.875z", class: "stroke-primary" }),
2146
- h("path", { d: "M16.125 5.587c.69-.884 1.211-2.131 1.022-3.407-1.125.077-2.44.793-3.208 1.726-.698.846-1.274 2.102-1.05 3.322 1.228.039 2.498-.695 3.236-1.641z", class: "stroke-secondary" })))
2146
+ h("path", { d: "M16.125 5.587c.69-.884 1.211-2.131 1.022-3.407-1.125.077-2.44.793-3.208 1.726-.698.846-1.274 2.102-1.05 3.322 1.228.039 2.498-.695 3.236-1.641z", class: "stroke-secondary" }))),
2147
2147
  },
2148
2148
  'os-apple-color': {
2149
2149
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
2150
- h("path", { fill: "#B3B3B3", "fill-rule": "nonzero", d: "M17.494 7.808c1.444 0 2.973.786 4.063 2.144-3.571 1.956-2.99 7.054.616 8.417-.497 1.1-.734 1.592-1.374 2.564-.892 1.358-2.15 3.05-3.708 3.064-1.385.013-1.74-.901-3.62-.89-1.88.01-2.271.906-3.656.893-1.558-.014-2.75-1.541-3.642-2.9-2.494-3.797-2.755-8.253-1.216-10.622C6.05 8.794 7.775 7.81 9.397 7.81c1.652 0 2.69.906 4.056.906 1.325 0 2.131-.907 4.041-.907zM17.276 2c.19 1.285-.335 2.541-1.03 3.432-.743.954-2.023 1.693-3.26 1.654-.225-1.23.355-2.495 1.057-3.348.774-.94 2.1-1.66 3.233-1.738z" })))
2150
+ h("path", { fill: "#B3B3B3", "fill-rule": "nonzero", d: "M17.494 7.808c1.444 0 2.973.786 4.063 2.144-3.571 1.956-2.99 7.054.616 8.417-.497 1.1-.734 1.592-1.374 2.564-.892 1.358-2.15 3.05-3.708 3.064-1.385.013-1.74-.901-3.62-.89-1.88.01-2.271.906-3.656.893-1.558-.014-2.75-1.541-3.642-2.9-2.494-3.797-2.755-8.253-1.216-10.622C6.05 8.794 7.775 7.81 9.397 7.81c1.652 0 2.69.906 4.056.906 1.325 0 2.131-.907 4.041-.907zM17.276 2c.19 1.285-.335 2.541-1.03 3.432-.743.954-2.023 1.693-3.26 1.654-.225-1.23.355-2.495 1.057-3.348.774-.94 2.1-1.66 3.233-1.738z" }))),
2151
2151
  },
2152
2152
  'os-apple-filled': {
2153
2153
  markup: () => (h("g", null,
2154
- h("path", { d: "M17.494 7.808c1.444 0 2.973.786 4.063 2.144-3.571 1.956-2.99 7.054.616 8.417-.497 1.1-.734 1.592-1.374 2.564-.892 1.358-2.15 3.05-3.708 3.064-1.385.013-1.74-.901-3.62-.89-1.88.01-2.271.906-3.656.893-1.558-.014-2.75-1.541-3.642-2.9-2.494-3.797-2.755-8.253-1.216-10.622C6.05 8.794 7.775 7.81 9.397 7.81c1.652 0 2.69.906 4.056.906 1.325 0 2.131-.907 4.041-.907zM17.276 2c.19 1.285-.335 2.541-1.03 3.432-.743.954-2.023 1.693-3.26 1.654-.225-1.23.355-2.495 1.057-3.348.774-.94 2.1-1.66 3.233-1.738z", class: "filled" })))
2154
+ h("path", { d: "M17.494 7.808c1.444 0 2.973.786 4.063 2.144-3.571 1.956-2.99 7.054.616 8.417-.497 1.1-.734 1.592-1.374 2.564-.892 1.358-2.15 3.05-3.708 3.064-1.385.013-1.74-.901-3.62-.89-1.88.01-2.271.906-3.656.893-1.558-.014-2.75-1.541-3.642-2.9-2.494-3.797-2.755-8.253-1.216-10.622C6.05 8.794 7.775 7.81 9.397 7.81c1.652 0 2.69.906 4.056.906 1.325 0 2.131-.907 4.041-.907zM17.276 2c.19 1.285-.335 2.541-1.03 3.432-.743.954-2.023 1.693-3.26 1.654-.225-1.23.355-2.495 1.057-3.348.774-.94 2.1-1.66 3.233-1.738z", class: "filled" }))),
2155
2155
  },
2156
2156
  'os-windows': {
2157
2157
  markup: () => (h("g", null,
2158
2158
  h("g", { class: "stroke-primary filled" },
2159
- h("path", { d: "M2.256 2.256h9.209v9.209H2.256zm21.489 9.208h-9.209V2.255h9.209zM2.256 14.535h9.209v9.209H2.256zm21.489 9.21h-9.209v-9.209h9.209z" }))))
2159
+ h("path", { d: "M2.256 2.256h9.209v9.209H2.256zm21.489 9.208h-9.209V2.255h9.209zM2.256 14.535h9.209v9.209H2.256zm21.489 9.21h-9.209v-9.209h9.209z" })))),
2160
2160
  },
2161
2161
  'os-windows-color': {
2162
2162
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
@@ -2164,11 +2164,11 @@ const icons = {
2164
2164
  h("path", { fill: "#E86C60", d: "M2 2h10.476v10.476H2z" }),
2165
2165
  h("path", { fill: "#72C472", d: "M13.524 2H24v10.476H13.524z" }),
2166
2166
  h("path", { fill: "#43A6DD", d: "M2 13.524h10.476V24H2z" }),
2167
- h("path", { fill: "#EFD358", d: "M13.524 13.524H24V24H13.524z" }))))
2167
+ h("path", { fill: "#EFD358", d: "M13.524 13.524H24V24H13.524z" })))),
2168
2168
  },
2169
2169
  'os-windows-filled': {
2170
2170
  markup: () => (h("g", null,
2171
- h("path", { d: "M12.476 13.524V24H2V13.524h10.476zm11.524 0V24H13.524V13.524H24zM12.476 2v10.476H2V2h10.476zM24 2v10.476H13.524V2H24z", class: "filled" })))
2171
+ h("path", { d: "M12.476 13.524V24H2V13.524h10.476zm11.524 0V24H13.524V13.524H24zM12.476 2v10.476H2V2h10.476zM24 2v10.476H13.524V2H24z", class: "filled" }))),
2172
2172
  },
2173
2173
  palette: {
2174
2174
  markup: () => (h("g", null,
@@ -2178,22 +2178,22 @@ const icons = {
2178
2178
  h("g", { transform: "translate(3.933 8.7)", class: "stroke-secondary filled" },
2179
2179
  h("circle", { cx: "1.467", cy: "1.467", r: "1.467" }),
2180
2180
  h("circle", { cx: "2.933", cy: "6.6", r: "1.467" }),
2181
- h("circle", { cx: "8.067", cy: "8.8", r: "1.467" }))))
2181
+ h("circle", { cx: "8.067", cy: "8.8", r: "1.467" })))),
2182
2182
  },
2183
2183
  paperclip: {
2184
- markup: () => (h("path", { d: "M23.138 13.423L14.762 21.8c-2.624 2.623-6.939 2.623-9.562 0-2.623-2.623-2.623-6.938 0-9.562l8.63-8.673a4.673 4.673 0 0 1 6.6 0 4.673 4.673 0 0 1 0 6.6l-8.08 8.039c-.973.973-2.58.973-3.596 0-.973-.973-.973-2.58 0-3.596l7.784-7.743", class: "stroke-primary" }))
2184
+ markup: () => (h("path", { d: "M23.138 13.423L14.762 21.8c-2.624 2.623-6.939 2.623-9.562 0-2.623-2.623-2.623-6.938 0-9.562l8.63-8.673a4.673 4.673 0 0 1 6.6 0 4.673 4.673 0 0 1 0 6.6l-8.08 8.039c-.973.973-2.58.973-3.596 0-.973-.973-.973-2.58 0-3.596l7.784-7.743", class: "stroke-primary" })),
2185
2185
  },
2186
2186
  'paper-plane': {
2187
2187
  markup: () => (h("g", null,
2188
2188
  h("path", { d: "M8.212 14.785l-.03 6.858 3.727-4.169z", class: "stroke-primary filled" }),
2189
2189
  h("g", { class: "stroke-primary" },
2190
2190
  h("path", { d: "M2.879 10.8L22 4 8.224 14.775z" }),
2191
- h("path", { d: "M8.207 14.783L22 4l-3.393 18.321z" }))))
2191
+ h("path", { d: "M8.207 14.783L22 4l-3.393 18.321z" })))),
2192
2192
  },
2193
2193
  pause: {
2194
2194
  markup: () => (h("g", null,
2195
2195
  h("g", { class: "stroke-primary filled" },
2196
- h("path", { d: "M5 3h5.517v19.31H5zm11 0h5.517v19.31H16z" }))))
2196
+ h("path", { d: "M5 3h5.517v19.31H5zm11 0h5.517v19.31H16z" })))),
2197
2197
  },
2198
2198
  paw: {
2199
2199
  markup: () => (h("g", null,
@@ -2202,33 +2202,33 @@ const icons = {
2202
2202
  h("ellipse", { cx: "2.75", cy: "9.356", rx: "1.75", ry: "2.5", transform: "rotate(-17.103 2.75 9.356)" }),
2203
2203
  h("ellipse", { cx: "19.75", cy: "9.356", rx: "1.75", ry: "2.5", transform: "rotate(-162.897 19.75 9.356)" }),
2204
2204
  h("ellipse", { cx: "15.002", cy: "4.003", rx: "2", ry: "3", transform: "rotate(3.105 15.002 4.003)" })),
2205
- h("path", { d: "M9.074 13.617l-1.815 3.34c-1.513 2.786 1.078 6.068 3.876 4.91l.157-.066a4.443 4.443 0 0 1 3.416 0l.157.065c2.798 1.159 5.389-2.123 3.876-4.908l-1.815-3.34c-1.89-2.973-5.963-2.973-7.852 0z", class: "stroke-primary" })))
2205
+ h("path", { d: "M9.074 13.617l-1.815 3.34c-1.513 2.786 1.078 6.068 3.876 4.91l.157-.066a4.443 4.443 0 0 1 3.416 0l.157.065c2.798 1.159 5.389-2.123 3.876-4.908l-1.815-3.34c-1.89-2.973-5.963-2.973-7.852 0z", class: "stroke-primary" }))),
2206
2206
  },
2207
2207
  people: {
2208
2208
  markup: () => (h("g", null,
2209
2209
  h("g", { class: "stroke-primary" },
2210
2210
  h("path", { d: "M11.167 15.611H7.5a5.5 5.5 0 0 0-5.5 5.5s2.75 1.222 7.333 1.222c4.584 0 7.334-1.222 7.334-1.222a5.5 5.5 0 0 0-5.5-5.5zm3.531-.487c.681-.557 1.582-.835 2.702-.835h2.933a4.4 4.4 0 0 1 4.4 4.4s-2.2.978-5.866.978c-.358 0-.7-.01-1.03-.026" })),
2211
2211
  h("g", { class: "stroke-secondary filled" },
2212
- h("path", { d: "M5.056 8.278a4.278 4.278 0 1 1 8.556 0c0 2.362-1.916 4.889-4.278 4.889-2.363 0-4.278-2.527-4.278-4.89zm10.389.144a3.422 3.422 0 1 1 6.844 0c0 1.89-1.532 3.911-3.422 3.911-1.89 0-3.422-2.02-3.422-3.91z" }))))
2212
+ h("path", { d: "M5.056 8.278a4.278 4.278 0 1 1 8.556 0c0 2.362-1.916 4.889-4.278 4.889-2.363 0-4.278-2.527-4.278-4.89zm10.389.144a3.422 3.422 0 1 1 6.844 0c0 1.89-1.532 3.911-3.422 3.911-1.89 0-3.422-2.02-3.422-3.91z" })))),
2213
2213
  },
2214
2214
  'people-group': {
2215
2215
  markup: () => (h("g", null,
2216
2216
  h("g", { class: "stroke-primary" },
2217
2217
  h("path", { d: "M14.538 15.038h-2.539a3.808 3.808 0 0 0-3.807 3.808s1.903.846 5.076.846c3.174 0 5.077-.846 5.077-.846a3.808 3.808 0 0 0-3.807-3.808zm2.445-.337c.472-.385 1.096-.578 1.87-.578h2.032a3.046 3.046 0 0 1 3.046 3.046s-1.523.677-4.062.677a14 14 0 0 1-.712-.018m-9.679-3.127c-.472-.385-1.096-.578-1.871-.578h-2.03a3.046 3.046 0 0 0-3.047 3.046s1.523.677 4.062.677a14 14 0 0 0 .712-.018" })),
2218
2218
  h("g", { class: "stroke-secondary filled" },
2219
- h("path", { d: "M10.308 9.962a2.962 2.962 0 1 1 5.923 0c0 1.635-1.326 3.384-2.962 3.384-1.635 0-2.961-1.749-2.961-3.384zm7.192.1a2.37 2.37 0 1 1 4.738 0c0 1.308-1.06 2.707-2.369 2.707-1.308 0-2.37-1.399-2.37-2.707zm-8.538 0a2.37 2.37 0 1 0-4.738 0c0 1.308 1.06 2.707 2.369 2.707 1.308.001 2.369-1.399 2.369-2.707z" }))))
2219
+ h("path", { d: "M10.308 9.962a2.962 2.962 0 1 1 5.923 0c0 1.635-1.326 3.384-2.962 3.384-1.635 0-2.961-1.749-2.961-3.384zm7.192.1a2.37 2.37 0 1 1 4.738 0c0 1.308-1.06 2.707-2.369 2.707-1.308 0-2.37-1.399-2.37-2.707zm-8.538 0a2.37 2.37 0 1 0-4.738 0c0 1.308 1.06 2.707 2.369 2.707 1.308.001 2.369-1.399 2.369-2.707z" })))),
2220
2220
  },
2221
2221
  percent: {
2222
2222
  markup: () => (h("g", null,
2223
2223
  h("g", { class: "stroke-secondary" },
2224
2224
  h("ellipse", { cx: "5.793", cy: "7.69", rx: "3.793", ry: "5.69" }),
2225
2225
  h("ellipse", { cx: "18.69", cy: "18.31", rx: "3.793", ry: "5.69" })),
2226
- h("path", { d: "M6.172 23.62L18.31 2.38", class: "stroke-primary" })))
2226
+ h("path", { d: "M6.172 23.62L18.31 2.38", class: "stroke-primary" }))),
2227
2227
  },
2228
2228
  person: {
2229
2229
  markup: () => (h("g", { transform: "translate(3, 1)" },
2230
2230
  h("path", { class: "stroke-primary", d: "M12 14.933H7.6a6.6 6.6 0 00-6.6 6.6h0S4.3 23 9.8 23c5.5 0 8.8-1.467 8.8-1.467h0a6.6 6.6 0 00-6.6-6.6z" }),
2231
- h("path", { class: "stroke-secondary filled", d: "M4.667 6.133a5.133 5.133 0 1110.266 0C14.933 8.968 12.635 12 9.8 12S4.667 8.968 4.667 6.133z" })))
2231
+ h("path", { class: "stroke-secondary filled", d: "M4.667 6.133a5.133 5.133 0 1110.266 0C14.933 8.968 12.635 12 9.8 12S4.667 8.968 4.667 6.133z" }))),
2232
2232
  },
2233
2233
  'person-add': {
2234
2234
  markup: () => (h("g", null,
@@ -2237,7 +2237,7 @@ const icons = {
2237
2237
  h("path", { d: "M7.667 7.133a5.133 5.133 0 1 1 10.266 0C17.933 9.968 15.635 13 12.8 13S7.667 9.968 7.667 7.133z", class: "stroke-secondary filled" })),
2238
2238
  h("g", { class: "stroke-secondary", transform: "translate(15.164 13.721)" },
2239
2239
  h("circle", { cx: "4.328", cy: "4.328", r: "4.328", class: "filled" }),
2240
- h("path", { d: "M4.328 2.885V5.77M2.885 4.328H5.77" }))))
2240
+ h("path", { d: "M4.328 2.885V5.77M2.885 4.328H5.77" })))),
2241
2241
  },
2242
2242
  'person-lock': {
2243
2243
  markup: () => (h("g", null,
@@ -2247,7 +2247,7 @@ const icons = {
2247
2247
  h("g", { class: "stroke-secondary", transform: "translate(16.2 11.733)" },
2248
2248
  h("path", { d: "M0 5.133h7.333v5.133H0z", class: "filled" }),
2249
2249
  h("path", { d: "M1.467 5.133V2.2a2.2 2.2 0 0 1 2.2-2.2 2.2 2.2 0 0 1 2.2 2.2v2.933" }),
2250
- h("circle", { cx: "3.667", cy: "7.7", r: "1" }))))
2250
+ h("circle", { cx: "3.667", cy: "7.7", r: "1" })))),
2251
2251
  },
2252
2252
  'person-remove': {
2253
2253
  markup: () => (h("g", null,
@@ -2256,7 +2256,7 @@ const icons = {
2256
2256
  h("path", { d: "M2.885 4.328H5.77" })),
2257
2257
  h("g", null,
2258
2258
  h("path", { d: "M13.207 15.933H10.6a6.6 6.6 0 0 0-6.6 6.6S7.3 24 12.8 24c1.078 0 2.072-.056 2.972-.147", class: "stroke-primary" }),
2259
- h("path", { d: "M7.667 7.133a5.133 5.133 0 1 1 10.266 0C17.933 9.968 15.635 13 12.8 13S7.667 9.968 7.667 7.133z", class: "stroke-secondary filled" }))))
2259
+ h("path", { d: "M7.667 7.133a5.133 5.133 0 1 1 10.266 0C17.933 9.968 15.635 13 12.8 13S7.667 9.968 7.667 7.133z", class: "stroke-secondary filled" })))),
2260
2260
  },
2261
2261
  'person-settings': {
2262
2262
  markup: () => (h("g", null,
@@ -2265,7 +2265,7 @@ const icons = {
2265
2265
  h("path", { d: "M7.667 7.133a5.133 5.133 0 1 1 10.266 0C17.933 9.968 15.635 13 12.8 13S7.667 9.968 7.667 7.133z", class: "stroke-secondary filled" })),
2266
2266
  h("g", { class: "stroke-secondary", transform: "translate(14.905 13.467)" },
2267
2267
  h("path", { d: "M7.795 4.767c0-.162-.015-.32-.038-.474L8.99 3.018l-.733-1.27-1.719.43a3.29 3.29 0 0 0-.823-.476L5.228 0H3.762l-.487 1.702a3.29 3.29 0 0 0-.823.476l-1.718-.43L0 3.018l1.233 1.275a3.26 3.26 0 0 0-.038.474c0 .161.015.319.038.474L0 6.515l.733 1.27 1.719-.43c.248.196.525.357.823.476l.487 1.702h1.466l.487-1.702a3.29 3.29 0 0 0 .823-.476l1.718.43.734-1.27L7.757 5.24a3.26 3.26 0 0 0 .038-.474z", class: "filled" }),
2268
- h("circle", { cx: "4.495", cy: "4.767", r: "1.1" }))))
2268
+ h("circle", { cx: "4.495", cy: "4.767", r: "1.1" })))),
2269
2269
  },
2270
2270
  'person-to-person': {
2271
2271
  markup: () => (h("g", null,
@@ -2277,27 +2277,27 @@ const icons = {
2277
2277
  h("g", { class: "stroke-primary" },
2278
2278
  h("path", { d: "M13.733 5.667h4.4A2.933 2.933 0 0 1 21.067 8.6v2.2" }),
2279
2279
  h("path", { d: "M16.667 2.733l-2.934 2.934L16.667 8.6M12.267 20.333h-4.4A2.933 2.933 0 0 1 4.933 17.4v-2.2" }),
2280
- h("path", { d: "M9.333 23.267l2.934-2.934L9.333 17.4" }))))
2280
+ h("path", { d: "M9.333 23.267l2.934-2.934L9.333 17.4" })))),
2281
2281
  },
2282
2282
  'personal-care': {
2283
2283
  markup: () => (h("g", null,
2284
2284
  h("path", { class: "stroke-primary", d: "M6.397 5.972H8.52M6.397 7.194H8.52M6.397 3.528H8.52M6.397 4.75H8.52m4.424 1.528h4.889l1.834 17.72h-8.556zm-.305 7.639l5.5-1.223m-5.5 3.056l5.5-1.222M10 24h11" }),
2285
- h("path", { class: "stroke-secondary", d: "M5 2h1.222v22H5zm9.167 0h2.444v3.667h-2.444z" })))
2285
+ h("path", { class: "stroke-secondary", d: "M5 2h1.222v22H5zm9.167 0h2.444v3.667h-2.444z" }))),
2286
2286
  },
2287
2287
  phone: {
2288
2288
  markup: () => (h("g", null,
2289
2289
  h("path", { class: "stroke-primary", d: "M5.18 6.508h15.148M5.18 18.049h15.148m-1.443 5.77H6.623a1.443 1.443 0 0 1-1.443-1.442V3.623c0-.797.646-1.443 1.443-1.443h12.262c.797 0 1.443.646 1.443 1.443v18.754c0 .796-.646 1.442-1.443 1.442z" }),
2290
- h("path", { d: "M12.033 4.344h1.442", class: "stroke-secondary" })))
2290
+ h("path", { d: "M12.033 4.344h1.442", class: "stroke-secondary" }))),
2291
2291
  },
2292
2292
  piechart: {
2293
2293
  markup: () => (h("g", null,
2294
2294
  h("path", { d: "M11.533 4.933a9.534 9.534 0 1 0 9.534 9.534h-9.534V4.933z", class: "stroke-primary" }),
2295
- h("path", { d: "M14.467 2v9.533H24A9.534 9.534 0 0 0 14.467 2z", class: "stroke-secondary filled" })))
2295
+ h("path", { d: "M14.467 2v9.533H24A9.534 9.534 0 0 0 14.467 2z", class: "stroke-secondary filled" }))),
2296
2296
  },
2297
2297
  'piechart-expanded': {
2298
2298
  markup: () => (h("g", null,
2299
2299
  h("path", { d: "M18.06 20.187A8.778 8.778 0 0 1 10.8 24 8.779 8.779 0 0 1 2 15.2c0-4.877 3.923-8.8 8.8-8.8", class: "stroke-primary" }),
2300
- h("path", { d: "M21.69 22.68A13.094 13.094 0 0 0 24 15.2C24 7.903 18.097 2 10.8 2v13.2l10.89 7.48z", class: "stroke-secondary filled" })))
2300
+ h("path", { d: "M21.69 22.68A13.094 13.094 0 0 0 24 15.2C24 7.903 18.097 2 10.8 2v13.2l10.89 7.48z", class: "stroke-secondary filled" }))),
2301
2301
  },
2302
2302
  'piggy-bank': {
2303
2303
  markup: () => (h("g", null,
@@ -2305,22 +2305,22 @@ const icons = {
2305
2305
  h("path", { d: "M15.767 2.333H8.43C6.676-.677 3.667.133 3.667.133l1.126 3.38a6.239 6.239 0 0 0-2.318 3.22H0v5.134h3.152a6.243 6.243 0 0 0 3.815 2.756V17h3.666v-2.2H14.3V17h3.667v-2.607A6.23 6.23 0 0 0 22 8.567a6.233 6.233 0 0 0-6.233-6.234z" }),
2306
2306
  h("circle", { cx: "6.233", cy: "7.1", r: "1.1" }),
2307
2307
  h("path", { d: "M10.633 4.533h4.4" })),
2308
- h("circle", { cx: "14.833", cy: "4.2", r: "2.2", class: "stroke-secondary filled" })))
2308
+ h("circle", { cx: "14.833", cy: "4.2", r: "2.2", class: "stroke-secondary filled" }))),
2309
2309
  },
2310
2310
  play: {
2311
2311
  markup: () => (h("g", null,
2312
- h("path", { d: "M6.407 23.593V2.407L21.074 13z", class: "stroke-primary filled" })))
2312
+ h("path", { d: "M6.407 23.593V2.407L21.074 13z", class: "stroke-primary filled" }))),
2313
2313
  },
2314
2314
  pricetag: {
2315
2315
  markup: () => (h("g", null,
2316
2316
  h("path", { d: "M14.737 24L24 14.737 11.263 2H2v9.263z", class: "stroke-primary" }),
2317
2317
  h("circle", { cx: "7.018", cy: "7.018", r: "1.544", class: "stroke-secondary filled" }),
2318
- h("path", { class: "stroke-secondary", d: "M13.193 10.105l4.631 4.632m-7.719-1.544l4.632 4.631" })))
2318
+ h("path", { class: "stroke-secondary", d: "M13.193 10.105l4.631 4.632m-7.719-1.544l4.632 4.631" }))),
2319
2319
  },
2320
2320
  'pricetag-blank': {
2321
2321
  markup: () => (h("g", null,
2322
2322
  h("path", { d: "M14.737 24L24 14.737 11.263 2H2v9.263z", class: "stroke-primary" }),
2323
- h("circle", { cx: "7.018", cy: "7.018", r: "1.544", class: "stroke-secondary filled" })))
2323
+ h("circle", { cx: "7.018", cy: "7.018", r: "1.544", class: "stroke-secondary filled" }))),
2324
2324
  },
2325
2325
  'pricetag-time': {
2326
2326
  markup: () => (h("g", null,
@@ -2328,7 +2328,7 @@ const icons = {
2328
2328
  h("circle", { cx: "6.847", cy: "6.847", r: "1.492", class: "stroke-secondary filled" }),
2329
2329
  h("g", { class: "stroke-secondary", transform: "translate(15.05 9.085)" },
2330
2330
  h("circle", { cx: "4.475", cy: "4.475", r: "4.475" }),
2331
- h("path", { d: "M4.475 2.61v1.865h1.864" }))))
2331
+ h("path", { d: "M4.475 2.61v1.865h1.864" })))),
2332
2332
  },
2333
2333
  print: {
2334
2334
  markup: () => (h("g", null,
@@ -2338,61 +2338,61 @@ const icons = {
2338
2338
  h("path", { d: "M5.133 2.933V0h11.734v2.933" })),
2339
2339
  h("g", { class: "stroke-secondary" },
2340
2340
  h("path", { d: "M7.133 14.467v4.4L12.266 24h6.6v-9.533z" }),
2341
- h("path", { d: "M12.266 24v-5.133H7.133" }))))
2341
+ h("path", { d: "M12.266 24v-5.133H7.133" })))),
2342
2342
  },
2343
2343
  prohibited: {
2344
2344
  markup: () => (h("g", null,
2345
2345
  h("path", { d: "M20.773 5.227L5.227 20.773", class: "stroke-secondary" }),
2346
- h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" })))
2346
+ h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" }))),
2347
2347
  },
2348
2348
  question: {
2349
2349
  markup: () => (h("g", null,
2350
2350
  h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" }),
2351
2351
  h("g", { class: "stroke-secondary", transform: "translate(9.627 5.667)" },
2352
2352
  h("circle", { cx: "3.373", cy: "13.933", r: "1.1" }),
2353
- h("path", { d: "M0 2.2A3.665 3.665 0 0 1 3.354 0C5.36 0 7 1.65 7 3.667c0 2.016-1.64 3.666-3.646 3.666v2.2" }))))
2353
+ h("path", { d: "M0 2.2A3.665 3.665 0 0 1 3.354 0C5.36 0 7 1.65 7 3.667c0 2.016-1.64 3.666-3.646 3.666v2.2" })))),
2354
2354
  },
2355
2355
  receipt: {
2356
2356
  markup: () => (h("g", null,
2357
2357
  h("path", { d: "M22.085 23.814H4.186V2.186l2.983 1.865 2.984-1.865 2.983 1.865 2.983-1.865 2.983 1.865 2.983-1.865z", class: "stroke-primary" }),
2358
- h("path", { class: "stroke-secondary", d: "M10.898 15.983c0 1.044.82 1.864 1.864 1.864h.746c1.044 0 1.865-.82 1.865-1.864 0-2.61-4.475-1.119-4.475-3.73 0-1.043.82-1.863 1.864-1.863h.746c1.044 0 1.865.82 1.865 1.864m-2.238 5.594v1.49m0-10.44v1.492" })))
2358
+ h("path", { class: "stroke-secondary", d: "M10.898 15.983c0 1.044.82 1.864 1.864 1.864h.746c1.044 0 1.865-.82 1.865-1.864 0-2.61-4.475-1.119-4.475-3.73 0-1.043.82-1.863 1.864-1.863h.746c1.044 0 1.865.82 1.865 1.864m-2.238 5.594v1.49m0-10.44v1.492" }))),
2359
2359
  },
2360
2360
  'receipt-list': {
2361
2361
  markup: () => (h("g", null,
2362
2362
  h("path", { d: "M22.085 23.814H4.186V2.186l2.983 1.865 2.984-1.865 2.983 1.865 2.983-1.865 2.983 1.865 2.983-1.865z", class: "stroke-primary" }),
2363
- h("path", { class: "stroke-secondary", d: "M7.915 9.644h5.966m-5.966 4.475h5.966m-5.966 4.475h5.966m2.984 0h1.49m-1.49-4.475h1.49m-1.49-4.475h1.49" })))
2363
+ h("path", { class: "stroke-secondary", d: "M7.915 9.644h5.966m-5.966 4.475h5.966m-5.966 4.475h5.966m2.984 0h1.49m-1.49-4.475h1.49m-1.49-4.475h1.49" }))),
2364
2364
  },
2365
2365
  'receipt-list-top': {
2366
2366
  markup: () => (h("g", null,
2367
2367
  h("path", { d: "M22.085 2.186H4.186v21.628l2.983-1.865 2.984 1.865 2.983-1.865 2.983 1.865 2.983-1.865 2.983 1.865z", class: "stroke-primary" }),
2368
- h("path", { class: "stroke-secondary", d: "M7.915 7.78h5.966m-5.966 4.475h5.966M7.915 16.73h5.966m2.984 0h1.49m-1.49-4.475h1.49m-1.49-4.475h1.49" })))
2368
+ h("path", { class: "stroke-secondary", d: "M7.915 7.78h5.966m-5.966 4.475h5.966M7.915 16.73h5.966m2.984 0h1.49m-1.49-4.475h1.49m-1.49-4.475h1.49" }))),
2369
2369
  },
2370
2370
  'receipt-top': {
2371
2371
  markup: () => (h("g", null,
2372
2372
  h("path", { d: "M22.085 2.186H4.186v21.628l2.983-1.865 2.984 1.865 2.983-1.865 2.983 1.865 2.983-1.865 2.983 1.865z", class: "stroke-primary filled" }),
2373
- h("path", { class: "stroke-secondary", d: "M15 16.73h4m-4-4.475h4M15 7.78h4M7.898 13.983c0 1.044.82 1.865 1.865 1.865h.745c1.045 0 1.865-.82 1.865-1.865 0-2.61-4.475-1.118-4.475-3.728 0-1.044.82-1.865 1.865-1.865h.745c1.045 0 1.865.82 1.865 1.865m-2.237 5.593v1.491m0-10.44V8.39" })))
2373
+ h("path", { class: "stroke-secondary", d: "M15 16.73h4m-4-4.475h4M15 7.78h4M7.898 13.983c0 1.044.82 1.865 1.865 1.865h.745c1.045 0 1.865-.82 1.865-1.865 0-2.61-4.475-1.118-4.475-3.728 0-1.044.82-1.865 1.865-1.865h.745c1.045 0 1.865.82 1.865 1.865m-2.237 5.593v1.491m0-10.44V8.39" }))),
2374
2374
  },
2375
2375
  refresh: {
2376
2376
  markup: () => (h("g", null,
2377
2377
  h("path", { d: "M17.321 8.286l5.893-5.893L24 9.071z", class: "stroke-secondary filled" }),
2378
- h("path", { d: "M23.888 14.571C23.126 19.902 18.542 24 13 24 6.925 24 2 19.075 2 13S6.925 2 13 2a10.96 10.96 0 0 1 7.579 3.028", class: "stroke-primary" })))
2378
+ h("path", { d: "M23.888 14.571C23.126 19.902 18.542 24 13 24 6.925 24 2 19.075 2 13S6.925 2 13 2a10.96 10.96 0 0 1 7.579 3.028", class: "stroke-primary" }))),
2379
2379
  },
2380
2380
  remove: {
2381
2381
  markup: () => (h("g", null,
2382
2382
  h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" }),
2383
- h("path", { d: "M8 13h10", class: "stroke-secondary" })))
2383
+ h("path", { d: "M8 13h10", class: "stroke-secondary" }))),
2384
2384
  },
2385
2385
  repeat: {
2386
2386
  markup: () => (h("g", null,
2387
2387
  h("path", { class: "stroke-secondary filled", d: "M17.321 8.286l5.893-5.893L24 9.072zm-8.642 9.428l-5.893 5.893L2 16.929z" }),
2388
- h("path", { class: "stroke-primary", d: "M2 13C2 6.925 6.925 2 13 2a10.96 10.96 0 0 1 7.579 3.028M24 13c0 6.075-4.925 11-11 11a10.962 10.962 0 0 1-7.579-3.028" })))
2388
+ h("path", { class: "stroke-primary", d: "M2 13C2 6.925 6.925 2 13 2a10.96 10.96 0 0 1 7.579 3.028M24 13c0 6.075-4.925 11-11 11a10.962 10.962 0 0 1-7.579-3.028" }))),
2389
2389
  },
2390
2390
  'repeat-time': {
2391
2391
  markup: () => (h("g", null,
2392
2392
  h("path", { d: "M13 6.714V13H7.107", class: "stroke-secondary" }),
2393
2393
  h("g", { class: "stroke-primary" },
2394
2394
  h("path", { d: "M24 13c0 6.075-4.925 11-11 11S2 19.075 2 13 6.925 2 13 2c4.433 0 8.3 2.739 10.042 6.518" }),
2395
- h("path", { d: "M23.702 3.589l-.66 4.929-4.634-.621" }))))
2395
+ h("path", { d: "M23.702 3.589l-.66 4.929-4.634-.621" })))),
2396
2396
  },
2397
2397
  ribbon: {
2398
2398
  markup: () => (h("g", null,
@@ -2400,35 +2400,35 @@ const icons = {
2400
2400
  h("g", { transform: "translate(5.183 2.183)" },
2401
2401
  h("path", { d: "M11.733 14.26v7.373L7.7 19.8l-4.033 1.833V14.26" }),
2402
2402
  h("circle", { cx: "7.7", cy: "7.7", r: "7.7" })),
2403
- h("circle", { class: "stroke-secondary filled", cx: "12.883", cy: "9.883", r: "2.933" }))))
2403
+ h("circle", { class: "stroke-secondary filled", cx: "12.883", cy: "9.883", r: "2.933" })))),
2404
2404
  },
2405
2405
  ring: {
2406
2406
  markup: () => (h("g", null,
2407
2407
  h("path", { d: "M13.167 7.9l-2.8-3.267.933-1.4h3.733l.934 1.4-2.8 3.267", class: "stroke-secondary filled" }),
2408
2408
  h("g", { class: "stroke-primary", transform: "translate(5.233 7.9)" },
2409
2409
  h("circle", { cx: "7.933", cy: "7.933", r: "7.933" }),
2410
- h("circle", { cx: "7.933", cy: "7.933", r: "5.6" }))))
2410
+ h("circle", { cx: "7.933", cy: "7.933", r: "5.6" })))),
2411
2411
  },
2412
2412
  'rss-color': {
2413
2413
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
2414
2414
  h("g", { fill: "#F60", "fill-rule": "nonzero", transform: "translate(2 2)" },
2415
2415
  h("circle", { cx: "3.143", cy: "18.857", r: "3.143" }),
2416
2416
  h("path", { d: "M22 22h-4.19C17.81 12.18 9.82 4.19 0 4.19V0c12.13 0 22 9.869 22 22z" }),
2417
- h("path", { d: "M14.667 22h-4.19c0-5.777-4.7-10.476-10.477-10.476v-4.19c8.087 0 14.667 6.579 14.667 14.666z" }))))
2417
+ h("path", { d: "M14.667 22h-4.19c0-5.777-4.7-10.476-10.477-10.476v-4.19c8.087 0 14.667 6.579 14.667 14.666z" })))),
2418
2418
  },
2419
2419
  'rss-filled': {
2420
2420
  markup: () => (h("g", null,
2421
2421
  h("g", { class: "filled", transform: "translate(2 2)" },
2422
2422
  h("circle", { cx: "3.143", cy: "18.857", r: "3.143" }),
2423
2423
  h("path", { d: "M22 22h-4.19C17.81 12.18 9.82 4.19 0 4.19V0c12.13 0 22 9.869 22 22z" }),
2424
- h("path", { d: "M14.667 22h-4.19c0-5.777-4.7-10.476-10.477-10.476v-4.19c8.087 0 14.667 6.579 14.667 14.666z" }))))
2424
+ h("path", { d: "M14.667 22h-4.19c0-5.777-4.7-10.476-10.477-10.476v-4.19c8.087 0 14.667 6.579 14.667 14.666z" })))),
2425
2425
  },
2426
2426
  save: {
2427
2427
  markup: () => (h("g", null,
2428
2428
  h("path", { class: "stroke-secondary", d: "M15.934 2v6.6H5.667V2M13 4.2v2.2" }),
2429
2429
  h("g", { class: "stroke-primary" },
2430
2430
  h("path", { d: "M5.667 21.8v-6.6h14.666v6.6" }),
2431
- h("path", { d: "M22.533 24H3.467C2.657 24 2 23.343 2 22.533V2h16.867L24 9.333v13.2c0 .81-.657 1.467-1.467 1.467z" }))))
2431
+ h("path", { d: "M22.533 24H3.467C2.657 24 2 23.343 2 22.533V2h16.867L24 9.333v13.2c0 .81-.657 1.467-1.467 1.467z" })))),
2432
2432
  },
2433
2433
  school: {
2434
2434
  markup: () => (h("g", null,
@@ -2438,90 +2438,90 @@ const icons = {
2438
2438
  h("path", { d: "M14.443 23.819v-3.606h-2.886v3.606" })),
2439
2439
  h("g", { class: "stroke-primary" },
2440
2440
  h("path", { d: "M5.787 23.82H2.181v-5.049h2.885m15.148 5.049h3.606v-5.049h-2.885M5.066 12.279h15.869M5.066 15.164h15.869M8.312 23.82v-8.656m9.377 8.656v-8.656m-6.131 2.525h2.885" }),
2441
- h("path", { d: "M20.935 12.279V23.82H5.066V12.279L13 6.509z" }))))
2441
+ h("path", { d: "M20.935 12.279V23.82H5.066V12.279L13 6.509z" })))),
2442
2442
  },
2443
2443
  search: {
2444
2444
  markup: () => (h("g", { class: "stroke-primary", transform: "translate(2 2)" },
2445
2445
  h("path", { d: "M22 22l-6.448-6.448" }),
2446
- h("circle", { cx: "9.103", cy: "9.103", r: "9.103" })))
2446
+ h("circle", { cx: "9.103", cy: "9.103", r: "9.103" }))),
2447
2447
  },
2448
2448
  service: {
2449
2449
  markup: () => (h("g", null,
2450
2450
  h("path", { d: "M14.412 16.826h5.284c2.694 0 2.87 1.913 2.87 1.913l-11.254 4.328a2.87 2.87 0 0 1-2.314-.112l-6.52-3.26V13h.957c1.057 0 3.736.419 4.782 1.913h2.87a3.826 3.826 0 0 1 3.826 3.826H8.217", class: "stroke-primary" }),
2451
2451
  h("g", { class: "stroke-secondary" },
2452
- h("path", { d: "M5.18 10.351a8.609 8.609 0 0 1 16.428 3.605m-5.739 0h7.652M13 2.478v2.87" }))))
2452
+ h("path", { d: "M5.18 10.351a8.609 8.609 0 0 1 16.428 3.605m-5.739 0h7.652M13 2.478v2.87" })))),
2453
2453
  },
2454
2454
  shield: {
2455
2455
  markup: () => (h("g", null,
2456
2456
  h("path", { d: "M13 2C9.857 4.357 5.143 5.929 2 5.929 2 13.262 5.667 20.857 13 24c7.333-3.143 11-10.738 11-18.071-3.143 0-7.857-1.572-11-3.929z", class: "stroke-primary filled" }),
2457
- h("path", { class: "stroke-secondary", d: "M13 24V2M3.17 13h19.66" })))
2457
+ h("path", { class: "stroke-secondary", d: "M13 24V2M3.17 13h19.66" }))),
2458
2458
  },
2459
2459
  sign: {
2460
2460
  markup: () => (h("g", null,
2461
2461
  h("g", { class: "stroke-primary" },
2462
2462
  h("path", { d: "M3 23.083h20.087M5.582 17.761L3.913 19.43M21.261 9.387l.913.913-4.565 4.565" })),
2463
- h("path", { d: "M5.582 17.762a2.582 2.582 0 0 1 0-3.652L15.935 3.757a2.582 2.582 0 0 1 3.652 0 2.582 2.582 0 0 1 0 3.652L9.234 17.762a2.583 2.583 0 0 1-3.652 0z", class: "stroke-secondary filled" })))
2463
+ h("path", { d: "M5.582 17.762a2.582 2.582 0 0 1 0-3.652L15.935 3.757a2.582 2.582 0 0 1 3.652 0 2.582 2.582 0 0 1 0 3.652L9.234 17.762a2.583 2.583 0 0 1-3.652 0z", class: "stroke-secondary filled" }))),
2464
2464
  },
2465
2465
  silverware: {
2466
2466
  markup: () => (h("g", null,
2467
2467
  h("path", { class: "stroke-secondary", d: "M9.05 11.433l2.226 2.2m-.742-3.666l2.226 2.2m2.968 5.866l5.195 5.134 1.484-1.467-5.195-5.133m-7.626-.21c-.907.896-2.621 2.591-5.142 5.086l1.485 1.466 4.823-4.766" }),
2468
- h("path", { class: "stroke-primary", d: "M5.71 3l5.15 5.089a1.09 1.09 0 0 1 0 1.555l-2.137 2.112a1.12 1.12 0 0 1-1.573 0L2 6.666m1.855-1.833l4.082 4.034m2.619 6.477l2.968 2.934 8.905-8.8a4.114 4.114 0 0 0 0-5.867L10.556 15.344z" })))
2468
+ h("path", { class: "stroke-primary", d: "M5.71 3l5.15 5.089a1.09 1.09 0 0 1 0 1.555l-2.137 2.112a1.12 1.12 0 0 1-1.573 0L2 6.666m1.855-1.833l4.082 4.034m2.619 6.477l2.968 2.934 8.905-8.8a4.114 4.114 0 0 0 0-5.867L10.556 15.344z" }))),
2469
2469
  },
2470
2470
  skip: {
2471
2471
  markup: () => (h("g", null,
2472
2472
  h("path", { d: "M5 23V4l13 9.5z", class: "stroke-secondary" }),
2473
- h("path", { d: "M21.5 3v20", class: "stroke-primary" })))
2473
+ h("path", { d: "M21.5 3v20", class: "stroke-primary" }))),
2474
2474
  },
2475
2475
  'sms-color': {
2476
2476
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
2477
2477
  h("g", { "fill-rule": "nonzero" },
2478
2478
  h("path", { fill: "#BADEFC", d: "M23.043 5.87H8.217a.956.956 0 0 0-.956.956v11.478c0 .529.428.957.956.957h5.595l5.618 3.746a.48.48 0 0 0 .744-.398V19.26h2.87a.956.956 0 0 0 .956-.957V6.826a.956.956 0 0 0-.957-.956z" }),
2479
- h("path", { fill: "#43A6DD", d: "M19.217 3H2.957A.956.956 0 0 0 2 3.957v11.478c0 .528.428.956.957.956h2.87v4.305a.479.479 0 0 0 .755.388l6.571-4.693h6.064a.956.956 0 0 0 .957-.956V3.957A.956.956 0 0 0 19.217 3z" }))))
2479
+ h("path", { fill: "#43A6DD", d: "M19.217 3H2.957A.956.956 0 0 0 2 3.957v11.478c0 .528.428.956.957.956h2.87v4.305a.479.479 0 0 0 .755.388l6.571-4.693h6.064a.956.956 0 0 0 .957-.956V3.957A.956.956 0 0 0 19.217 3z" })))),
2480
2480
  },
2481
2481
  'sms-filled': {
2482
2482
  markup: () => (h("g", null,
2483
2483
  h("g", { class: "filled" },
2484
2484
  h("path", { d: "M23.043 5.87H21.13v9.087a1.913 1.913 0 0 1-1.913 1.913H13.46l-3.348 2.39h3.701l5.619 3.747a.478.478 0 0 0 .742-.398V19.26h2.87a.957.957 0 0 0 .956-.957V6.826a.957.957 0 0 0-.957-.956z" }),
2485
- h("path", { d: "M19.217 3H2.957A.957.957 0 0 0 2 3.957v11c0 .528.428.956.957.956h2.87v4.304a.478.478 0 0 0 .755.39l6.571-4.694h6.064a.957.957 0 0 0 .957-.956v-11A.957.957 0 0 0 19.217 3z" }))))
2485
+ h("path", { d: "M19.217 3H2.957A.957.957 0 0 0 2 3.957v11c0 .528.428.956.957.956h2.87v4.304a.478.478 0 0 0 .755.39l6.571-4.694h6.064a.957.957 0 0 0 .957-.956v-11A.957.957 0 0 0 19.217 3z" })))),
2486
2486
  },
2487
2487
  sort: {
2488
2488
  markup: () => (h("g", { class: "stroke-primary" },
2489
- h("path", { d: "M7.551 14.896V2M2.999 6.551L7.551 2l4.552 4.551m6.069 4.552V24m-4.552-4.552L18.172 24l4.551-4.552" })))
2489
+ h("path", { d: "M7.551 14.896V2M2.999 6.551L7.551 2l4.552 4.551m6.069 4.552V24m-4.552-4.552L18.172 24l4.551-4.552" }))),
2490
2490
  },
2491
2491
  speedometer: {
2492
2492
  markup: () => (h("g", null,
2493
2493
  h("path", { class: "stroke-secondary", d: "M13 6.344v1.443m6.12 1.092l-1.02 1.02M21.655 15h-1.441M6.879 8.879l1.02 1.02M4.344 15h1.443" }),
2494
2494
  h("path", { class: "stroke-secondary filled", d: "M12.235 13.368l-2.048-4.372" }),
2495
2495
  h("circle", { cx: "13", cy: "15", r: "1.803", class: "stroke-primary filled", transform: "rotate(-70.105 13 15)" }),
2496
- h("path", { d: "M22.15 20.77A10.766 10.766 0 0 0 23.82 15c0-5.976-4.844-10.82-10.82-10.82S2.18 9.024 2.18 15c0 2.122.614 4.1 1.67 5.77h18.3z", class: "stroke-primary" })))
2496
+ h("path", { d: "M22.15 20.77A10.766 10.766 0 0 0 23.82 15c0-5.976-4.844-10.82-10.82-10.82S2.18 9.024 2.18 15c0 2.122.614 4.1 1.67 5.77h18.3z", class: "stroke-primary" }))),
2497
2497
  },
2498
2498
  split: {
2499
2499
  markup: () => (h("g", { class: "stroke-primary" },
2500
2500
  h("path", { d: "M5.5 16.5h18m-5-7h-4.7c-1.5 0-2.8.6-3.8 1.7l-4.5 5.3h-3m18-3l3 3-3 3" }),
2501
- h("path", { d: "M15.5 6.5l3 3-3 3" })))
2501
+ h("path", { d: "M15.5 6.5l3 3-3 3" }))),
2502
2502
  },
2503
2503
  star: {
2504
- markup: () => (h("path", { d: "M13 2.332l3.338 6.765 7.466 1.085-5.402 5.265 1.275 7.435L13 19.372l-6.677 3.51 1.275-7.435-5.402-5.265 7.466-1.085z", class: "stroke-primary" }))
2504
+ markup: () => (h("path", { d: "M13 2.332l3.338 6.765 7.466 1.085-5.402 5.265 1.275 7.435L13 19.372l-6.677 3.51 1.275-7.435-5.402-5.265 7.466-1.085z", class: "stroke-primary" })),
2505
2505
  },
2506
2506
  'star-add': {
2507
2507
  markup: () => (h("g", null,
2508
2508
  h("path", { d: "M12.241 19.091l-6.184 3.251 1.253-7.309L2 9.857 9.339 8.79l3.282-6.65 3.281 6.65 7.339 1.067-2.275 2.218", class: "stroke-primary" }),
2509
2509
  h("g", { class: "stroke-secondary", transform: "translate(14.897 14.517)" },
2510
2510
  h("circle", { cx: "4.552", cy: "4.552", r: "4.552", class: "filled" }),
2511
- h("path", { d: "M4.552 3.034V6.07M3.034 4.552H6.07" }))))
2511
+ h("path", { d: "M4.552 3.034V6.07M3.034 4.552H6.07" })))),
2512
2512
  },
2513
2513
  'star-remove': {
2514
2514
  markup: () => (h("g", null,
2515
2515
  h("path", { d: "M12.241 19.091l-6.184 3.251 1.253-7.309L2 9.857 9.339 8.79l3.282-6.65 3.281 6.65 7.339 1.067-2.275 2.218", class: "stroke-primary" }),
2516
2516
  h("g", { class: "stroke-secondary", transform: "translate(14.897 14.517)" },
2517
2517
  h("circle", { cx: "4.552", cy: "4.552", r: "4.552", class: "filled" }),
2518
- h("path", { d: "M3.034 4.552H6.07" }))))
2518
+ h("path", { d: "M3.034 4.552H6.07" })))),
2519
2519
  },
2520
2520
  'stop-payment': {
2521
2521
  markup: () => (h("g", null,
2522
2522
  h("path", { d: "M8.882 3h8.236L23 8.882v8.236L17.118 23H8.882L3 17.118V8.882z", class: "stroke-primary" }),
2523
2523
  h("g", { class: "stroke-secondary" },
2524
- h("path", { d: "M13 6.304v13.391m3.228-11.268c-1.55-.853-6.434-1.489-6.434 1.447 0 3.514 6.202 2.273 6.202 5.374 0 3.101-4.03 2.868-6.822 1.86" }))))
2524
+ h("path", { d: "M13 6.304v13.391m3.228-11.268c-1.55-.853-6.434-1.489-6.434 1.447 0 3.514 6.202 2.273 6.202 5.374 0 3.101-4.03 2.868-6.822 1.86" })))),
2525
2525
  },
2526
2526
  'steering-wheel': {
2527
2527
  markup: () => (h("g", null,
@@ -2529,12 +2529,12 @@ const icons = {
2529
2529
  h("path", { d: "M3 11.138c3.559 1.63 6.183 4.947 6.916 8.909m10.374-8.909c-3.558 1.63-6.182 4.947-6.915 8.909M3.544 8.51S7.604 8 11.646 8c4.04 0 8.1.51 8.1.51" }),
2530
2530
  h("circle", { cx: "11.645", cy: "11.564", r: "10.82" }),
2531
2531
  h("circle", { cx: "11.645", cy: "11.564", r: "8.656" })),
2532
- h("circle", { cx: "13", cy: "14.082", r: "2.164", class: "stroke-secondary filled" })))
2532
+ h("circle", { cx: "13", cy: "14.082", r: "2.164", class: "stroke-secondary filled" }))),
2533
2533
  },
2534
2534
  storefront: {
2535
2535
  markup: () => (h("g", null,
2536
2536
  h("path", { class: "stroke-primary", d: "M4.2 14.1v9.167h10.267v-6.6h4.4v6.6H21.8V14.1m-.733-8.433H4.933m16.134 0V2H4.933v3.667L2 9.333a2.567 2.567 0 0 0 4.583 1.585 2.56 2.56 0 0 0 4.217-.268 2.562 2.562 0 0 0 4.4 0 2.562 2.562 0 0 0 4.217.268A2.567 2.567 0 0 0 24 9.334l-2.933-3.667z" }),
2537
- h("path", { d: "M7.5 14.833h3.667V18.5H7.5z", class: "stroke-secondary filled" })))
2537
+ h("path", { d: "M7.5 14.833h3.667V18.5H7.5z", class: "stroke-secondary filled" }))),
2538
2538
  },
2539
2539
  'storefront-add': {
2540
2540
  markup: () => (h("g", null,
@@ -2542,7 +2542,7 @@ const icons = {
2542
2542
  h("g", { class: "stroke-secondary", transform: "translate(14 15)" },
2543
2543
  h("path", { d: "M4.767 3.133v2.934M3.3 4.6h2.933" }),
2544
2544
  h("circle", { cx: "4.767", cy: "4.6", r: "4.4" })),
2545
- h("path", { d: "M7.156 15.031h3.438v3.438H7.156z", class: "stroke-secondary filled" })))
2545
+ h("path", { d: "M7.156 15.031h3.438v3.438H7.156z", class: "stroke-secondary filled" }))),
2546
2546
  },
2547
2547
  'storefront-prohibited': {
2548
2548
  markup: () => (h("g", null,
@@ -2550,7 +2550,7 @@ const icons = {
2550
2550
  h("g", { class: "stroke-secondary", transform: "translate(14.367 15.2)" },
2551
2551
  h("path", { d: "M1.133 7.3L7.74 1.638" }),
2552
2552
  h("circle", { cx: "4.4", cy: "4.4", r: "4.4" })),
2553
- h("path", { d: "M7.156 15.031h3.438v3.438H7.156z", class: "stroke-secondary filled" })))
2553
+ h("path", { d: "M7.156 15.031h3.438v3.438H7.156z", class: "stroke-secondary filled" }))),
2554
2554
  },
2555
2555
  'storefront-remove': {
2556
2556
  markup: () => (h("g", null,
@@ -2558,7 +2558,7 @@ const icons = {
2558
2558
  h("g", { class: "stroke-secondary", transform: "translate(14.367 15.2)" },
2559
2559
  h("path", { d: "M2.933 4.4h2.934" }),
2560
2560
  h("circle", { cx: "4.4", cy: "4.4", r: "4.4" })),
2561
- h("path", { d: "M7.156 15.031h3.438v3.438H7.156z", class: "stroke-secondary filled" })))
2561
+ h("path", { d: "M7.156 15.031h3.438v3.438H7.156z", class: "stroke-secondary filled" }))),
2562
2562
  },
2563
2563
  'storefront-settings': {
2564
2564
  markup: () => (h("g", null,
@@ -2567,17 +2567,17 @@ const icons = {
2567
2567
  h("path", { d: "M7.156 15.031h3.438v3.438H7.156z", class: "stroke-secondary filled" }),
2568
2568
  h("g", { class: "stroke-secondary", transform: "translate(14.905 14.467)" },
2569
2569
  h("path", { d: "M7.795 4.767c0-.162-.015-.32-.038-.474L8.99 3.018l-.733-1.27-1.719.43a3.29 3.29 0 0 0-.823-.476L5.228 0H3.762l-.487 1.702a3.29 3.29 0 0 0-.823.476l-1.718-.43L0 3.018l1.233 1.275a3.26 3.26 0 0 0-.038.474c0 .161.015.319.038.474L0 6.515l.733 1.27 1.719-.43c.248.196.525.357.823.476l.487 1.702h1.466l.487-1.702a3.29 3.29 0 0 0 .823-.476l1.718.43.734-1.27L7.757 5.24a3.26 3.26 0 0 0 .038-.474z", class: "filled" }),
2570
- h("circle", { cx: "4.495", cy: "4.767", r: "1.1" }))))
2570
+ h("circle", { cx: "4.495", cy: "4.767", r: "1.1" })))),
2571
2571
  },
2572
2572
  success: {
2573
2573
  markup: () => (h("g", null,
2574
- h("path", { d: "M7.867 13.733l2.933 2.934 7.333-7.334", class: "stroke-secondary" }),
2575
- h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" })))
2574
+ h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" }),
2575
+ h("path", { d: "M7.867 13.733l2.933 2.934 7.333-7.334", class: "stroke-secondary" }))),
2576
2576
  },
2577
2577
  tablet: {
2578
2578
  markup: () => (h("g", null,
2579
2579
  h("path", { class: "stroke-primary", d: "M5.5 5.5v14m16.999.533H3.367a1.438 1.438 0 0 1-1.434-1.443V6.55c0-.796.642-1.442 1.434-1.442h19.132c.792 0 1.434.646 1.434 1.442v12.04c0 .797-.642 1.443-1.434 1.443z" }),
2580
- h("path", { d: "M3.5 11.5v2", class: "stroke-secondary" })))
2580
+ h("path", { d: "M3.5 11.5v2", class: "stroke-secondary" }))),
2581
2581
  },
2582
2582
  target: {
2583
2583
  markup: () => (h("g", null,
@@ -2586,24 +2586,24 @@ const icons = {
2586
2586
  h("circle", { cx: "8.591", cy: "8.591", r: "4.773" })),
2587
2587
  h("g", { class: "stroke-secondary" },
2588
2588
  h("path", { d: "M20.659 6.341l2.864-2.864M12.068 14.932l5.727-5.728" }),
2589
- h("path", { d: "M20.659 6.341l-.955-2.864-2.863 2.864.954 2.863 2.864.955 2.864-2.864z", class: "filled" }))))
2589
+ h("path", { d: "M20.659 6.341l-.955-2.864-2.863 2.864.954 2.863 2.864.955 2.864-2.864z", class: "filled" })))),
2590
2590
  },
2591
2591
  time: {
2592
2592
  markup: () => (h("g", null,
2593
2593
  h("path", { d: "M13 6.714V13H7.107", class: "stroke-secondary" }),
2594
- h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" })))
2594
+ h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" }))),
2595
2595
  },
2596
2596
  todo: {
2597
2597
  markup: () => (h("g", null,
2598
2598
  h("g", { class: "stroke-primary" },
2599
2599
  h("path", { d: "M19.258 5.194h2.129v18.451H4.355V5.194h2.129" }),
2600
2600
  h("path", { d: "M15 4.484a2.129 2.129 0 1 0-4.258 0H8.613v2.839h8.516V4.484H15z", class: "filled" })),
2601
- h("path", { d: "M10 15l2 2 4-4", class: "stroke-secondary" })))
2601
+ h("path", { d: "M10 15l2 2 4-4", class: "stroke-secondary" }))),
2602
2602
  },
2603
2603
  tools: {
2604
2604
  markup: () => (h("g", null,
2605
2605
  h("path", { class: "stroke-secondary filled", d: "M16.65 12.856l5.55 5.55a3.218 3.218 0 0 1 0 4.552 3.218 3.218 0 0 1-4.552 0l-5.311-5.311m-.789-6.858L8.545 7.786l-.008-1.71-3.219-3.218L2.1 6.076l3.218 3.219 1.71.008 2.936 2.936m6.45 4.933l3.035 3.035" }),
2606
- h("path", { d: "M20.966 7.31L18.69 5.034l2.629-2.629A4.532 4.532 0 0 0 19.449 2a4.552 4.552 0 0 0-4.552 4.552c0 .372.05.731.133 1.078L2 19.448 6.552 24 18.37 10.97a4.55 4.55 0 0 0 1.078.133A4.552 4.552 0 0 0 24 6.552c0-.668-.147-1.3-.405-1.871l-2.63 2.63z", class: "stroke-primary" })))
2606
+ h("path", { d: "M20.966 7.31L18.69 5.034l2.629-2.629A4.532 4.532 0 0 0 19.449 2a4.552 4.552 0 0 0-4.552 4.552c0 .372.05.731.133 1.078L2 19.448 6.552 24 18.37 10.97a4.55 4.55 0 0 0 1.078.133A4.552 4.552 0 0 0 24 6.552c0-.668-.147-1.3-.405-1.871l-2.63 2.63z", class: "stroke-primary" }))),
2607
2607
  },
2608
2608
  tractor: {
2609
2609
  markup: () => (h("g", null,
@@ -2612,23 +2612,23 @@ const icons = {
2612
2612
  h("path", { d: "M3.984 11.181A6.492 6.492 0 0 1 13 17.164c0 .489-.054.977-.156 1.442h5.206" })),
2613
2613
  h("g", { class: "stroke-secondary filled", transform: "translate(2.18 12.836)" },
2614
2614
  h("circle", { cx: "4.328", cy: "4.328", r: "4.328" }),
2615
- h("circle", { cx: "18.754", cy: "5.77", r: "2.885" }))))
2615
+ h("circle", { cx: "18.754", cy: "5.77", r: "2.885" })))),
2616
2616
  },
2617
2617
  transfer: {
2618
2618
  markup: () => (h("g", null,
2619
2619
  h("path", { class: "stroke-primary", d: "M16.756 20.866l-3.065-3.335 3.065-3.334m5.55 3.334h-8.718m4.849-6.623l3.503-3.335-3.503-3.334m-5.332 3.333h8.718" }),
2620
- h("path", { class: "stroke-secondary", d: "M3.233 15.573c0 1.67 1.287 2.983 2.925 2.983h1.17c1.637 0 2.924-1.313 2.924-2.983 0-4.177-7.019-1.79-7.019-5.967 0-1.669 1.287-2.983 2.925-2.983h1.17c1.637 0 2.924 1.313 2.924 2.983m-3.509 8.95v2.386m0-16.705v2.386" })))
2620
+ h("path", { class: "stroke-secondary", d: "M3.233 15.573c0 1.67 1.287 2.983 2.925 2.983h1.17c1.637 0 2.924-1.313 2.924-2.983 0-4.177-7.019-1.79-7.019-5.967 0-1.669 1.287-2.983 2.925-2.983h1.17c1.637 0 2.924 1.313 2.924 2.983m-3.509 8.95v2.386m0-16.705v2.386" }))),
2621
2621
  },
2622
2622
  trash: {
2623
2623
  markup: () => (h("g", null,
2624
2624
  h("path", { class: "stroke-primary", d: "M21.333 7.867v14.666c0 .81-.656 1.467-1.466 1.467h-13.2c-.81 0-1.467-.657-1.467-1.467V7.867m8.067 3.3v8.066M9.6 11.167v8.066m7.333-8.066v8.066" }),
2625
- h("path", { class: "stroke-secondary", d: "M9.6 5.667V2h7.333v3.667m6.6 0H3" })))
2625
+ h("path", { class: "stroke-secondary", d: "M9.6 5.667V2h7.333v3.667m6.6 0H3" }))),
2626
2626
  },
2627
2627
  tree: {
2628
2628
  markup: () => (h("g", null,
2629
2629
  h("path", { d: "M19.915 10.806c.29-.452.464-.987.464-1.565 0-1.6-1.296-2.896-2.896-2.896h-.797a3.62 3.62 0 1 0-7.095 0h-.798A2.897 2.897 0 0 0 5.897 9.24c0 .578.173 1.113.464 1.565a4.343 4.343 0 0 0 .984 8.573H18.93a4.343 4.343 0 1 0 .984-8.574z", class: "stroke-primary" }),
2630
2630
  h("g", { class: "stroke-secondary" },
2631
- h("path", { d: "M13.138 9.241v14.483m-4.345 0h8.69M9.517 12.862l3.621 3.62 3.621-3.62" }))))
2631
+ h("path", { d: "M13.138 9.241v14.483m-4.345 0h8.69M9.517 12.862l3.621 3.62 3.621-3.62" })))),
2632
2632
  },
2633
2633
  'truck-with-lock': {
2634
2634
  markup: () => (h("g", { class: "stroke-primary" },
@@ -2640,19 +2640,19 @@ const icons = {
2640
2640
  h("circle", { cx: "16.049", cy: "13.957", r: "2.164" }),
2641
2641
  h("path", { d: "M5.29 4.76H.529A.529.529 0 010 4.233V.529C0 .237.237 0 .529 0h4.76c.293 0 .53.237.53.529v3.703a.529.529 0 01-.53.529z" })),
2642
2642
  h("path", { d: "M4.496 2.513v-.926C4.496.71 3.786 0 2.91 0h0c-.876 0-1.587.71-1.587 1.587v.926M2.909 5.951v.793" }),
2643
- h("circle", { cx: "2.909", cy: "5.157", r: "1" }))))
2643
+ h("circle", { cx: "2.909", cy: "5.157", r: "1" })))),
2644
2644
  },
2645
2645
  umbrella: {
2646
2646
  markup: () => (h("g", null,
2647
2647
  h("path", { class: "stroke-secondary", d: "M24 13c-.765-4.973-5.46-8.8-11-8.8S2.764 8.027 2 13h22zM7.5 13c0-3.735 2.305-7.004 5.5-8.8m5.5 8.8c0-3.735-2.305-7.004-5.5-8.8m0 8.8V4.2" }),
2648
- h("path", { class: "stroke-primary", d: "M13 4.2V2m4.714 19.8c0 1.215-1.055 2.2-2.357 2.2C14.055 24 13 23.015 13 21.8v-6.6" })))
2648
+ h("path", { class: "stroke-primary", d: "M13 4.2V2m4.714 19.8c0 1.215-1.055 2.2-2.357 2.2C14.055 24 13 23.015 13 21.8v-6.6" }))),
2649
2649
  },
2650
2650
  unlink: {
2651
2651
  markup: () => (h("g", null,
2652
2652
  h("g", { class: "stroke-primary" },
2653
2653
  h("path", { d: "M14.245 11.756a5.28 5.28 0 0 1 0 7.467l-3.111 3.112a5.28 5.28 0 0 1-7.468 0 5.28 5.28 0 0 1 0-7.468l2.49-2.489" }),
2654
2654
  h("path", { d: "M19.845 13.623l2.49-2.49a5.28 5.28 0 0 0 0-7.467 5.28 5.28 0 0 0-7.468 0l-3.111 3.112a5.28 5.28 0 0 0 0 7.467" })),
2655
- h("path", { class: "stroke-secondary", d: "M19.286 16.143l3.928.786m-7.071 2.357l.786 3.928m-7.072-16.5l-.786-3.928M6.714 9.857l-3.928-.786" })))
2655
+ h("path", { class: "stroke-secondary", d: "M19.286 16.143l3.928.786m-7.071 2.357l.786 3.928m-7.072-16.5l-.786-3.928M6.714 9.857l-3.928-.786" }))),
2656
2656
  },
2657
2657
  wallet: {
2658
2658
  markup: () => (h("g", null,
@@ -2662,27 +2662,27 @@ const icons = {
2662
2662
  h("g", { class: "stroke-secondary", transform: "translate(4.667 1.733)" },
2663
2663
  h("path", { d: "M19.333 16.4H14.2a2.2 2.2 0 0 1-2.2-2.2 2.2 2.2 0 0 1 2.2-2.2h5.133v4.4z" }),
2664
2664
  h("circle", { cx: "14.2", cy: "14.2", r: "1" }),
2665
- h("path", { d: "M.633 4.3V.267H15.3V4.3H.633" }))))
2665
+ h("path", { d: "M.633 4.3V.267H15.3V4.3H.633" })))),
2666
2666
  },
2667
2667
  watch: {
2668
2668
  markup: () => (h("g", null,
2669
2669
  h("path", { class: "stroke-secondary filled", d: "M7.344 5.787l.721-3.607h8.656l.721 3.607m0 14.426l-.721 3.606H8.065l-.721-3.606" }),
2670
2670
  h("path", { class: "stroke-primary", d: "M17.442 20.213H7.344a2.164 2.164 0 0 1-2.164-2.164V7.951c0-1.195.969-2.164 2.164-2.164h10.098c1.196 0 2.164.969 2.164 2.164v10.098a2.164 2.164 0 0 1-2.164 2.164z" }),
2671
- h("path", { d: "M12.393 9.394V13H16m3.606-1.803h1.443v3.606h-1.443" })))
2671
+ h("path", { d: "M12.393 9.394V13H16m3.606-1.803h1.443v3.606h-1.443" }))),
2672
2672
  },
2673
2673
  world: {
2674
2674
  markup: () => (h("g", null,
2675
2675
  h("g", { transform: "translate(2 3)" },
2676
2676
  h("g", { class: "stroke-secondary" },
2677
2677
  h("path", { d: "M6.676 1.128c-.176.325 0 .79-.251 1.05-.49.505-1.44.752-1.624 1.298-.181.533.424 1.46.424 1.46s.898-1.09 1.62-.693c.722.398.684 1.043.684 1.043s-.93 1.622-1.104 2.174c-.174.553-.97.527-1.114 1.016-.697 1.136-.869 1.588-1.153 1.524-.446-.966-.976-.975-1.02-.968-.593.095-1.26.387-1.26 1.12 0 .323.017 1.753.611 1.842.604.09.804 1.219.804 1.219s1.74-.19 1.856.102c.117.292.791.764.791.764s.66 1.292.223 2.08c-.14.25-.76.743-.76.743l-.496 1.363m16.471-6.183c-.568 0-1.352-1.38-1.352-1.582 0-.201-2.346-.286-2.226 0 .234.555 0 1.582.75 2.162.697.539-1.673 2.688-1.878 3.009-.19.299-1.7 2.454-1.751 2.465-.928.198-.966.69-2.199.564-.855-.088 0-2.892 0-4.31 0-.797-1.491-1.037-2.152-1.277-.92-.244-.423-3.008-.424-3.417 0-.641 1.661-.967 1.661-.967s.293.284.643.372c.296.074 2.421.638 3.01.431.25-.273.416-.417.496-.431.813-.146 1.185-.02 1.198 0 .349.532.564.091.646-1.324l-.646-1.079c-.549-.272-.895-.16-1.038.335-.214.744-.425.777-.803.221-.377-.556-.81-.748-1.332-.748-.521 0-.344.306-1.259.527-.915.221-1.222.969-1.472.221s-.416-1.284.196-1.284 1.889-.568 1.68-.95c-.208-.38.236-1.473.855-1.473.62 0 .802-.338.62-.805-.183-.466-.864-.843-1.281-.56-.418.285-1.262-.19-1.262-.622 0-.288.13-.797.392-1.528" })),
2678
- h("circle", { cx: "11.25", cy: "10.25", r: "10.25", class: "stroke-primary" }))))
2678
+ h("circle", { cx: "11.25", cy: "10.25", r: "10.25", class: "stroke-primary" })))),
2679
2679
  },
2680
2680
  warning: {
2681
2681
  markup: () => (h("g", null,
2682
2682
  h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" }),
2683
2683
  h("g", { class: "stroke-secondary", transform: "translate(11.9 5.667)" },
2684
2684
  h("circle", { cx: "1.1", cy: "13.2", r: "1.1" }),
2685
- h("path", { d: "M1.1 0v8.8" }))))
2685
+ h("path", { d: "M1.1 0v8.8" })))),
2686
2686
  },
2687
2687
  arts: {
2688
2688
  markup: () => (h("g", null,
@@ -2691,7 +2691,7 @@ const icons = {
2691
2691
  h("path", { d: "M12.453 22.002a6.77 6.77 0 0 0 11.209-5.115V8.564a20.27 20.27 0 0 0-4.065-.979" })),
2692
2692
  h("g", { class: "stroke-secondary" },
2693
2693
  h("path", { d: "M3.339 12.823a6.774 6.774 0 0 0 13.548 0V4.499A20.342 20.342 0 0 0 3.339 4.5v8.323zm3.387-3.387h1.355m4.064 0H13.5" }),
2694
- h("path", { d: "M10.113 16.887c1.123 0 2.032-.91 2.032-2.032H8.081c0 1.122.91 2.032 2.032 2.032z" }))))
2694
+ h("path", { d: "M10.113 16.887c1.123 0 2.032-.91 2.032-2.032H8.081c0 1.122.91 2.032 2.032 2.032z" })))),
2695
2695
  },
2696
2696
  bed: {
2697
2697
  markup: () => (h("g", null,
@@ -2699,13 +2699,13 @@ const icons = {
2699
2699
  h("path", { d: "M3.339 20.242V5.339m0 12.194h20.322M3.339 14.145h20.322v6.097" })),
2700
2700
  h("g", { class: "stroke-secondary", transform: "translate(6.048 7.371)" },
2701
2701
  h("circle", { cx: "2.032", cy: "2.032", r: "2.032" }),
2702
- h("path", { d: "M17.613 4.065H6.774V.677h8.807c1.122 0 2.032.91 2.032 2.033v1.355z" }))))
2702
+ h("path", { d: "M17.613 4.065H6.774V.677h8.807c1.122 0 2.032.91 2.032 2.033v1.355z" })))),
2703
2703
  },
2704
2704
  box: {
2705
2705
  markup: () => (h("g", null,
2706
2706
  h("g", { class: "stroke-primary" },
2707
2707
  h("path", { d: "M3 7.065h20.323m0 0L18.581 3H7.742L3 7.065v16.258h20.323z" })),
2708
- h("path", { d: "M15.871 13.839h-5.419V7.065L12.484 3h1.355l2.032 4.065z", class: "stroke-secondary" })))
2708
+ h("path", { d: "M15.871 13.839h-5.419V7.065L12.484 3h1.355l2.032 4.065z", class: "stroke-secondary" }))),
2709
2709
  },
2710
2710
  'buildings-2': {
2711
2711
  markup: () => (h("g", null,
@@ -2713,14 +2713,14 @@ const icons = {
2713
2713
  h("path", { d: "M12.302 7.186V3l10.233 2.791v16.744H3v-9.302h1.395" }),
2714
2714
  h("path", { d: "M6.721 22.535V9.512h7.442v13.023z", class: "filled" })),
2715
2715
  h("g", { class: "stroke-secondary" },
2716
- h("path", { d: "M9.512 16.023h1.86m-1.86 2.791h1.86m-1.86-5.582h1.86m5.582 5.582V8.581m2.791 10.233V9.511" }))))
2716
+ h("path", { d: "M9.512 16.023h1.86m-1.86 2.791h1.86m-1.86-5.582h1.86m5.582 5.582V8.581m2.791 10.233V9.511" })))),
2717
2717
  },
2718
2718
  'calendar-pay': {
2719
2719
  markup: () => (h("g", null,
2720
2720
  h("g", { class: "stroke-primary" },
2721
2721
  h("path", { d: "M23.241 9.586H2m9.483 12.138H2V4.276h21.241v9.483M6.931 2v4.552M18.31 2v4.552" })),
2722
2722
  h("g", { class: "stroke-secondary" },
2723
- h("path", { d: "M15.898 20.983c0 1.044.82 1.865 1.865 1.865h.745c1.045 0 1.865-.82 1.865-1.865 0-2.61-4.475-1.118-4.475-3.728 0-1.044.82-1.865 1.865-1.865h.745c1.045 0 1.865.82 1.865 1.865m-2.237 5.593v1.491m0-10.44v1.491" }))))
2723
+ h("path", { d: "M15.898 20.983c0 1.044.82 1.865 1.865 1.865h.745c1.045 0 1.865-.82 1.865-1.865 0-2.61-4.475-1.118-4.475-3.728 0-1.044.82-1.865 1.865-1.865h.745c1.045 0 1.865.82 1.865 1.865m-2.237 5.593v1.491m0-10.44v1.491" })))),
2724
2724
  },
2725
2725
  'calendar-repeat': {
2726
2726
  markup: () => (h("g", null,
@@ -2728,7 +2728,7 @@ const icons = {
2728
2728
  h("path", { d: "M23.241 9.586H2m9.483 12.138H2V4.276h21.241v9.483M6.931 2v4.552M18.31 2v4.552" })),
2729
2729
  h("g", { class: "stroke-secondary" },
2730
2730
  h("path", { d: "M23 20a4 4 0 1 1-4-4c1.612 0 3.018.996 3.652 2.37" }),
2731
- h("path", { d: "M22.892 16.578l-.24 1.792-1.686-.226" }))))
2731
+ h("path", { d: "M22.892 16.578l-.24 1.792-1.686-.226" })))),
2732
2732
  },
2733
2733
  'check-dollar': {
2734
2734
  markup: () => (h("g", null,
@@ -2736,14 +2736,14 @@ const icons = {
2736
2736
  h("g", { class: "stroke-secondary" },
2737
2737
  h("path", { d: "M6.508 12.689h10.654M6.508 15.574h5.77" })),
2738
2738
  h("g", null,
2739
- h("path", { d: "M18.898 19.983c0 1.044.82 1.864 1.865 1.864h.745c1.045 0 1.865-.82 1.865-1.864 0-2.61-4.475-1.119-4.475-3.729 0-1.044.82-1.864 1.865-1.864h.745c1.045 0 1.865.82 1.865 1.864m-2.237 5.594v1.49m0-10.439v1.49" }))))
2739
+ h("path", { d: "M18.898 19.983c0 1.044.82 1.864 1.865 1.864h.745c1.045 0 1.865-.82 1.865-1.864 0-2.61-4.475-1.119-4.475-3.729 0-1.044.82-1.864 1.865-1.864h.745c1.045 0 1.865.82 1.865 1.864m-2.237 5.594v1.49m0-10.439v1.49" })))),
2740
2740
  },
2741
2741
  'check-shield': {
2742
2742
  markup: () => (h("g", null,
2743
2743
  h("path", { d: "M15.023 19H2V8h22v5", class: "stroke-primary" }),
2744
2744
  h("g", { class: "stroke-secondary" },
2745
2745
  h("path", { d: "M6.508 12.689h10.919M6.508 15.574h5.77" })),
2746
- h("path", { d: "M21 15c-1.143.857-2.857 1.429-4 1.429 0 2.666 1.333 5.428 4 6.571 2.667-1.143 4-3.905 4-6.571-1.143 0-2.857-.572-4-1.429z", class: "stroke-primary filled" })))
2746
+ h("path", { d: "M21 15c-1.143.857-2.857 1.429-4 1.429 0 2.666 1.333 5.428 4 6.571 2.667-1.143 4-3.905 4-6.571-1.143 0-2.857-.572-4-1.429z", class: "stroke-primary filled" }))),
2747
2747
  },
2748
2748
  'credit-score': {
2749
2749
  markup: () => (h("g", null,
@@ -2752,7 +2752,7 @@ const icons = {
2752
2752
  h("path", { d: "M13 6c3.045 0 5.8 1.237 7.793 3.236l-3.542 3.53A5.981 5.981 0 0 0 13 11V6zm0 0v5a5.981 5.981 0 0 0-4.242 1.756L5.224 9.22C7.214 7.23 9.964 6 13 6zM5.223 9.22l3.535 3.536a5.98 5.98 0 0 0-1.754 4.02L7 17H2a10.97 10.97 0 0 1 3.223-7.78z" })),
2753
2753
  h("g", { class: "stroke-secondary", transform: "translate(11 9.5)" },
2754
2754
  h("path", { d: "M2.845 5.689L5.5 0" }),
2755
- h("circle", { cx: "2", cy: "7.5", r: "2" }))))
2755
+ h("circle", { cx: "2", cy: "7.5", r: "2" })))),
2756
2756
  },
2757
2757
  'delivery-truck': {
2758
2758
  markup: () => (h("g", null,
@@ -2761,19 +2761,19 @@ const icons = {
2761
2761
  h("g", { class: "stroke-secondary" },
2762
2762
  h("g", { class: "filled", transform: "translate(3.721 16.174)" },
2763
2763
  h("circle", { cx: "3.148", cy: "2.957", r: "2.164" }),
2764
- h("circle", { cx: "15.049", cy: "2.957", r: "2.164" })))))
2764
+ h("circle", { cx: "15.049", cy: "2.957", r: "2.164" }))))),
2765
2765
  },
2766
2766
  factory: {
2767
2767
  markup: () => (h("g", null,
2768
2768
  h("g", { class: "stroke-primary" },
2769
2769
  h("path", { d: "M16.548 15.193V9.774l-7.451 5.419-2.032-5.419H3v13.548h20.323V9.774zm3.387 4.065h-1.354m-3.387 0h-1.355" })),
2770
- h("path", { d: "M12.484 3.677c-.862 0-1.64.332-2.238.863A4.064 4.064 0 0 0 3 7.065h12.871a3.387 3.387 0 0 0-3.387-3.388z", class: "stroke-secondary filled" })))
2770
+ h("path", { d: "M12.484 3.677c-.862 0-1.64.332-2.238.863A4.064 4.064 0 0 0 3 7.065h12.871a3.387 3.387 0 0 0-3.387-3.388z", class: "stroke-secondary filled" }))),
2771
2771
  },
2772
2772
  failed: {
2773
2773
  markup: () => (h("g", null,
2774
2774
  h("g", { class: "stroke-secondary" },
2775
2775
  h("path", { d: "M17.4 8.6l-8.8 8.8m8.8 0L8.6 8.6" })),
2776
- h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" })))
2776
+ h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" }))),
2777
2777
  },
2778
2778
  'hand-with-key': {
2779
2779
  markup: () => (h("g", null,
@@ -2782,7 +2782,7 @@ const icons = {
2782
2782
  h("path", { d: "M15.88 16.3h4.62c2.52 0 2.8 1.4 2.8 1.4l-10.01 4.06c-.79.327-1.68.302-2.45-.07L5.8 19.1M3 11.4h2.8v9.1H3z" })),
2783
2783
  h("g", { class: "stroke-secondary filled", transform: "translate(7.197 3)" },
2784
2784
  h("circle", { cx: "2.803", cy: "3.5", r: "1" }),
2785
- h("path", { d: "M6.708 2.1a3.5 3.5 0 1 0 0 2.8h2.395l1.05.7 1.05-.7h2.1l.7-2.8H6.708z" }))))
2785
+ h("path", { d: "M6.708 2.1a3.5 3.5 0 1 0 0 2.8h2.395l1.05.7 1.05-.7h2.1l.7-2.8H6.708z" })))),
2786
2786
  },
2787
2787
  'home-gear': {
2788
2788
  markup: () => (h("g", null,
@@ -2792,14 +2792,14 @@ const icons = {
2792
2792
  h("g", { class: "stroke-secondary", transform: "translate(9.905 10.467)" },
2793
2793
  h("path", { d: "M12.795 8.767c0-.162-.015-.32-.038-.474l1.233-1.275-.733-1.27-1.719.43a3.29 3.29 0 0 0-.823-.476L10.228 4H8.762l-.487 1.702a3.29 3.29 0 0 0-.823.476l-1.718-.43L5 7.018l1.233 1.275a3.26 3.26 0 0 0-.038.474c0 .161.015.319.038.474L5 10.515l.733 1.27 1.719-.43c.248.196.525.357.823.476l.487 1.702h1.466l.486-1.702a3.29 3.29 0 0 0 .824-.476l1.718.43.734-1.27-1.233-1.274a3.26 3.26 0 0 0 .038-.474z", class: "filled" }),
2794
2794
  h("circle", { cx: "9.495", cy: "8.767", r: "1.1" }),
2795
- h("path", { d: "M.858.11h4.475v3.729H.858z" }))))
2795
+ h("path", { d: "M.858.11h4.475v3.729H.858z" })))),
2796
2796
  },
2797
2797
  law: {
2798
2798
  markup: () => (h("g", null,
2799
2799
  h("g", { class: "stroke-secondary" },
2800
2800
  h("path", { d: "M11.218 10.872l7.304-7.304 2.74 2.739-7.305 7.304zm6.39-.914l5.479 5.478" })),
2801
2801
  h("g", { class: "stroke-primary" },
2802
- h("path", { d: "M4.826 22.741v-3.652h10.957v3.652M5.739 15.437H3m4.343-3.874L5.407 9.626M3 22.741h14.609" }))))
2802
+ h("path", { d: "M4.826 22.741v-3.652h10.957v3.652M5.739 15.437H3m4.343-3.874L5.407 9.626M3 22.741h14.609" })))),
2803
2803
  },
2804
2804
  microscope: {
2805
2805
  markup: () => (h("g", null,
@@ -2807,14 +2807,14 @@ const icons = {
2807
2807
  h("path", { d: "M14.952 12.859l-1.016-1.76M8.45 5.662l3.52-2.032 3.726 6.453-1.76 1.016-1.761 1.016z" })),
2808
2808
  h("g", { class: "stroke-primary" },
2809
2809
  h("path", { d: "M7.163 18.765l-.875-1.316a6.097 6.097 0 0 1 2.054-8.526l5.028-2.87m.77 11.969l5.779-3.337" }),
2810
- h("path", { d: "M21.597 23.661H5.339v-1.693a3.726 3.726 0 1 1 7.452 0l-.037 1.693" }))))
2810
+ h("path", { d: "M21.597 23.661H5.339v-1.693a3.726 3.726 0 1 1 7.452 0l-.037 1.693" })))),
2811
2811
  },
2812
2812
  'mobile-fast-dollar': {
2813
2813
  markup: () => (h("g", null,
2814
2814
  h("g", { "stroke-width": "1.37", class: "stroke-primary" },
2815
2815
  h("path", { d: "M9.898 5.715h13.771M7.377 20.252h13.801m-1.665 3.269H8.317c-.727 0-1.317-.59-1.317-1.317L10 5.08c0-.728.59-1.318 1.317-1.318h11.196c.728 0 1.317.59 1.317 1.318l-3 17.123c0 .727-.59 1.317-1.317 1.317z" })),
2816
2816
  h("g", { "stroke-width": "1.5", class: "stroke-secondary" },
2817
- h("path", { d: "M12.898 14.983c0 1.044.82 1.864 1.865 1.864h.745c1.045 0 1.865-.82 1.865-1.864 0-2.61-4.475-1.119-4.475-3.729 0-1.044.82-1.864 1.865-1.864h.745c1.045 0 1.865.82 1.865 1.864m-2.237 5.594v1.49m0-10.439v1.49M3.5 15.5h2m-3-5h4m-5-5h6" }))))
2817
+ h("path", { d: "M12.898 14.983c0 1.044.82 1.864 1.865 1.864h.745c1.045 0 1.865-.82 1.865-1.864 0-2.61-4.475-1.119-4.475-3.729 0-1.044.82-1.864 1.865-1.864h.745c1.045 0 1.865.82 1.865 1.864m-2.237 5.594v1.49m0-10.439v1.49M3.5 15.5h2m-3-5h4m-5-5h6" })))),
2818
2818
  },
2819
2819
  mortgage: {
2820
2820
  markup: () => (h("g", null,
@@ -2822,14 +2822,14 @@ const icons = {
2822
2822
  h("path", { d: "M17.767 2.367l-4.4 3.667v5.133h8.8V6.034zm0 6.6v2.2" })),
2823
2823
  h("g", { class: "stroke-primary" },
2824
2824
  h("path", { d: "M5.17 13.627h.746c1.69 0 3.6.93 4.474 2.237h2.983c1.497 0 2.983 1.487 2.983 2.983H9.645" }),
2825
- h("path", { d: "M15.88 17.356h4.951c2.703 0 2.983 1.491 2.983 1.491l-10.68 4.338c-.85.34-1.804.3-2.622-.11L5.17 20.362m-2.983-8.227H5.17v9.695H2.187z" }))))
2825
+ h("path", { d: "M15.88 17.356h4.951c2.703 0 2.983 1.491 2.983 1.491l-10.68 4.338c-.85.34-1.804.3-2.622-.11L5.17 20.362m-2.983-8.227H5.17v9.695H2.187z" })))),
2826
2826
  },
2827
2827
  mountains: {
2828
2828
  markup: () => (h("g", null,
2829
2829
  h("g", { class: "stroke-primary filled" },
2830
2830
  h("path", { d: "M10.49 9.406L8.634 6.537 3 15.244h3.841m9.156-5.838l1.857-2.869 5.634 8.707h-3.842" })),
2831
2831
  h("g", { class: "stroke-secondary" },
2832
- h("path", { d: "M9.402 11.146h7.683M13.244 5l10.244 16.39H3z" }))))
2832
+ h("path", { d: "M9.402 11.146h7.683M13.244 5l10.244 16.39H3z" })))),
2833
2833
  },
2834
2834
  roadblock: {
2835
2835
  markup: () => (h("g", null,
@@ -2837,7 +2837,7 @@ const icons = {
2837
2837
  h("path", { d: "M8.419 16.548v6.097m-2.71 0v-6.097m14.903 0v6.097m-2.709 0v-6.097M3.677 22.645h6.774m5.42 0h6.774M8.419 5.71V3h-2.71v2.71m14.903 0V3h-2.709v2.71" })),
2838
2838
  h("g", { class: "stroke-secondary" },
2839
2839
  h("path", { d: "M5.71 5.71l8.129 8.129M3 7.065l6.774 6.774m6.774-8.129l6.775 6.774M12.484 5.71l8.129 8.129" }),
2840
- h("path", { d: "M3 5.71h20.323v8.129H3z", class: "filled" }))))
2840
+ h("path", { d: "M3 5.71h20.323v8.129H3z", class: "filled" })))),
2841
2841
  },
2842
2842
  section: {
2843
2843
  markup: () => (h("g", { class: "Icons/actions/section" },
@@ -2846,7 +2846,7 @@ const icons = {
2846
2846
  h("path", { d: "M5 6h13v2H5zm0 6h7v3H5z" }),
2847
2847
  h("path", { d: "M5 18h7v3H5z" }),
2848
2848
  h("path", { d: "M14 12h7v3h-7z" }),
2849
- h("path", { d: "M14 18h7v3h-7z" }))))
2849
+ h("path", { d: "M14 18h7v3h-7z" })))),
2850
2850
  },
2851
2851
  'sign-closed': {
2852
2852
  markup: () => (h("g", null,
@@ -2856,7 +2856,7 @@ const icons = {
2856
2856
  h("g", { "stroke-width": "1.5", class: "stroke-secondary" },
2857
2857
  h("path", { d: "M23.046 19.227v3.182H3.955v-3.182m0-8.273V8.41h19.09v2.545" })),
2858
2858
  h("g", { class: "filled" },
2859
- h("path", { d: "M4.728 14.569c-.14.203-.208.483-.208.839 0 .741.281 1.112.845 1.112.342 0 .66-.112.977-.243v.88a2.663 2.663 0 0 1-1.09.214c-1.115 0-1.802-.64-1.802-1.968 0-.717.254-1.392.873-1.748.282-.162.614-.243.994-.243.416 0 .814.09 1.193.27l-.319.82a3.704 3.704 0 0 0-.426-.169c-.398-.126-.802-.107-1.037.236zm2.311 2.749v-3.852h1.04v3.012h1.483v.84zm6.689-1.931c0 .648-.159 1.141-.477 1.478-.317.337-.782.506-1.395.506-.605 0-1.068-.17-1.39-.509-.323-.338-.484-.832-.484-1.48 0-.642.16-1.13.48-1.469.322-.337.788-.507 1.398-.507.613 0 1.078.168 1.393.503.317.336.475.828.475 1.478zm-2.65 0c0 .745.26 1.117.778 1.117.618 0 .777-.496.777-1.117 0-.612-.163-1.127-.772-1.127-.521 0-.783.375-.783 1.127zm5.81.762c0 .458-.23.854-.706 1.068-.425.192-1.046.184-1.448.1a2.42 2.42 0 0 1-.543-.189v-.927c.198.102.405.181.62.239.376.1 1.037.187 1.037-.202 0-.122-.078-.191-.183-.258a5.931 5.931 0 0 0-.512-.247c-.588-.268-.936-.544-.936-1.194 0-.794.66-1.127 1.451-1.127.4 0 .806.093 1.22.277l-.319.804c-.36-.166-.67-.248-.932-.248-.297 0-.388.127-.388.248 0 .235.529.426.755.53.55.246.884.522.884 1.126zm2.828 1.169H17.43v-3.852h2.286v.835H18.47v.606h1.154v.835H18.47v.727h1.246zm3.89-2.007c0 .643-.177 1.137-.531 1.486-.355.348-.852.521-1.492.521h-1.246v-3.852h1.333c.618 0 1.095.159 1.43.475.337.316.506.773.506 1.37zm-1.08.037c0-.623-.214-1.042-.846-1.042h-.303v2.158h.232c.69 0 .917-.435.917-1.116z" }))))
2859
+ h("path", { d: "M4.728 14.569c-.14.203-.208.483-.208.839 0 .741.281 1.112.845 1.112.342 0 .66-.112.977-.243v.88a2.663 2.663 0 0 1-1.09.214c-1.115 0-1.802-.64-1.802-1.968 0-.717.254-1.392.873-1.748.282-.162.614-.243.994-.243.416 0 .814.09 1.193.27l-.319.82a3.704 3.704 0 0 0-.426-.169c-.398-.126-.802-.107-1.037.236zm2.311 2.749v-3.852h1.04v3.012h1.483v.84zm6.689-1.931c0 .648-.159 1.141-.477 1.478-.317.337-.782.506-1.395.506-.605 0-1.068-.17-1.39-.509-.323-.338-.484-.832-.484-1.48 0-.642.16-1.13.48-1.469.322-.337.788-.507 1.398-.507.613 0 1.078.168 1.393.503.317.336.475.828.475 1.478zm-2.65 0c0 .745.26 1.117.778 1.117.618 0 .777-.496.777-1.117 0-.612-.163-1.127-.772-1.127-.521 0-.783.375-.783 1.127zm5.81.762c0 .458-.23.854-.706 1.068-.425.192-1.046.184-1.448.1a2.42 2.42 0 0 1-.543-.189v-.927c.198.102.405.181.62.239.376.1 1.037.187 1.037-.202 0-.122-.078-.191-.183-.258a5.931 5.931 0 0 0-.512-.247c-.588-.268-.936-.544-.936-1.194 0-.794.66-1.127 1.451-1.127.4 0 .806.093 1.22.277l-.319.804c-.36-.166-.67-.248-.932-.248-.297 0-.388.127-.388.248 0 .235.529.426.755.53.55.246.884.522.884 1.126zm2.828 1.169H17.43v-3.852h2.286v.835H18.47v.606h1.154v.835H18.47v.727h1.246zm3.89-2.007c0 .643-.177 1.137-.531 1.486-.355.348-.852.521-1.492.521h-1.246v-3.852h1.333c.618 0 1.095.159 1.43.475.337.316.506.773.506 1.37zm-1.08.037c0-.623-.214-1.042-.846-1.042h-.303v2.158h.232c.69 0 .917-.435.917-1.116z" })))),
2860
2860
  },
2861
2861
  'sign-open': {
2862
2862
  markup: () => (h("g", null,
@@ -2865,7 +2865,7 @@ const icons = {
2865
2865
  h("circle", { cx: "6.097", cy: "1.355", r: "1.355" })),
2866
2866
  h("path", { d: "M3.339 7.758h20.323v14.903H3.339z", class: "stroke-secondary" }),
2867
2867
  h("g", { class: "filled" },
2868
- h("path", { d: "M9.781 15.234c0 .69-.168 1.214-.507 1.573-.339.359-.833.538-1.486.538-.644 0-1.136-.18-1.48-.54-.342-.362-.514-.888-.514-1.578 0-.681.17-1.202.51-1.562.343-.36.839-.54 1.49-.54s1.146.179 1.482.536c.337.357.505.881.505 1.573zm-2.821 0c0 .792.276 1.189.828 1.189.661 0 .827-.533.827-1.19 0-.648-.17-1.198-.821-1.198-.556 0-.834.4-.834 1.2zm6.537-.741c0 .458-.135.812-.405 1.062-.271.25-.655.374-1.151.374h-.312v1.36h-1.108v-4.1h1.42c.517 0 .906.113 1.166.34.26.226.39.548.39.964zm-1.868.533h.202c.329 0 .544-.192.544-.527 0-.277-.154-.415-.46-.415h-.286v.941zm4.955 2.263h-2.433v-4.1h2.433v.889h-1.326v.645h1.228v.889h-1.228v.774h1.326zm4.621 0h-1.453l-1.498-2.888s.028.801.028 1.04v1.848h-.98v-4.1h1.446l1.509 2.85a17.398 17.398 0 0 1-.039-.996V13.19h.987v4.1z" }))))
2868
+ h("path", { d: "M9.781 15.234c0 .69-.168 1.214-.507 1.573-.339.359-.833.538-1.486.538-.644 0-1.136-.18-1.48-.54-.342-.362-.514-.888-.514-1.578 0-.681.17-1.202.51-1.562.343-.36.839-.54 1.49-.54s1.146.179 1.482.536c.337.357.505.881.505 1.573zm-2.821 0c0 .792.276 1.189.828 1.189.661 0 .827-.533.827-1.19 0-.648-.17-1.198-.821-1.198-.556 0-.834.4-.834 1.2zm6.537-.741c0 .458-.135.812-.405 1.062-.271.25-.655.374-1.151.374h-.312v1.36h-1.108v-4.1h1.42c.517 0 .906.113 1.166.34.26.226.39.548.39.964zm-1.868.533h.202c.329 0 .544-.192.544-.527 0-.277-.154-.415-.46-.415h-.286v.941zm4.955 2.263h-2.433v-4.1h2.433v.889h-1.326v.645h1.228v.889h-1.228v.774h1.326zm4.621 0h-1.453l-1.498-2.888s.028.801.028 1.04v1.848h-.98v-4.1h1.446l1.509 2.85a17.398 17.398 0 0 1-.039-.996V13.19h.987v4.1z" })))),
2869
2869
  },
2870
2870
  'sign-sale': {
2871
2871
  markup: () => (h("g", null,
@@ -2873,7 +2873,7 @@ const icons = {
2873
2873
  h("path", { d: "M14.42 17.258v6.387h-2.84v-6.387m2.84-12.064v-2.84h-2.84v2.84" })),
2874
2874
  h("path", { d: "M2.355 5.194h21.29v9.935H2.355z", class: "stroke-secondary" }),
2875
2875
  h("g", { class: "filled" },
2876
- h("path", { d: "M8.714 11.058c.005.267-.07.529-.213.753a1.413 1.413 0 0 1-.621.512c-.3.127-.625.19-.951.182a3.907 3.907 0 0 1-.765-.064 2.845 2.845 0 0 1-.644-.222v-1.097c.234.12.48.215.733.284.227.064.462.098.698.102a.675.675 0 0 0 .403-.096.292.292 0 0 0 .128-.245.264.264 0 0 0-.052-.163.586.586 0 0 0-.165-.142 7.11 7.11 0 0 0-.607-.293c-.24-.1-.464-.233-.669-.393a1.218 1.218 0 0 1-.33-.437 1.461 1.461 0 0 1-.108-.583 1.168 1.168 0 0 1 .459-.986 2.02 2.02 0 0 1 1.26-.355c.498.006.99.118 1.444.328l-.378.954a2.74 2.74 0 0 0-1.104-.295.578.578 0 0 0-.35.084.256.256 0 0 0-.108.21.302.302 0 0 0 .138.24c.24.148.493.278.753.386.315.12.596.315.82.568.159.223.24.493.229.767zm3.506 1.384l-.226-.85H10.51l-.23.85H8.925l1.491-4.576h1.644l1.506 4.576H12.22zm-.482-1.864l-.196-.749a17.235 17.235 0 0 1-.167-.645 14.6 14.6 0 0 1-.13-.568 10.57 10.57 0 0 1-.11.525c-.055.242-.177.721-.366 1.438l.97-.001zm2.317 1.865v-4.56h1.232v3.564h1.758v.994zm6.425 0h-2.707v-4.56h2.707v.99h-1.475v.716h1.366v.989h-1.366v.861h1.475z" }))))
2876
+ h("path", { d: "M8.714 11.058c.005.267-.07.529-.213.753a1.413 1.413 0 0 1-.621.512c-.3.127-.625.19-.951.182a3.907 3.907 0 0 1-.765-.064 2.845 2.845 0 0 1-.644-.222v-1.097c.234.12.48.215.733.284.227.064.462.098.698.102a.675.675 0 0 0 .403-.096.292.292 0 0 0 .128-.245.264.264 0 0 0-.052-.163.586.586 0 0 0-.165-.142 7.11 7.11 0 0 0-.607-.293c-.24-.1-.464-.233-.669-.393a1.218 1.218 0 0 1-.33-.437 1.461 1.461 0 0 1-.108-.583 1.168 1.168 0 0 1 .459-.986 2.02 2.02 0 0 1 1.26-.355c.498.006.99.118 1.444.328l-.378.954a2.74 2.74 0 0 0-1.104-.295.578.578 0 0 0-.35.084.256.256 0 0 0-.108.21.302.302 0 0 0 .138.24c.24.148.493.278.753.386.315.12.596.315.82.568.159.223.24.493.229.767zm3.506 1.384l-.226-.85H10.51l-.23.85H8.925l1.491-4.576h1.644l1.506 4.576H12.22zm-.482-1.864l-.196-.749a17.235 17.235 0 0 1-.167-.645 14.6 14.6 0 0 1-.13-.568 10.57 10.57 0 0 1-.11.525c-.055.242-.177.721-.366 1.438l.97-.001zm2.317 1.865v-4.56h1.232v3.564h1.758v.994zm6.425 0h-2.707v-4.56h2.707v.99h-1.475v.716h1.366v.989h-1.366v.861h1.475z" })))),
2877
2877
  },
2878
2878
  'sign-sold': {
2879
2879
  markup: () => (h("g", null,
@@ -2881,48 +2881,48 @@ const icons = {
2881
2881
  h("path", { d: "M14.42 17.258v6.387h-2.84v-6.387m2.84-12.064v-2.84h-2.84v2.84" })),
2882
2882
  h("path", { d: "M2.355 5.194h21.29v9.935H2.355z", class: "stroke-secondary" }),
2883
2883
  h("g", { class: "filled" },
2884
- h("path", { d: "M8.177 11.052a1.34 1.34 0 0 1-.214.751 1.404 1.404 0 0 1-.619.51c-.3.127-.622.19-.948.182a3.82 3.82 0 0 1-.76-.062A2.814 2.814 0 0 1 5 12.21v-1.091c.232.12.476.214.728.281.227.064.46.098.696.101.14.013.28-.02.402-.09a.293.293 0 0 0 .076-.408.594.594 0 0 0-.166-.141 6.108 6.108 0 0 0-.604-.293 2.876 2.876 0 0 1-.666-.391 1.209 1.209 0 0 1-.33-.436 1.438 1.438 0 0 1-.108-.581 1.167 1.167 0 0 1 .455-.981c.368-.253.81-.376 1.256-.351.498.006.988.118 1.44.327l-.378.94A2.714 2.714 0 0 0 6.7 8.804a.569.569 0 0 0-.348.085.252.252 0 0 0-.11.208.302.302 0 0 0 .139.24c.24.147.491.276.751.385.315.12.596.315.819.568.157.222.237.49.225.762zm4.956-.898a2.456 2.456 0 0 1-.562 1.744c-.44.423-1.04.64-1.649.597-.605.04-1.2-.178-1.637-.6a2.442 2.442 0 0 1-.57-1.747c-.044-.63.16-1.252.567-1.734a2.173 2.173 0 0 1 1.65-.599 2.154 2.154 0 0 1 1.644.595c.404.488.603 1.114.557 1.745zm-3.127 0c0 .879.305 1.318.916 1.318.27.02.532-.101.692-.32a1.75 1.75 0 0 0 .225-1 1.77 1.77 0 0 0-.228-1.007.78.78 0 0 0-.682-.324c-.617.001-.926.446-.926 1.333h.003zm3.948 2.279V7.885h1.228v3.556h1.75v.992zm7.565-2.365a2.348 2.348 0 0 1-.627 1.753 2.407 2.407 0 0 1-1.761.612H17.66V7.885h1.573c.614-.04 1.22.16 1.69.559.42.432.638 1.022.596 1.624zm-1.274.042a1.438 1.438 0 0 0-.247-.926.91.91 0 0 0-.75-.302h-.358v2.548h.273a.99.99 0 0 0 .818-.325c.197-.294.29-.645.262-.997l.002.003z" }))))
2884
+ h("path", { d: "M8.177 11.052a1.34 1.34 0 0 1-.214.751 1.404 1.404 0 0 1-.619.51c-.3.127-.622.19-.948.182a3.82 3.82 0 0 1-.76-.062A2.814 2.814 0 0 1 5 12.21v-1.091c.232.12.476.214.728.281.227.064.46.098.696.101.14.013.28-.02.402-.09a.293.293 0 0 0 .076-.408.594.594 0 0 0-.166-.141 6.108 6.108 0 0 0-.604-.293 2.876 2.876 0 0 1-.666-.391 1.209 1.209 0 0 1-.33-.436 1.438 1.438 0 0 1-.108-.581 1.167 1.167 0 0 1 .455-.981c.368-.253.81-.376 1.256-.351.498.006.988.118 1.44.327l-.378.94A2.714 2.714 0 0 0 6.7 8.804a.569.569 0 0 0-.348.085.252.252 0 0 0-.11.208.302.302 0 0 0 .139.24c.24.147.491.276.751.385.315.12.596.315.819.568.157.222.237.49.225.762zm4.956-.898a2.456 2.456 0 0 1-.562 1.744c-.44.423-1.04.64-1.649.597-.605.04-1.2-.178-1.637-.6a2.442 2.442 0 0 1-.57-1.747c-.044-.63.16-1.252.567-1.734a2.173 2.173 0 0 1 1.65-.599 2.154 2.154 0 0 1 1.644.595c.404.488.603 1.114.557 1.745zm-3.127 0c0 .879.305 1.318.916 1.318.27.02.532-.101.692-.32a1.75 1.75 0 0 0 .225-1 1.77 1.77 0 0 0-.228-1.007.78.78 0 0 0-.682-.324c-.617.001-.926.446-.926 1.333h.003zm3.948 2.279V7.885h1.228v3.556h1.75v.992zm7.565-2.365a2.348 2.348 0 0 1-.627 1.753 2.407 2.407 0 0 1-1.761.612H17.66V7.885h1.573c.614-.04 1.22.16 1.69.559.42.432.638 1.022.596 1.624zm-1.274.042a1.438 1.438 0 0 0-.247-.926.91.91 0 0 0-.75-.302h-.358v2.548h.273a.99.99 0 0 0 .818-.325c.197-.294.29-.645.262-.997l.002.003z" })))),
2885
2885
  },
2886
2886
  statements: {
2887
2887
  markup: () => (h("g", null,
2888
2888
  h("path", { d: "M3 2h16v19H3z", class: "stroke-primary filled" }),
2889
2889
  h("path", { d: "M22 5v19H6", class: "stroke-primary" }),
2890
2890
  h("g", { class: "stroke-secondary" },
2891
- h("path", { d: "M13 15.729h3m-3-4.474h3M13 6.78h3M5.898 12.983c0 1.044.82 1.865 1.865 1.865h.745c1.045 0 1.865-.82 1.865-1.865 0-2.61-4.475-1.118-4.475-3.728 0-1.044.82-1.865 1.865-1.865h.745c1.045 0 1.865.82 1.865 1.865m-2.237 5.593v1.491m0-10.44V7.39" }))))
2891
+ h("path", { d: "M13 15.729h3m-3-4.474h3M13 6.78h3M5.898 12.983c0 1.044.82 1.865 1.865 1.865h.745c1.045 0 1.865-.82 1.865-1.865 0-2.61-4.475-1.118-4.475-3.728 0-1.044.82-1.865 1.865-1.865h.745c1.045 0 1.865.82 1.865 1.865m-2.237 5.593v1.491m0-10.44V7.39" })))),
2892
2892
  },
2893
2893
  taxi: {
2894
2894
  markup: () => (h("g", null,
2895
2895
  h("g", { class: "stroke-primary" },
2896
2896
  h("path", { d: "M21 13l-1.778-6H6.778L5 13m3 7v3.5H4V20m18 0v3.5h-4V20m5 0H3v-5.25L4.818 13h16.364L23 14.75zM6.5 16h2m9 0h2" })),
2897
- h("path", { d: "M10 3h6v2h-6z", class: "stroke-secondary" })))
2897
+ h("path", { d: "M10 3h6v2h-6z", class: "stroke-secondary" }))),
2898
2898
  },
2899
2899
  'transfer-receive': {
2900
2900
  markup: () => (h("g", null,
2901
2901
  h("g", { class: "stroke-primary" },
2902
2902
  h("path", { d: "M17.651 16.045l-3.065-3.335 3.065-3.334m5.55 3.334h-8.616" })),
2903
2903
  h("g", { class: "stroke-secondary" },
2904
- h("path", { d: "M4 16.336c0 1.67 1.287 2.983 2.925 2.983h1.17c1.637 0 2.924-1.313 2.924-2.983 0-4.177-7.019-1.79-7.019-5.967C4 8.7 5.287 7.386 6.925 7.386h1.17c1.637 0 2.924 1.313 2.924 2.983m-3.51 8.95v2.386M7.509 5v2.386" }))))
2904
+ h("path", { d: "M4 16.336c0 1.67 1.287 2.983 2.925 2.983h1.17c1.637 0 2.924-1.313 2.924-2.983 0-4.177-7.019-1.79-7.019-5.967C4 8.7 5.287 7.386 6.925 7.386h1.17c1.637 0 2.924 1.313 2.924 2.983m-3.51 8.95v2.386M7.509 5v2.386" })))),
2905
2905
  },
2906
2906
  'transfer-send': {
2907
2907
  markup: () => (h("g", null,
2908
2908
  h("g", { class: "stroke-primary" },
2909
2909
  h("path", { d: "M19.333 16.086l3.503-3.335-3.503-3.334M14 12.751h8.718" })),
2910
2910
  h("g", { class: "stroke-secondary" },
2911
- h("path", { d: "M4 16.336c0 1.67 1.287 2.983 2.925 2.983h1.17c1.637 0 2.924-1.313 2.924-2.983 0-4.177-7.019-1.79-7.019-5.967C4 8.7 5.287 7.386 6.925 7.386h1.17c1.637 0 2.924 1.313 2.924 2.983m-3.51 8.95v2.386M7.509 5v2.386" }))))
2911
+ h("path", { d: "M4 16.336c0 1.67 1.287 2.983 2.925 2.983h1.17c1.637 0 2.924-1.313 2.924-2.983 0-4.177-7.019-1.79-7.019-5.967C4 8.7 5.287 7.386 6.925 7.386h1.17c1.637 0 2.924 1.313 2.924 2.983m-3.51 8.95v2.386M7.509 5v2.386" })))),
2912
2912
  },
2913
2913
  upload: {
2914
2914
  markup: () => (h("g", null,
2915
2915
  h("g", { class: "stroke-secondary" },
2916
2916
  h("path", { d: "M13 19V2.867m5.866 5.866L13 2.867 7.133 8.733" })),
2917
- h("path", { d: "M2 19.233v4.4h22v-4.4", class: "stroke-primary" })))
2917
+ h("path", { d: "M2 19.233v4.4h22v-4.4", class: "stroke-primary" }))),
2918
2918
  },
2919
2919
  'venmo-colored': {
2920
2920
  markup: () => (h("g", { class: "venmo-colored" },
2921
- h("path", { d: "M20.9876187,3 C21.6854112,4.15247726 22,5.33953062 22,6.83902303 C22,11.6216335 17.9173318,17.8345841 14.6037582,22.197265 L7.03535243,22.197265 L4,4.04713657 L10.6269682,3.41795887 L12.2318013,16.3329419 C13.7312937,13.8900412 15.5817425,10.0510182 15.5817425,7.43362462 C15.5817425,6.00095547 15.3363059,5.02512093 14.952744,4.22162948 L20.9876187,3 Z", id: "Path", fill: "#3D95CE", "fill-rule": "nonzero" })))
2921
+ h("path", { d: "M20.9876187,3 C21.6854112,4.15247726 22,5.33953062 22,6.83902303 C22,11.6216335 17.9173318,17.8345841 14.6037582,22.197265 L7.03535243,22.197265 L4,4.04713657 L10.6269682,3.41795887 L12.2318013,16.3329419 C13.7312937,13.8900412 15.5817425,10.0510182 15.5817425,7.43362462 C15.5817425,6.00095547 15.3363059,5.02512093 14.952744,4.22162948 L20.9876187,3 Z", id: "Path", fill: "#3D95CE", "fill-rule": "nonzero" }))),
2922
2922
  },
2923
2923
  'venmo-filled': {
2924
2924
  markup: () => (h("g", { class: "venmo-filled" },
2925
- h("path", { d: "M20.988 3C21.685 4.152 22 5.34 22 6.839c0 4.783-4.083 10.996-7.396 15.358H7.035L4 4.047l6.627-.629 1.605 12.915c1.5-2.443 3.35-6.282 3.35-8.9 0-1.432-.246-2.408-.63-3.211L20.989 3z", class: "filled" })))
2925
+ h("path", { d: "M20.988 3C21.685 4.152 22 5.34 22 6.839c0 4.783-4.083 10.996-7.396 15.358H7.035L4 4.047l6.627-.629 1.605 12.915c1.5-2.443 3.35-6.282 3.35-8.9 0-1.432-.246-2.408-.63-3.211L20.989 3z", class: "filled" }))),
2926
2926
  },
2927
2927
  virus: {
2928
2928
  markup: () => (h("g", null,
@@ -2932,7 +2932,7 @@ const icons = {
2932
2932
  h("circle", { cx: "1.774", cy: "1.065", r: "1.065" })),
2933
2933
  h("g", { class: "stroke-primary", transform: "translate(2.622 2.622)" },
2934
2934
  h("path", { d: "M6.305.544l1.086 2.622M4.993 1.087L7.616 0M.544 6.305l2.622 1.086M0 7.616l1.087-2.623m-.543 9.459l2.622-1.086m-2.079 2.397L0 13.14m6.305 7.073l1.086-2.622m.225 3.166L4.993 19.67m9.459.543l-1.086-2.622m2.397 2.079l-2.623 1.087m7.073-6.305l-2.622-1.086m3.166-.226l-1.087 2.623m.543-9.458l-2.622 1.086m2.079-2.398l1.087 2.623M14.452.544l-1.086 2.622M13.14 0l2.623 1.087" }),
2935
- h("circle", { cx: "10.378", cy: "10.378", r: "7.806", class: "filled" }))))
2935
+ h("circle", { cx: "10.378", cy: "10.378", r: "7.806", class: "filled" })))),
2936
2936
  },
2937
2937
  'zoom-in': {
2938
2938
  markup: () => (h("g", null,
@@ -2940,7 +2940,7 @@ const icons = {
2940
2940
  h("path", { d: "M11.036 7.893v6.286m3.143-3.143H7.893" })),
2941
2941
  h("g", { class: "stroke-primary", transform: "translate(2.393 2.393)" },
2942
2942
  h("path", { d: "M21.214 21.214l-3.928-3.928" }),
2943
- h("circle", { cx: "8.643", cy: "8.643", r: "8.643" }))))
2943
+ h("circle", { cx: "8.643", cy: "8.643", r: "8.643" })))),
2944
2944
  },
2945
2945
  'zoom-out': {
2946
2946
  markup: () => (h("g", null,
@@ -2948,8 +2948,8 @@ const icons = {
2948
2948
  h("path", { d: "M14.179 11.036H7.893" })),
2949
2949
  h("g", { class: "stroke-primary", transform: "translate(2.393 2.393)" },
2950
2950
  h("path", { d: "M21.214 21.214l-3.928-3.928" }),
2951
- h("circle", { cx: "8.643", cy: "8.643", r: "8.643" }))))
2952
- }
2951
+ h("circle", { cx: "8.643", cy: "8.643", r: "8.643" })))),
2952
+ },
2953
2953
  };
2954
2954
 
2955
2955
  export { icons as i };