q2-tecton-elements 1.13.0-alpha.0 → 1.13.0

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 (234) hide show
  1. package/dist/cjs/click-elsewhere.cjs.entry.js +5 -7
  2. package/dist/cjs/{icons-4595ee47.js → icons-08ffe5c9.js} +394 -384
  3. package/dist/cjs/{index-c2e53804.js → index-7febb200.js} +112 -65
  4. package/dist/cjs/{index-a55d3c34.js → index-dd823ee6.js} +27 -14
  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 +53 -59
  10. package/dist/cjs/q2-card.cjs.entry.js +127 -0
  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 +6 -3
  14. package/dist/cjs/q2-checkbox.cjs.entry.js +18 -10
  15. package/dist/cjs/q2-dropdown-item.cjs.entry.js +7 -7
  16. package/dist/cjs/q2-dropdown.cjs.entry.js +8 -17
  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 +439 -437
  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 +359 -0
  25. package/dist/cjs/q2-option.cjs.entry.js +3 -11
  26. package/dist/cjs/q2-pagination.cjs.entry.js +116 -0
  27. package/dist/cjs/q2-pill.cjs.entry.js +137 -0
  28. package/dist/cjs/q2-radio-group.cjs.entry.js +43 -18
  29. package/dist/cjs/q2-radio.cjs.entry.js +21 -4
  30. package/dist/cjs/q2-section.cjs.entry.js +5 -7
  31. package/dist/cjs/q2-select.cjs.entry.js +23 -26
  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 +12 -8
  36. package/dist/cjs/q2-tab-pane.cjs.entry.js +1 -1
  37. package/dist/cjs/q2-tag.cjs.entry.js +94 -0
  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 +10 -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-btn/styles.css +1 -1
  48. package/dist/collection/components/q2-calendar/helpers.js +22 -20
  49. package/dist/collection/components/q2-calendar/index.js +44 -37
  50. package/dist/collection/components/q2-calendar/validation.js +4 -2
  51. package/dist/collection/components/q2-card/index.js +347 -0
  52. package/dist/collection/components/q2-card/styles.css +177 -0
  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 +37 -12
  58. package/dist/collection/components/q2-checkbox-group/index.js +22 -1
  59. package/dist/collection/components/q2-dropdown/index.js +6 -15
  60. package/dist/collection/components/q2-dropdown-item/index.js +5 -5
  61. package/dist/collection/components/q2-editable-field/index.js +3 -6
  62. package/dist/collection/components/q2-icon/icons.js +393 -383
  63. package/dist/collection/components/q2-input/formatting/credit-card.js +15 -13
  64. package/dist/collection/components/q2-input/formatting/currency.js +162 -162
  65. package/dist/collection/components/q2-input/formatting/date.js +1 -1
  66. package/dist/collection/components/q2-input/formatting/generic.js +7 -8
  67. package/dist/collection/components/q2-input/formatting/number.js +6 -9
  68. package/dist/collection/components/q2-input/formatting/numeric.js +5 -5
  69. package/dist/collection/components/q2-input/formatting/phone.js +215 -215
  70. package/dist/collection/components/q2-input/formatting/postal.js +1 -1
  71. package/dist/collection/components/q2-input/index.js +81 -25
  72. package/dist/collection/components/q2-input/styles.css +19 -14
  73. package/dist/collection/components/q2-loading/index.js +4 -4
  74. package/dist/collection/components/q2-loading/skeleton/q2-loading-element/index.js +1 -1
  75. package/dist/collection/components/q2-loading/skeleton/shapes.js +8 -15
  76. package/dist/collection/components/q2-message/index.js +3 -3
  77. package/dist/collection/components/q2-optgroup/index.js +1 -1
  78. package/dist/collection/components/q2-option/index.js +19 -25
  79. package/dist/collection/components/q2-option/styles.css +5 -0
  80. package/dist/collection/components/q2-option-list/index.js +648 -0
  81. package/dist/collection/components/q2-option-list/styles.css +128 -0
  82. package/dist/collection/components/q2-pagination/index.js +275 -0
  83. package/dist/collection/components/q2-pagination/styles.css +120 -0
  84. package/dist/collection/components/q2-pill/index.js +324 -0
  85. package/dist/collection/components/q2-pill/styles.css +229 -0
  86. package/dist/collection/components/q2-radio/index.js +38 -1
  87. package/dist/collection/components/q2-radio-group/index.js +66 -24
  88. package/dist/collection/components/q2-section/index.js +5 -7
  89. package/dist/collection/components/q2-select/index.js +40 -25
  90. package/dist/collection/components/q2-stepper/index.js +8 -10
  91. package/dist/collection/components/q2-stepper/styles.css +5 -5
  92. package/dist/collection/components/q2-stepper-pane/index.js +133 -5
  93. package/dist/collection/components/q2-stepper-vertical/index.js +346 -0
  94. package/dist/collection/components/q2-stepper-vertical/styles.css +273 -0
  95. package/dist/collection/components/q2-tab-container/index.js +11 -7
  96. package/dist/collection/components/q2-tag/index.js +200 -0
  97. package/dist/collection/components/q2-tag/styles.css +141 -0
  98. package/dist/collection/components/q2-textarea/index.js +6 -6
  99. package/dist/collection/components/tecton-tab-pane/index.js +3 -10
  100. package/dist/collection/utils/index.js +25 -13
  101. package/dist/esm/click-elsewhere.entry.js +5 -7
  102. package/dist/esm/{icons-3ee662ea.js → icons-b1e11526.js} +394 -384
  103. package/dist/esm/{index-ec6660af.js → index-0ff8de52.js} +27 -15
  104. package/dist/esm/{index-be8376c0.js → index-dbfb3ecc.js} +112 -65
  105. package/dist/esm/loader.js +3 -3
  106. package/dist/esm/polyfills/css-shim.js +1 -1
  107. package/dist/esm/q2-avatar.entry.js +2 -2
  108. package/dist/esm/q2-badge.entry.js +39 -0
  109. package/dist/esm/q2-btn_2.entry.js +13 -13
  110. package/dist/esm/q2-calendar.entry.js +53 -59
  111. package/dist/esm/q2-card.entry.js +123 -0
  112. package/dist/esm/q2-carousel-pane.entry.js +5 -5
  113. package/dist/esm/q2-carousel.entry.js +318 -106
  114. package/dist/esm/q2-checkbox-group.entry.js +6 -3
  115. package/dist/esm/q2-checkbox.entry.js +18 -10
  116. package/dist/esm/q2-dropdown-item.entry.js +7 -7
  117. package/dist/esm/q2-dropdown.entry.js +8 -17
  118. package/dist/esm/q2-editable-field.entry.js +5 -8
  119. package/dist/esm/q2-icon.entry.js +3 -3
  120. package/dist/esm/q2-input.entry.js +439 -437
  121. package/dist/esm/q2-loading-element.entry.js +3 -3
  122. package/dist/esm/q2-loc.entry.js +2 -2
  123. package/dist/esm/q2-message.entry.js +5 -5
  124. package/dist/esm/q2-optgroup.entry.js +3 -3
  125. package/dist/esm/q2-option-list.entry.js +355 -0
  126. package/dist/esm/q2-option.entry.js +3 -11
  127. package/dist/esm/q2-pagination.entry.js +112 -0
  128. package/dist/esm/q2-pill.entry.js +133 -0
  129. package/dist/esm/q2-radio-group.entry.js +43 -18
  130. package/dist/esm/q2-radio.entry.js +21 -4
  131. package/dist/esm/q2-section.entry.js +5 -7
  132. package/dist/esm/q2-select.entry.js +23 -26
  133. package/dist/esm/q2-stepper-pane.entry.js +42 -4
  134. package/dist/esm/q2-stepper-vertical.entry.js +274 -0
  135. package/dist/esm/q2-stepper.entry.js +10 -12
  136. package/dist/esm/q2-tab-container.entry.js +12 -8
  137. package/dist/esm/q2-tab-pane.entry.js +1 -1
  138. package/dist/esm/q2-tag.entry.js +90 -0
  139. package/dist/esm/q2-tecton-elements.js +3 -3
  140. package/dist/esm/q2-textarea.entry.js +8 -8
  141. package/dist/esm/{shapes-81c11dfe.js → shapes-cff4e1f0.js} +9 -16
  142. package/dist/esm/tecton-tab-pane.entry.js +2 -5
  143. package/dist/loader/index.d.ts +0 -1
  144. package/dist/q2-tecton-elements/{p-75e87cca.entry.js → p-00e8f782.entry.js} +1 -1
  145. package/dist/q2-tecton-elements/p-0900bec1.entry.js +1 -0
  146. package/dist/q2-tecton-elements/p-10264ecb.entry.js +1 -0
  147. package/dist/q2-tecton-elements/p-123cdfb9.entry.js +1 -0
  148. package/dist/q2-tecton-elements/{p-fbf7c5e6.entry.js → p-1305ec5f.entry.js} +1 -1
  149. package/dist/q2-tecton-elements/p-148391d6.entry.js +1 -0
  150. package/dist/q2-tecton-elements/p-1dfaee64.entry.js +1 -0
  151. package/dist/q2-tecton-elements/{p-32ad664c.entry.js → p-221abbf6.entry.js} +1 -1
  152. package/dist/q2-tecton-elements/{p-c90a6016.js → p-255b2b4c.js} +1 -1
  153. package/dist/q2-tecton-elements/p-27736b6b.entry.js +1 -0
  154. package/dist/q2-tecton-elements/p-2846ab94.entry.js +1 -0
  155. package/dist/q2-tecton-elements/p-2bc1de01.entry.js +1 -0
  156. package/dist/q2-tecton-elements/{p-8ea2c4f7.entry.js → p-2c15414c.entry.js} +1 -1
  157. package/dist/q2-tecton-elements/p-2caa89fd.js +1 -0
  158. package/dist/q2-tecton-elements/p-327cca41.entry.js +1 -0
  159. package/dist/q2-tecton-elements/p-3a420dbf.entry.js +1 -0
  160. package/dist/q2-tecton-elements/p-3abcb09d.entry.js +1 -0
  161. package/dist/q2-tecton-elements/p-3fe98e3e.entry.js +1 -0
  162. package/dist/q2-tecton-elements/{p-bb2e110a.entry.js → p-430a979b.entry.js} +1 -1
  163. package/dist/q2-tecton-elements/{p-7e6fc65d.entry.js → p-45eb7739.entry.js} +1 -1
  164. package/dist/q2-tecton-elements/{p-750bcd33.entry.js → p-49b2abc4.entry.js} +1 -1
  165. package/dist/q2-tecton-elements/{p-9b50c3c3.entry.js → p-4ab30466.entry.js} +1 -1
  166. package/dist/q2-tecton-elements/p-50e218c7.entry.js +1 -0
  167. package/dist/q2-tecton-elements/p-5bbf2bfe.entry.js +1 -0
  168. package/dist/q2-tecton-elements/{p-ac859fcc.entry.js → p-6fec9235.entry.js} +1 -1
  169. package/dist/q2-tecton-elements/p-824aebd9.js +1 -0
  170. package/dist/q2-tecton-elements/p-a4ae89cc.entry.js +1 -0
  171. package/dist/q2-tecton-elements/{p-50967020.entry.js → p-a5562aaa.entry.js} +1 -1
  172. package/dist/q2-tecton-elements/p-ae4fed23.entry.js +1 -0
  173. package/dist/q2-tecton-elements/p-b2302cd3.entry.js +1 -0
  174. package/dist/q2-tecton-elements/p-c20cbb2d.entry.js +1 -0
  175. package/dist/q2-tecton-elements/p-ca7a3380.entry.js +1 -0
  176. package/dist/q2-tecton-elements/{p-a6f8d09a.entry.js → p-d33e152c.entry.js} +1 -1
  177. package/dist/q2-tecton-elements/{p-9024859f.entry.js → p-d5218cd6.entry.js} +1 -1
  178. package/dist/q2-tecton-elements/p-d52b435e.entry.js +1 -0
  179. package/dist/q2-tecton-elements/p-dd02cf8d.js +1 -0
  180. package/dist/q2-tecton-elements/{p-07a5d703.entry.js → p-e0e7ae8b.entry.js} +1 -1
  181. package/dist/q2-tecton-elements/{p-7e030e92.entry.js → p-ede12fc1.entry.js} +1 -1
  182. package/dist/q2-tecton-elements/{p-df182f61.entry.js → p-fdfbe75b.entry.js} +1 -1
  183. package/dist/q2-tecton-elements/q2-tecton-elements.esm.js +1 -1
  184. package/dist/test/elements/q2-tag-test.js +151 -0
  185. package/dist/test/helpers.js +20 -9
  186. package/dist/types/components/q2-badge/index.d.ts +13 -0
  187. package/dist/types/components/q2-btn/index.d.ts +3 -3
  188. package/dist/types/components/q2-calendar/helpers.d.ts +1 -0
  189. package/dist/types/components/q2-calendar/index.d.ts +2 -1
  190. package/dist/types/components/q2-calendar/validation.d.ts +1 -1
  191. package/dist/types/components/q2-card/index.d.ts +35 -0
  192. package/dist/types/components/q2-checkbox/index.d.ts +3 -1
  193. package/dist/types/components/q2-checkbox-group/index.d.ts +1 -0
  194. package/dist/types/components/q2-dropdown/index.d.ts +1 -1
  195. package/dist/types/components/q2-editable-field/index.d.ts +1 -1
  196. package/dist/types/components/q2-input/formatting/credit-card.d.ts +1 -3
  197. package/dist/types/components/q2-input/index.d.ts +5 -2
  198. package/dist/types/components/q2-option/index.d.ts +2 -3
  199. package/dist/types/components/q2-option-list/index.d.ts +62 -0
  200. package/dist/types/components/q2-pagination/index.d.ts +30 -0
  201. package/dist/types/components/q2-pill/index.d.ts +39 -0
  202. package/dist/types/components/q2-radio/index.d.ts +4 -1
  203. package/dist/types/components/q2-radio-group/index.d.ts +5 -1
  204. package/dist/types/components/q2-select/index.d.ts +2 -1
  205. package/dist/types/components/q2-stepper/index.d.ts +1 -1
  206. package/dist/types/components/q2-stepper-pane/index.d.ts +16 -1
  207. package/dist/types/components/q2-stepper-vertical/index.d.ts +52 -0
  208. package/dist/types/components/q2-tab-container/index.d.ts +1 -1
  209. package/dist/types/components/q2-tag/index.d.ts +28 -0
  210. package/dist/types/components/tecton-tab-pane/index.d.ts +2 -2
  211. package/dist/types/components.d.ts +235 -11
  212. package/dist/types/global.d.ts +1 -0
  213. package/dist/types/stencil-public-runtime.d.ts +6 -4
  214. package/dist/types/util.d.ts +2 -10
  215. package/dist/types/utils/index.d.ts +1 -0
  216. package/dist/types/workspace/workspace/Tecton_tecton-production_master/packages/q2-tecton-elements/.stencil/test/elements/q2-tag-test.d.ts +1 -0
  217. package/dist/types/workspace/workspace/{_production_release_1.11.0-alpha → Tecton_tecton-production_master}/packages/q2-tecton-elements/.stencil/test/helpers.d.ts +6 -3
  218. package/package.json +13 -13
  219. package/dist/q2-tecton-elements/p-06fff43d.entry.js +0 -1
  220. package/dist/q2-tecton-elements/p-080839ed.js +0 -1
  221. package/dist/q2-tecton-elements/p-29a37091.entry.js +0 -1
  222. package/dist/q2-tecton-elements/p-37aba2a4.js +0 -1
  223. package/dist/q2-tecton-elements/p-4cd00f1a.js +0 -1
  224. package/dist/q2-tecton-elements/p-6702eb4d.entry.js +0 -1
  225. package/dist/q2-tecton-elements/p-768e3a5d.entry.js +0 -1
  226. package/dist/q2-tecton-elements/p-843b1ee9.entry.js +0 -1
  227. package/dist/q2-tecton-elements/p-943c7745.entry.js +0 -1
  228. package/dist/q2-tecton-elements/p-95a73559.entry.js +0 -1
  229. package/dist/q2-tecton-elements/p-9a977ee6.entry.js +0 -1
  230. package/dist/q2-tecton-elements/p-b281c349.entry.js +0 -1
  231. package/dist/q2-tecton-elements/p-c5e55b9f.entry.js +0 -1
  232. package/dist/q2-tecton-elements/p-ccbe9158.entry.js +0 -1
  233. package/dist/q2-tecton-elements/p-db6f90ac.entry.js +0 -1
  234. package/dist/q2-tecton-elements/p-fa6eea5c.entry.js +0 -1
@@ -3,15 +3,15 @@ const icons = {
3
3
  a11y: {
4
4
  markup: () => (h("g", null,
5
5
  h("circle", { cx: "13.267", cy: "4.2", r: "2.2", class: "stroke-secondary filled" }),
6
- 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" })))
6
+ 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
7
  },
8
8
  add: {
9
9
  markup: () => (h("g", null,
10
10
  h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" }),
11
- h("path", { class: "stroke-secondary", d: "M8 13h10m-5-5v10" })))
11
+ h("path", { class: "stroke-secondary", d: "M8 13h10m-5-5v10" }))),
12
12
  },
13
13
  airplane: {
14
- 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" }))
14
+ 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
15
  },
16
16
  'alarm-clock': {
17
17
  markup: () => (h("g", null,
@@ -21,7 +21,7 @@ const icons = {
21
21
  h("circle", { cx: "8.217", cy: "8.217", r: "8.217" }),
22
22
  h("path", { d: "M13.575 14.448l2.86 3.813" })),
23
23
  h("g", { class: "stroke-secondary" },
24
- h("path", { d: "M3 6.565L7.565 2m15.522 4.565L18.522 2" })))))
24
+ h("path", { d: "M3 6.565L7.565 2m15.522 4.565L18.522 2" }))))),
25
25
  },
