q2-tecton-elements 1.12.1 → 1.13.1

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