26
26
  ambulance: {
27
27
  markup: () => (h("g", null,
@@ -32,7 +32,7 @@ const icons = {
32
32
  h("g", { class: "filled", transform: "translate(5.37 18.242)" },
33
33
  h("circle", { cx: "2.71", cy: "2.71", r: "2.71" }),
34
34
  h("circle", { cx: "13.548", cy: "2.71", r: "2.71" })),
35
- 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" }))))
35
+ 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
36
  },
37
37
  android: {
38
38
  markup: () => (h("g", null,
@@ -40,25 +40,25 @@ const icons = {
40
40
  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" }),
41
41
  h("g", { class: "stroke-secondary filled", transform: "translate(10.311 5.787)" },
42
42
  h("circle", { cx: ".721", cy: ".721", r: "1" }),
43
- h("circle", { cx: "5.049", cy: ".721", r: "1" }))))
43
+ h("circle", { cx: "5.049", cy: ".721", r: "1" })))),
44
44
  },
45
45
  apple: {
46
46
  markup: () => (h("g", null,
47
47
  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" }),
48
48
  h("g", { class: "stroke-secondary" },
49
- 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" }))))
49
+ 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
50
  },
51
51
  'arrow-down': {
52
- markup: () => h("path", { class: "stroke-primary", d: "M13.5 3.5v20m7-7l-7 7-7-7" })
52
+ markup: () => (h("path", { class: "stroke-primary", d: "M13.5 3.5v20m7-7l-7 7-7-7" })),
53
53
  },
54
54
  'arrow-left': {
55
- markup: () => h("path", { class: "stroke-primary", d: "M22.5 13.5h-20m7 7l-7-7 7-7" })
55
+ markup: () => (h("path", { class: "stroke-primary", d: "M22.5 13.5h-20m7 7l-7-7 7-7" })),
56
56
  },
57
57
  'arrow-right': {
58
- markup: () => h("path", { class: "stroke-primary", d: "M3.5 13.5h20m-7-7l7 7-7 7" })
58
+ markup: () => (h("path", { class: "stroke-primary", d: "M3.5 13.5h20m-7-7l7 7-7 7" })),
59
59
  },
60
60
  'arrow-up': {
61
- markup: () => h("path", { class: "stroke-primary", d: "M13.5 23.5v-20m-7 7l7-7 7 7" })
61
+ markup: () => (h("path", { class: "stroke-primary", d: "M13.5 23.5v-20m-7 7l7-7 7 7" })),
62
62
  },
63
63
  atv: {
64
64
  markup: () => (h("g", null,
@@ -67,7 +67,7 @@ const icons = {
67
67
  h("circle", { cx: "16.484", cy: "3.548", r: "2.839" })),
68
68
  h("g", { class: "stroke-primary" },
69
69
  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" }),
70
- 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" }))))
70
+ 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
71
  },
72
72
  backpack: {
73
73
  markup: () => (h("g", null,
@@ -75,55 +75,55 @@ const icons = {
75
75
  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" }),
76
76
  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" })),
77
77
  h("g", { class: "stroke-secondary" },
78
- 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" }))))
78
+ 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
79
  },
80
80
  bank: {
81
81
  markup: () => (h("g", null,
82
82
  h("path", { class: "stroke-secondary", d: "M4.344 20.574V12.64m11.541 7.934V12.64m-5.771 7.934V12.64m11.541 0v7.934" }),
83
83
  h("circle", { cx: "13", cy: "7", r: "2", class: "stroke-primary filled" }),
84
- h("path", { class: "stroke-primary", d: "M2 20.574h22v2.885H2zM13 2L2 7.913V10.5h22V7.913z" })))
84
+ h("path", { class: "stroke-primary", d: "M2 20.574h22v2.885H2zM13 2L2 7.913V10.5h22V7.913z" }))),
85
85
  },
86
86
  barchart: {
87
87
  markup: () => (h("g", null,
88
88
  h("path", { d: "M10.433 3h5.133v19.067h-5.133z", class: "stroke-secondary filled" }),
89
- h("path", { class: "stroke-primary", d: "M2 16.2h5.133v5.867H2zm16.867-5.867H24v11.733h-5.133z" })))
89
+ h("path", { class: "stroke-primary", d: "M2 16.2h5.133v5.867H2zm16.867-5.867H24v11.733h-5.133z" }))),
90
90
  },
91
91
  'barchart-trend': {
92
92
  markup: () => (h("g", null,
93
93
  h("path", { class: "stroke-primary filled", d: "M2 18.867h5v4.4H2zm8.433-4.4h5v8.8h-5zm8.434-4.4h5v13.2h-5z" }),
94
94
  h("g", { class: "stroke-secondary" },
95
95
  h("path", { d: "M4.933 10.8l4.4-4.4L13 10.067 21.066 2" }),
96
- h("path", { d: "M15.933 2h5.133v5.133" }))))
96
+ h("path", { d: "M15.933 2h5.133v5.133" })))),
97
97
  },
98
98
  bell: {
99
99
  markup: () => (h("g", null,
100
100
  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" }),
101
- 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" })))
101
+ 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
102
  },
103
103
  bicycle: {
104
104
  markup: () => (h("g", null,
105
105
  h("g", { class: "stroke-primary", transform: "translate(2 12.861)" },
106
106
  h("ellipse", { cx: "4.4", cy: "4.431", rx: "4.4", ry: "4.431" }),
107
107
  h("ellipse", { cx: "17.6", cy: "4.431", rx: "4.4", ry: "4.431" })),
108
- 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" })))
108
+ 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
109
  },
110
110
  'brand-autobooks-color': {
111
111
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
112
- 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" })))
112
+ 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
113
  },
114
114
  'brand-autobooks-filled': {
115
115
  markup: () => (h("g", null,
116
- 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" })))
116
+ 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
117
  },
118
118
  'brand-facebook-color': {
119
119
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
120
120
  h("g", { "fill-rule": "nonzero" },
121
121
  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" }),
122
- 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" }))))
122
+ 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
123
  },
124
124
  'brand-facebook-filled': {
125
125
  markup: () => (h("g", null,
126
- 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" })))
126
+ 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
127
  },
128
128
  'brand-instagram-color': {
129
129
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
@@ -136,77 +136,87 @@ const icons = {
136
136
  h("rect", { width: "22", height: "22", x: "2", y: "2", fill: "url(#instagram-color-a)", rx: "5" }),
137
137
  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" }),
138
138
  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" }),
139
- h("circle", { cx: "17.25", cy: "8.75", r: "1", fill: "#FFF", "fill-rule": "nonzero" })))
139
+ h("circle", { cx: "17.25", cy: "8.75", r: "1", fill: "#FFF", "fill-rule": "nonzero" }))),
140
140
  },
141
141
  'brand-instagram-filled': {
142
142
  markup: () => (h("g", null,
143
143
  h("g", { class: "filled", transform: "translate(2 2)" },
144
144
  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" }),
145
145
  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" }),
146
- h("circle", { cx: "16.872", cy: "5.128", r: "1.32" }))))
146
+ h("circle", { cx: "16.872", cy: "5.128", r: "1.32" })))),
147
147
  },
148
148
  'brand-linkedin-color': {
149
149
  markup: () => (h("g", { fill: "none" },
150
150
  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" }),
151
- 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" })))
151
+ 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
152
  },
153
153
  'brand-linkedin-filled': {
154
154
  markup: () => (h("g", null,
155
- 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" })))
155
+ 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
156
  },
157
157
  'brand-messenger-color': {
158
158
  markup: () => (h("g", { fill: "none" },
159
159
  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" }),
160
- 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" })))
160
+ 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
161
  },
162
162
  'brand-messenger-filled': {
163
163
  markup: () => (h("g", null,
164
- 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" })))
164
+ 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
+ },
166
+ 'brand-payrecs-color': {
167
+ markup: () => (h("g", { "fill-rule": "evenodd" },
168
+ 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)" }),
169
+ 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
+ },
171
+ 'brand-payrecs-filled': {
172
+ markup: () => (h("g", { class: "filled" },
173
+ 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)" }),
174
+ 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)" }))),
165
175
  },
166
176
  'brand-snapchat-color': {
167
177
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
168
178
  h("g", null,
169
179
  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" }),
170
180
  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" }),
171
- 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" }))))
181
+ 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" })))),
172
182
  },
173
183
  'brand-snapchat-filled': {
174
184
  markup: () => (h("g", null,
175
- 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" })))
185
+ 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" }))),
176
186
  },
177
187
  'brand-twitter-color': {
178
188
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
179
- 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" })))
189
+ 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" }))),
180
190
  },
181
191
  'brand-twitter-filled': {
182
192
  markup: () => (h("g", null,
183
- 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" })))
193
+ 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" }))),
184
194
  },
185
195
  'brand-vimeo-color': {
186
196
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
187
- 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" })))
197
+ 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" }))),
188
198
  },
189
199
  'brand-vimeo-filled': {
190
200
  markup: () => (h("g", null,
191
- 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" })))
201
+ 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" }))),
192
202
  },
193
203
  'brand-youtube-color': {
194
204
  markup: () => (h("g", { fill: "none" },
195
205
  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" }),
196
- h("path", { fill: "#FFF", d: "M10.708 15.542V9.4l5.959 3.117z" })))
206
+ h("path", { fill: "#FFF", d: "M10.708 15.542V9.4l5.959 3.117z" }))),
197
207
  },
198
208
  'brand-youtube-filled': {
199
209
  markup: () => (h("g", null,
200
- 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" })))
210
+ 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" }))),
201
211
  },
202
212
  'brand-zelle-color': {
203
213
  markup: () => (h("g", { fill: "#6D1ED4" },
204
- 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" })))
214
+ 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" }))),
205
215
  },
206
216
  'brand-zelle-filled': {
207
217
  markup: () => (h("g", null,
208
218
  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" }),
209
- 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" })))
219
+ 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" }))),
210
220
  },
211
221
  boat: {
212
222
  markup: () => (h("g", null,
@@ -214,20 +224,20 @@ const icons = {
214
224
  h("g", { class: "stroke-primary" },
215
225
  h("path", { d: "M11.087 7.261V2.478h3.826v4.783", class: "filled" }),
216
226
  h("path", { d: "M6.304 14.817V7.261h13.391v7.556" }),
217
- h("path", { d: "M6.304 19.695l-1.913-3.826L13 11.087l8.608 4.782-1.913 3.826" }))))
227
+ h("path", { d: "M6.304 19.695l-1.913-3.826L13 11.087l8.608 4.782-1.913 3.826" })))),
218
228
  },
219
229
  briefcase: {
220
230
  markup: () => (h("g", null,
221
231
  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" }),
222
232
  h("path", { class: "stroke-secondary", d: "M7.59 6.066v9.738m0 3.606v3.967M18.41 6.066v9.738m0 3.606v3.967" }),
223
- h("path", { class: "stroke-secondary filled", d: "M5.787 15.803h3.607v3.607H5.787zm10.82 0h3.607v3.607h-3.607z" })))
233
+ h("path", { class: "stroke-secondary filled", d: "M5.787 15.803h3.607v3.607H5.787zm10.82 0h3.607v3.607h-3.607z" }))),
224
234
  },
225
235
  'browser-chrome': {
226
236
  markup: () => (h("g", null,
227
237
  h("g", { class: "stroke-secondary", transform: "translate(4.147 6.466)" },
228
238
  h("path", { d: "M8.853 2.134h10.085m-13.896 6.6L0 0m12.663 8.734l-5.042 8.733" }),
229
239
  h("circle", { cx: "8.853", cy: "6.534", r: "4.4" })),
230
- h("circle", { class: "stroke-primary", transform: "translate(2 2)", cx: "11", cy: "11", r: "11" })))
240
+ h("circle", { class: "stroke-primary", transform: "translate(2 2)", cx: "11", cy: "11", r: "11" }))),
231
241
  },
232
242
  'browser-chrome-color': {
233
243
  markup: () => (h("g", { fill: "none" },
@@ -236,14 +246,14 @@ const icons = {
236
246
  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" }),
237
247
  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" }),
238
248
  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" }),
239
- 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" })))
249
+ 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" }))),
240
250
  },
241
251
  'browser-chrome-filled': {
242
252
  markup: () => (h("g", null,
243
- 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" })))
253
+ 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" }))),
244
254
  },
245
255
  'browser-edge': {
246
- 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" }))
256
+ 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" })),
247
257
  },
248
258
  'browser-edge-color': {
249
259
  markup: () => (h("g", { fill: "none" },
@@ -277,16 +287,16 @@ const icons = {
277
287
  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" }),
278
288
  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" }),
279
289
  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" }),
280
- 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" })))
290
+ 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" }))),
281
291
  },
282
292
  'browser-edge-filled': {
283
293
  markup: () => (h("g", null,
284
- 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" })))
294
+ 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" }))),
285
295
  },
286
296
  'browser-firefox': {
287
297
  markup: () => (h("g", null,
288
298
  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" }),
289
- 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" })))
299
+ 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" }))),
290
300
  },
291
301
  'browser-firefox-color': {
292
302
  markup: () => (h("g", { fill: "none" },
@@ -379,31 +389,31 @@ const icons = {
379
389
  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" }),
380
390
  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" }),
381
391
  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" }),
382
- 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" })))
392
+ 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" }))),
383
393
  },
384
394
  'browser-firefox-filled': {
385
395
  markup: () => (h("g", null,
386
- 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" })))
396
+ 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" }))),
387
397
  },
388
398
  'browser-ie': {
389
399
  markup: () => (h("g", null,
390
400
  h("g", { class: "stroke-primary" },
391
401
  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" }),
392
402
  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" })),
393
- 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" })))
403
+ 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" }))),
394
404
  },
395
405
  'browser-ie-color': {
396
406
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
397
- 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" })))
407
+ 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" }))),
398
408
  },
399
409
  'browser-ie-filled': {
400
410
  markup: () => (h("g", null,
401
- 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" })))
411
+ 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" }))),
402
412
  },
403
413
  'browser-opera': {
404
414
  markup: () => (h("g", { class: "stroke-primary" },
405
415
  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" }),
406
- 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" })))
416
+ 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" }))),
407
417
  },
408
418
  'browser-opera-color': {
409
419
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
@@ -734,18 +744,18 @@ const icons = {
734
744
  h("g", { mask: "url(#opera-color-g)" },
735
745
  h("mask", { id: "opera-color-j", fill: "#fff" },
736
746
  h("use", { xlinkHref: "#opera-color-h" })),
737
- h("path", { fill: "url(#opera-color-i)", "fill-rule": "nonzero", d: "M14.534.073H.13v18.813h14.404z", mask: "url(#opera-color-j)" })))))
747
+ h("path", { fill: "url(#opera-color-i)", "fill-rule": "nonzero", d: "M14.534.073H.13v18.813h14.404z", mask: "url(#opera-color-j)" }))))),
738
748
  },
739
749
  'browser-opera-filled': {
740
750
  markup: () => (h("g", null,
741
- 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" })))
751
+ 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" }))),
742
752
  },
743
753
  'browser-safari': {
744
754
  markup: () => (h("g", null,
745
755
  h("g", { class: "stroke-secondary" },
746
756
  h("path", { d: "M18.134 7.867L11.9 11.9l-4.033 6.234L14.1 14.1z", class: "filled" }),
747
757
  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" })),
748
- h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" })))
758
+ h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" }))),
749
759
  },
750
760
  'browser-safari-color': {
751
761
  markup: () => (h("g", { fill: "none" },
@@ -765,11 +775,11 @@ const icons = {
765
775
  h("path", { fill: "#000", d: "M19.81 7l-7.916 4.599-5.005 7.88 7.322-5.423z", opacity: ".409" }),
766
776
  h("path", { fill: "#FF5150", d: "M14.163 13.976l-2.27-2.377 8.05-5.414z" }),
767
777
  h("path", { fill: "#F1F1F1", d: "M14.163 13.976l-2.27-2.377-5.779 7.791z" }),
768
- h("path", { fill: "#000", d: "M6.114 19.39l8.049-5.414 5.78-7.791z", opacity: ".243" })))
778
+ h("path", { fill: "#000", d: "M6.114 19.39l8.049-5.414 5.78-7.791z", opacity: ".243" }))),
769
779
  },
770
780
  'browser-safari-filled': {
771
781
  markup: () => (h("g", null,
772
- 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" })))
782
+ 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" }))),
773
783
  },
774
784
  'bubble-graph': {
775
785
  markup: () => (h("g", null,
@@ -777,7 +787,7 @@ const icons = {
777
787
  h("ellipse", { cx: "7.778", cy: "14.3", rx: "7.778", ry: "7.7" }),
778
788
  h("ellipse", { cx: "16.111", cy: "3.85", rx: "3.889", ry: "3.85" }),
779
789
  h("ellipse", { cx: "18.333", cy: "11", rx: "1.667", ry: "1.65" })),
780
- 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" })))
790
+ 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" }))),
781
791
  },
782
792
  bug: {
783
793
  markup: () => (h("g", null,
@@ -787,78 +797,78 @@ const icons = {
787
797
  h("circle", { cx: "10.067", cy: "8.8", r: "1.467" }),
788
798
  h("circle", { cx: "2.367", cy: "14.3", r: "1.833" }),
789
799
  h("circle", { cx: "10.433", cy: "14.3", r: "1.833" }),
790
- 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" }))))
800
+ 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" })))),
791
801
  },
792
802
  buildings: {
793
803
  markup: () => (h("g", null,
794
804
  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" }),
795
- 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" })))
805
+ 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" }))),
796
806
  },
797
807
  calculator: {
798
808
  markup: () => (h("g", null,
799
809
  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" }),
800
- 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" })))
810
+ 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" }))),
801
811
  },
802
812
  calendar: {
803
813
  markup: () => (h("g", null,
804
814
  h("path", { class: "stroke-primary", d: "M19.6 4.2H24V24H2V4.2h4.4M24 9.333H2M8.6 4.2h8.8" }),
805
815
  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" }),
806
- h("path", { class: "stroke-secondary", d: "M15.2 13v3.667M10.8 13v7.333m4.4-3.666H6.4" })))
816
+ h("path", { class: "stroke-secondary", d: "M15.2 13v3.667M10.8 13v7.333m4.4-3.666H6.4" }))),
807
817
  },
808
818
  'calendar-confirm': {
809
819
  markup: () => (h("g", null,
810
820
  h("path", { class: "stroke-primary", d: "M23.241 9.586H2m9.483 12.138H2V4.276h21.241v9.483M6.931 2v4.552M18.31 2v4.552" }),
811
821
  h("g", { class: "stroke-secondary", transform: "translate(13.759 14.897)" },
812
822
  h("circle", { cx: "4.552", cy: "4.552", r: "4.552", class: "filled" }),
813
- h("path", { d: "M2.655 4.931l1.138 1.138 2.655-2.655" }))))
823
+ h("path", { d: "M2.655 4.931l1.138 1.138 2.655-2.655" })))),
814
824
  },
815
825
  'calendar-create': {
816
826
  markup: () => (h("g", null,
817
827
  h("path", { class: "stroke-primary", d: "M23.241 9.586H2m9.483 12.138H2V4.276h21.241v9.483M6.931 2v4.552M18.31 2v4.552" }),
818
828
  h("g", { class: "stroke-secondary", transform: "translate(13.759 14.897)" },
819
829
  h("circle", { cx: "4.552", cy: "4.552", r: "4.552", class: "filled" }),
820
- h("path", { d: "M4.552 3.034V6.07M3.034 4.552H6.07" }))))
830
+ h("path", { d: "M4.552 3.034V6.07M3.034 4.552H6.07" })))),
821
831
  },
822
832
  'calendar-remove': {
823
833
  markup: () => (h("g", null,
824
834
  h("path", { class: "stroke-primary", d: "M23.241 9.586H2m9.483 12.138H2V4.276h21.241v9.483M6.931 2v4.552M18.31 2v4.552" }),
825
835
  h("g", { class: "stroke-secondary", transform: "translate(13.759 14.897)" },
826
836
  h("circle", { cx: "4.552", cy: "4.552", r: "4.552", class: "filled" }),
827
- h("path", { d: "M3.034 4.552H6.07" }))))
837
+ h("path", { d: "M3.034 4.552H6.07" })))),
828
838
  },
829
839
  'calendar-skip': {
830
840
  markup: () => (h("g", null,
831
841
  h("path", { class: "stroke-primary", d: "M23.241 9.586H2m9.483 12.138H2V4.276h21.241v9.483M6.931 2v4.552M18.31 2v4.552" }),
832
- h("path", { class: "stroke-secondary", d: "M17 23v-6l4 3zm5.15-6v6" })))
842
+ h("path", { class: "stroke-secondary", d: "M17 23v-6l4 3zm5.15-6v6" }))),
833
843
  },
834
844
  'calendar-time': {
835
845
  markup: () => (h("g", null,
836
846
  h("path", { class: "stroke-primary", d: "M23.241 9.586H2m9.483 12.138H2V4.276h21.241v9.483M6.931 2v4.552M18.31 2v4.552" }),
837
847
  h("g", { class: "stroke-secondary", transform: "translate(13.759 14.897)" },
838
848
  h("circle", { cx: "4.552", cy: "4.552", r: "4.552", class: "filled" }),
839
- h("path", { d: "M4.552 2.655v1.897h1.896" }))))
849
+ h("path", { d: "M4.552 2.655v1.897h1.896" })))),
840
850
  },
841
851
  'call-color': {
842
852
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
843
- 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" })))
853
+ 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" }))),
844
854
  },
845
855
  'call-filled': {
846
856
  markup: () => (h("g", null,
847
- 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" })))
857
+ 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" }))),
848
858
  },
849
859
  camera: {
850
860
  markup: () => (h("g", null,
851
861
  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" }),
852
862
  h("g", { class: "stroke-secondary filled", transform: "translate(5.787 8.95)" },
853
863
  h("circle", { cx: "8.295", cy: "5.049", r: "5.049" }),
854
- h("circle", { cx: ".361", cy: ".721", r: "1" }))))
864
+ h("circle", { cx: ".361", cy: ".721", r: "1" })))),
855
865
  },
856
866
  car: {
857
867
  markup: () => (h("g", null,
858
868
  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" }),
859
869
  h("g", { class: "stroke-secondary filled", transform: "translate(4.344 14.836)" },
860
870
  h("circle", { cx: "2.164", cy: "2.164", r: "2.164" }),
861
- h("circle", { cx: "15.148", cy: "2.164", r: "2.164" }))))
871
+ h("circle", { cx: "15.148", cy: "2.164", r: "2.164" })))),
862
872
  },
863
873
  'car-front': {
864
874
  markup: () => (h("g", null,
@@ -866,17 +876,17 @@ const icons = {
866
876
  h("g", { class: "stroke-secondary filled", transform: "translate(4.344 13.64)" },
867
877
  h("circle", { cx: "1.443", cy: "1.443", r: "1.443" }),
868
878
  h("circle", { cx: "15.869", cy: "1.443", r: "1.443" }),
869
- h("path", { d: "M6.492 1.443h4.328" }))))
879
+ h("path", { d: "M6.492 1.443h4.328" })))),
870
880
  },
871
881
  card: {
872
- 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" }))
882
+ 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" })),
873
883
  },
874
884
  'card-amazon': {
875
885
  markup: () => (h("g", null,
876
886
  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" }),
877
887
  h("g", { class: "fill-primary" },
878
888
  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" }),
879
- 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" }))))
889
+ 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" })))),
880
890
  },
881
891
  'card-amazon-color': {
882
892
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
@@ -884,19 +894,19 @@ const icons = {
884
894
  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" }),
885
895
  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" }),
886
896
  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" }),
887
- 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" }))))
897
+ 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" })))),
888
898
  },
889
899
  'card-add': {
890
900
  markup: () => (h("g", null,
891
901
  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" }),
892
902
  h("g", { class: "stroke-secondary", transform: "translate(14 15)" },
893
903
  h("circle", { cx: "4.727", cy: "4.636", r: "4.364" }),
894
- h("path", { d: "M4.727 3.182V6.09M3.273 4.636h2.909" }))))
904
+ h("path", { d: "M4.727 3.182V6.09M3.273 4.636h2.909" })))),
895
905
  },
896
906
  'card-edit': {
897
907
  markup: () => (h("g", null,
898
908
  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" }),
899
- h("path", { d: "M16.667 23.067l-2.2.366.366-2.2 5.867-5.866 1.833 1.833z", class: "stroke-secondary" })))
909
+ h("path", { d: "M16.667 23.067l-2.2.366.366-2.2 5.867-5.866 1.833 1.833z", class: "stroke-secondary" }))),
900
910
  },
901
911
  'card-gift': {
902
912
  markup: () => (h("g", null,
@@ -904,33 +914,33 @@ const icons = {
904
914
  h("g", { class: "stroke-secondary filled", transform: "translate(4 6)" },
905
915
  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" }),
906
916
  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" }),
907
- h("circle", { cx: "5.7", cy: "3.867", r: "1.833" }))))
917
+ h("circle", { cx: "5.7", cy: "3.867", r: "1.833" })))),
908
918
  },
909
919
  'card-heart': {
910
920
  markup: () => (h("g", null,
911
921
  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" }),
912
- 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" })))
922
+ 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" }))),
913
923
  },
914
924
  'card-insert': {
915
925
  markup: () => (h("g", null,
916
926
  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" }),
917
927
  h("path", { d: "M2.478 7.261V2.478h21.044v4.783", class: "stroke-primary" }),
918
- h("path", { class: "stroke-secondary", d: "M9.174 23.521V6.304M13 23.521V6.304m3.826 13.391v-4.781" })))
928
+ h("path", { class: "stroke-secondary", d: "M9.174 23.521V6.304M13 23.521V6.304m3.826 13.391v-4.781" }))),
919
929
  },
920
930
  'card-join': {
921
931
  markup: () => (h("g", null,
922
932
  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" }),
923
- 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" })))
933
+ 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" }))),
924
934
  },
925
935
  'card-in-hand': {
926
936
  markup: () => (h("g", null,
927
937
  h("path", { class: "stroke-secondary", d: "M16.667 12.248v3.485H2V4h14.667v2.2M4.933 13.167H8.6M2 7.667h8.459M2 10.6h13.512" }),
928
- 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" })))
938
+ 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" }))),
929
939
  },
930
940
  'card-locked': {
931
941
  markup: () => (h("g", null,
932
942
  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" }),
933
- 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" })))
943
+ 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" }))),
934
944
  },
935
945
  'card-more': {
936
946
  markup: () => (h("g", null,
@@ -939,19 +949,19 @@ const icons = {
939
949
  h("circle", { cx: "1.85", cy: "1.517", r: "1.283" }),
940
950
  h("circle", { cx: "11.383", cy: "1.517", r: "1.283" }),
941
951
  h("circle", { cx: "6.617", cy: "1.517", r: "1.283" }),
942
- h("circle", { cx: "16.15", cy: "1.517", r: "1.283" }))))
952
+ h("circle", { cx: "16.15", cy: "1.517", r: "1.283" })))),
943
953
  },
944
954
  'card-prohibited': {
945
955
  markup: () => (h("g", null,
946
956
  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" }),
947
- 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" })))
957
+ 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" }))),
948
958
  },
949
959
  'card-remove': {
950
960
  markup: () => (h("g", null,
951
961
  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" }),
952
962
  h("g", { class: "stroke-secondary", transform: "translate(14 15)" },
953
963
  h("circle", { cx: "4.867", cy: "4.767", r: "4.4" }),
954
- h("path", { d: "M3.4 4.767h2.933" }))))
964
+ h("path", { d: "M3.4 4.767h2.933" })))),
955
965
  },
956
966
  'card-scissors': {
957
967
  markup: () => (h("g", null,
@@ -960,76 +970,76 @@ const icons = {
960
970
  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" }),
961
971
  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" }),
962
972
  h("ellipse", { cx: "13.757", cy: "19.942", rx: "2.846", ry: "2.717" }),
963
- h("ellipse", { cx: "3.004", cy: "19.942", rx: "2.846", ry: "2.717" }))))
973
+ h("ellipse", { cx: "3.004", cy: "19.942", rx: "2.846", ry: "2.717" })))),
964
974
  },
965
975
  'card-star': {
966
976
  markup: () => (h("g", null,
967
977
  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" }),
968
- 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" })))
978
+ 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" }))),
969
979
  },
970
980
  'card-success': {
971
981
  markup: () => (h("g", null,
972
982
  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" }),
973
983
  h("g", { class: "stroke-secondary", transform: "translate(14.364 15.273)" },
974
984
  h("circle", { cx: "4.364", cy: "4.364", r: "4.364" }),
975
- h("path", { d: "M2.615 4.711l1.048 1.048 2.444-2.444" }))))
985
+ h("path", { d: "M2.615 4.711l1.048 1.048 2.444-2.444" })))),
976
986
  },
977
987
  'card-unknown': {
978
988
  markup: () => (h("g", null,
979
989
  h("rect", { width: "22", height: "16", x: "2", y: "4", class: "stroke-primary", rx: "2" }),
980
- 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" })))
990
+ 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" }))),
981
991
  },
982
992
  'card-update': {
983
993
  markup: () => (h("g", null,
984
994
  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" }),
985
995
  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" }),
986
- h("path", { d: "M21.8 15.733V18.3h-2.567M15.2 23.8v-2.567h2.566" })))
996
+ h("path", { d: "M21.8 15.733V18.3h-2.567M15.2 23.8v-2.567h2.566" }))),
987
997
  },
988
998
  'card-amex': {
989
999
  markup: () => (h("g", null,
990
1000
  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" }),
991
- 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" })))
1001
+ 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" }))),
992
1002
  },
993
1003
  'card-amex-color': {
994
1004
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
995
1005
  h("g", { "fill-rule": "nonzero" },
996
1006
  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" }),
997
- 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" }))))
1007
+ 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" })))),
998
1008
  },
999
1009
  'card-applepay': {
1000
1010
  markup: () => (h("g", null,
1001
1011
  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
1012
  h("g", { class: "fill-primary" },
1003
1013
  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" }),
1004
- 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" }))))
1014
+ 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" })))),
1005
1015
  },
1006
1016
  'card-applepay-color': {
1007
1017
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
1008
1018
  h("g", null,
1009
1019
  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" }),
1010
1020
  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" }),
1011
- 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" }))))
1021
+ 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" })))),
1012
1022
  },
1013
1023
  'card-bitcoin': {
1014
1024
  markup: () => (h("g", null,
1015
1025
  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" }),
1016
1026
  h("g", { class: "fill-primary" },
1017
1027
  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" }),
1018
- 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" }))))
1028
+ 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" })))),
1019
1029
  },
1020
1030
  'card-bitcoin-color': {
1021
1031
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
1022
1032
  h("g", { "fill-rule": "nonzero", transform: "translate(2 4)" },
1023
1033
  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" }),
1024
1034
  h("ellipse", { cx: "11", cy: "8", fill: "#F99400", rx: "5.739", ry: "5.647" }),
1025
- 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" }))))
1035
+ 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" })))),
1026
1036
  },
1027
1037
  'card-dinersclub': {
1028
1038
  markup: () => (h("g", null,
1029
1039
  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" }),
1030
1040
  h("g", { class: "fill-primary" },
1031
1041
  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" }),
1032
- 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" }))))
1042
+ 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" })))),
1033
1043
  },
1034
1044
  'card-dinersclub-color': {
1035
1045
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
@@ -1037,13 +1047,13 @@ const icons = {
1037
1047
  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" }),
1038
1048
  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" }),
1039
1049
  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" }),
1040
- 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" }))))
1050
+ 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" })))),
1041
1051
  },
1042
1052
  'card-discover': {
1043
1053
  markup: () => (h("g", null,
1044
1054
  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" }),
1045
1055
  h("g", { class: "fill-primary" },
1046
- 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" }))))
1056
+ 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" })))),
1047
1057
  },
1048
1058
  'card-discover-color': {
1049
1059
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
@@ -1052,26 +1062,26 @@ const icons = {
1052
1062
  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" }),
1053
1063
  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" }),
1054
1064
  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" }),
1055
- 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" }))))
1065
+ 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" })))),
1056
1066
  },
1057
1067
  'card-googlepay': {
1058
1068
  markup: () => (h("g", null,
1059
1069
  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" }),
1060
1070
  h("g", { class: "fill-primary" },
1061
- 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" }))))
1071
+ 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" })))),
1062
1072
  },
1063
1073
  'card-googlepay-color': {
1064
1074
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
1065
1075
  h("g", null,
1066
1076
  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" }),
1067
1077
  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" }),
1068
- 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" }))))
1078
+ 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" })))),
1069
1079
  },
1070
1080
  'card-jcb': {
1071
1081
  markup: () => (h("g", null,
1072
1082
  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" }),
1073
1083
  h("g", { class: "fill-primary" },
1074
- 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" }))))
1084
+ 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" })))),
1075
1085
  },
1076
1086
  'card-jcb-color': {
1077
1087
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
@@ -1080,12 +1090,12 @@ const icons = {
1080
1090
  h("path", { fill: "#FFF", d: "M6.304 10.118h3.826v4.235H6.304zm4.783 0h3.826v4.235h-3.826zm4.783 0h3.826v4.235H15.87z" }),
1081
1091
  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" }),
1082
1092
  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" }),
1083
- 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" }))))
1093
+ 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" })))),
1084
1094
  },
1085
1095
  'card-maestro': {
1086
1096
  markup: () => (h("g", null,
1087
1097
  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" }),
1088
- 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" })))
1098
+ 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" }))),
1089
1099
  },
1090
1100
  'card-maestro-color': {
1091
1101
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
@@ -1094,13 +1104,13 @@ const icons = {
1094
1104
  h("g", null,
1095
1105
  h("path", { fill: "#7375CF", d: "M11.299 9.062h3.348v6.083h-3.348z" }),
1096
1106
  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" }),
1097
- 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" })))))
1107
+ 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" }))))),
1098
1108
  },
1099
1109
  'card-mastercard': {
1100
1110
  markup: () => (h("g", null,
1101
1111
  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" }),
1102
1112
  h("g", { class: "fill-primary" },
1103
- 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" }))))
1113
+ 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" })))),
1104
1114
  },
1105
1115
  'card-mastercard-color': {
1106
1116
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
@@ -1109,13 +1119,13 @@ const icons = {
1109
1119
  h("g", null,
1110
1120
  h("path", { fill: "#FF5F00", d: "M11.299 9.062h3.348v6.083h-3.348z" }),
1111
1121
  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" }),
1112
- 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" })))))
1122
+ 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" }))))),
1113
1123
  },
1114
1124
  'card-paypal': {
1115
1125
  markup: () => (h("g", null,
1116
1126
  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" }),
1117
1127
  h("g", { class: "fill-primary" },
1118
- 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" }))))
1128
+ 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" })))),
1119
1129
  },
1120
1130
  'card-paypal-color': {
1121
1131
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
@@ -1125,31 +1135,31 @@ const icons = {
1125
1135
  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" }),
1126
1136
  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" }),
1127
1137
  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" }),
1128
- 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" }))))
1138
+ 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" })))),
1129
1139
  },
1130
1140
  'card-stripe': {
1131
1141
  markup: () => (h("g", null,
1132
1142
  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" }),
1133
- 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" })))
1143
+ 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" }))),
1134
1144
  },
1135
1145
  'card-stripe-color': {
1136
1146
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
1137
1147
  h("g", { "fill-rule": "nonzero" },
1138
1148
  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" }),
1139
- 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" }))))
1149
+ 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" })))),
1140
1150
  },
1141
1151
  'card-visa': {
1142
1152
  markup: () => (h("g", null,
1143
1153
  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
1154
  h("g", { class: "fill-primary" },
1145
- 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" }))))
1155
+ 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" })))),
1146
1156
  },
1147
1157
  'card-visa-color': {
1148
1158
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
1149
1159
  h("g", { "fill-rule": "nonzero" },
1150
1160
  h("path", { fill: "#E6E6E6", d: "M2 7.294h22v8.941H2z" }),
1151
1161
  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" }),
1152
- 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" }))))
1162
+ 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" })))),
1153
1163
  },
1154
1164
  cart: {
1155
1165
  markup: () => (h("g", null,
@@ -1157,7 +1167,7 @@ const icons = {
1157
1167
  h("g", { class: "stroke-primary", transform: "translate(2 2)" },
1158
1168
  h("path", { d: "M0 0h2.933v14.667h18.334" }),
1159
1169
  h("circle", { cx: "4.4", cy: "19.8", r: "2.2" }),
1160
- h("circle", { cx: "19.8", cy: "19.8", r: "2.2" }))))
1170
+ h("circle", { cx: "19.8", cy: "19.8", r: "2.2" })))),
1161
1171
  },
1162
1172
  'cart-moving': {
1163
1173
  markup: () => (h("g", null,
@@ -1166,14 +1176,14 @@ const icons = {
1166
1176
  h("circle", { cx: "17.311", cy: "2.164", r: "2.164" })),
1167
1177
  h("g", { class: "stroke-primary" },
1168
1178
  h("path", { d: "M5.065 5.065h18.033l-2.164 11.541H2.18m1.443-2.885H7.95m-2.885-2.885h4.328" }),
1169
- h("path", { d: "M2.18 2.18h2.885v5.77" }))))
1179
+ h("path", { d: "M2.18 2.18h2.885v5.77" })))),
1170
1180
  },
1171
1181
  cash: {
1172
1182
  markup: () => (h("g", null,
1173
1183
  h("g", { class: "stroke-primary" },
1174
1184
  h("path", { d: "M2 5h22v16.133H2z" }),
1175
1185
  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" })),
1176
- h("circle", { cx: "13", cy: "13.067", r: "2.2", class: "stroke-secondary filled" })))
1186
+ h("circle", { cx: "13", cy: "13.067", r: "2.2", class: "stroke-secondary filled" }))),
1177
1187
  },
1178
1188
  'cash-bills': {
1179
1189
  markup: () => (h("g", null,
@@ -1181,7 +1191,7 @@ const icons = {
1181
1191
  h("path", { d: "M0 0h22v16.133H0z" }),
1182
1192
  h("circle", { cx: "11", cy: "8.067", r: "2.2" }),
1183
1193
  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" })),
1184
- h("path", { class: "stroke-secondary", d: "M5.667 5.2h14.667m-11-2.2h7.333" })))
1194
+ h("path", { class: "stroke-secondary", d: "M5.667 5.2h14.667m-11-2.2h7.333" }))),
1185
1195
  },
1186
1196
  'cash-coins': {
1187
1197
  markup: () => (h("g", null,
@@ -1192,7 +1202,7 @@ const icons = {
1192
1202
  h("g", { class: "stroke-secondary", transform: "translate(15 13)" },
1193
1203
  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" }),
1194
1204
  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" }),
1195
- h("ellipse", { cx: "4.6", cy: "2.933", rx: "4.4", ry: "2.2" }))))
1205
+ h("ellipse", { cx: "4.6", cy: "2.933", rx: "4.4", ry: "2.2" })))),
1196
1206
  },
1197
1207
  'cash-in-hand': {
1198
1208
  markup: () => (h("g", null,
@@ -1202,46 +1212,46 @@ const icons = {
1202
1212
  h("path", { d: "M11.713 9.377H0V0h20.197v9.377h-2.164" }),
1203
1213
  h("circle", { cx: "10.098", cy: "4.689", r: "1.803", class: "filled" }),
1204
1214
  h("path", { d: "M5.77 2.885H2.885" })),
1205
- 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" })))
1215
+ 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" }))),
1206
1216
  },
1207
1217
  'cash-register': {
1208
1218
  markup: () => (h("g", null,
1209
1219
  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" }),
1210
- h("path", { class: "stroke-secondary filled", d: "M13 2.18h5.77v2.885H13zm-2.885 8.656h5.77v3.246h-5.77z" })))
1220
+ h("path", { class: "stroke-secondary filled", d: "M13 2.18h5.77v2.885H13zm-2.885 8.656h5.77v3.246h-5.77z" }))),
1211
1221
  },
1212
1222
  certificate: {
1213
1223
  markup: () => (h("g", null,
1214
1224
  h("path", { d: "M4.186 2.186v21.628h17.899V2.186z", class: "stroke-primary" }),
1215
1225
  h("g", { class: "stroke-secondary", transform: "translate(7.915 5.864)" },
1216
1226
  h("path", { d: "M0 11.983h5.966m2.984 0h1.49M0 9h5.966M8.95 9h1.49" }),
1217
- h("circle", { cx: "5.22", cy: "3.034", r: "2.983", class: "filled" }))))
1227
+ h("circle", { cx: "5.22", cy: "3.034", r: "2.983", class: "filled" })))),
1218
1228
  },
1219
1229
  chat: {
1220
1230
  markup: () => (h("g", null,
1221
1231
  h("path", { d: "M19.6 8.133H24v11h-2.933V22.8l-5.134-3.667h-4.4", class: "stroke-secondary" }),
1222
- h("path", { d: "M19.6 3H2v12.467h3.667V20.6l5.866-5.133H19.6z", class: "stroke-primary filled" })))
1232
+ h("path", { d: "M19.6 3H2v12.467h3.667V20.6l5.866-5.133H19.6z", class: "stroke-primary filled" }))),
1223
1233
  },
1224
1234
  'chat-question': {
1225
1235
  markup: () => (h("g", null,
1226
1236
  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" }),
1227
1237
  h("g", { class: "stroke-secondary", transform: "translate(10.5 7.5)" },
1228
1238
  h("circle", { cx: "2.375", cy: "8.875", r: "1" }),
1229
- 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" }))))
1239
+ 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" })))),
1230
1240
  },
1231
1241
  'chat-bubbles': {
1232
1242
  markup: () => (h("g", null,
1233
1243
  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" }),
1234
- 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" })))
1244
+ 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" }))),
1235
1245
  },
1236
1246
  'chat-round': {
1237
1247
  markup: () => (h("g", null,
1238
1248
  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" }),
1239
- h("path", { class: "stroke-secondary", d: "M7.95 9.672h10.098M7.95 14h5.77" })))
1249
+ h("path", { class: "stroke-secondary", d: "M7.95 9.672h10.098M7.95 14h5.77" }))),
1240
1250
  },
1241
1251
  check: {
1242
1252
  markup: () => (h("g", null,
1243
1253
  h("path", { d: "M24 8v11H2V8z", class: "stroke-primary" }),
1244
- h("path", { class: "stroke-secondary", d: "M6.508 12.689h12.984M6.508 15.574h5.77m4.328 0h2.886" })))
1254
+ h("path", { class: "stroke-secondary", d: "M6.508 12.689h12.984M6.508 15.574h5.77m4.328 0h2.886" }))),
1245
1255
  },
1246
1256
  'check-add': {
1247
1257
  markup: () => (h("g", null,
@@ -1249,13 +1259,13 @@ const icons = {
1249
1259
  h("g", { class: "stroke-secondary", transform: "translate(6.508 10.689)" },
1250
1260
  h("path", { d: "M0 0h12.984M0 2.885h5.77" }),
1251
1261
  h("circle", { cx: "12.984", cy: "6.361", r: "4.328", class: "filled" }),
1252
- h("path", { d: "M12.984 4.918v2.885m-1.443-1.442h2.885" }))))
1262
+ h("path", { d: "M12.984 4.918v2.885m-1.443-1.442h2.885" })))),
1253
1263
  },
1254
1264
  'check-edit': {
1255
1265
  markup: () => (h("g", null,
1256
1266
  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" }),
1257
1267
  h("g", { class: "stroke-primary" },
1258
- h("path", { d: "M6.508 17.689h12.984M6.508 20.574h5.77m4.328 0h2.886M15.566 13H24v11H2V13h2.933" }))))
1268
+ h("path", { d: "M6.508 17.689h12.984M6.508 20.574h5.77m4.328 0h2.886M15.566 13H24v11H2V13h2.933" })))),
1259
1269
  },
1260
1270
  'check-remove': {
1261
1271
  markup: () => (h("g", null,
@@ -1263,37 +1273,37 @@ const icons = {
1263
1273
  h("g", { class: "stroke-secondary", transform: "translate(6.508 10.689)" },
1264
1274
  h("path", { d: "M0 0h12.984M0 2.885h5.77" }),
1265
1275
  h("circle", { cx: "12.984", cy: "6.361", r: "4.328", class: "filled" }),
1266
- h("path", { d: "M11.541 6.361h2.885" }))))
1276
+ h("path", { d: "M11.541 6.361h2.885" })))),
1267
1277
  },
1268
1278
  checkmark: {
1269
- markup: () => h("path", { class: "stroke-primary", d: "M5 15.222L11.032 21 21 5" })
1279
+ markup: () => (h("path", { class: "stroke-primary", d: "M5 15.222L11.032 21 21 5" })),
1270
1280
  },
1271
1281
  'checkmark-outline': {
1272
- 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" }))
1282
+ 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" })),
1273
1283
  },
1274
1284
  'chevron-double-right': {
1275
1285
  markup: () => (h("g", { class: "chevron-double-right" },
1276
1286
  h("g", { class: "stroke-primary" },
1277
1287
  h("path", { d: "M12 2l11 11-11 11" }),
1278
- h("path", { d: "M3 2l11 11L3 24" }))))
1288
+ h("path", { d: "M3 2l11 11L3 24" })))),
1279
1289
  },
1280
1290
  'chevron-double-left': {
1281
1291
  markup: () => (h("g", { class: "chevron-double-left" },
1282
1292
  h("g", { class: "stroke-primary" },
1283
1293
  h("path", { d: "M14 24L3 13 14 2" }),
1284
- h("path", { d: "M23 24L12 13 23 2" }))))
1294
+ h("path", { d: "M23 24L12 13 23 2" })))),
1285
1295
  },
1286
1296
  'chevron-down': {
1287
- markup: () => h("path", { d: "M24 8L13 19 2 8", class: "stroke-primary" })
1297
+ markup: () => (h("path", { d: "M24 8L13 19 2 8", class: "stroke-primary" })),
1288
1298
  },
1289
1299
  'chevron-left': {
1290
- markup: () => h("path", { d: "M18.5 24l-11-11 11-11", class: "stroke-primary" })
1300
+ markup: () => (h("path", { d: "M18.5 24l-11-11 11-11", class: "stroke-primary" })),
1291
1301
  },
1292
1302
  'chevron-right': {
1293
- markup: () => h("path", { d: "M7.5 24l11-11-11-11", class: "stroke-primary" })
1303
+ markup: () => (h("path", { d: "M7.5 24l11-11-11-11", class: "stroke-primary" })),
1294
1304
  },
1295
1305
  'chevron-up': {
1296
- markup: () => h("path", { d: "M2 19L13 8l11 11", class: "stroke-primary" })
1306
+ markup: () => (h("path", { d: "M2 19L13 8l11 11", class: "stroke-primary" })),
1297
1307
  },
1298
1308
  clipboard: {
1299
1309
  markup: () => (h("g", null,
@@ -1301,10 +1311,10 @@ const icons = {
1301
1311
  h("path", { d: "M19.258 5.194h2.129v18.451H4.355V5.194h2.129" }),
1302
1312
  h("path", { d: "M15 4.484a2.129 2.129 0 1 0-4.258 0H8.613v2.839h8.516V4.484H15z", class: "filled" })),
1303
1313
  h("g", { class: "stroke-secondary" },
1304
- h("path", { d: "M8 10.5h10m-10 4h10m-10 4h4" }))))
1314
+ h("path", { d: "M8 10.5h10m-10 4h10m-10 4h4" })))),
1305
1315
  },
1306
1316
  close: {
1307
- markup: () => h("path", { class: "stroke-primary", d: "M20 6L6 20M20 20L6 6" })
1317
+ markup: () => (h("path", { class: "stroke-primary", d: "M20 6L6 20M20 20L6 6" })),
1308
1318
  },
1309
1319
  coins: {
1310
1320
  markup: () => (h("g", null,
@@ -1321,14 +1331,14 @@ const icons = {
1321
1331
  h("g", { class: "stroke-secondary", transform: "translate(8.6 13.389)" },
1322
1332
  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" }),
1323
1333
  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" }),
1324
- h("ellipse", { cx: "4.4", cy: "2.139", rx: "4.4", ry: "2.139" }))))
1334
+ h("ellipse", { cx: "4.4", cy: "2.139", rx: "4.4", ry: "2.139" })))),
1325
1335
  },
1326
1336
  compass: {
1327
1337
  markup: () => (h("g", null,
1328
1338
  h("g", { class: "stroke-primary", transform: "translate(5.667 5.667)" },
1329
1339
  h("path", { d: "M14.667 0L9.9 9.9 0 14.667l4.767-9.9z" }),
1330
1340
  h("circle", { cx: "7.333", cy: "7.333", r: "1.1", class: "filled" })),
1331
- h("path", { class: "stroke-secondary", d: "M13 2v2.2M24 13h-2.2M13 24v-2.2M2 13h2.2" })))
1341
+ h("path", { class: "stroke-secondary", d: "M13 2v2.2M24 13h-2.2M13 24v-2.2M2 13h2.2" }))),
1332
1342
  },
1333
1343
  conversation: {
1334
1344
  markup: () => (h("g", null,
@@ -1336,12 +1346,12 @@ const icons = {
1336
1346
  h("g", { class: "stroke-primary", transform: "translate(2 12.267)" },
1337
1347
  h("circle", { cx: "17.6", cy: "2.2", r: "2.2" }),
1338
1348
  h("circle", { cx: "4.4", cy: "2.2", r: "2.2" }),
1339
- 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" }))))
1349
+ 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" })))),
1340
1350
  },
1341
1351
  copy: {
1342
1352
  markup: () => (h("g", null,
1343
1353
  h("path", { d: "M17.968 8.032h5.677v15.613H8.032v-5.677", class: "stroke-secondary" }),
1344
- h("path", { d: "M2.355 2.355h15.613v15.613H2.355z", class: "stroke-primary" })))
1354
+ h("path", { d: "M2.355 2.355h15.613v15.613H2.355z", class: "stroke-primary" }))),
1345
1355
  },
1346
1356
  coupon: {
1347
1357
  markup: () => (h("g", null,
@@ -1349,32 +1359,32 @@ const icons = {
1349
1359
  h("g", { class: "stroke-primary", transform: "translate(2 2)" },
1350
1360
  h("path", { d: "M3.424 3.923l11.002 9.06M3.462 10.531l10.964-9.088" }),
1351
1361
  h("circle", { cx: "2.164", cy: "12.262", r: "2.164" }),
1352
- h("circle", { cx: "2.164", cy: "2.164", r: "2.164" }))))
1362
+ h("circle", { cx: "2.164", cy: "2.164", r: "2.164" })))),
1353
1363
  },
1354
1364
  'currency-dollar': {
1355
1365
  markup: () => (h("g", null,
1356
1366
  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" }),
1357
- h("path", { d: "M13.867 2v22", class: "stroke-secondary" })))
1367
+ h("path", { d: "M13.867 2v22", class: "stroke-secondary" }))),
1358
1368
  },
1359
1369
  'currency-dollar-circle': {
1360
1370
  markup: () => (h("g", null,
1361
1371
  h("circle", { cx: "13", cy: "13", r: "10.522", class: "stroke-primary" }),
1362
- 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" })))
1372
+ 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" }))),
1363
1373
  },
1364
1374
  'currency-euro': {
1365
1375
  markup: () => (h("g", null,
1366
1376
  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" }),
1367
- h("path", { class: "stroke-secondary", d: "M4.208 10.51h12.453M4.208 15.491h12.453" })))
1377
+ h("path", { class: "stroke-secondary", d: "M4.208 10.51h12.453M4.208 15.491h12.453" }))),
1368
1378
  },
1369
1379
  'currency-pound': {
1370
1380
  markup: () => (h("g", null,
1371
1381
  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" }),
1372
- h("path", { d: "M5.204 13.611h9.777", class: "stroke-secondary" })))
1382
+ h("path", { d: "M5.204 13.611h9.777", class: "stroke-secondary" }))),
1373
1383
  },
1374
1384
  'currency-yen': {
1375
1385
  markup: () => (h("g", null,
1376
1386
  h("path", { class: "stroke-primary", d: "M6.2 2.2l7.2 9.6 7.2-9.6m-7.2 9.6v12" }),
1377
- h("path", { class: "stroke-secondary", d: "M7 12.2h12.8M7 17h12.8" })))
1387
+ h("path", { class: "stroke-secondary", d: "M7 12.2h12.8M7 17h12.8" }))),
1378
1388
  },
1379
1389
  dashboard: {
1380
1390
  markup: () => (h("g", { class: "dashboard" },
@@ -1383,12 +1393,12 @@ const icons = {
1383
1393
  h("path", { d: "M3 3h9v12H3z" }),
1384
1394
  h("path", { d: "M3 18h9v5H3z" }),
1385
1395
  h("path", { d: "M14.5 3h9v7h-9z" }),
1386
- h("path", { d: "M14.5 13h9v10h-9z" }))))
1396
+ h("path", { d: "M14.5 13h9v10h-9z" })))),
1387
1397
  },
1388
1398
  desktop: {
1389
1399
  markup: () => (h("g", null,
1390
1400
  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" }),
1391
- 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" })))
1401
+ 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" }))),
1392
1402
  },
1393
1403
  diploma: {
1394
1404
  markup: () => (h("g", null,
@@ -1396,20 +1406,20 @@ const icons = {
1396
1406
  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" })),
1397
1407
  h("g", { class: "stroke-secondary", transform: "translate(16.548 11.871)" },
1398
1408
  h("path", { d: "M6.387 5.677v6.417l-2.839-1.449-2.838 1.42V5.677" }),
1399
- h("circle", { cx: "3.548", cy: "3.548", r: "3.548" }))))
1409
+ h("circle", { cx: "3.548", cy: "3.548", r: "3.548" })))),
1400
1410
  },
1401
1411
  divider: {
1402
1412
  markup: () => (h("g", { class: "divider" },
1403
1413
  h("g", { class: "stroke-primary" },
1404
1414
  h("path", { d: "M3 5h20v5H3z" }),
1405
1415
  h("path", { d: "M3 17h20v5H3z" })),
1406
- h("path", { d: "M2 13.5h22", class: "stroke-secondary" })))
1416
+ h("path", { d: "M2 13.5h22", class: "stroke-secondary" }))),
1407
1417
  },
1408
1418
  document: {
1409
1419
  markup: () => (h("g", null,
1410
1420
  h("path", { d: "M15.733 2H4v22h17.6V7.867z", class: "stroke-primary" }),
1411
1421
  h("path", { d: "M15.733 2v5.867H21.6z", class: "stroke-primary filled" }),
1412
- h("path", { class: "stroke-secondary", d: "M8.4 18.867h8.8M8.4 15.2h8.8m-8.8-3.666h8.8M8.4 7.867h2.933" })))
1422
+ h("path", { class: "stroke-secondary", d: "M8.4 18.867h8.8M8.4 15.2h8.8m-8.8-3.666h8.8M8.4 7.867h2.933" }))),
1413
1423
  },
1414
1424
  'document-add': {
1415
1425
  markup: () => (h("g", null,
@@ -1419,12 +1429,12 @@ const icons = {
1419
1429
  h("g", { class: "stroke-secondary", transform: "translate(8.4 7.867)" },
1420
1430
  h("path", { d: "M0 11h4.1M0 7.333h6.1M0 3.667h8.8M0 0h2.933" }),
1421
1431
  h("circle", { cx: "11.367", cy: "11.733", r: "4.4", class: "filled" }),
1422
- h("path", { d: "M11.367 10.267V13.2M9.9 11.733h2.933" }))))
1432
+ h("path", { d: "M11.367 10.267V13.2M9.9 11.733h2.933" })))),
1423
1433
  },
1424
1434
  'document-checklist': {
1425
1435
  markup: () => (h("g", null,
1426
1436
  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" }),
1427
- 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" })))
1437
+ 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" }))),
1428
1438
  },
1429
1439
  'document-remove': {
1430
1440
  markup: () => (h("g", null,
@@ -1434,62 +1444,62 @@ const icons = {
1434
1444
  h("g", { class: "stroke-secondary", transform: "translate(8.4 7.867)" },
1435
1445
  h("path", { d: "M0 11h4.1M0 7.333h6.1M0 3.667h8.8M0 0h2.933" }),
1436
1446
  h("circle", { cx: "11.367", cy: "11.733", r: "4.4", class: "filled" }),
1437
- h("path", { d: "M9.9 11.733h2.933" }))))
1447
+ h("path", { d: "M9.9 11.733h2.933" })))),
1438
1448
  },
1439
1449
  download: {
1440
1450
  markup: () => (h("g", null,
1441
1451
  h("path", { class: "stroke-secondary", d: "M13 2v16.133m5.866-5.866L13 18.133l-5.867-5.866" }),
1442
- h("path", { d: "M2 19.233v4.4h22v-4.4", class: "stroke-primary" })))
1452
+ h("path", { d: "M2 19.233v4.4h22v-4.4", class: "stroke-primary" }))),
1443
1453
  },
1444
1454
  'drag-handle': {
1445
1455
  markup: () => (h("g", null,
1446
1456
  h("g", { class: "filled" },
1447
- h("path", { d: "M9 3h3v3H9zm6 0h3v3h-3zm-6 8h3v3H9zm6 0h3v3h-3zm-6 8h3v3H9zm6 0h3v3h-3z" }))))
1457
+ h("path", { d: "M9 3h3v3H9zm6 0h3v3h-3zm-6 8h3v3H9zm6 0h3v3h-3zm-6 8h3v3H9zm6 0h3v3h-3z" })))),
1448
1458
  },
1449
1459
  edit: {
1450
1460
  markup: () => (h("g", null,
1451
1461
  h("path", { d: "M7.6 23.2L2 24l.8-5.6L19.2 2 24 6.8z", class: "stroke-primary" }),
1452
- h("path", { class: "stroke-secondary", d: "M2.8 18.4l4.8 4.8m8.4-18l4.8 4.8" })))
1462
+ h("path", { class: "stroke-secondary", d: "M2.8 18.4l4.8 4.8m8.4-18l4.8 4.8" }))),
1453
1463
  },
1454
1464
  ellipsis: {
1455
1465
  markup: () => (h("g", { class: "stroke-primary uniform" },
1456
1466
  h("circle", { cx: "22", cy: "13", r: "1.45" }),
1457
1467
  h("circle", { cx: "13", cy: "13", r: "1.45" }),
1458
- h("circle", { cx: "4", cy: "13", r: "1.45" })))
1468
+ h("circle", { cx: "4", cy: "13", r: "1.45" }))),
1459
1469
  },
1460
1470
  error: {
1461
1471
  markup: () => (h("g", null,
1462
1472
  h("path", { d: "M2 23.429L13 3l11 20.429z", class: "stroke-primary" }),
1463
1473
  h("g", { class: "stroke-secondary", transform: "translate(11.607 9.857)" },
1464
1474
  h("path", { d: "M1.393.643v5" }),
1465
- h("circle", { cx: "1.393", cy: "9.393", r: "1" }))))
1475
+ h("circle", { cx: "1.393", cy: "9.393", r: "1" })))),
1466
1476
  },
1467
1477
  'external-link': {
1468
1478
  markup: () => (h("g", null,
1469
1479
  h("path", { d: "M9.333 6.4H2V24h17.6v-7.333", class: "stroke-primary" }),
1470
- h("path", { class: "stroke-secondary", d: "M11.533 14.467L24 2m-8.8 0H24v8.8" })))
1480
+ h("path", { class: "stroke-secondary", d: "M11.533 14.467L24 2m-8.8 0H24v8.8" }))),
1471
1481
  },
1472
1482
  'eye-hide': {
1473
1483
  markup: () => (h("g", null,
1474
1484
  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" }),
1475
1485
  h("circle", { cx: "13", cy: "13.071", r: "3.929", class: "stroke-secondary" }),
1476
- h("path", { d: "M3 22.857L21.857 4", class: "stroke-primary" })))
1486
+ h("path", { d: "M3 22.857L21.857 4", class: "stroke-primary" }))),
1477
1487
  },
1478
1488
  'eye-show': {
1479
1489
  markup: () => (h("g", null,
1480
1490
  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" }),
1481
- h("circle", { cx: "13", cy: "13.071", r: "3.929", class: "stroke-secondary" })))
1491
+ h("circle", { cx: "13", cy: "13.071", r: "3.929", class: "stroke-secondary" }))),
1482
1492
  },
1483
1493
  'face-id': {
1484
1494
  markup: () => (h("g", null,
1485
1495
  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" }),
1486
- 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" })))
1496
+ 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" }))),
1487
1497
  },
1488
1498
  filebox: {
1489
1499
  markup: () => (h("g", null,
1490
1500
  h("path", { d: "M2.18 3.18h21.639v4.328H2.18z", class: "stroke-secondary" }),
1491
1501
  h("path", { d: "M21.656 9.672v12.262H4.344V9.672", class: "stroke-primary" }),
1492
- h("path", { d: "M10.115 11.115h5.77v3.607h-5.77z", class: "stroke-secondary filled" })))
1502
+ h("path", { d: "M10.115 11.115h5.77v3.607h-5.77z", class: "stroke-secondary filled" }))),
1493
1503
  },
1494
1504
  'filetype-csv': {
1495
1505
  markup: () => (h("g", null,
@@ -1500,7 +1510,7 @@ const icons = {
1500
1510
  h("path", { d: "M15.566 2v5.867h5.867" })),
1501
1511
  h("g", { class: "filled" },
1502
1512
  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" })),
1503
- h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" })))
1513
+ h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }))),
1504
1514
  },
1505
1515
  'filetype-doc': {
1506
1516
  markup: () => (h("g", null,
@@ -1511,7 +1521,7 @@ const icons = {
1511
1521
  h("path", { d: "M15.566 2v5.867h5.867" })),
1512
1522
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1513
1523
  h("g", { class: "filled" },
1514
- 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" }))))
1524
+ 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" })))),
1515
1525
  },
1516
1526
  'filetype-docx': {
1517
1527
  markup: () => (h("g", null,
@@ -1522,7 +1532,7 @@ const icons = {
1522
1532
  h("path", { d: "M15.566 2v5.867h5.867" })),
1523
1533
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1524
1534
  h("g", { class: "filled" },
1525
- 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" }))))
1535
+ 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" })))),
1526
1536
  },
1527
1537
  'filetype-gif': {
1528
1538
  markup: () => (h("g", null,
@@ -1533,7 +1543,7 @@ const icons = {
1533
1543
  h("path", { d: "M15.566 2v5.867h5.867" })),
1534
1544
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1535
1545
  h("g", { class: "filled" },
1536
- 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" }))))
1546
+ 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" })))),
1537
1547
  },
1538
1548
  'filetype-iso': {
1539
1549
  markup: () => (h("g", null,
@@ -1544,7 +1554,7 @@ const icons = {
1544
1554
  h("path", { d: "M15.566 2v5.867h5.867" })),
1545
1555
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1546
1556
  h("g", { class: "filled" },
1547
- 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" }))))
1557
+ 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" })))),
1548
1558
  },
1549
1559
  'filetype-jpg': {
1550
1560
  markup: () => (h("g", null,
@@ -1555,7 +1565,7 @@ const icons = {
1555
1565
  h("path", { d: "M15.566 2v5.867h5.867" })),
1556
1566
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1557
1567
  h("g", { class: "filled" },
1558
- 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" }))))
1568
+ 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" })))),
1559
1569
  },
1560
1570
  'filetype-otf': {
1561
1571
  markup: () => (h("g", null,
@@ -1566,7 +1576,7 @@ const icons = {
1566
1576
  h("path", { d: "M15.566 2v5.867h5.867" })),
1567
1577
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1568
1578
  h("g", { class: "filled" },
1569
- 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" }))))
1579
+ 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" })))),
1570
1580
  },
1571
1581
  'filetype-pdf': {
1572
1582
  markup: () => (h("g", null,
@@ -1577,7 +1587,7 @@ const icons = {
1577
1587
  h("path", { d: "M15.566 2v5.867h5.867" })),
1578
1588
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1579
1589
  h("g", { class: "filled" },
1580
- 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" }))))
1590
+ 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" })))),
1581
1591
  },
1582
1592
  'filetype-png': {
1583
1593
  markup: () => (h("g", null,
@@ -1588,7 +1598,7 @@ const icons = {
1588
1598
  h("path", { d: "M15.566 2v5.867h5.867" })),
1589
1599
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1590
1600
  h("g", { class: "filled" },
1591
- 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" }))))
1601
+ 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" })))),
1592
1602
  },
1593
1603
  'filetype-svg': {
1594
1604
  markup: () => (h("g", null,
@@ -1599,7 +1609,7 @@ const icons = {
1599
1609
  h("path", { d: "M15.566 2v5.867h5.867" })),
1600
1610
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1601
1611
  h("g", { class: "filled" },
1602
- 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" }))))
1612
+ 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" })))),
1603
1613
  },
1604
1614
  'filetype-txt': {
1605
1615
  markup: () => (h("g", null,
@@ -1610,7 +1620,7 @@ const icons = {
1610
1620
  h("path", { d: "M15.566 2v5.867h5.867" })),
1611
1621
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1612
1622
  h("g", { class: "filled" },
1613
- 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" }))))
1623
+ 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" })))),
1614
1624
  },
1615
1625
  'filetype-xlsx': {
1616
1626
  markup: () => (h("g", null,
@@ -1621,7 +1631,7 @@ const icons = {
1621
1631
  h("path", { d: "M15.566 2v5.867h5.867" })),
1622
1632
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1623
1633
  h("g", { class: "filled" },
1624
- 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" }))))
1634
+ 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" })))),
1625
1635
  },
1626
1636
  'filetype-xml': {
1627
1637
  markup: () => (h("g", null,
@@ -1632,97 +1642,97 @@ const icons = {
1632
1642
  h("path", { d: "M15.566 2v5.867h5.867" })),
1633
1643
  h("path", { d: "M23.267 13H2v7.7h21.267z", class: "stroke-secondary" }),
1634
1644
  h("g", { class: "filled" },
1635
- 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" }))))
1645
+ 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" })))),
1636
1646
  },
1637
1647
  filter: {
1638
- markup: () => h("path", { d: "M2 2h22l-8.643 11.786V24h-4.714V13.786z", class: "stroke-primary" })
1648
+ markup: () => (h("path", { d: "M2 2h22l-8.643 11.786V24h-4.714V13.786z", class: "stroke-primary" })),
1639
1649
  },
1640
1650
  fingerprint: {
1641
1651
  markup: () => (h("g", null,
1642
1652
  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" }),
1643
1653
  h("g", { class: "stroke-secondary" },
1644
1654
  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" }),
1645
- 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" }))))
1655
+ 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" })))),
1646
1656
  },
1647
1657
  flag: {
1648
1658
  markup: () => (h("g", null,
1649
1659
  h("path", { d: "M2 5.474l10.421 18.14", class: "stroke-primary" }),
1650
- 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" })))
1660
+ 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" }))),
1651
1661
  },
1652
1662
  gear: {
1653
1663
  markup: () => (h("g", null,
1654
1664
  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" }),
1655
- h("circle", { cx: "13", cy: "13", r: "2.933", class: "stroke-secondary filled" })))
1665
+ h("circle", { cx: "13", cy: "13", r: "2.933", class: "stroke-secondary filled" }))),
1656
1666
  },
1657
1667
  'gesture-hand': {
1658
1668
  markup: () => (h("g", { class: "stroke-primary" },
1659
1669
  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" }),
1660
- 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" })))
1670
+ 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" }))),
1661
1671
  },
1662
1672
  'gesture-scroll-horizontal': {
1663
1673
  markup: () => (h("g", null,
1664
1674
  h("g", { class: "stroke-primary" },
1665
1675
  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" }),
1666
1676
  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" })),
1667
- 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" })))
1677
+ 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" }))),
1668
1678
  },
1669
1679
  'gesture-scroll-vertical': {
1670
1680
  markup: () => (h("g", null,
1671
1681
  h("g", { class: "stroke-primary" },
1672
1682
  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" }),
1673
1683
  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" })),
1674
- 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" })))
1684
+ 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" }))),
1675
1685
  },
1676
1686
  'gesture-stretch': {
1677
1687
  markup: () => (h("g", null,
1678
1688
  h("g", { class: "stroke-primary" },
1679
1689
  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" })),
1680
- h("path", { class: "stroke-secondary", d: "M12.267 2L2 12.267M8.6 2h3.667v3.667M2 8.6v3.667h3.667" })))
1690
+ h("path", { class: "stroke-secondary", d: "M12.267 2L2 12.267M8.6 2h3.667v3.667M2 8.6v3.667h3.667" }))),
1681
1691
  },
1682
1692
  'gesture-swipe-down': {
1683
1693
  markup: () => (h("g", null,
1684
1694
  h("g", { class: "stroke-primary" },
1685
1695
  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" }),
1686
1696
  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" })),
1687
- h("path", { class: "stroke-secondary", d: "M5.474 14.193V3M2 10.719l3.474 3.474 3.473-3.474" })))
1697
+ h("path", { class: "stroke-secondary", d: "M5.474 14.193V3M2 10.719l3.474 3.474 3.473-3.474" }))),
1688
1698
  },
1689
1699
  'gesture-swipe-left': {
1690
1700
  markup: () => (h("g", null,
1691
1701
  h("g", { class: "stroke-primary" },
1692
1702
  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" }),
1693
1703
  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" })),
1694
- h("path", { class: "stroke-secondary", d: "M23 7.414h-6.828M1 7.414h7.966M4.414 4L1 7.414l3.414 3.414" })))
1704
+ h("path", { class: "stroke-secondary", d: "M23 7.414h-6.828M1 7.414h7.966M4.414 4L1 7.414l3.414 3.414" }))),
1695
1705
  },
1696
1706
  'gesture-swipe-right': {
1697
1707
  markup: () => (h("g", null,
1698
1708
  h("g", { class: "stroke-primary" },
1699
1709
  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" }),
1700
1710
  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" })),
1701
- h("path", { class: "stroke-secondary", d: "M6.931 7.414H2m22 0h-9.862M20.586 4L24 7.414l-3.414 3.414" })))
1711
+ h("path", { class: "stroke-secondary", d: "M6.931 7.414H2m22 0h-9.862M20.586 4L24 7.414l-3.414 3.414" }))),
1702
1712
  },
1703
1713
  'gesture-swipe-up': {
1704
1714
  markup: () => (h("g", null,
1705
1715
  h("g", { class: "stroke-primary" },
1706
1716
  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" }),
1707
1717
  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" })),
1708
- h("path", { class: "stroke-secondary", d: "M5.474 3v11.579M2 6.474L5.474 3l3.473 3.474" })))
1718
+ h("path", { class: "stroke-secondary", d: "M5.474 3v11.579M2 6.474L5.474 3l3.473 3.474" }))),
1709
1719
  },
1710
1720
  'gesture-tap': {
1711
1721
  markup: () => (h("g", null,
1712
1722
  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" }),
1713
1723
  h("g", { class: "stroke-primary" },
1714
1724
  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" }),
1715
- 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" }))))
1725
+ 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" })))),
1716
1726
  },
1717
1727
  gift: {
1718
1728
  markup: () => (h("g", null,
1719
1729
  h("path", { class: "stroke-primary", d: "M21.8 10.113v13.276H4.2V10.113M2 6.425h22v3.688H2z" }),
1720
- 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" })))
1730
+ 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" }))),
1721
1731
  },
1722
1732
  'gold-bars': {
1723
1733
  markup: () => (h("g", null,
1724
1734
  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" }),
1725
- h("path", { d: "M15.567 10.421h-5.134L7.5 17.099h11z", class: "stroke-secondary" })))
1735
+ h("path", { d: "M15.567 10.421h-5.134L7.5 17.099h11z", class: "stroke-secondary" }))),
1726
1736
  },
1727
1737
  government: {
1728
1738
  markup: () => (h("g", null,
@@ -1732,26 +1742,26 @@ const icons = {
1732
1742
  h("g", { class: "stroke-secondary" },
1733
1743
  h("path", { d: "M13 6.5V2.18" }),
1734
1744
  h("path", { d: "M13 2.901h2.885v1.443H13z", class: "filled" }),
1735
- h("path", { d: "M5 22.661V19m4-6.339v-1m4 1v-1m4 1v-1m4 11V19" }))))
1745
+ h("path", { d: "M5 22.661V19m4-6.339v-1m4 1v-1m4 1v-1m4 11V19" })))),
1736
1746
  },
1737
1747
  gps: {
1738
- markup: () => h("path", { d: "M24 9.057L2 2l7.057 22 3.735-11.208z", class: "stroke-primary" })
1748
+ markup: () => (h("path", { d: "M24 9.057L2 2l7.057 22 3.735-11.208z", class: "stroke-primary" })),
1739
1749
  },
1740
1750
  'graduation-cap': {
1741
1751
  markup: () => (h("g", null,
1742
1752
  h("g", { class: "stroke-primary" },
1743
1753
  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" }),
1744
1754
  h("path", { d: "M13 12.984L2 8.492 13 4l11 4.492z" })),
1745
- h("path", { d: "M17.3 18.315l1.855 2.552h-3.711l1.856-2.552v-6.982", class: "stroke-secondary" })))
1755
+ h("path", { d: "M17.3 18.315l1.855 2.552h-3.711l1.856-2.552v-6.982", class: "stroke-secondary" }))),
1746
1756
  },
1747
1757
  'grid-x2': {
1748
- 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" }))
1758
+ 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" })),
1749
1759
  },
1750
1760
  'grid-x3': {
1751
- 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" }))
1761
+ 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" })),
1752
1762
  },
1753
1763
  'hamburger-menu': {
1754
- markup: () => h("path", { class: "stroke-primary", d: "M4 5h18M4 13.5h18M4 22h18" })
1764
+ markup: () => (h("path", { class: "stroke-primary", d: "M4 5h18M4 13.5h18M4 22h18" })),
1755
1765
  },
1756
1766
  'hand-with-coins': {
1757
1767
  markup: () => (h("g", null,
@@ -1762,13 +1772,13 @@ const icons = {
1762
1772
  h("g", { class: "filled", transform: "translate(7.407 3.186)" },
1763
1773
  h("circle", { cx: "11.932", cy: "7.458", r: "2.983" }),
1764
1774
  h("circle", { cx: "2.983", cy: "2.983", r: "2.983" })),
1765
- h("path", { d: "M9.644 6.169h1.493m7.456 4.475h1.492" }))))
1775
+ h("path", { d: "M9.644 6.169h1.493m7.456 4.475h1.492" })))),
1766
1776
  },
1767
1777
  hand: {
1768
1778
  markup: () => (h("g", { class: "stroke-primary" },
1769
1779
  h("path", { d: "M6.4 7.133v-2.2a1.467 1.467 0 1 1 2.933 0v2.2" }),
1770
1780
  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" }),
1771
- 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" })))
1781
+ 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" }))),
1772
1782
  },
1773
1783
  handshake: {
1774
1784
  markup: () => (h("g", null,
@@ -1777,48 +1787,48 @@ const icons = {
1777
1787
  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" })),
1778
1788
  h("g", { class: "stroke-secondary" },
1779
1789
  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" }),
1780
- 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" }))))
1790
+ 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" })))),
1781
1791
  },
1782
1792
  headset: {
1783
1793
  markup: () => (h("g", null,
1784
1794
  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" }),
1785
- 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" })))
1795
+ 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" }))),
1786
1796
  },
1787
1797
  health: {
1788
1798
  markup: () => (h("g", null,
1789
1799
  h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" }),
1790
- h("path", { d: "M18.867 10.8H15.2V7.133h-4.4V10.8H7.133v4.4H10.8v3.667h4.4V15.2h3.667z", class: "stroke-secondary" })))
1800
+ h("path", { d: "M18.867 10.8H15.2V7.133h-4.4V10.8H7.133v4.4H10.8v3.667h4.4V15.2h3.667z", class: "stroke-secondary" }))),
1791
1801
  },
1792
1802
  heart: {
1793
- 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" }))
1803
+ 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" })),
1794
1804
  },
1795
1805
  'heart-add': {
1796
1806
  markup: () => (h("g", null,
1797
1807
  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" }),
1798
1808
  h("g", { class: "stroke-secondary", transform: "translate(15.164 13.721)" },
1799
1809
  h("circle", { cx: "4.328", cy: "4.328", r: "4.328", class: "filled" }),
1800
- h("path", { d: "M4.328 2.885V5.77M2.885 4.328H5.77" }))))
1810
+ h("path", { d: "M4.328 2.885V5.77M2.885 4.328H5.77" })))),
1801
1811
  },
1802
1812
  'heart-remove': {
1803
1813
  markup: () => (h("g", null,
1804
1814
  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" }),
1805
1815
  h("g", { class: "stroke-secondary", transform: "translate(15.164 13.721)" },
1806
1816
  h("circle", { cx: "4.328", cy: "4.328", r: "4.328", class: "filled" }),
1807
- h("path", { d: "M2.885 4.328H5.77" }))))
1817
+ h("path", { d: "M2.885 4.328H5.77" })))),
1808
1818
  },
1809
1819
  home: {
1810
1820
  markup: () => (h("g", null,
1811
1821
  h("g", { class: "stroke-primary" },
1812
1822
  h("path", { d: "M4.655 9.194v13.668h6.07v-5.69h4.551v5.69h6.069V9.194" }),
1813
1823
  h("path", { d: "M24 11.483L13 2 2 11.483" })),
1814
- h("path", { d: "M10.725 9.966h4.552v3.793h-4.552z", class: "stroke-secondary filled" })))
1824
+ h("path", { d: "M10.725 9.966h4.552v3.793h-4.552z", class: "stroke-secondary filled" }))),
1815
1825
  },
1816
1826
  'home-chimney': {
1817
1827
  markup: () => (h("g", null,
1818
1828
  h("path", { class: "stroke-secondary filled", d: "M5.542 9.174v-5.31h2.237v3.382m2.984 3.33h4.475v3.729h-4.475z" }),
1819
1829
  h("g", { class: "stroke-primary" },
1820
1830
  h("path", { d: "M4.796 9.818v13.436h5.967v-5.593h4.474v5.593h5.966V9.818" }),
1821
- h("path", { d: "M23.813 12.068L13 2.746 2.186 12.068" }))))
1831
+ h("path", { d: "M23.813 12.068L13 2.746 2.186 12.068" })))),
1822
1832
  },
1823
1833
  'id-badge': {
1824
1834
  markup: () => (h("g", null,
@@ -1829,170 +1839,170 @@ const icons = {
1829
1839
  h("path", { class: "stroke-secondary", d: "M15.2 14.833h5.133M15.2 18.5h5.133" }),
1830
1840
  h("g", { class: "stroke-secondary filled", transform: "translate(4.933 12.633)" },
1831
1841
  h("circle", { cx: "3.667", cy: "1.467", r: "1.467" }),
1832
- 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" }))))
1842
+ 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" })))),
1833
1843
  },
1834
1844
  inbox: {
1835
1845
  markup: () => (h("g", { class: "stroke-primary" },
1836
1846
  h("path", { d: "M2.18 15.082h7.213v2.524h7.213v-2.524h7.213" }),
1837
- h("path", { d: "M23.819 22.655H2.18v-7.573L6.508 3.18h12.983l4.328 11.902z" })))
1847
+ h("path", { d: "M23.819 22.655H2.18v-7.573L6.508 3.18h12.983l4.328 11.902z" }))),
1838
1848
  },
1839
1849
  'inbox-checked': {
1840
1850
  markup: () => (h("g", null,
1841
1851
  h("g", { class: "stroke-primary" },
1842
1852
  h("path", { d: "M2.18 15.082h7.213v2.524h7.213v-2.524h7.213" }),
1843
1853
  h("path", { d: "M23.819 22.655H2.18v-7.573L6.508 3.18h12.983l4.328 11.902z" })),
1844
- h("path", { d: "M9.393 9.672l2.164 2.164 5.05-5.049", class: "stroke-secondary" })))
1854
+ h("path", { d: "M9.393 9.672l2.164 2.164 5.05-5.049", class: "stroke-secondary" }))),
1845
1855
  },
1846
1856
  'inbox-full': {
1847
1857
  markup: () => (h("g", null,
1848
1858
  h("g", { class: "stroke-primary" },
1849
1859
  h("path", { d: "M2.18 15.082h7.213v2.524h7.213v-2.524h7.213" }),
1850
1860
  h("path", { d: "M23.819 22.655H2.18v-7.573L6.508 3.18h12.983l4.328 11.902z" })),
1851
- h("path", { class: "stroke-secondary", d: "M9.394 6.066h7.213M8.312 8.951h9.377M7.23 11.836h11.541" })))
1861
+ h("path", { class: "stroke-secondary", d: "M9.394 6.066h7.213M8.312 8.951h9.377M7.23 11.836h11.541" }))),
1852
1862
  },
1853
1863
  info: {
1854
1864
  markup: () => (h("g", null,
1855
1865
  h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" }),
1856
1866
  h("g", { class: "stroke-secondary", transform: "translate(10.067 5.3)" },
1857
1867
  h("path", { d: "M0 15.033h5.867M0 5.5h2.933v9.533" }),
1858
- h("circle", { cx: "2.933", cy: "1.1", r: "1.1" }))))
1868
+ h("circle", { cx: "2.933", cy: "1.1", r: "1.1" })))),
1859
1869
  },
1860
1870
  ios: {
1861
1871
  markup: () => (h("g", null,
1862
1872
  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" }),
1863
- 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" })))
1873
+ 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" }))),
1864
1874
  },
1865
1875
  key: {
1866
1876
  markup: () => (h("g", null,
1867
1877
  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" }),
1868
- h("circle", { cx: "9.364", cy: "16.636", r: "1.818", class: "stroke-secondary" })))
1878
+ h("circle", { cx: "9.364", cy: "16.636", r: "1.818", class: "stroke-secondary" }))),
1869
1879
  },
1870
1880
  laptop: {
1871
1881
  markup: () => (h("g", null,
1872
1882
  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" }),
1873
- 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" })))
1883
+ 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" }))),
1874
1884
  },
1875
1885
  leaf: {
1876
1886
  markup: () => (h("g", null,
1877
1887
  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" }),
1878
- h("path", { d: "M14.5 12.5l-11 9.726", class: "stroke-secondary" })))
1888
+ h("path", { d: "M14.5 12.5l-11 9.726", class: "stroke-secondary" }))),
1879
1889
  },
1880
1890
  lightbulb: {
1881
1891
  markup: () => (h("g", null,
1882
1892
  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" }),
1883
- 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" })))
1893
+ 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" }))),
1884
1894
  },
1885
1895
  linechart: {
1886
1896
  markup: () => (h("g", null,
1887
1897
  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" }),
1888
1898
  h("circle", { cx: "16.667", cy: "11.333", r: "2.2", class: "stroke-secondary filled" }),
1889
- h("path", { d: "M2 4h22v19.067H2z", class: "stroke-primary" })))
1899
+ h("path", { d: "M2 4h22v19.067H2z", class: "stroke-primary" }))),
1890
1900
  },
1891
1901
  'linechart-trend': {
1892
1902
  markup: () => (h("g", null,
1893
1903
  h("path", { d: "M2 13h5.133l2.934-5.867 5.866 11.734L18.867 13H24", class: "stroke-secondary" }),
1894
- h("path", { d: "M2 2h22v22H2z", class: "stroke-primary" })))
1904
+ h("path", { d: "M2 2h22v22H2z", class: "stroke-primary" }))),
1895
1905
  },
1896
1906
  link: {
1897
1907
  markup: () => (h("g", { class: "stroke-primary" },
1898
1908
  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" }),
1899
- 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" })))
1909
+ 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" }))),
1900
1910
  },
1901
1911
  list: {
1902
1912
  markup: () => (h("g", null,
1903
1913
  h("path", { class: "stroke-secondary filled", d: "M3 2h4.714v4.714H3zm0 8.643h4.714v4.714H3zm0 8.643h4.714V24H3z" }),
1904
- h("path", { class: "stroke-primary", d: "M10.643 4.357H24M10.643 13H24m-13.357 8.643H24" })))
1914
+ h("path", { class: "stroke-primary", d: "M10.643 4.357H24M10.643 13H24m-13.357 8.643H24" }))),
1905
1915
  },
1906
1916
  location: {
1907
1917
  markup: () => (h("g", null,
1908
1918
  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" }),
1909
- h("circle", { cx: "13.203", cy: "10.203", r: "2.983", class: "stroke-secondary filled" })))
1919
+ h("circle", { cx: "13.203", cy: "10.203", r: "2.983", class: "stroke-secondary filled" }))),
1910
1920
  },
1911
1921
  'location-base': {
1912
1922
  markup: () => (h("g", null,
1913
1923
  h("path", { d: "M6.607 17.869L3 23.639h20.197l-3.607-5.77", class: "stroke-primary" }),
1914
1924
  h("g", { class: "stroke-secondary", transform: "translate(5.885 2.026)" },
1915
1925
  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" }),
1916
- h("circle", { cx: "7.213", cy: "7.213", r: "2.164", class: "filled" }))))
1926
+ h("circle", { cx: "7.213", cy: "7.213", r: "2.164", class: "filled" })))),
1917
1927
  },
1918
1928
  'location-prohibited': {
1919
1929
  markup: () => (h("g", null,
1920
1930
  h("g", { class: "stroke-primary", transform: "translate(2.588 2.023)" },
1921
1931
  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" }),
1922
1932
  h("circle", { cx: "9.471", cy: "6.471", r: "1.941", class: "filled" })),
1923
- 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" })))
1933
+ 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" }))),
1924
1934
  },
1925
1935
  lock: {
1926
1936
  markup: () => (h("g", null,
1927
1937
  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" }),
1928
1938
  h("g", { class: "stroke-secondary filled", transform: "translate(10.867 14.1)" },
1929
1939
  h("path", { d: "M2.2 4.4v2.2" }),
1930
- h("circle", { cx: "2.2", cy: "2.2", r: "2.2" }))))
1940
+ h("circle", { cx: "2.2", cy: "2.2", r: "2.2" })))),
1931
1941
  },
1932
1942
  logout: {
1933
1943
  markup: () => (h("g", null,
1934
1944
  h("path", { class: "stroke-primary", d: "M15.797 13.932v5.593h-5.594M2 2.373V2h13.797v7.458" }),
1935
1945
  h("path", { d: "M2 2l8.203 5.22V24L2 19.525V2", class: "stroke-primary filled" }),
1936
- h("path", { class: "stroke-secondary", d: "M19.898 7.593L24 11.695l-4.102 4.101m-6.712-4.101H24" })))
1946
+ h("path", { class: "stroke-secondary", d: "M19.898 7.593L24 11.695l-4.102 4.101m-6.712-4.101H24" }))),
1937
1947
  },
1938
1948
  loop: {
1939
1949
  markup: () => (h("g", { class: "stroke-primary" },
1940
1950
  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" }),
1941
- h("path", { d: "M9.466 8.254l1.14 3.494-3.484 1.137" })))
1951
+ h("path", { d: "M9.466 8.254l1.14 3.494-3.484 1.137" }))),
1942
1952
  },
1943
1953
  mail: {
1944
1954
  markup: () => (h("g", null,
1945
1955
  h("g", { class: "stroke-primary" },
1946
1956
  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" }),
1947
1957
  h("path", { d: "M4.933 17.467L7.866 13.8m13.2 3.667L18.133 13.8" })),
1948
- h("path", { d: "M4.933 7.933l8.067 6.6 8.067-6.6", class: "stroke-secondary" })))
1958
+ h("path", { d: "M4.933 7.933l8.067 6.6 8.067-6.6", class: "stroke-secondary" }))),
1949
1959
  },
1950
1960
  math: {
1951
1961
  markup: () => (h("g", null,
1952
1962
  h("path", { class: "stroke-primary", d: "M2 2h22v22H2zm11 0v22M2 13h22" }),
1953
- 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" })))
1963
+ 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" }))),
1954
1964
  },
1955
1965
  medal: {
1956
1966
  markup: () => (h("g", null,
1957
1967
  h("g", { class: "stroke-primary" },
1958
1968
  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" })),
1959
1969
  h("circle", { cx: "13.567", cy: "17.233", r: "6.533", class: "stroke-secondary" }),
1960
- 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" })))
1970
+ 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" }))),
1961
1971
  },
1962
1972
  megaphone: {
1963
1973
  markup: () => (h("g", null,
1964
1974
  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" }),
1965
1975
  h("g", { class: "stroke-secondary" },
1966
1976
  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" }),
1967
- h("path", { d: "M21.067 11.433H24m-4.21-4.766L22.33 5.2m-2.54 11l2.54 1.467" }))))
1977
+ h("path", { d: "M21.067 11.433H24m-4.21-4.766L22.33 5.2m-2.54 11l2.54 1.467" })))),
1968
1978
  },
1969
1979
  'message-forward': {
1970
- 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" }))
1980
+ 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" })),
1971
1981
  },
1972
1982
  'message-reply': {
1973
- 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" }))
1983
+ 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" })),
1974
1984
  },
1975
1985
  'message-response': {
1976
- 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" }))
1986
+ 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" })),
1977
1987
  },
1978
1988
  'mobile-button': {
1979
1989
  markup: () => (h("g", null,
1980
1990
  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" }),
1981
- h("circle", { cx: "11.7", cy: "20.7", r: "1.1", class: "stroke-secondary" })))
1991
+ h("circle", { cx: "11.7", cy: "20.7", r: "1.1", class: "stroke-secondary" }))),
1982
1992
  },
1983
1993
  'mobile-edit': {
1984
1994
  markup: () => (h("g", null,
1985
1995
  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" }),
1986
1996
  h("g", { class: "stroke-secondary" },
1987
1997
  h("path", { d: "M10.967 4.2h1.467" }),
1988
- h("path", { d: "M17.934 23.267l-2.2.366.366-2.2 6.234-6.233 1.833 1.833z", class: "filled" }))))
1998
+ h("path", { d: "M17.934 23.267l-2.2.366.366-2.2 6.234-6.233 1.833 1.833z", class: "filled" })))),
1989
1999
  },
1990
2000
  'mobile-heart': {
1991
2001
  markup: () => (h("g", null,
1992
2002
  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" }),
1993
2003
  h("g", { class: "stroke-secondary" },
1994
2004
  h("path", { d: "M10.967 4.2h1.467" }),
1995
- 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" }))))
2005
+ 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" })))),
1996
2006
  },
1997
2007
  'mobile-location': {
1998
2008
  markup: () => (h("g", null,
@@ -2000,7 +2010,7 @@ const icons = {
2000
2010
  h("g", { class: "stroke-secondary", transform: "translate(10.733 4.1)" },
2001
2011
  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" }),
2002
2012
  h("circle", { cx: "8.667", cy: "13.667", r: "1" }),
2003
- h("path", { d: "M.233.1H1.7" }))))
2013
+ h("path", { d: "M.233.1H1.7" })))),
2004
2014
  },
2005
2015
  'mobile-lock': {
2006
2016
  markup: () => (h("g", null,
@@ -2009,26 +2019,26 @@ const icons = {
2009
2019
  h("path", { d: "M.767.467h1.466" }),
2010
2020
  h("path", { d: "M7 15.133h7.333v5.133H7z", class: "filled" }),
2011
2021
  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" }),
2012
- h("circle", { cx: "10.667", cy: "17.7", r: "1" }))))
2022
+ h("circle", { cx: "10.667", cy: "17.7", r: "1" })))),
2013
2023
  },
2014
2024
  'mobile-remove': {
2015
2025
  markup: () => (h("g", null,
2016
2026
  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" }),
2017
2027
  h("g", { class: "stroke-secondary", transform: "translate(10 4.2)" },
2018
2028
  h("circle", { cx: "9.4", cy: "15.4", r: "4.4", class: "filled" }),
2019
- h("path", { d: "M7.933 15.4h2.934M.967 0h1.466" }))))
2029
+ h("path", { d: "M7.933 15.4h2.934M.967 0h1.466" })))),
2020
2030
  },
2021
2031
  'mobile-rotate': {
2022
2032
  markup: () => (h("g", null,
2023
2033
  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" }),
2024
- 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" })))
2034
+ 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" }))),
2025
2035
  },
2026
2036
  'mobile-search': {
2027
2037
  markup: () => (h("g", null,
2028
2038
  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" }),
2029
2039
  h("g", { class: "stroke-secondary", transform: "translate(10.733 3.467)" },
2030
2040
  h("path", { d: "M.233.733H1.7m12.833 19.8L11.26 17.26" }),
2031
- h("circle", { cx: "8.667", cy: "14.667", r: "3.667", class: "filled" }))))
2041
+ h("circle", { cx: "8.667", cy: "14.667", r: "3.667", class: "filled" })))),
2032
2042
  },
2033
2043
  'mobile-settings': {
2034
2044
  markup: () => (h("g", null,
@@ -2036,7 +2046,7 @@ const icons = {
2036
2046
  h("g", { class: "stroke-secondary", transform: "translate(10.905 3.467)" },
2037
2047
  h("path", { d: "M.062.733h1.466" }),
2038
2048
  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" }),
2039
- h("circle", { cx: "8.495", cy: "15.767", r: "1.1" }))))
2049
+ h("circle", { cx: "8.495", cy: "15.767", r: "1.1" })))),
2040
2050
  },
2041
2051
  'mobile-time': {
2042
2052
  markup: () => (h("g", null,
@@ -2044,7 +2054,7 @@ const icons = {
2044
2054
  h("g", { class: "stroke-secondary", transform: "translate(10 4.2)" },
2045
2055
  h("path", { d: "M.967 0h1.466" }),
2046
2056
  h("circle", { cx: "9.4", cy: "15.4", r: "4.4", class: "filled" }),
2047
- h("path", { d: "M9.4 13.567V15.4h1.833" }))))
2057
+ h("path", { d: "M9.4 13.567V15.4h1.833" })))),
2048
2058
  },
2049
2059
  'money-time': {
2050
2060
  markup: () => (h("g", null,
@@ -2052,7 +2062,7 @@ const icons = {
2052
2062
  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" }),
2053
2063
  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" }),
2054
2064
  h("ellipse", { cx: "4.4", cy: "2.2", rx: "4.4", ry: "2.2" })),
2055
- 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" })))
2065
+ 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" }))),
2056
2066
  },
2057
2067
  motorcycle: {
2058
2068
  markup: () => (h("g", null,
@@ -2060,7 +2070,7 @@ const icons = {
2060
2070
  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" })),
2061
2071
  h("g", { class: "stroke-secondary filled", transform: "translate(2.355 13.871)" },
2062
2072
  h("circle", { cx: "3.194", cy: "3.194", r: "3.194" }),
2063
- h("circle", { cx: "18.452", cy: "3.548", r: "2.839" }))))
2073
+ h("circle", { cx: "18.452", cy: "3.548", r: "2.839" })))),
2064
2074
  },
2065
2075
  motorhome: {
2066
2076
  markup: () => (h("g", null,
@@ -2071,20 +2081,20 @@ const icons = {
2071
2081
  h("g", { class: "filled", transform: "translate(3.721 17.174)" },
2072
2082
  h("circle", { cx: "3.148", cy: "2.957", r: "2.164" }),
2073
2083
  h("circle", { cx: "15.049", cy: "2.957", r: "2.164" })),
2074
- h("path", { d: "M5 9h5v4H5zm17.495 7.504h1.324V18h-1.324zm-7-4.504h2.023l1.92 2.547h-3.943zm2.497-3.983h-4" }))))
2084
+ h("path", { d: "M5 9h5v4H5zm17.495 7.504h1.324V18h-1.324zm-7-4.504h2.023l1.92 2.547h-3.943zm2.497-3.983h-4" })))),
2075
2085
  },
2076
2086
  movie: {
2077
2087
  markup: () => (h("g", null,
2078
2088
  h("path", { d: "M4 11h19v13H4z", class: "stroke-primary" }),
2079
2089
  h("path", { d: "M11.339 13.887l5.677 3.548-5.677 3.549z", class: "stroke-secondary filled" }),
2080
- 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" })))
2090
+ 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" }))),
2081
2091
  },
2082
2092
  music: {
2083
2093
  markup: () => (h("g", null,
2084
2094
  h("path", { class: "stroke-secondary", d: "M9.135 7.107h14.57m.001 11.393V2H9.135v18.857" }),
2085
2095
  h("g", { class: "stroke-primary", transform: "translate(3 15.357)" },
2086
2096
  h("ellipse", { cx: "3.068", cy: "5.5", rx: "3.068", ry: "3.143" }),
2087
- h("ellipse", { cx: "17.638", cy: "3.143", rx: "3.068", ry: "3.143" }))))
2097
+ h("ellipse", { cx: "17.638", cy: "3.143", rx: "3.068", ry: "3.143" })))),
2088
2098
  },
2089
2099
  'nest-egg': {
2090
2100
  markup: () => (h("g", null,
@@ -2094,7 +2104,7 @@ const icons = {
2094
2104
  h("g", { class: "stroke-secondary" },
2095
2105
  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" }),
2096
2106
  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" })),
2097
- 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" })))
2107
+ 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" }))),
2098
2108
  },
2099
2109
  newspaper: {
2100
2110
  markup: () => (h("g", null,
@@ -2102,13 +2112,13 @@ const icons = {
2102
2112
  h("path", { d: "M6.4 14.467H2V21.8c0 1.21.99 2.2 2.2 2.2" }),
2103
2113
  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" })),
2104
2114
  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" }),
2105
- h("path", { class: "stroke-secondary filled", d: "M10.067 5.667h4.4v3.667h-4.4zm5.867 11h4.4v3.667h-4.4z" })))
2115
+ h("path", { class: "stroke-secondary filled", d: "M10.067 5.667h4.4v3.667h-4.4zm5.867 11h4.4v3.667h-4.4z" }))),
2106
2116
  },
2107
2117
  options: {
2108
2118
  markup: () => (h("g", { class: "stroke-primary uniform" },
2109
2119
  h("circle", { cx: "13", cy: "22", r: "1.45" }),
2110
2120
  h("circle", { cx: "13", cy: "13", r: "1.45" }),
2111
- h("circle", { cx: "13", cy: "4", r: "1.45" })))
2121
+ h("circle", { cx: "13", cy: "4", r: "1.45" }))),
2112
2122
  },
2113
2123
  'os-android': {
2114
2124
  markup: () => (h("g", null,
@@ -2116,36 +2126,36 @@ const icons = {
2116
2126
  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" }),
2117
2127
  h("g", { class: "stroke-secondary filled", transform: "translate(10.311 5.787)" },
2118
2128
  h("circle", { cx: ".721", cy: ".721", r: "1" }),
2119
- h("circle", { cx: "5.049", cy: ".721", r: "1" }))))
2129
+ h("circle", { cx: "5.049", cy: ".721", r: "1" })))),
2120
2130
  },
2121
2131
  'os-android-color': {
2122
2132
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
2123
2133
  h("g", { "fill-rule": "nonzero", transform: "translate(4 2)" },
2124
2134
  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" }),
2125
2135
  h("circle", { cx: "5.978", cy: "3.587", r: "1", fill: "#FFF" }),
2126
- h("circle", { cx: "11.239", cy: "3.587", r: "1", fill: "#FFF" }))))
2136
+ h("circle", { cx: "11.239", cy: "3.587", r: "1", fill: "#FFF" })))),
2127
2137
  },
2128
2138
  'os-android-filled': {
2129
2139
  markup: () => (h("g", null,
2130
- 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" })))
2140
+ 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" }))),
2131
2141
  },
2132
2142
  'os-apple': {
2133
2143
  markup: () => (h("g", null,
2134
2144
  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" }),
2135
- 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" })))
2145
+ 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" }))),
2136
2146
  },
2137
2147
  'os-apple-color': {
2138
2148
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
2139
- 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" })))
2149
+ 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" }))),
2140
2150
  },
2141
2151
  'os-apple-filled': {
2142
2152
  markup: () => (h("g", null,
2143
- 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" })))
2153
+ 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" }))),
2144
2154
  },
2145
2155
  'os-windows': {
2146
2156
  markup: () => (h("g", null,
2147
2157
  h("g", { class: "stroke-primary filled" },
2148
- 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" }))))
2158
+ 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" })))),
2149
2159
  },
2150
2160
  'os-windows-color': {
2151
2161
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
@@ -2153,11 +2163,11 @@ const icons = {
2153
2163
  h("path", { fill: "#E86C60", d: "M2 2h10.476v10.476H2z" }),
2154
2164
  h("path", { fill: "#72C472", d: "M13.524 2H24v10.476H13.524z" }),
2155
2165
  h("path", { fill: "#43A6DD", d: "M2 13.524h10.476V24H2z" }),
2156
- h("path", { fill: "#EFD358", d: "M13.524 13.524H24V24H13.524z" }))))
2166
+ h("path", { fill: "#EFD358", d: "M13.524 13.524H24V24H13.524z" })))),
2157
2167
  },
2158
2168
  'os-windows-filled': {
2159
2169
  markup: () => (h("g", null,
2160
- h("path", { d: "M12.476 13.524V24H2V13.524h10.476zm11.524 0V24H13.524V13.524H24zM12.476 2v10.476H2V2h10.476zM24 2v10.476H13.524V2H24z", class: "filled" })))
2170
+ h("path", { d: "M12.476 13.524V24H2V13.524h10.476zm11.524 0V24H13.524V13.524H24zM12.476 2v10.476H2V2h10.476zM24 2v10.476H13.524V2H24z", class: "filled" }))),
2161
2171
  },
2162
2172
  palette: {
2163
2173
  markup: () => (h("g", null,
@@ -2167,22 +2177,22 @@ const icons = {
2167
2177
  h("g", { transform: "translate(3.933 8.7)", class: "stroke-secondary filled" },
2168
2178
  h("circle", { cx: "1.467", cy: "1.467", r: "1.467" }),
2169
2179
  h("circle", { cx: "2.933", cy: "6.6", r: "1.467" }),
2170
- h("circle", { cx: "8.067", cy: "8.8", r: "1.467" }))))
2180
+ h("circle", { cx: "8.067", cy: "8.8", r: "1.467" })))),
2171
2181
  },
2172
2182
  paperclip: {
2173
- 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" }))
2183
+ 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" })),
2174
2184
  },
2175
2185
  'paper-plane': {
2176
2186
  markup: () => (h("g", null,
2177
2187
  h("path", { d: "M8.212 14.785l-.03 6.858 3.727-4.169z", class: "stroke-primary filled" }),
2178
2188
  h("g", { class: "stroke-primary" },
2179
2189
  h("path", { d: "M2.879 10.8L22 4 8.224 14.775z" }),
2180
- h("path", { d: "M8.207 14.783L22 4l-3.393 18.321z" }))))
2190
+ h("path", { d: "M8.207 14.783L22 4l-3.393 18.321z" })))),
2181
2191
  },
2182
2192
  pause: {
2183
2193
  markup: () => (h("g", null,
2184
2194
  h("g", { class: "stroke-primary filled" },
2185
- h("path", { d: "M5 3h5.517v19.31H5zm11 0h5.517v19.31H16z" }))))
2195
+ h("path", { d: "M5 3h5.517v19.31H5zm11 0h5.517v19.31H16z" })))),
2186
2196
  },
2187
2197
  paw: {
2188
2198
  markup: () => (h("g", null,
@@ -2191,33 +2201,33 @@ const icons = {
2191
2201
  h("ellipse", { cx: "2.75", cy: "9.356", rx: "1.75", ry: "2.5", transform: "rotate(-17.103 2.75 9.356)" }),
2192
2202
  h("ellipse", { cx: "19.75", cy: "9.356", rx: "1.75", ry: "2.5", transform: "rotate(-162.897 19.75 9.356)" }),
2193
2203
  h("ellipse", { cx: "15.002", cy: "4.003", rx: "2", ry: "3", transform: "rotate(3.105 15.002 4.003)" })),
2194
- 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" })))
2204
+ 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" }))),
2195
2205
  },
2196
2206
  people: {
2197
2207
  markup: () => (h("g", null,
2198
2208
  h("g", { class: "stroke-primary" },
2199
2209
  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" })),
2200
2210
  h("g", { class: "stroke-secondary filled" },
2201
- 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" }))))
2211
+ 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" })))),
2202
2212
  },
2203
2213
  'people-group': {
2204
2214
  markup: () => (h("g", null,
2205
2215
  h("g", { class: "stroke-primary" },
2206
2216
  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" })),
2207
2217
  h("g", { class: "stroke-secondary filled" },
2208
- 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" }))))
2218
+ 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" })))),
2209
2219
  },
2210
2220
  percent: {
2211
2221
  markup: () => (h("g", null,
2212
2222
  h("g", { class: "stroke-secondary" },
2213
2223
  h("ellipse", { cx: "5.793", cy: "7.69", rx: "3.793", ry: "5.69" }),
2214
2224
  h("ellipse", { cx: "18.69", cy: "18.31", rx: "3.793", ry: "5.69" })),
2215
- h("path", { d: "M6.172 23.62L18.31 2.38", class: "stroke-primary" })))
2225
+ h("path", { d: "M6.172 23.62L18.31 2.38", class: "stroke-primary" }))),
2216
2226
  },
2217
2227
  person: {
2218
2228
  markup: () => (h("g", { transform: "translate(3, 1)" },
2219
2229
  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" }),
2220
- 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" })))
2230
+ 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" }))),
2221
2231
  },
2222
2232
  'person-add': {
2223
2233
  markup: () => (h("g", null,
@@ -2226,7 +2236,7 @@ const icons = {
2226
2236
  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" })),
2227
2237
  h("g", { class: "stroke-secondary", transform: "translate(15.164 13.721)" },
2228
2238
  h("circle", { cx: "4.328", cy: "4.328", r: "4.328", class: "filled" }),
2229
- h("path", { d: "M4.328 2.885V5.77M2.885 4.328H5.77" }))))
2239
+ h("path", { d: "M4.328 2.885V5.77M2.885 4.328H5.77" })))),
2230
2240
  },
2231
2241
  'person-lock': {
2232
2242
  markup: () => (h("g", null,
@@ -2236,7 +2246,7 @@ const icons = {
2236
2246
  h("g", { class: "stroke-secondary", transform: "translate(16.2 11.733)" },
2237
2247
  h("path", { d: "M0 5.133h7.333v5.133H0z", class: "filled" }),
2238
2248
  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" }),
2239
- h("circle", { cx: "3.667", cy: "7.7", r: "1" }))))
2249
+ h("circle", { cx: "3.667", cy: "7.7", r: "1" })))),
2240
2250
  },
2241
2251
  'person-remove': {
2242
2252
  markup: () => (h("g", null,
@@ -2245,7 +2255,7 @@ const icons = {
2245
2255
  h("path", { d: "M2.885 4.328H5.77" })),
2246
2256
  h("g", null,
2247
2257
  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" }),
2248
- 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" }))))
2258
+ 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" })))),
2249
2259
  },
2250
2260
  'person-settings': {
2251
2261
  markup: () => (h("g", null,
@@ -2254,7 +2264,7 @@ const icons = {
2254
2264
  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" })),
2255
2265
  h("g", { class: "stroke-secondary", transform: "translate(14.905 13.467)" },
2256
2266
  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" }),
2257
- h("circle", { cx: "4.495", cy: "4.767", r: "1.1" }))))
2267
+ h("circle", { cx: "4.495", cy: "4.767", r: "1.1" })))),
2258
2268
  },
2259
2269
  'person-to-person': {
2260
2270
  markup: () => (h("g", null,
@@ -2266,27 +2276,27 @@ const icons = {
2266
2276
  h("g", { class: "stroke-primary" },
2267
2277
  h("path", { d: "M13.733 5.667h4.4A2.933 2.933 0 0 1 21.067 8.6v2.2" }),
2268
2278
  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" }),
2269
- h("path", { d: "M9.333 23.267l2.934-2.934L9.333 17.4" }))))
2279
+ h("path", { d: "M9.333 23.267l2.934-2.934L9.333 17.4" })))),
2270
2280
  },
2271
2281
  'personal-care': {
2272
2282
  markup: () => (h("g", null,
2273
2283
  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" }),
2274
- h("path", { class: "stroke-secondary", d: "M5 2h1.222v22H5zm9.167 0h2.444v3.667h-2.444z" })))
2284
+ h("path", { class: "stroke-secondary", d: "M5 2h1.222v22H5zm9.167 0h2.444v3.667h-2.444z" }))),
2275
2285
  },
2276
2286
  phone: {
2277
2287
  markup: () => (h("g", null,
2278
2288
  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" }),
2279
- h("path", { d: "M12.033 4.344h1.442", class: "stroke-secondary" })))
2289
+ h("path", { d: "M12.033 4.344h1.442", class: "stroke-secondary" }))),
2280
2290
  },
2281
2291
  piechart: {
2282
2292
  markup: () => (h("g", null,
2283
2293
  h("path", { d: "M11.533 4.933a9.534 9.534 0 1 0 9.534 9.534h-9.534V4.933z", class: "stroke-primary" }),
2284
- h("path", { d: "M14.467 2v9.533H24A9.534 9.534 0 0 0 14.467 2z", class: "stroke-secondary filled" })))
2294
+ h("path", { d: "M14.467 2v9.533H24A9.534 9.534 0 0 0 14.467 2z", class: "stroke-secondary filled" }))),
2285
2295
  },
2286
2296
  'piechart-expanded': {
2287
2297
  markup: () => (h("g", null,
2288
2298
  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" }),
2289
- 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" })))
2299
+ 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" }))),
2290
2300
  },
2291
2301
  'piggy-bank': {
2292
2302
  markup: () => (h("g", null,
@@ -2294,22 +2304,22 @@ const icons = {
2294
2304
  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" }),
2295
2305
  h("circle", { cx: "6.233", cy: "7.1", r: "1.1" }),
2296
2306
  h("path", { d: "M10.633 4.533h4.4" })),
2297
- h("circle", { cx: "14.833", cy: "4.2", r: "2.2", class: "stroke-secondary filled" })))
2307
+ h("circle", { cx: "14.833", cy: "4.2", r: "2.2", class: "stroke-secondary filled" }))),
2298
2308
  },
2299
2309
  play: {
2300
2310
  markup: () => (h("g", null,
2301
- h("path", { d: "M6.407 23.593V2.407L21.074 13z", class: "stroke-primary filled" })))
2311
+ h("path", { d: "M6.407 23.593V2.407L21.074 13z", class: "stroke-primary filled" }))),
2302
2312
  },
2303
2313
  pricetag: {
2304
2314
  markup: () => (h("g", null,
2305
2315
  h("path", { d: "M14.737 24L24 14.737 11.263 2H2v9.263z", class: "stroke-primary" }),
2306
2316
  h("circle", { cx: "7.018", cy: "7.018", r: "1.544", class: "stroke-secondary filled" }),
2307
- h("path", { class: "stroke-secondary", d: "M13.193 10.105l4.631 4.632m-7.719-1.544l4.632 4.631" })))
2317
+ h("path", { class: "stroke-secondary", d: "M13.193 10.105l4.631 4.632m-7.719-1.544l4.632 4.631" }))),
2308
2318
  },
2309
2319
  'pricetag-blank': {
2310
2320
  markup: () => (h("g", null,
2311
2321
  h("path", { d: "M14.737 24L24 14.737 11.263 2H2v9.263z", class: "stroke-primary" }),
2312
- h("circle", { cx: "7.018", cy: "7.018", r: "1.544", class: "stroke-secondary filled" })))
2322
+ h("circle", { cx: "7.018", cy: "7.018", r: "1.544", class: "stroke-secondary filled" }))),
2313
2323
  },
2314
2324
  'pricetag-time': {
2315
2325
  markup: () => (h("g", null,
@@ -2317,7 +2327,7 @@ const icons = {
2317
2327
  h("circle", { cx: "6.847", cy: "6.847", r: "1.492", class: "stroke-secondary filled" }),
2318
2328
  h("g", { class: "stroke-secondary", transform: "translate(15.05 9.085)" },
2319
2329
  h("circle", { cx: "4.475", cy: "4.475", r: "4.475" }),
2320
- h("path", { d: "M4.475 2.61v1.865h1.864" }))))
2330
+ h("path", { d: "M4.475 2.61v1.865h1.864" })))),
2321
2331
  },
2322
2332
  print: {
2323
2333
  markup: () => (h("g", null,
@@ -2327,61 +2337,61 @@ const icons = {
2327
2337
  h("path", { d: "M5.133 2.933V0h11.734v2.933" })),
2328
2338
  h("g", { class: "stroke-secondary" },
2329
2339
  h("path", { d: "M7.133 14.467v4.4L12.266 24h6.6v-9.533z" }),
2330
- h("path", { d: "M12.266 24v-5.133H7.133" }))))
2340
+ h("path", { d: "M12.266 24v-5.133H7.133" })))),
2331
2341
  },
2332
2342
  prohibited: {
2333
2343
  markup: () => (h("g", null,
2334
2344
  h("path", { d: "M20.773 5.227L5.227 20.773", class: "stroke-secondary" }),
2335
- h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" })))
2345
+ h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" }))),
2336
2346
  },
2337
2347
  question: {
2338
2348
  markup: () => (h("g", null,
2339
2349
  h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" }),
2340
2350
  h("g", { class: "stroke-secondary", transform: "translate(9.627 5.667)" },
2341
2351
  h("circle", { cx: "3.373", cy: "13.933", r: "1.1" }),
2342
- 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" }))))
2352
+ 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" })))),
2343
2353
  },
2344
2354
  receipt: {
2345
2355
  markup: () => (h("g", null,
2346
2356
  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" }),
2347
- 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" })))
2357
+ 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" }))),
2348
2358
  },
2349
2359
  'receipt-list': {
2350
2360
  markup: () => (h("g", null,
2351
2361
  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" }),
2352
- 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" })))
2362
+ 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" }))),
2353
2363
  },
2354
2364
  'receipt-list-top': {
2355
2365
  markup: () => (h("g", null,
2356
2366
  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" }),
2357
- 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" })))
2367
+ 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" }))),
2358
2368
  },
2359
2369
  'receipt-top': {
2360
2370
  markup: () => (h("g", null,
2361
2371
  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" }),
2362
- 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" })))
2372
+ 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" }))),
2363
2373
  },
2364
2374
  refresh: {
2365
2375
  markup: () => (h("g", null,
2366
2376
  h("path", { d: "M17.321 8.286l5.893-5.893L24 9.071z", class: "stroke-secondary filled" }),
2367
- 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" })))
2377
+ 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" }))),
2368
2378
  },
2369
2379
  remove: {
2370
2380
  markup: () => (h("g", null,
2371
2381
  h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" }),
2372
- h("path", { d: "M8 13h10", class: "stroke-secondary" })))
2382
+ h("path", { d: "M8 13h10", class: "stroke-secondary" }))),
2373
2383
  },
2374
2384
  repeat: {
2375
2385
  markup: () => (h("g", null,
2376
2386
  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" }),
2377
- 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" })))
2387
+ 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" }))),
2378
2388
  },
2379
2389
  'repeat-time': {
2380
2390
  markup: () => (h("g", null,
2381
2391
  h("path", { d: "M13 6.714V13H7.107", class: "stroke-secondary" }),
2382
2392
  h("g", { class: "stroke-primary" },
2383
2393
  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" }),
2384
- h("path", { d: "M23.702 3.589l-.66 4.929-4.634-.621" }))))
2394
+ h("path", { d: "M23.702 3.589l-.66 4.929-4.634-.621" })))),
2385
2395
  },
2386
2396
  ribbon: {
2387
2397
  markup: () => (h("g", null,
@@ -2389,35 +2399,35 @@ const icons = {
2389
2399
  h("g", { transform: "translate(5.183 2.183)" },
2390
2400
  h("path", { d: "M11.733 14.26v7.373L7.7 19.8l-4.033 1.833V14.26" }),
2391
2401
  h("circle", { cx: "7.7", cy: "7.7", r: "7.7" })),
2392
- h("circle", { class: "stroke-secondary filled", cx: "12.883", cy: "9.883", r: "2.933" }))))
2402
+ h("circle", { class: "stroke-secondary filled", cx: "12.883", cy: "9.883", r: "2.933" })))),
2393
2403
  },
2394
2404
  ring: {
2395
2405
  markup: () => (h("g", null,
2396
2406
  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" }),
2397
2407
  h("g", { class: "stroke-primary", transform: "translate(5.233 7.9)" },
2398
2408
  h("circle", { cx: "7.933", cy: "7.933", r: "7.933" }),
2399
- h("circle", { cx: "7.933", cy: "7.933", r: "5.6" }))))
2409
+ h("circle", { cx: "7.933", cy: "7.933", r: "5.6" })))),
2400
2410
  },
2401
2411
  'rss-color': {
2402
2412
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
2403
2413
  h("g", { fill: "#F60", "fill-rule": "nonzero", transform: "translate(2 2)" },
2404
2414
  h("circle", { cx: "3.143", cy: "18.857", r: "3.143" }),
2405
2415
  h("path", { d: "M22 22h-4.19C17.81 12.18 9.82 4.19 0 4.19V0c12.13 0 22 9.869 22 22z" }),
2406
- 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" }))))
2416
+ 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" })))),
2407
2417
  },
2408
2418
  'rss-filled': {
2409
2419
  markup: () => (h("g", null,
2410
2420
  h("g", { class: "filled", transform: "translate(2 2)" },
2411
2421
  h("circle", { cx: "3.143", cy: "18.857", r: "3.143" }),
2412
2422
  h("path", { d: "M22 22h-4.19C17.81 12.18 9.82 4.19 0 4.19V0c12.13 0 22 9.869 22 22z" }),
2413
- 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" }))))
2423
+ 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" })))),
2414
2424
  },
2415
2425
  save: {
2416
2426
  markup: () => (h("g", null,
2417
2427
  h("path", { class: "stroke-secondary", d: "M15.934 2v6.6H5.667V2M13 4.2v2.2" }),
2418
2428
  h("g", { class: "stroke-primary" },
2419
2429
  h("path", { d: "M5.667 21.8v-6.6h14.666v6.6" }),
2420
- 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" }))))
2430
+ 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" })))),
2421
2431
  },
2422
2432
  school: {
2423
2433
  markup: () => (h("g", null,
@@ -2427,90 +2437,90 @@ const icons = {
2427
2437
  h("path", { d: "M14.443 23.819v-3.606h-2.886v3.606" })),
2428
2438
  h("g", { class: "stroke-primary" },
2429
2439
  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" }),
2430
- h("path", { d: "M20.935 12.279V23.82H5.066V12.279L13 6.509z" }))))
2440
+ h("path", { d: "M20.935 12.279V23.82H5.066V12.279L13 6.509z" })))),
2431
2441
  },
2432
2442
  search: {
2433
2443
  markup: () => (h("g", { class: "stroke-primary", transform: "translate(2 2)" },
2434
2444
  h("path", { d: "M22 22l-6.448-6.448" }),
2435
- h("circle", { cx: "9.103", cy: "9.103", r: "9.103" })))
2445
+ h("circle", { cx: "9.103", cy: "9.103", r: "9.103" }))),
2436
2446
  },
2437
2447
  service: {
2438
2448
  markup: () => (h("g", null,
2439
2449
  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" }),
2440
2450
  h("g", { class: "stroke-secondary" },
2441
- h("path", { d: "M5.18 10.351a8.609 8.609 0 0 1 16.428 3.605m-5.739 0h7.652M13 2.478v2.87" }))))
2451
+ h("path", { d: "M5.18 10.351a8.609 8.609 0 0 1 16.428 3.605m-5.739 0h7.652M13 2.478v2.87" })))),
2442
2452
  },
2443
2453
  shield: {
2444
2454
  markup: () => (h("g", null,
2445
2455
  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" }),
2446
- h("path", { class: "stroke-secondary", d: "M13 24V2M3.17 13h19.66" })))
2456
+ h("path", { class: "stroke-secondary", d: "M13 24V2M3.17 13h19.66" }))),
2447
2457
  },
2448
2458
  sign: {
2449
2459
  markup: () => (h("g", null,
2450
2460
  h("g", { class: "stroke-primary" },
2451
2461
  h("path", { d: "M3 23.083h20.087M5.582 17.761L3.913 19.43M21.261 9.387l.913.913-4.565 4.565" })),
2452
- 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" })))
2462
+ 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" }))),
2453
2463
  },
2454
2464
  silverware: {
2455
2465
  markup: () => (h("g", null,
2456
2466
  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" }),
2457
- 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" })))
2467
+ 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" }))),
2458
2468
  },
2459
2469
  skip: {
2460
2470
  markup: () => (h("g", null,
2461
2471
  h("path", { d: "M5 23V4l13 9.5z", class: "stroke-secondary" }),
2462
- h("path", { d: "M21.5 3v20", class: "stroke-primary" })))
2472
+ h("path", { d: "M21.5 3v20", class: "stroke-primary" }))),
2463
2473
  },
2464
2474
  'sms-color': {
2465
2475
  markup: () => (h("g", { fill: "none", "fill-rule": "evenodd" },
2466
2476
  h("g", { "fill-rule": "nonzero" },
2467
2477
  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" }),
2468
- 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" }))))
2478
+ 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" })))),
2469
2479
  },
2470
2480
  'sms-filled': {
2471
2481
  markup: () => (h("g", null,
2472
2482
  h("g", { class: "filled" },
2473
2483
  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" }),
2474
- 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" }))))
2484
+ 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" })))),
2475
2485
  },
2476
2486
  sort: {
2477
2487
  markup: () => (h("g", { class: "stroke-primary" },
2478
- 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" })))
2488
+ 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" }))),
2479
2489
  },
2480
2490
  speedometer: {
2481
2491
  markup: () => (h("g", null,
2482
2492
  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" }),
2483
2493
  h("path", { class: "stroke-secondary filled", d: "M12.235 13.368l-2.048-4.372" }),
2484
2494
  h("circle", { cx: "13", cy: "15", r: "1.803", class: "stroke-primary filled", transform: "rotate(-70.105 13 15)" }),
2485
- 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" })))
2495
+ 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" }))),
2486
2496
  },
2487
2497
  split: {
2488
2498
  markup: () => (h("g", { class: "stroke-primary" },
2489
2499
  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" }),
2490
- h("path", { d: "M15.5 6.5l3 3-3 3" })))
2500
+ h("path", { d: "M15.5 6.5l3 3-3 3" }))),
2491
2501
  },
2492
2502
  star: {
2493
- 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" }))
2503
+ 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" })),
2494
2504
  },
2495
2505
  'star-add': {
2496
2506
  markup: () => (h("g", null,
2497
2507
  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" }),
2498
2508
  h("g", { class: "stroke-secondary", transform: "translate(14.897 14.517)" },
2499
2509
  h("circle", { cx: "4.552", cy: "4.552", r: "4.552", class: "filled" }),
2500
- h("path", { d: "M4.552 3.034V6.07M3.034 4.552H6.07" }))))
2510
+ h("path", { d: "M4.552 3.034V6.07M3.034 4.552H6.07" })))),
2501
2511
  },
2502
2512
  'star-remove': {
2503
2513
  markup: () => (h("g", null,
2504
2514
  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" }),
2505
2515
  h("g", { class: "stroke-secondary", transform: "translate(14.897 14.517)" },
2506
2516
  h("circle", { cx: "4.552", cy: "4.552", r: "4.552", class: "filled" }),
2507
- h("path", { d: "M3.034 4.552H6.07" }))))
2517
+ h("path", { d: "M3.034 4.552H6.07" })))),
2508
2518
  },
2509
2519
  'stop-payment': {
2510
2520
  markup: () => (h("g", null,
2511
2521
  h("path", { d: "M8.882 3h8.236L23 8.882v8.236L17.118 23H8.882L3 17.118V8.882z", class: "stroke-primary" }),
2512
2522
  h("g", { class: "stroke-secondary" },
2513
- 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" }))))
2523
+ 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" })))),
2514
2524
  },
2515
2525
  'steering-wheel': {
2516
2526
  markup: () => (h("g", null,
@@ -2518,12 +2528,12 @@ const icons = {
2518
2528
  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" }),
2519
2529
  h("circle", { cx: "11.645", cy: "11.564", r: "10.82" }),
2520
2530
  h("circle", { cx: "11.645", cy: "11.564", r: "8.656" })),
2521
- h("circle", { cx: "13", cy: "14.082", r: "2.164", class: "stroke-secondary filled" })))
2531
+ h("circle", { cx: "13", cy: "14.082", r: "2.164", class: "stroke-secondary filled" }))),
2522
2532
  },
2523
2533
  storefront: {
2524
2534
  markup: () => (h("g", null,
2525
2535
  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" }),
2526
- h("path", { d: "M7.5 14.833h3.667V18.5H7.5z", class: "stroke-secondary filled" })))
2536
+ h("path", { d: "M7.5 14.833h3.667V18.5H7.5z", class: "stroke-secondary filled" }))),
2527
2537
  },
2528
2538
  'storefront-add': {
2529
2539
  markup: () => (h("g", null,
@@ -2531,7 +2541,7 @@ const icons = {
2531
2541
  h("g", { class: "stroke-secondary", transform: "translate(14 15)" },
2532
2542
  h("path", { d: "M4.767 3.133v2.934M3.3 4.6h2.933" }),
2533
2543
  h("circle", { cx: "4.767", cy: "4.6", r: "4.4" })),
2534
- h("path", { d: "M7.156 15.031h3.438v3.438H7.156z", class: "stroke-secondary filled" })))
2544
+ h("path", { d: "M7.156 15.031h3.438v3.438H7.156z", class: "stroke-secondary filled" }))),
2535
2545
  },
2536
2546
  'storefront-prohibited': {
2537
2547
  markup: () => (h("g", null,
@@ -2539,7 +2549,7 @@ const icons = {
2539
2549
  h("g", { class: "stroke-secondary", transform: "translate(14.367 15.2)" },
2540
2550
  h("path", { d: "M1.133 7.3L7.74 1.638" }),
2541
2551
  h("circle", { cx: "4.4", cy: "4.4", r: "4.4" })),
2542
- h("path", { d: "M7.156 15.031h3.438v3.438H7.156z", class: "stroke-secondary filled" })))
2552
+ h("path", { d: "M7.156 15.031h3.438v3.438H7.156z", class: "stroke-secondary filled" }))),
2543
2553
  },
2544
2554
  'storefront-remove': {
2545
2555
  markup: () => (h("g", null,
@@ -2547,7 +2557,7 @@ const icons = {
2547
2557
  h("g", { class: "stroke-secondary", transform: "translate(14.367 15.2)" },
2548
2558
  h("path", { d: "M2.933 4.4h2.934" }),
2549
2559
  h("circle", { cx: "4.4", cy: "4.4", r: "4.4" })),
2550
- h("path", { d: "M7.156 15.031h3.438v3.438H7.156z", class: "stroke-secondary filled" })))
2560
+ h("path", { d: "M7.156 15.031h3.438v3.438H7.156z", class: "stroke-secondary filled" }))),
2551
2561
  },
2552
2562
  'storefront-settings': {
2553
2563
  markup: () => (h("g", null,
@@ -2556,17 +2566,17 @@ const icons = {
2556
2566
  h("path", { d: "M7.156 15.031h3.438v3.438H7.156z", class: "stroke-secondary filled" }),
2557
2567
  h("g", { class: "stroke-secondary", transform: "translate(14.905 14.467)" },
2558
2568
  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" }),
2559
- h("circle", { cx: "4.495", cy: "4.767", r: "1.1" }))))
2569
+ h("circle", { cx: "4.495", cy: "4.767", r: "1.1" })))),
2560
2570
  },
2561
2571
  success: {
2562
2572
  markup: () => (h("g", null,
2563
- h("path", { d: "M7.867 13.733l2.933 2.934 7.333-7.334", class: "stroke-secondary" }),
2564
- h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" })))
2573
+ h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" }),
2574
+ h("path", { d: "M7.867 13.733l2.933 2.934 7.333-7.334", class: "stroke-secondary" }))),
2565
2575
  },
2566
2576
  tablet: {
2567
2577
  markup: () => (h("g", null,
2568
2578
  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" }),
2569
- h("path", { d: "M3.5 11.5v2", class: "stroke-secondary" })))
2579
+ h("path", { d: "M3.5 11.5v2", class: "stroke-secondary" }))),
2570
2580
  },
2571
2581
  target: {
2572
2582
  markup: () => (h("g", null,
@@ -2575,24 +2585,24 @@ const icons = {
2575
2585
  h("circle", { cx: "8.591", cy: "8.591", r: "4.773" })),
2576
2586
  h("g", { class: "stroke-secondary" },
2577
2587
  h("path", { d: "M20.659 6.341l2.864-2.864M12.068 14.932l5.727-5.728" }),
2578
- 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" }))))
2588
+ 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" })))),
2579
2589
  },
2580
2590
  time: {
2581
2591
  markup: () => (h("g", null,
2582
2592
  h("path", { d: "M13 6.714V13H7.107", class: "stroke-secondary" }),
2583
- h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" })))
2593
+ h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" }))),
2584
2594
  },
2585
2595
  todo: {
2586
2596
  markup: () => (h("g", null,
2587
2597
  h("g", { class: "stroke-primary" },
2588
2598
  h("path", { d: "M19.258 5.194h2.129v18.451H4.355V5.194h2.129" }),
2589
2599
  h("path", { d: "M15 4.484a2.129 2.129 0 1 0-4.258 0H8.613v2.839h8.516V4.484H15z", class: "filled" })),
2590
- h("path", { d: "M10 15l2 2 4-4", class: "stroke-secondary" })))
2600
+ h("path", { d: "M10 15l2 2 4-4", class: "stroke-secondary" }))),
2591
2601
  },
2592
2602
  tools: {
2593
2603
  markup: () => (h("g", null,
2594
2604
  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" }),
2595
- 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" })))
2605
+ 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" }))),
2596
2606
  },
2597
2607
  tractor: {
2598
2608
  markup: () => (h("g", null,
@@ -2601,23 +2611,23 @@ const icons = {
2601
2611
  h("path", { d: "M3.984 11.181A6.492 6.492 0 0 1 13 17.164c0 .489-.054.977-.156 1.442h5.206" })),
2602
2612
  h("g", { class: "stroke-secondary filled", transform: "translate(2.18 12.836)" },
2603
2613
  h("circle", { cx: "4.328", cy: "4.328", r: "4.328" }),
2604
- h("circle", { cx: "18.754", cy: "5.77", r: "2.885" }))))
2614
+ h("circle", { cx: "18.754", cy: "5.77", r: "2.885" })))),
2605
2615
  },
2606
2616
  transfer: {
2607
2617
  markup: () => (h("g", null,
2608
2618
  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" }),
2609
- 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" })))
2619
+ 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" }))),
2610
2620
  },
2611
2621
  trash: {
2612
2622
  markup: () => (h("g", null,
2613
2623
  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" }),
2614
- h("path", { class: "stroke-secondary", d: "M9.6 5.667V2h7.333v3.667m6.6 0H3" })))
2624
+ h("path", { class: "stroke-secondary", d: "M9.6 5.667V2h7.333v3.667m6.6 0H3" }))),
2615
2625
  },
2616
2626
  tree: {
2617
2627
  markup: () => (h("g", null,
2618
2628
  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" }),
2619
2629
  h("g", { class: "stroke-secondary" },
2620
- h("path", { d: "M13.138 9.241v14.483m-4.345 0h8.69M9.517 12.862l3.621 3.62 3.621-3.62" }))))
2630
+ h("path", { d: "M13.138 9.241v14.483m-4.345 0h8.69M9.517 12.862l3.621 3.62 3.621-3.62" })))),
2621
2631
  },
2622
2632
  'truck-with-lock': {
2623
2633
  markup: () => (h("g", { class: "stroke-primary" },
@@ -2629,19 +2639,19 @@ const icons = {
2629
2639
  h("circle", { cx: "16.049", cy: "13.957", r: "2.164" }),
2630
2640
  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" })),
2631
2641
  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" }),
2632
- h("circle", { cx: "2.909", cy: "5.157", r: "1" }))))
2642
+ h("circle", { cx: "2.909", cy: "5.157", r: "1" })))),
2633
2643
  },
2634
2644
  umbrella: {
2635
2645
  markup: () => (h("g", null,
2636
2646
  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" }),
2637
- 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" })))
2647
+ 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" }))),
2638
2648
  },
2639
2649
  unlink: {
2640
2650
  markup: () => (h("g", null,
2641
2651
  h("g", { class: "stroke-primary" },
2642
2652
  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" }),
2643
2653
  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" })),
2644
- 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" })))
2654
+ 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" }))),
2645
2655
  },
2646
2656
  wallet: {
2647
2657
  markup: () => (h("g", null,
@@ -2651,27 +2661,27 @@ const icons = {
2651
2661
  h("g", { class: "stroke-secondary", transform: "translate(4.667 1.733)" },
2652
2662
  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" }),
2653
2663
  h("circle", { cx: "14.2", cy: "14.2", r: "1" }),
2654
- h("path", { d: "M.633 4.3V.267H15.3V4.3H.633" }))))
2664
+ h("path", { d: "M.633 4.3V.267H15.3V4.3H.633" })))),
2655
2665
  },
2656
2666
  watch: {
2657
2667
  markup: () => (h("g", null,
2658
2668
  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" }),
2659
2669
  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" }),
2660
- h("path", { d: "M12.393 9.394V13H16m3.606-1.803h1.443v3.606h-1.443" })))
2670
+ h("path", { d: "M12.393 9.394V13H16m3.606-1.803h1.443v3.606h-1.443" }))),
2661
2671
  },
2662
2672
  world: {
2663
2673
  markup: () => (h("g", null,
2664
2674
  h("g", { transform: "translate(2 3)" },
2665
2675
  h("g", { class: "stroke-secondary" },
2666
2676
  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" })),
2667
- h("circle", { cx: "11.25", cy: "10.25", r: "10.25", class: "stroke-primary" }))))
2677
+ h("circle", { cx: "11.25", cy: "10.25", r: "10.25", class: "stroke-primary" })))),
2668
2678
  },
2669
2679
  warning: {
2670
2680
  markup: () => (h("g", null,
2671
2681
  h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" }),
2672
2682
  h("g", { class: "stroke-secondary", transform: "translate(11.9 5.667)" },
2673
2683
  h("circle", { cx: "1.1", cy: "13.2", r: "1.1" }),
2674
- h("path", { d: "M1.1 0v8.8" }))))
2684
+ h("path", { d: "M1.1 0v8.8" })))),
2675
2685
  },
2676
2686
  arts: {
2677
2687
  markup: () => (h("g", null,
@@ -2680,7 +2690,7 @@ const icons = {
2680
2690
  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" })),
2681
2691
  h("g", { class: "stroke-secondary" },
2682
2692
  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" }),
2683
- 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" }))))
2693
+ 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" })))),
2684
2694
  },
2685
2695
  bed: {
2686
2696
  markup: () => (h("g", null,
@@ -2688,13 +2698,13 @@ const icons = {
2688
2698
  h("path", { d: "M3.339 20.242V5.339m0 12.194h20.322M3.339 14.145h20.322v6.097" })),
2689
2699
  h("g", { class: "stroke-secondary", transform: "translate(6.048 7.371)" },
2690
2700
  h("circle", { cx: "2.032", cy: "2.032", r: "2.032" }),
2691
- h("path", { d: "M17.613 4.065H6.774V.677h8.807c1.122 0 2.032.91 2.032 2.033v1.355z" }))))
2701
+ h("path", { d: "M17.613 4.065H6.774V.677h8.807c1.122 0 2.032.91 2.032 2.033v1.355z" })))),
2692
2702
  },
2693
2703
  box: {
2694
2704
  markup: () => (h("g", null,
2695
2705
  h("g", { class: "stroke-primary" },
2696
2706
  h("path", { d: "M3 7.065h20.323m0 0L18.581 3H7.742L3 7.065v16.258h20.323z" })),
2697
- h("path", { d: "M15.871 13.839h-5.419V7.065L12.484 3h1.355l2.032 4.065z", class: "stroke-secondary" })))
2707
+ h("path", { d: "M15.871 13.839h-5.419V7.065L12.484 3h1.355l2.032 4.065z", class: "stroke-secondary" }))),
2698
2708
  },
2699
2709
  'buildings-2': {
2700
2710
  markup: () => (h("g", null,
@@ -2702,14 +2712,14 @@ const icons = {
2702
2712
  h("path", { d: "M12.302 7.186V3l10.233 2.791v16.744H3v-9.302h1.395" }),
2703
2713
  h("path", { d: "M6.721 22.535V9.512h7.442v13.023z", class: "filled" })),
2704
2714
  h("g", { class: "stroke-secondary" },
2705
- 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" }))))
2715
+ 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" })))),
2706
2716
  },
2707
2717
  'calendar-pay': {
2708
2718
  markup: () => (h("g", null,
2709
2719
  h("g", { class: "stroke-primary" },
2710
2720
  h("path", { d: "M23.241 9.586H2m9.483 12.138H2V4.276h21.241v9.483M6.931 2v4.552M18.31 2v4.552" })),
2711
2721
  h("g", { class: "stroke-secondary" },
2712
- 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" }))))
2722
+ 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" })))),
2713
2723
  },
2714
2724
  'calendar-repeat': {
2715
2725
  markup: () => (h("g", null,
@@ -2717,7 +2727,7 @@ const icons = {
2717
2727
  h("path", { d: "M23.241 9.586H2m9.483 12.138H2V4.276h21.241v9.483M6.931 2v4.552M18.31 2v4.552" })),
2718
2728
  h("g", { class: "stroke-secondary" },
2719
2729
  h("path", { d: "M23 20a4 4 0 1 1-4-4c1.612 0 3.018.996 3.652 2.37" }),
2720
- h("path", { d: "M22.892 16.578l-.24 1.792-1.686-.226" }))))
2730
+ h("path", { d: "M22.892 16.578l-.24 1.792-1.686-.226" })))),
2721
2731
  },
2722
2732
  'check-dollar': {
2723
2733
  markup: () => (h("g", null,
@@ -2725,14 +2735,14 @@ const icons = {
2725
2735
  h("g", { class: "stroke-secondary" },
2726
2736
  h("path", { d: "M6.508 12.689h10.654M6.508 15.574h5.77" })),
2727
2737
  h("g", null,
2728
- 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" }))))
2738
+ 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" })))),
2729
2739
  },
2730
2740
  'check-shield': {
2731
2741
  markup: () => (h("g", null,
2732
2742
  h("path", { d: "M15.023 19H2V8h22v5", class: "stroke-primary" }),
2733
2743
  h("g", { class: "stroke-secondary" },
2734
2744
  h("path", { d: "M6.508 12.689h10.919M6.508 15.574h5.77" })),
2735
- 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" })))
2745
+ 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" }))),
2736
2746
  },
2737
2747
  'credit-score': {
2738
2748
  markup: () => (h("g", null,
@@ -2741,7 +2751,7 @@ const icons = {
2741
2751
  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" })),
2742
2752
  h("g", { class: "stroke-secondary", transform: "translate(11 9.5)" },
2743
2753
  h("path", { d: "M2.845 5.689L5.5 0" }),
2744
- h("circle", { cx: "2", cy: "7.5", r: "2" }))))
2754
+ h("circle", { cx: "2", cy: "7.5", r: "2" })))),
2745
2755
  },
2746
2756
  'delivery-truck': {
2747
2757
  markup: () => (h("g", null,
@@ -2750,19 +2760,19 @@ const icons = {
2750
2760
  h("g", { class: "stroke-secondary" },
2751
2761
  h("g", { class: "filled", transform: "translate(3.721 16.174)" },
2752
2762
  h("circle", { cx: "3.148", cy: "2.957", r: "2.164" }),
2753
- h("circle", { cx: "15.049", cy: "2.957", r: "2.164" })))))
2763
+ h("circle", { cx: "15.049", cy: "2.957", r: "2.164" }))))),
2754
2764
  },
2755
2765
  factory: {
2756
2766
  markup: () => (h("g", null,
2757
2767
  h("g", { class: "stroke-primary" },
2758
2768
  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" })),
2759
- 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" })))
2769
+ 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" }))),
2760
2770
  },
2761
2771
  failed: {
2762
2772
  markup: () => (h("g", null,
2763
2773
  h("g", { class: "stroke-secondary" },
2764
2774
  h("path", { d: "M17.4 8.6l-8.8 8.8m8.8 0L8.6 8.6" })),
2765
- h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" })))
2775
+ h("circle", { cx: "13", cy: "13", r: "11", class: "stroke-primary" }))),
2766
2776
  },
2767
2777
  'hand-with-key': {
2768
2778
  markup: () => (h("g", null,
@@ -2771,7 +2781,7 @@ const icons = {
2771
2781
  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" })),
2772
2782
  h("g", { class: "stroke-secondary filled", transform: "translate(7.197 3)" },
2773
2783
  h("circle", { cx: "2.803", cy: "3.5", r: "1" }),
2774
- 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" }))))
2784
+ 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" })))),
2775
2785
  },
2776
2786
  'home-gear': {
2777
2787
  markup: () => (h("g", null,
@@ -2781,14 +2791,14 @@ const icons = {
2781
2791
  h("g", { class: "stroke-secondary", transform: "translate(9.905 10.467)" },
2782
2792
  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" }),
2783
2793
  h("circle", { cx: "9.495", cy: "8.767", r: "1.1" }),
2784
- h("path", { d: "M.858.11h4.475v3.729H.858z" }))))
2794
+ h("path", { d: "M.858.11h4.475v3.729H.858z" })))),
2785
2795
  },
2786
2796
  law: {
2787
2797
  markup: () => (h("g", null,
2788
2798
  h("g", { class: "stroke-secondary" },
2789
2799
  h("path", { d: "M11.218 10.872l7.304-7.304 2.74 2.739-7.305 7.304zm6.39-.914l5.479 5.478" })),
2790
2800
  h("g", { class: "stroke-primary" },
2791
- h("path", { d: "M4.826 22.741v-3.652h10.957v3.652M5.739 15.437H3m4.343-3.874L5.407 9.626M3 22.741h14.609" }))))
2801
+ h("path", { d: "M4.826 22.741v-3.652h10.957v3.652M5.739 15.437H3m4.343-3.874L5.407 9.626M3 22.741h14.609" })))),
2792
2802
  },
2793
2803
  microscope: {
2794
2804
  markup: () => (h("g", null,
@@ -2796,14 +2806,14 @@ const icons = {
2796
2806
  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" })),
2797
2807
  h("g", { class: "stroke-primary" },
2798
2808
  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" }),
2799
- h("path", { d: "M21.597 23.661H5.339v-1.693a3.726 3.726 0 1 1 7.452 0l-.037 1.693" }))))
2809
+ h("path", { d: "M21.597 23.661H5.339v-1.693a3.726 3.726 0 1 1 7.452 0l-.037 1.693" })))),
2800
2810
  },
2801
2811
  'mobile-fast-dollar': {
2802
2812
  markup: () => (h("g", null,
2803
2813
  h("g", { "stroke-width": "1.37", class: "stroke-primary" },
2804
2814
  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" })),
2805
2815
  h("g", { "stroke-width": "1.5", class: "stroke-secondary" },
2806
- 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" }))))
2816
+ 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" })))),
2807
2817
  },
2808
2818
  mortgage: {
2809
2819
  markup: () => (h("g", null,
@@ -2811,14 +2821,14 @@ const icons = {
2811
2821
  h("path", { d: "M17.767 2.367l-4.4 3.667v5.133h8.8V6.034zm0 6.6v2.2" })),
2812
2822
  h("g", { class: "stroke-primary" },
2813
2823
  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" }),
2814
- 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" }))))
2824
+ 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" })))),
2815
2825
  },
2816
2826
  mountains: {
2817
2827
  markup: () => (h("g", null,
2818
2828
  h("g", { class: "stroke-primary filled" },
2819
2829
  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" })),
2820
2830
  h("g", { class: "stroke-secondary" },
2821
- h("path", { d: "M9.402 11.146h7.683M13.244 5l10.244 16.39H3z" }))))
2831
+ h("path", { d: "M9.402 11.146h7.683M13.244 5l10.244 16.39H3z" })))),
2822
2832
  },
2823
2833
  roadblock: {
2824
2834
  markup: () => (h("g", null,
@@ -2826,7 +2836,7 @@ const icons = {
2826
2836
  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" })),
2827
2837
  h("g", { class: "stroke-secondary" },
2828
2838
  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" }),
2829
- h("path", { d: "M3 5.71h20.323v8.129H3z", class: "filled" }))))
2839
+ h("path", { d: "M3 5.71h20.323v8.129H3z", class: "filled" })))),
2830
2840
  },
2831
2841
  section: {
2832
2842
  markup: () => (h("g", { class: "Icons/actions/section" },
@@ -2835,7 +2845,7 @@ const icons = {
2835
2845
  h("path", { d: "M5 6h13v2H5zm0 6h7v3H5z" }),
2836
2846
  h("path", { d: "M5 18h7v3H5z" }),
2837
2847
  h("path", { d: "M14 12h7v3h-7z" }),
2838
- h("path", { d: "M14 18h7v3h-7z" }))))
2848
+ h("path", { d: "M14 18h7v3h-7z" })))),
2839
2849
  },
2840
2850
  'sign-closed': {
2841
2851
  markup: () => (h("g", null,
@@ -2845,7 +2855,7 @@ const icons = {
2845
2855
  h("g", { "stroke-width": "1.5", class: "stroke-secondary" },
2846
2856
  h("path", { d: "M23.046 19.227v3.182H3.955v-3.182m0-8.273V8.41h19.09v2.545" })),
2847
2857
  h("g", { class: "filled" },
2848
- 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" }))))
2858
+ 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" })))),
2849
2859
  },
2850
2860
  'sign-open': {
2851
2861
  markup: () => (h("g", null,
@@ -2854,7 +2864,7 @@ const icons = {
2854
2864
  h("circle", { cx: "6.097", cy: "1.355", r: "1.355" })),
2855
2865
  h("path", { d: "M3.339 7.758h20.323v14.903H3.339z", class: "stroke-secondary" }),
2856
2866
  h("g", { class: "filled" },
2857
- 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" }))))
2867
+ 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" })))),
2858
2868
  },
2859
2869
  'sign-sale': {
2860
2870
  markup: () => (h("g", null,
@@ -2862,7 +2872,7 @@ const icons = {
2862
2872
  h("path", { d: "M14.42 17.258v6.387h-2.84v-6.387m2.84-12.064v-2.84h-2.84v2.84" })),
2863
2873
  h("path", { d: "M2.355 5.194h21.29v9.935H2.355z", class: "stroke-secondary" }),
2864
2874
  h("g", { class: "filled" },
2865
- 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" }))))
2875
+ 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" })))),
2866
2876
  },
2867
2877
  'sign-sold': {
2868
2878
  markup: () => (h("g", null,
@@ -2870,48 +2880,48 @@ const icons = {
2870
2880
  h("path", { d: "M14.42 17.258v6.387h-2.84v-6.387m2.84-12.064v-2.84h-2.84v2.84" })),
2871
2881
  h("path", { d: "M2.355 5.194h21.29v9.935H2.355z", class: "stroke-secondary" }),
2872
2882
  h("g", { class: "filled" },
2873
- 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" }))))
2883
+ 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" })))),
2874
2884
  },
2875
2885
  statements: {
2876
2886
  markup: () => (h("g", null,
2877
2887
  h("path", { d: "M3 2h16v19H3z", class: "stroke-primary filled" }),
2878
2888
  h("path", { d: "M22 5v19H6", class: "stroke-primary" }),
2879
2889
  h("g", { class: "stroke-secondary" },
2880
- 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" }))))
2890
+ 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" })))),
2881
2891
  },
2882
2892
  taxi: {
2883
2893
  markup: () => (h("g", null,
2884
2894
  h("g", { class: "stroke-primary" },
2885
2895
  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" })),
2886
- h("path", { d: "M10 3h6v2h-6z", class: "stroke-secondary" })))
2896
+ h("path", { d: "M10 3h6v2h-6z", class: "stroke-secondary" }))),
2887
2897
  },
2888
2898
  'transfer-receive': {
2889
2899
  markup: () => (h("g", null,
2890
2900
  h("g", { class: "stroke-primary" },
2891
2901
  h("path", { d: "M17.651 16.045l-3.065-3.335 3.065-3.334m5.55 3.334h-8.616" })),
2892
2902
  h("g", { class: "stroke-secondary" },
2893
- 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" }))))
2903
+ 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" })))),
2894
2904
  },
2895
2905
  'transfer-send': {
2896
2906
  markup: () => (h("g", null,
2897
2907
  h("g", { class: "stroke-primary" },
2898
2908
  h("path", { d: "M19.333 16.086l3.503-3.335-3.503-3.334M14 12.751h8.718" })),
2899
2909
  h("g", { class: "stroke-secondary" },
2900
- 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" }))))
2910
+ 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" })))),
2901
2911
  },
2902
2912
  upload: {
2903
2913
  markup: () => (h("g", null,
2904
2914
  h("g", { class: "stroke-secondary" },
2905
2915
  h("path", { d: "M13 19V2.867m5.866 5.866L13 2.867 7.133 8.733" })),
2906
- h("path", { d: "M2 19.233v4.4h22v-4.4", class: "stroke-primary" })))
2916
+ h("path", { d: "M2 19.233v4.4h22v-4.4", class: "stroke-primary" }))),
2907
2917
  },
2908
2918
  'venmo-colored': {
2909
2919
  markup: () => (h("g", { class: "venmo-colored" },
2910
- 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" })))
2920
+ 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" }))),
2911
2921
  },
2912
2922
  'venmo-filled': {
2913
2923
  markup: () => (h("g", { class: "venmo-filled" },
2914
- 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" })))
2924
+ 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" }))),
2915
2925
  },
2916
2926
  virus: {
2917
2927
  markup: () => (h("g", null,
@@ -2921,7 +2931,7 @@ const icons = {
2921
2931
  h("circle", { cx: "1.774", cy: "1.065", r: "1.065" })),
2922
2932
  h("g", { class: "stroke-primary", transform: "translate(2.622 2.622)" },
2923
2933
  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" }),
2924
- h("circle", { cx: "10.378", cy: "10.378", r: "7.806", class: "filled" }))))
2934
+ h("circle", { cx: "10.378", cy: "10.378", r: "7.806", class: "filled" })))),
2925
2935
  },
2926
2936
  'zoom-in': {
2927
2937
  markup: () => (h("g", null,
@@ -2929,7 +2939,7 @@ const icons = {
2929
2939
  h("path", { d: "M11.036 7.893v6.286m3.143-3.143H7.893" })),
2930
2940
  h("g", { class: "stroke-primary", transform: "translate(2.393 2.393)" },
2931
2941
  h("path", { d: "M21.214 21.214l-3.928-3.928" }),
2932
- h("circle", { cx: "8.643", cy: "8.643", r: "8.643" }))))
2942
+ h("circle", { cx: "8.643", cy: "8.643", r: "8.643" })))),
2933
2943
  },
2934
2944
  'zoom-out': {
2935
2945
  markup: () => (h("g", null,
@@ -2937,7 +2947,7 @@ const icons = {
2937
2947
  h("path", { d: "M14.179 11.036H7.893" })),
2938
2948
  h("g", { class: "stroke-primary", transform: "translate(2.393 2.393)" },
2939
2949
  h("path", { d: "M21.214 21.214l-3.928-3.928" }),
2940
- h("circle", { cx: "8.643", cy: "8.643", r: "8.643" }))))
2941
- }
2950
+ h("circle", { cx: "8.643", cy: "8.643", r: "8.643" })))),
2951
+ },
2942
2952
  };
2943
2953
  export default icons;