@designcrowd/fe-shared-lib 1.4.5-eng-3418-3 → 1.4.5

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 (622) hide show
  1. package/.eslintrc.js +35 -35
  2. package/.github/workflows/auto-merge.yml +52 -52
  3. package/.prettierrc.js +7 -7
  4. package/.storybook/main.ts +36 -36
  5. package/.storybook/preview-head-master.html +4 -4
  6. package/.storybook/preview-head-publish-master.html +4 -4
  7. package/.storybook/preview-head-publish.html +9 -9
  8. package/.storybook/preview-head.html +9 -9
  9. package/.storybook/preview.js +53 -53
  10. package/CLAUDE.md +70 -70
  11. package/Dockerfile +43 -43
  12. package/README.md +103 -103
  13. package/buildspec.yml +47 -47
  14. package/{public → dist}/css/tailwind-brandCrowd.css +1070 -948
  15. package/{public → dist}/css/tailwind-brandPage.css +914 -817
  16. package/{public → dist}/css/tailwind-crazyDomains.css +1070 -948
  17. package/{public → dist}/css/tailwind-designCom.css +1070 -948
  18. package/{public → dist}/css/tailwind-designCrowd.css +1070 -948
  19. package/index.cjs +16 -16
  20. package/index.js +56 -56
  21. package/nodemon.translation.json +6 -6
  22. package/package.json +116 -116
  23. package/postcss.config.js +5 -5
  24. package/src/atoms/components/Button/Button.vue +341 -341
  25. package/src/atoms/components/Button/ButtonVariant.mixin.vue +126 -126
  26. package/src/atoms/components/Button/Buttons.stories.js +828 -828
  27. package/src/atoms/components/Button/ButtonsCrazyDomains.stories.js +117 -117
  28. package/src/atoms/components/Button/variants/ButtonAi.vue +63 -63
  29. package/src/atoms/components/Button/variants/ButtonDarkModePill.vue +52 -52
  30. package/src/atoms/components/Button/variants/ButtonFlat.vue +65 -65
  31. package/src/atoms/components/Button/variants/ButtonGray.vue +64 -64
  32. package/src/atoms/components/Button/variants/ButtonInfo.vue +51 -51
  33. package/src/atoms/components/Button/variants/ButtonInfoFilled.vue +63 -63
  34. package/src/atoms/components/Button/variants/ButtonNoBorder.vue +65 -65
  35. package/src/atoms/components/Button/variants/ButtonOutline.vue +62 -62
  36. package/src/atoms/components/Button/variants/ButtonOutlineNoHover.vue +62 -62
  37. package/src/atoms/components/Button/variants/ButtonOutlinePrimary.vue +53 -53
  38. package/src/atoms/components/Button/variants/ButtonOutlineSuccess.vue +54 -54
  39. package/src/atoms/components/Button/variants/ButtonPill.vue +52 -52
  40. package/src/atoms/components/Button/variants/ButtonPrimary.vue +69 -69
  41. package/src/atoms/components/Button/variants/ButtonPrimaryWithIcon.vue +68 -68
  42. package/src/atoms/components/Button/variants/ButtonSecondary.vue +51 -51
  43. package/src/atoms/components/Button/variants/ButtonSuccess.vue +55 -55
  44. package/src/atoms/components/Button/variants/ButtonWarning.vue +65 -65
  45. package/src/atoms/components/Button/variants/crazy-domains/ButtonCrazyDomainsOutline.vue +58 -58
  46. package/src/atoms/components/Button/variants/crazy-domains/ButtonCrazyDomainsPrimary.vue +38 -38
  47. package/src/atoms/components/ButtonGroup/ButtonGroup.stories.js +575 -575
  48. package/src/atoms/components/ButtonGroup/ButtonGroup.vue +200 -200
  49. package/src/atoms/components/Carousel/Carousel.fixtures.js +35 -35
  50. package/src/atoms/components/Carousel/Carousel.vue +352 -352
  51. package/src/atoms/components/Carousel/carousel.stories.js +261 -261
  52. package/src/atoms/components/Checkbox/Checkbox.mixin.js +57 -57
  53. package/src/atoms/components/Checkbox/Checkbox.stories.js +207 -340
  54. package/src/atoms/components/Checkbox/Checkbox.vue +90 -84
  55. package/src/atoms/components/Checktile/Checktile.stories.js +79 -79
  56. package/src/atoms/components/Checktile/Checktile.vue +73 -73
  57. package/src/atoms/components/CollapsiblePanel/CollapsiblePanel.mixin.js +38 -38
  58. package/src/atoms/components/CollapsiblePanel/CollapsiblePanel.stories.js +53 -53
  59. package/src/atoms/components/CollapsiblePanel/CollapsiblePanel.vue +33 -33
  60. package/src/atoms/components/ColorPicker/ColorPicker.stories.js +89 -89
  61. package/src/atoms/components/ColorPicker/ColorPicker.vue +95 -95
  62. package/src/atoms/components/CopyToClipboardText/CopyToClipboardText.stories.js +41 -41
  63. package/src/atoms/components/CopyToClipboardText/CopyToClipboardText.vue +71 -71
  64. package/src/atoms/components/Dropdown/Dropdown.stories.js +140 -140
  65. package/src/atoms/components/Dropdown/Dropdown.vue +118 -118
  66. package/src/atoms/components/Dropdown/DropdownItem.vue +33 -33
  67. package/src/atoms/components/FormControl/FormControl.mixin.js +136 -136
  68. package/src/atoms/components/HelloBar/HelloBar.stories.js +195 -195
  69. package/src/atoms/components/HelloBar/HelloBar.vue +156 -156
  70. package/src/atoms/components/Icon/Icon.stories.js +391 -396
  71. package/src/atoms/components/Icon/Icon.vue +829 -838
  72. package/src/atoms/components/Icon/icons/add-page.vue +6 -6
  73. package/src/atoms/components/Icon/icons/ai.vue +6 -6
  74. package/src/atoms/components/Icon/icons/arrow-down.vue +6 -6
  75. package/src/atoms/components/Icon/icons/arrow-left.vue +7 -7
  76. package/src/atoms/components/Icon/icons/arrow-right.vue +7 -7
  77. package/src/atoms/components/Icon/icons/arrow-top-right.vue +6 -6
  78. package/src/atoms/components/Icon/icons/arrow-up-underline.vue +7 -7
  79. package/src/atoms/components/Icon/icons/arrow-up.vue +7 -7
  80. package/src/atoms/components/Icon/icons/attach.vue +6 -6
  81. package/src/atoms/components/Icon/icons/auth-facebook-white.vue +17 -17
  82. package/src/atoms/components/Icon/icons/auth-facebook.vue +24 -24
  83. package/src/atoms/components/Icon/icons/auth-google.vue +32 -32
  84. package/src/atoms/components/Icon/icons/background.vue +7 -7
  85. package/src/atoms/components/Icon/icons/banner-centered.vue +6 -6
  86. package/src/atoms/components/Icon/icons/banner-left.vue +6 -6
  87. package/src/atoms/components/Icon/icons/banner.vue +7 -7
  88. package/src/atoms/components/Icon/icons/bc-mast.vue +7 -7
  89. package/src/atoms/components/Icon/icons/brush.vue +6 -6
  90. package/src/atoms/components/Icon/icons/business-card-filled.vue +5 -5
  91. package/src/atoms/components/Icon/icons/business.vue +6 -6
  92. package/src/atoms/components/Icon/icons/calculator.vue +3 -0
  93. package/src/atoms/components/Icon/icons/calendar.vue +5 -5
  94. package/src/atoms/components/Icon/icons/callout-error.vue +6 -6
  95. package/src/atoms/components/Icon/icons/callout-info.vue +6 -6
  96. package/src/atoms/components/Icon/icons/callout-success.vue +8 -8
  97. package/src/atoms/components/Icon/icons/callout-warning.vue +6 -6
  98. package/src/atoms/components/Icon/icons/cap.vue +22 -22
  99. package/src/atoms/components/Icon/icons/card.vue +9 -9
  100. package/src/atoms/components/Icon/icons/cart-empty.vue +9 -9
  101. package/src/atoms/components/Icon/icons/check-thin.vue +7 -7
  102. package/src/atoms/components/Icon/icons/check.vue +3 -3
  103. package/src/atoms/components/Icon/icons/chevron-down.vue +7 -7
  104. package/src/atoms/components/Icon/icons/chevron-left.vue +7 -7
  105. package/src/atoms/components/Icon/icons/chevron-right-wide.vue +3 -3
  106. package/src/atoms/components/Icon/icons/chevron-right.vue +3 -3
  107. package/src/atoms/components/Icon/icons/chevron-up.vue +7 -7
  108. package/src/atoms/components/Icon/icons/close.vue +6 -6
  109. package/src/atoms/components/Icon/icons/community.vue +5 -5
  110. package/src/atoms/components/Icon/icons/contact-message.vue +10 -10
  111. package/src/atoms/components/Icon/icons/content.vue +7 -7
  112. package/src/atoms/components/Icon/icons/copy.vue +10 -10
  113. package/src/atoms/components/Icon/icons/crazy-domains/filter.vue +6 -6
  114. package/src/atoms/components/Icon/icons/crazy-domains/globe.vue +6 -6
  115. package/src/atoms/components/Icon/icons/crazy-domains/home.vue +6 -6
  116. package/src/atoms/components/Icon/icons/crazy-domains/social-facebook.vue +6 -6
  117. package/src/atoms/components/Icon/icons/crazy-domains/social-google.vue +6 -6
  118. package/src/atoms/components/Icon/icons/crazy-domains/social-instagram.vue +6 -6
  119. package/src/atoms/components/Icon/icons/crazy-domains/social-twitter.vue +6 -6
  120. package/src/atoms/components/Icon/icons/crazy-domains/social-youtube.vue +6 -6
  121. package/src/atoms/components/Icon/icons/crop.vue +6 -6
  122. package/src/atoms/components/Icon/icons/delete.vue +8 -8
  123. package/src/atoms/components/Icon/icons/designs.vue +6 -6
  124. package/src/atoms/components/Icon/icons/desktop.vue +7 -7
  125. package/src/atoms/components/Icon/icons/donate.vue +6 -6
  126. package/src/atoms/components/Icon/icons/download.vue +5 -5
  127. package/src/atoms/components/Icon/icons/duplicate.vue +6 -6
  128. package/src/atoms/components/Icon/icons/edit-line.vue +10 -10
  129. package/src/atoms/components/Icon/icons/edit.vue +6 -6
  130. package/src/atoms/components/Icon/icons/ellipsis.vue +6 -6
  131. package/src/atoms/components/Icon/icons/envelope-email.vue +9 -9
  132. package/src/atoms/components/Icon/icons/error.vue +8 -8
  133. package/src/atoms/components/Icon/icons/eye-crossed.vue +7 -7
  134. package/src/atoms/components/Icon/icons/eye-open.vue +11 -11
  135. package/src/atoms/components/Icon/icons/fees.vue +6 -6
  136. package/src/atoms/components/Icon/icons/filter.vue +7 -7
  137. package/src/atoms/components/Icon/icons/filters.vue +6 -6
  138. package/src/atoms/components/Icon/icons/flag.vue +6 -6
  139. package/src/atoms/components/Icon/icons/flip-horizontal.vue +7 -7
  140. package/src/atoms/components/Icon/icons/flip-vertical.vue +7 -7
  141. package/src/atoms/components/Icon/icons/folder.vue +6 -6
  142. package/src/atoms/components/Icon/icons/footer-centered.vue +7 -7
  143. package/src/atoms/components/Icon/icons/footer-left.vue +7 -7
  144. package/src/atoms/components/Icon/icons/form-message.vue +6 -6
  145. package/src/atoms/components/Icon/icons/form.vue +5 -5
  146. package/src/atoms/components/Icon/icons/fullscreen-exit.vue +5 -5
  147. package/src/atoms/components/Icon/icons/fullscreen.vue +5 -5
  148. package/src/atoms/components/Icon/icons/globe.vue +6 -6
  149. package/src/atoms/components/Icon/icons/godaddy/logo.vue +5 -5
  150. package/src/atoms/components/Icon/icons/hamburger.vue +7 -7
  151. package/src/atoms/components/Icon/icons/home.vue +7 -7
  152. package/src/atoms/components/Icon/icons/icon-style-circle-bg.vue +22 -22
  153. package/src/atoms/components/Icon/icons/icon-style-no-bg.vue +16 -16
  154. package/src/atoms/components/Icon/icons/icon-style-square-bg.vue +22 -22
  155. package/src/atoms/components/Icon/icons/image-gallery-carousel.vue +7 -7
  156. package/src/atoms/components/Icon/icons/image-gallery-grid.vue +7 -7
  157. package/src/atoms/components/Icon/icons/image-gallery-masonry.vue +6 -6
  158. package/src/atoms/components/Icon/icons/images-gallery.vue +5 -5
  159. package/src/atoms/components/Icon/icons/images.vue +7 -7
  160. package/src/atoms/components/Icon/icons/info.vue +9 -9
  161. package/src/atoms/components/Icon/icons/jobs.vue +8 -8
  162. package/src/atoms/components/Icon/icons/layer-bring-front.vue +6 -6
  163. package/src/atoms/components/Icon/icons/layer-send-back.vue +6 -6
  164. package/src/atoms/components/Icon/icons/layer.vue +6 -6
  165. package/src/atoms/components/Icon/icons/layout/display-style-about-1.vue +20 -20
  166. package/src/atoms/components/Icon/icons/layout/display-style-about-2.vue +20 -20
  167. package/src/atoms/components/Icon/icons/layout/display-style-about-3.vue +20 -20
  168. package/src/atoms/components/Icon/icons/layout/display-style-about-4.vue +32 -32
  169. package/src/atoms/components/Icon/icons/layout/display-style-about-5.vue +27 -27
  170. package/src/atoms/components/Icon/icons/layout/display-style-about-6.vue +27 -27
  171. package/src/atoms/components/Icon/icons/layout/display-style-banner-1.vue +20 -20
  172. package/src/atoms/components/Icon/icons/layout/display-style-banner-2.vue +20 -20
  173. package/src/atoms/components/Icon/icons/layout/display-style-banner-3.vue +20 -20
  174. package/src/atoms/components/Icon/icons/layout/display-style-banner-4.vue +20 -20
  175. package/src/atoms/components/Icon/icons/layout/display-style-banner-5.vue +20 -20
  176. package/src/atoms/components/Icon/icons/layout/display-style-banner-6.vue +27 -27
  177. package/src/atoms/components/Icon/icons/layout/display-style-banner-7.vue +27 -27
  178. package/src/atoms/components/Icon/icons/layout/display-style-banner-8.vue +20 -20
  179. package/src/atoms/components/Icon/icons/layout/display-style-banner-9.vue +20 -20
  180. package/src/atoms/components/Icon/icons/layout/display-style-contact-1.vue +24 -24
  181. package/src/atoms/components/Icon/icons/layout/display-style-contact-2.vue +24 -24
  182. package/src/atoms/components/Icon/icons/layout/display-style-contact-4.vue +24 -24
  183. package/src/atoms/components/Icon/icons/layout/display-style-contact-5.vue +39 -39
  184. package/src/atoms/components/Icon/icons/layout/display-style-contact-6.vue +39 -39
  185. package/src/atoms/components/Icon/icons/layout/footer/display-style-1.vue +7 -7
  186. package/src/atoms/components/Icon/icons/layout/footer/display-style-2.vue +16 -16
  187. package/src/atoms/components/Icon/icons/layout/header/desktop-hamburger-display-style-1.vue +17 -17
  188. package/src/atoms/components/Icon/icons/layout/header/desktop-hamburger-display-style-2.vue +17 -17
  189. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-1.vue +17 -17
  190. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-2.vue +17 -17
  191. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-3.vue +13 -13
  192. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-4.vue +13 -13
  193. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-5.vue +17 -17
  194. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-6.vue +17 -17
  195. package/src/atoms/components/Icon/icons/layout/header/hamburger-display-style-no-logo-1.vue +16 -16
  196. package/src/atoms/components/Icon/icons/layout/header/hamburger-display-style-no-logo-2.vue +16 -16
  197. package/src/atoms/components/Icon/icons/layout/header/hamburger-display-style-no-logo-3.vue +16 -16
  198. package/src/atoms/components/Icon/icons/layout/header/mobile-hamburger-display-style-1.vue +17 -17
  199. package/src/atoms/components/Icon/icons/layout/header/mobile-hamburger-display-style-2.vue +17 -17
  200. package/src/atoms/components/Icon/icons/layout/header/mobile-hamburger-display-style-3.vue +17 -17
  201. package/src/atoms/components/Icon/icons/layout/header/mobile-hamburger-display-style-4.vue +21 -21
  202. package/src/atoms/components/Icon/icons/layout/header/mobile-tab-display-style-1.vue +17 -17
  203. package/src/atoms/components/Icon/icons/layout/header/mobile-tab-display-style-2.vue +17 -17
  204. package/src/atoms/components/Icon/icons/layout/header/tab-display-style-no-logo-1.vue +16 -16
  205. package/src/atoms/components/Icon/icons/layout/header/tab-display-style-no-logo-2.vue +16 -16
  206. package/src/atoms/components/Icon/icons/layout/header/tab-display-style-no-logo-3.vue +16 -16
  207. package/src/atoms/components/Icon/icons/layout/layout-icon-bottom-normal-text-center-normal.vue +7 -7
  208. package/src/atoms/components/Icon/icons/layout/layout-icon-bottom-normal-text-center-small.vue +7 -7
  209. package/src/atoms/components/Icon/icons/layout/layout-icon-bottom-small-text-center-normal.vue +7 -7
  210. package/src/atoms/components/Icon/icons/layout/layout-icon-center-normal-curved-text-bottom.vue +11 -11
  211. package/src/atoms/components/Icon/icons/layout/layout-icon-center-normal-curved-text-circle.vue +10 -10
  212. package/src/atoms/components/Icon/icons/layout/layout-icon-center-normal-curved-text-top.vue +11 -11
  213. package/src/atoms/components/Icon/icons/layout/layout-icon-left-normal-text-center-normal.vue +7 -7
  214. package/src/atoms/components/Icon/icons/layout/layout-icon-left-normal-text-justify-normal.vue +7 -7
  215. package/src/atoms/components/Icon/icons/layout/layout-icon-left-normal-text-left-normal.vue +7 -7
  216. package/src/atoms/components/Icon/icons/layout/layout-icon-left-small-text-left-normal.vue +7 -7
  217. package/src/atoms/components/Icon/icons/layout/layout-icon-right-normal-text-center-normal.vue +7 -7
  218. package/src/atoms/components/Icon/icons/layout/layout-icon-right-normal-text-justify-normal.vue +7 -7
  219. package/src/atoms/components/Icon/icons/layout/layout-icon-right-normal-text-right-normal.vue +7 -7
  220. package/src/atoms/components/Icon/icons/layout/layout-icon-right-small-text-right-normal.vue +7 -7
  221. package/src/atoms/components/Icon/icons/layout/layout-icon-top-normal-text-center-normal.vue +7 -7
  222. package/src/atoms/components/Icon/icons/layout/layout-icon-top-normal-text-center-small.vue +7 -7
  223. package/src/atoms/components/Icon/icons/layout/layout-icon-top-normal-text-justify-normal.vue +7 -7
  224. package/src/atoms/components/Icon/icons/layout/layout-icon-top-small-text-center-normal.vue +7 -7
  225. package/src/atoms/components/Icon/icons/layout/nav/hamburger/display-style-1.vue +16 -16
  226. package/src/atoms/components/Icon/icons/layout/nav/hamburger/display-style-2.vue +10 -10
  227. package/src/atoms/components/Icon/icons/layout/nav/hamburger/display-style-3.vue +10 -10
  228. package/src/atoms/components/Icon/icons/layout/nav/hamburger/display-style-4.vue +23 -23
  229. package/src/atoms/components/Icon/icons/layout/nav/tab/display-style-1.vue +16 -16
  230. package/src/atoms/components/Icon/icons/layout/nav/tab/display-style-2.vue +7 -7
  231. package/src/atoms/components/Icon/icons/letterhead-filled.vue +5 -5
  232. package/src/atoms/components/Icon/icons/link.vue +6 -6
  233. package/src/atoms/components/Icon/icons/location.vue +6 -6
  234. package/src/atoms/components/Icon/icons/lock.vue +6 -6
  235. package/src/atoms/components/Icon/icons/mac-command.vue +7 -7
  236. package/src/atoms/components/Icon/icons/maker/align-center.vue +7 -7
  237. package/src/atoms/components/Icon/icons/maker/align-justify.vue +7 -7
  238. package/src/atoms/components/Icon/icons/maker/align-left.vue +7 -7
  239. package/src/atoms/components/Icon/icons/maker/align-right.vue +7 -7
  240. package/src/atoms/components/Icon/icons/maker/animate.vue +7 -7
  241. package/src/atoms/components/Icon/icons/maker/bold.vue +7 -7
  242. package/src/atoms/components/Icon/icons/maker/custom-landscape.vue +5 -5
  243. package/src/atoms/components/Icon/icons/maker/email-symbol.vue +5 -5
  244. package/src/atoms/components/Icon/icons/maker/email.vue +5 -5
  245. package/src/atoms/components/Icon/icons/maker/eraser.vue +5 -5
  246. package/src/atoms/components/Icon/icons/maker/etsy.vue +5 -5
  247. package/src/atoms/components/Icon/icons/maker/facebook.vue +5 -5
  248. package/src/atoms/components/Icon/icons/maker/favicon.vue +7 -7
  249. package/src/atoms/components/Icon/icons/maker/flyer.vue +7 -7
  250. package/src/atoms/components/Icon/icons/maker/gift-certificate.vue +5 -5
  251. package/src/atoms/components/Icon/icons/maker/globe.vue +5 -5
  252. package/src/atoms/components/Icon/icons/maker/image.vue +7 -7
  253. package/src/atoms/components/Icon/icons/maker/instagram.vue +7 -7
  254. package/src/atoms/components/Icon/icons/maker/invitation.vue +5 -5
  255. package/src/atoms/components/Icon/icons/maker/invoice.vue +5 -5
  256. package/src/atoms/components/Icon/icons/maker/italic.vue +7 -7
  257. package/src/atoms/components/Icon/icons/maker/link.vue +7 -7
  258. package/src/atoms/components/Icon/icons/maker/linkedin.vue +7 -7
  259. package/src/atoms/components/Icon/icons/maker/menu.vue +5 -5
  260. package/src/atoms/components/Icon/icons/maker/pause.vue +5 -5
  261. package/src/atoms/components/Icon/icons/maker/phone.vue +5 -5
  262. package/src/atoms/components/Icon/icons/maker/pinterest.vue +5 -5
  263. package/src/atoms/components/Icon/icons/maker/play.vue +5 -5
  264. package/src/atoms/components/Icon/icons/maker/postcard.vue +5 -5
  265. package/src/atoms/components/Icon/icons/maker/poster.vue +7 -7
  266. package/src/atoms/components/Icon/icons/maker/profile.vue +5 -5
  267. package/src/atoms/components/Icon/icons/maker/qrcode.vue +5 -5
  268. package/src/atoms/components/Icon/icons/maker/snapchat.vue +5 -5
  269. package/src/atoms/components/Icon/icons/maker/soundcloud.vue +7 -7
  270. package/src/atoms/components/Icon/icons/maker/spacing.vue +18 -18
  271. package/src/atoms/components/Icon/icons/maker/strikethrough.vue +7 -7
  272. package/src/atoms/components/Icon/icons/maker/t-shirt.vue +32 -32
  273. package/src/atoms/components/Icon/icons/maker/text-background-color.vue +12 -12
  274. package/src/atoms/components/Icon/icons/maker/text-color.vue +14 -14
  275. package/src/atoms/components/Icon/icons/maker/text.vue +7 -7
  276. package/src/atoms/components/Icon/icons/maker/thankyou-card.vue +5 -5
  277. package/src/atoms/components/Icon/icons/maker/tiktok.vue +5 -5
  278. package/src/atoms/components/Icon/icons/maker/tumblr.vue +5 -5
  279. package/src/atoms/components/Icon/icons/maker/twitch.vue +7 -7
  280. package/src/atoms/components/Icon/icons/maker/twitter.vue +5 -5
  281. package/src/atoms/components/Icon/icons/maker/underline.vue +7 -7
  282. package/src/atoms/components/Icon/icons/maker/uppercase.vue +14 -14
  283. package/src/atoms/components/Icon/icons/maker/video.vue +5 -5
  284. package/src/atoms/components/Icon/icons/maker/whatsapp.vue +7 -7
  285. package/src/atoms/components/Icon/icons/maker/youtube.vue +5 -5
  286. package/src/atoms/components/Icon/icons/maker/zoom.vue +5 -5
  287. package/src/atoms/components/Icon/icons/map.vue +6 -6
  288. package/src/atoms/components/Icon/icons/message.vue +6 -6
  289. package/src/atoms/components/Icon/icons/minus-circle-light.vue +7 -7
  290. package/src/atoms/components/Icon/icons/minus.vue +3 -3
  291. package/src/atoms/components/Icon/icons/mobile.vue +5 -5
  292. package/src/atoms/components/Icon/icons/mug.vue +29 -29
  293. package/src/atoms/components/Icon/icons/opacity.vue +6 -6
  294. package/src/atoms/components/Icon/icons/other.vue +7 -7
  295. package/src/atoms/components/Icon/icons/page-buttons.vue +8 -8
  296. package/src/atoms/components/Icon/icons/page-hamburger.vue +9 -9
  297. package/src/atoms/components/Icon/icons/page-tabs.vue +9 -9
  298. package/src/atoms/components/Icon/icons/pages.vue +6 -6
  299. package/src/atoms/components/Icon/icons/palette.vue +6 -6
  300. package/src/atoms/components/Icon/icons/pause.vue +5 -5
  301. package/src/atoms/components/Icon/icons/payment.vue +8 -8
  302. package/src/atoms/components/Icon/icons/payments-featured.vue +6 -6
  303. package/src/atoms/components/Icon/icons/payments-textonly.vue +8 -8
  304. package/src/atoms/components/Icon/icons/payments-thumbnail.vue +9 -9
  305. package/src/atoms/components/Icon/icons/phone.vue +6 -6
  306. package/src/atoms/components/Icon/icons/plus-circle-light.vue +8 -8
  307. package/src/atoms/components/Icon/icons/plus-circle.vue +7 -7
  308. package/src/atoms/components/Icon/icons/plus.vue +3 -3
  309. package/src/atoms/components/Icon/icons/poll.vue +3 -3
  310. package/src/atoms/components/Icon/icons/portfolio.vue +10 -10
  311. package/src/atoms/components/Icon/icons/preview.vue +6 -6
  312. package/src/atoms/components/Icon/icons/printing.vue +6 -6
  313. package/src/atoms/components/Icon/icons/processing.vue +5 -5
  314. package/src/atoms/components/Icon/icons/question.vue +11 -11
  315. package/src/atoms/components/Icon/icons/ratio-1-1.vue +3 -3
  316. package/src/atoms/components/Icon/icons/ratio-16-9.vue +1 -1
  317. package/src/atoms/components/Icon/icons/ratio-2-3.vue +3 -3
  318. package/src/atoms/components/Icon/icons/ratio-3-2.vue +3 -3
  319. package/src/atoms/components/Icon/icons/ratio-3-4.vue +3 -3
  320. package/src/atoms/components/Icon/icons/ratio-4-3.vue +3 -3
  321. package/src/atoms/components/Icon/icons/ratio-9-16.vue +3 -3
  322. package/src/atoms/components/Icon/icons/ratio-circle.vue +8 -8
  323. package/src/atoms/components/Icon/icons/ratio-original.vue +11 -11
  324. package/src/atoms/components/Icon/icons/redo.vue +6 -6
  325. package/src/atoms/components/Icon/icons/reload.vue +6 -6
  326. package/src/atoms/components/Icon/icons/reorderable.vue +5 -5
  327. package/src/atoms/components/Icon/icons/request-payment.vue +6 -6
  328. package/src/atoms/components/Icon/icons/reset.vue +6 -6
  329. package/src/atoms/components/Icon/icons/search.vue +11 -11
  330. package/src/atoms/components/Icon/icons/secure.vue +7 -7
  331. package/src/atoms/components/Icon/icons/services.vue +7 -7
  332. package/src/atoms/components/Icon/icons/settings.vue +7 -7
  333. package/src/atoms/components/Icon/icons/shape.vue +5 -5
  334. package/src/atoms/components/Icon/icons/share.vue +8 -8
  335. package/src/atoms/components/Icon/icons/shop.vue +5 -5
  336. package/src/atoms/components/Icon/icons/sms.vue +5 -5
  337. package/src/atoms/components/Icon/icons/social-facebook-color.vue +9 -9
  338. package/src/atoms/components/Icon/icons/social-facebook.vue +5 -5
  339. package/src/atoms/components/Icon/icons/social-google.vue +5 -5
  340. package/src/atoms/components/Icon/icons/social-instagram-color.vue +24 -24
  341. package/src/atoms/components/Icon/icons/social-linkedin-color.vue +9 -9
  342. package/src/atoms/components/Icon/icons/social-share.vue +7 -7
  343. package/src/atoms/components/Icon/icons/social-twitter-color.vue +9 -9
  344. package/src/atoms/components/Icon/icons/star-filled.vue +6 -6
  345. package/src/atoms/components/Icon/icons/star-hollow.vue +6 -6
  346. package/src/atoms/components/Icon/icons/sticker.vue +28 -28
  347. package/src/atoms/components/Icon/icons/styles.vue +5 -5
  348. package/src/atoms/components/Icon/icons/submit.vue +5 -5
  349. package/src/atoms/components/Icon/icons/templates.vue +7 -7
  350. package/src/atoms/components/Icon/icons/text-image-center.vue +6 -6
  351. package/src/atoms/components/Icon/icons/text-image-justified.vue +7 -7
  352. package/src/atoms/components/Icon/icons/text-image-left.vue +9 -9
  353. package/src/atoms/components/Icon/icons/text-image-only.vue +5 -5
  354. package/src/atoms/components/Icon/icons/text-image-right.vue +9 -9
  355. package/src/atoms/components/Icon/icons/text-image.vue +13 -13
  356. package/src/atoms/components/Icon/icons/time.vue +8 -8
  357. package/src/atoms/components/Icon/icons/tooltip-bottom.vue +5 -5
  358. package/src/atoms/components/Icon/icons/tooltip-left.vue +5 -5
  359. package/src/atoms/components/Icon/icons/tooltip-right.vue +5 -5
  360. package/src/atoms/components/Icon/icons/tooltip-top.vue +5 -5
  361. package/src/atoms/components/Icon/icons/undo.vue +6 -6
  362. package/src/atoms/components/Icon/icons/upgrade-alt.vue +7 -7
  363. package/src/atoms/components/Icon/icons/upgrade.vue +9 -9
  364. package/src/atoms/components/Icon/icons/upload-arrow.vue +5 -5
  365. package/src/atoms/components/Icon/icons/upload.vue +5 -5
  366. package/src/atoms/components/Icon/icons/user-accounts.vue +5 -5
  367. package/src/atoms/components/Icon/icons/user-headset.vue +50 -50
  368. package/src/atoms/components/Icon/icons/volume-muted.vue +5 -5
  369. package/src/atoms/components/Icon/icons/volume.vue +5 -5
  370. package/src/atoms/components/Icon/icons/watchlist-filled.vue +14 -14
  371. package/src/atoms/components/Icon/icons/watchlist-hollow-alt.vue +14 -14
  372. package/src/atoms/components/Icon/icons/watchlist-hollow.vue +6 -6
  373. package/src/atoms/components/Icon/icons/website-filled.vue +5 -5
  374. package/src/atoms/components/Icon/icons/website.vue +6 -6
  375. package/src/atoms/components/Icon/icons/wholesale.vue +6 -6
  376. package/src/atoms/components/Icon/icons/zoom-in.vue +5 -5
  377. package/src/atoms/components/Icon/icons/zoom-out.vue +5 -5
  378. package/src/atoms/components/Icon/icons/zoom.vue +11 -11
  379. package/src/atoms/components/Loader/Loader.vue +15 -15
  380. package/src/atoms/components/Masonry/Masonry.stories.js +48 -48
  381. package/src/atoms/components/Masonry/Masonry.vue +48 -48
  382. package/src/atoms/components/Masonry/fixtures.js +589 -589
  383. package/src/atoms/components/Modal/HashRouteModal.stories.js +68 -68
  384. package/src/atoms/components/Modal/HashRouteModal.vue +120 -120
  385. package/src/atoms/components/Modal/Modal.stories.js +293 -293
  386. package/src/atoms/components/Modal/Modal.vue +263 -263
  387. package/src/atoms/components/Notice/Notice.stories.js +174 -174
  388. package/src/atoms/components/Notice/Notice.vue +71 -71
  389. package/src/atoms/components/NumberStepper/NumberStepper.stories.js +55 -55
  390. package/src/atoms/components/NumberStepper/NumberStepper.vue +340 -340
  391. package/src/atoms/components/Picture/Picture.stories.js +90 -90
  392. package/src/atoms/components/Picture/Picture.vue +84 -84
  393. package/src/atoms/components/Picture/picture.fixtures.js +35 -35
  394. package/src/atoms/components/Pill/Pill.stories.js +20 -20
  395. package/src/atoms/components/Pill/Pill.vue +8 -8
  396. package/src/atoms/components/PillBar/PillBar.fixtures.js +941 -941
  397. package/src/atoms/components/PillBar/PillBar.stories.js +39 -39
  398. package/src/atoms/components/PillBar/PillBar.vue +62 -62
  399. package/src/atoms/components/Price/Price.fixtures.js +85 -85
  400. package/src/atoms/components/Price/Price.stories.js +291 -291
  401. package/src/atoms/components/Price/Price.vue +135 -135
  402. package/src/atoms/components/Price/i18n/price.de-DE.json +5 -5
  403. package/src/atoms/components/Price/i18n/price.es-ES.json +5 -5
  404. package/src/atoms/components/Price/i18n/price.fr-CA.json +5 -5
  405. package/src/atoms/components/Price/i18n/price.fr-FR.json +5 -5
  406. package/src/atoms/components/Price/i18n/price.json +5 -5
  407. package/src/atoms/components/Price/i18n/price.pt-BR.json +5 -5
  408. package/src/atoms/components/Price/i18n/price.pt-PT.json +5 -5
  409. package/src/atoms/components/SearchBar/SearchBar.stories.js +21 -21
  410. package/src/atoms/components/SearchBar/SearchBar.vue +51 -51
  411. package/src/atoms/components/Select/Select.stories.js +142 -142
  412. package/src/atoms/components/Select/Select.vue +619 -619
  413. package/src/atoms/components/Select/pointerMixin.js +99 -99
  414. package/src/atoms/components/Select/selectMixin.js +356 -356
  415. package/src/atoms/components/StarRating/StarRating.stories.js +50 -50
  416. package/src/atoms/components/StarRating/StarRating.vue +84 -84
  417. package/src/atoms/components/TabMenu/TabMenu.stories.js +54 -54
  418. package/src/atoms/components/TabMenu/TabMenu.vue +44 -44
  419. package/src/atoms/components/TextCopyField/TextCopyField.stories.js +68 -68
  420. package/src/atoms/components/TextCopyField/TextCopyField.vue +75 -75
  421. package/src/atoms/components/TextInput/TextInput.stories.js +232 -232
  422. package/src/atoms/components/TextInput/TextInput.vue +160 -161
  423. package/src/atoms/components/Textarea/Textarea.stories.js +209 -209
  424. package/src/atoms/components/Textarea/Textarea.vue +109 -112
  425. package/src/atoms/components/Toggle/Toggle.stories.js +176 -176
  426. package/src/atoms/components/Toggle/Toggle.vue +69 -69
  427. package/src/atoms/components/Tooltip/Tooltip.stories.js +493 -493
  428. package/src/atoms/components/Tooltip/Tooltip.vue +196 -196
  429. package/src/atoms/components/design-com/Icon/Icon.stories.js +82 -82
  430. package/src/atoms/components/design-com/Icon/Icon.vue +157 -157
  431. package/src/atoms/components/design-com/Icon/icons/award.vue +7 -7
  432. package/src/atoms/components/design-com/Icon/icons/bulb.vue +7 -7
  433. package/src/atoms/components/design-com/Icon/icons/card.vue +7 -7
  434. package/src/atoms/components/design-com/Icon/icons/check-circle-light.vue +7 -7
  435. package/src/atoms/components/design-com/Icon/icons/chevron-down.vue +7 -7
  436. package/src/atoms/components/design-com/Icon/icons/chevron-left.vue +7 -7
  437. package/src/atoms/components/design-com/Icon/icons/chevron-right.vue +3 -3
  438. package/src/atoms/components/design-com/Icon/icons/chevron-up.vue +7 -7
  439. package/src/atoms/components/design-com/Icon/icons/diamond.vue +7 -7
  440. package/src/atoms/components/design-com/Icon/icons/download.vue +7 -7
  441. package/src/atoms/components/design-com/Icon/icons/file-empty.vue +7 -7
  442. package/src/atoms/components/design-com/Icon/icons/file.vue +7 -7
  443. package/src/atoms/components/design-com/Icon/icons/filter.vue +7 -7
  444. package/src/atoms/components/design-com/Icon/icons/font.vue +7 -7
  445. package/src/atoms/components/design-com/Icon/icons/headphones.vue +7 -7
  446. package/src/atoms/components/design-com/Icon/icons/heart.vue +7 -7
  447. package/src/atoms/components/design-com/Icon/icons/image.vue +7 -7
  448. package/src/atoms/components/design-com/Icon/icons/logo.vue +7 -7
  449. package/src/atoms/components/design-com/Icon/icons/minus-circle-light.vue +7 -7
  450. package/src/atoms/components/design-com/Icon/icons/plus-circle-light.vue +8 -8
  451. package/src/atoms/components/design-com/Icon/icons/question-circle-filled.vue +7 -7
  452. package/src/atoms/components/design-com/Icon/icons/search.vue +7 -7
  453. package/src/atoms/components/design-com/Icon/icons/star-filled.vue +6 -6
  454. package/src/atoms/components/design-com/Icon/icons/star-hollow.vue +6 -6
  455. package/src/atoms/components/design-com/Icon/icons/users.vue +7 -7
  456. package/src/atoms/constants/constants.ts +6 -6
  457. package/src/atoms/mixin/hash-router-mixin.js +68 -68
  458. package/src/atoms/thirdparty-components/VueMasonryWall/VueMasonryWall.vue +280 -280
  459. package/src/atoms/thirdparty-components/VueMasonryWall/maxBy.js +50 -50
  460. package/src/bundleTranslation.js +86 -86
  461. package/src/bundles/bundled-translations.de-DE.json +7 -8
  462. package/src/bundles/bundled-translations.es-ES.json +7 -8
  463. package/src/bundles/bundled-translations.fr-CA.json +7 -8
  464. package/src/bundles/bundled-translations.fr-FR.json +7 -8
  465. package/src/bundles/bundled-translations.json +7 -8
  466. package/src/bundles/bundled-translations.pt-BR.json +7 -8
  467. package/src/bundles/bundled-translations.pt-PT.json +7 -8
  468. package/src/css/tailwind.css +3 -3
  469. package/src/experiences/clients/brand-crowd-api.client.js +108 -119
  470. package/src/experiences/clients/brand-page-api.client.js +47 -62
  471. package/src/experiences/components/AuthFlow/Auth.fixtures.js +4 -4
  472. package/src/experiences/components/AuthFlow/Auth.stories.js +345 -345
  473. package/src/experiences/components/AuthFlow/AuthCrazyDomains.stories.js +60 -60
  474. package/src/experiences/components/AuthFlow/AuthLegal.vue +108 -108
  475. package/src/experiences/components/AuthFlow/AuthModal.vue +39 -39
  476. package/src/experiences/components/AuthFlow/ForgotPassword.vue +222 -222
  477. package/src/experiences/components/AuthFlow/ForgotPasswordModal.vue +68 -68
  478. package/src/experiences/components/AuthFlow/ResetPassword.vue +179 -179
  479. package/src/experiences/components/AuthFlow/ResetPasswordModal.vue +64 -64
  480. package/src/experiences/components/AuthFlow/ResetPasswordSuccessModal.vue +56 -56
  481. package/src/experiences/components/AuthFlow/SignIn.vue +465 -465
  482. package/src/experiences/components/AuthFlow/SignUp.vue +278 -278
  483. package/src/experiences/components/AuthFlow/SignUpModal.vue +90 -90
  484. package/src/experiences/components/AuthFlow/SocialSignIn.vue +177 -177
  485. package/src/experiences/components/AuthFlow/SocialSignInButton.vue +74 -74
  486. package/src/experiences/components/AuthFlow/SubmissionButton.vue +56 -56
  487. package/src/experiences/components/PaymentConfigList/PaymentConfig.mixin.js +98 -118
  488. package/src/experiences/components/PaymentConfigList/PaymentConfigDeleteConfigModal.vue +106 -108
  489. package/src/experiences/components/PaymentConfigList/PaymentConfigDropdown.vue +137 -175
  490. package/src/experiences/components/PaymentConfigList/PaymentConfigList.stories.js +189 -234
  491. package/src/experiences/components/PaymentConfigList/PaymentConfigList.vue +136 -136
  492. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.de-DE.json +10 -11
  493. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.es-ES.json +10 -11
  494. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.fr-CA.json +10 -11
  495. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.fr-FR.json +10 -11
  496. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.json +10 -11
  497. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.pt-BR.json +10 -11
  498. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.pt-PT.json +10 -11
  499. package/src/experiences/components/PublishBrandPageModal/PublishBrandPageCard.vue +119 -119
  500. package/src/experiences/components/PublishBrandPageModal/PublishBrandPageModal.stories.js +226 -226
  501. package/src/experiences/components/PublishBrandPageModal/PublishBrandPageModal.vue +1 -1
  502. package/src/experiences/components/PublishBrandPageModal/__fixtures__/data.js +25 -25
  503. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.de-DE.json +24 -24
  504. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.es-ES.json +24 -24
  505. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.fr-CA.json +24 -24
  506. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.fr-FR.json +24 -24
  507. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.json +24 -24
  508. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.pt-BR.json +24 -24
  509. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.pt-PT.json +24 -24
  510. package/src/experiences/components/SellDomainNameList/SellDomainNameList.fixtures.js +32 -32
  511. package/src/experiences/components/SellDomainNameList/SellDomainNameList.vue +157 -157
  512. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.de-DE.json +7 -7
  513. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.es-ES.json +7 -7
  514. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.fr-CA.json +7 -7
  515. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.fr-FR.json +7 -7
  516. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.json +7 -7
  517. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.pt-BR.json +7 -7
  518. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.pt-PT.json +7 -7
  519. package/src/experiences/components/SellDomainNameListModal/SellDomainNameListModal.stories.js +74 -74
  520. package/src/experiences/components/SellDomainNameListModal/SellDomainNameListModal.vue +128 -128
  521. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.de-DE.json +5 -5
  522. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.es-ES.json +5 -5
  523. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.fr-CA.json +5 -5
  524. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.fr-FR.json +5 -5
  525. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.json +5 -5
  526. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.pt-BR.json +5 -5
  527. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.pt-PT.json +5 -5
  528. package/src/experiences/components/SellDomainNameModalApplication/SellDomainNameModalApplication.vue +209 -209
  529. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.de-DE.json +5 -5
  530. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.es-ES.json +5 -5
  531. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.fr-CA.json +5 -5
  532. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.fr-FR.json +5 -5
  533. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.json +5 -5
  534. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.pt-BR.json +5 -5
  535. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.pt-PT.json +5 -5
  536. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.de-DE.json +7 -7
  537. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.es-ES.json +7 -7
  538. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.fr-CA.json +7 -7
  539. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.fr-FR.json +7 -7
  540. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.json +7 -7
  541. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.pt-BR.json +7 -7
  542. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.pt-PT.json +7 -7
  543. package/src/experiences/components/SellDomainNameSearchResult/SellDomainNameListSearchResult.vue +167 -167
  544. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.de-DE.json +5 -5
  545. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.es-ES.json +5 -5
  546. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.fr-CA.json +5 -5
  547. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.fr-FR.json +5 -5
  548. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.json +5 -5
  549. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.pt-BR.json +5 -5
  550. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.pt-PT.json +5 -5
  551. package/src/experiences/components/SellDomainNameSearchWithResults/SellDomainNameSearchWithResults.stories.js +38 -38
  552. package/src/experiences/components/SellDomainNameSearchWithResults/SellDomainNameSearchWithResults.vue +214 -214
  553. package/src/experiences/components/SellDomainNameWidget/SellDomainNameWidget.stories.js +40 -40
  554. package/src/experiences/components/SellDomainNameWidget/SellDomainNameWidget.vue +155 -155
  555. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.de-DE.json +7 -7
  556. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.es-ES.json +7 -7
  557. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.fr-CA.json +7 -7
  558. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.fr-FR.json +7 -7
  559. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.json +7 -7
  560. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.pt-BR.json +7 -7
  561. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.pt-PT.json +7 -7
  562. package/src/experiences/components/UploadYourLogoApplication/UploadYourLogoApplication.stories.js +205 -205
  563. package/src/experiences/components/UploadYourLogoApplication/UploadYourLogoApplication.vue +127 -133
  564. package/src/experiences/components/UploadYourLogoDropzone/UploadYourLogoDropzone.stories.js +59 -59
  565. package/src/experiences/components/UploadYourLogoDropzone/UploadYourLogoDropzone.vue +285 -285
  566. package/src/experiences/components/UploadYourLogoOnBoarding/LogoBusinessBrandColours.stories.js +37 -37
  567. package/src/experiences/components/UploadYourLogoOnBoarding/LogoBusinessBrandColours.vue +338 -338
  568. package/src/experiences/components/UploadYourLogoOnBoarding/LogoBusinessText.vue +146 -146
  569. package/src/experiences/components/UploadYourLogoOnBoarding/LogoCropper.vue +473 -473
  570. package/src/experiences/components/UploadYourLogoOnBoarding/LogoPreview.vue +103 -103
  571. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploadError.vue +75 -75
  572. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploadExitConfirmation.vue +55 -55
  573. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploadModal.vue +38 -38
  574. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploader.vue +97 -102
  575. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploadingLoader.vue +22 -22
  576. package/src/experiences/components/UploadYourLogoOnBoarding/UploadYourLogoOnBoarding.vue +296 -302
  577. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.de-DE.json +34 -34
  578. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.es-ES.json +34 -34
  579. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.fr-CA.json +34 -34
  580. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.fr-FR.json +34 -34
  581. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.json +35 -35
  582. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.pt-BR.json +34 -34
  583. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.pt-PT.json +34 -34
  584. package/src/experiences/components/UploadedLogoSearchResultCard/UploadedLogoSearchResultCard.stories.js +82 -82
  585. package/src/experiences/components/UploadedLogoSearchResultCard/UploadedLogoSearchResultCard.vue +211 -211
  586. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.de-DE.json +8 -8
  587. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.es-ES.json +8 -8
  588. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.fr-CA.json +8 -8
  589. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.fr-FR.json +8 -8
  590. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.json +8 -8
  591. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.pt-BR.json +8 -8
  592. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.pt-PT.json +8 -8
  593. package/src/experiences/constants/api.js +8 -8
  594. package/src/experiences/constants/error-constants.js +5 -5
  595. package/src/experiences/constants/event-constants.js +18 -18
  596. package/src/experiences/constants/partner-dictionary-constants.js +27 -27
  597. package/src/experiences/constants/rego-source-constants.js +3 -3
  598. package/src/experiences/constants/sell-domain-name-constants.js +4 -4
  599. package/src/experiences/helpers/email-validator.js +5 -5
  600. package/src/experiences/helpers/hex-diff.js +116 -116
  601. package/src/experiences/helpers/tracking.js +5 -5
  602. package/src/experiences/mixins/mediaQueryMixin.js +31 -31
  603. package/src/experiences/mixins/themeMixin.js +22 -22
  604. package/src/themes/base.js +20 -20
  605. package/src/themes/bc.js +95 -95
  606. package/src/themes/bp.js +21 -21
  607. package/src/themes/cd.js +94 -94
  608. package/src/themes/dc.js +84 -84
  609. package/src/themes/dcom.js +106 -106
  610. package/src/themes/themes.js +16 -16
  611. package/src/useSharedLibTranslate.js +127 -127
  612. package/src/viewports.js +51 -51
  613. package/stylelint.config.js +19 -19
  614. package/tailwind.build.js +83 -83
  615. package/tailwind.config.js +37 -37
  616. package/tailwind.themes.js +59 -59
  617. package/vite.config.ts +37 -37
  618. package/src/atoms/components/Icon/icons/badge.vue +0 -8
  619. package/src/atoms/components/Icon/icons/briefcase.vue +0 -7
  620. package/src/atoms/components/Icon/icons/clipboard-check.vue +0 -7
  621. package/src/atoms/components/Icon/icons/file.vue +0 -7
  622. package/src/atoms/components/Icon/icons/pen-tool.vue +0 -7
@@ -1,11 +1,11 @@
1
- <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path
4
- opacity="0.9"
5
- fill-rule="evenodd"
6
- clip-rule="evenodd"
7
- d="M11.4181 4.32617C10.3175 3.62909 9.18444 3.34961 8.00013 3.34961C6.8155 3.34961 5.68265 3.62903 4.57728 4.3252C3.48286 5.01447 2.44779 6.09218 1.41615 7.63965C1.27079 7.85788 1.27079 8.14212 1.41615 8.36035C2.44917 9.90989 3.49435 10.9873 4.5929 11.6758C5.70138 12.3705 6.83403 12.6504 8.00013 12.6504C10.3963 12.6502 12.9746 10.971 14.5568 8.33398C14.6687 8.14732 14.6792 7.91929 14.589 7.72559L14.5441 7.64453C13.533 6.09549 12.5081 5.01658 11.4181 4.32617ZM5.26966 5.4248C6.14901 4.87098 7.03773 4.65039 8.00013 4.65039C8.9627 4.65039 9.85008 4.87112 10.7228 5.42383C11.5338 5.93754 12.3581 6.75756 13.2208 8.01074C11.802 10.1554 9.72686 11.3494 8.00013 11.3496C7.05919 11.3496 6.16934 11.1295 5.28333 10.5742C4.4643 10.0609 3.62437 9.24441 2.7472 8C3.62417 6.75384 4.45564 5.93751 5.26966 5.4248ZM10 8C10 9.10457 9.10457 10 8 10C6.89543 10 6 9.10457 6 8C6 6.89543 6.89543 6 8 6C9.10457 6 10 6.89543 10 8Z"
8
- fill="black"
9
- />
10
- </svg>
11
- </template>
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ opacity="0.9"
5
+ fill-rule="evenodd"
6
+ clip-rule="evenodd"
7
+ d="M11.4181 4.32617C10.3175 3.62909 9.18444 3.34961 8.00013 3.34961C6.8155 3.34961 5.68265 3.62903 4.57728 4.3252C3.48286 5.01447 2.44779 6.09218 1.41615 7.63965C1.27079 7.85788 1.27079 8.14212 1.41615 8.36035C2.44917 9.90989 3.49435 10.9873 4.5929 11.6758C5.70138 12.3705 6.83403 12.6504 8.00013 12.6504C10.3963 12.6502 12.9746 10.971 14.5568 8.33398C14.6687 8.14732 14.6792 7.91929 14.589 7.72559L14.5441 7.64453C13.533 6.09549 12.5081 5.01658 11.4181 4.32617ZM5.26966 5.4248C6.14901 4.87098 7.03773 4.65039 8.00013 4.65039C8.9627 4.65039 9.85008 4.87112 10.7228 5.42383C11.5338 5.93754 12.3581 6.75756 13.2208 8.01074C11.802 10.1554 9.72686 11.3494 8.00013 11.3496C7.05919 11.3496 6.16934 11.1295 5.28333 10.5742C4.4643 10.0609 3.62437 9.24441 2.7472 8C3.62417 6.75384 4.45564 5.93751 5.26966 5.4248ZM10 8C10 9.10457 9.10457 10 8 10C6.89543 10 6 9.10457 6 8C6 6.89543 6.89543 6 8 6C9.10457 6 10 6.89543 10 8Z"
8
+ fill="black"
9
+ />
10
+ </svg>
11
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <path
3
- d="M8.875 7.3V4.5875c.525.175.875.7.875 1.225 0 .525.35.875.875.875s.875-.35.875-.875c0-1.575-1.1375-2.8-2.625-2.975V1.875C8.875 1.35 8.525 1 8 1s-.875.35-.875.875v.9625c-1.4875.175-2.625 1.4-2.625 2.975C4.5 7.65 5.9 8.35 7.125 8.7v2.7125c-.525-.175-.875-.7-.875-1.225 0-.525-.35-.875-.875-.875s-.875.35-.875.875c0 1.575 1.1375 2.8 2.625 2.975v.9625c0 .525.35.875.875.875s.875-.35.875-.875v-.9625c1.4875-.175 2.625-1.4875 2.625-2.975C11.5 8.35 10.1 7.65 8.875 7.3zM6.25 5.8125c0-.6125.35-1.05.875-1.225v2.275c-.6125-.2625-.875-.525-.875-1.05zm2.625 5.6v-2.275c.6125.2625.875.525.875 1.05 0 .6125-.35 1.05-.875 1.225z"
4
- fill-rule="nonzero"
5
- />
6
- </template>
1
+ <template>
2
+ <path
3
+ d="M8.875 7.3V4.5875c.525.175.875.7.875 1.225 0 .525.35.875.875.875s.875-.35.875-.875c0-1.575-1.1375-2.8-2.625-2.975V1.875C8.875 1.35 8.525 1 8 1s-.875.35-.875.875v.9625c-1.4875.175-2.625 1.4-2.625 2.975C4.5 7.65 5.9 8.35 7.125 8.7v2.7125c-.525-.175-.875-.7-.875-1.225 0-.525-.35-.875-.875-.875s-.875.35-.875.875c0 1.575 1.1375 2.8 2.625 2.975v.9625c0 .525.35.875.875.875s.875-.35.875-.875v-.9625c1.4875-.175 2.625-1.4875 2.625-2.975C11.5 8.35 10.1 7.65 8.875 7.3zM6.25 5.8125c0-.6125.35-1.05.875-1.225v2.275c-.6125-.2625-.875-.525-.875-1.05zm2.625 5.6v-2.275c.6125.2625.875.525.875 1.05 0 .6125-.35 1.05-.875 1.225z"
4
+ fill-rule="nonzero"
5
+ />
6
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <g>
3
- <path
4
- d="M8.40625 5.42857C8.52474 5.42857 8.62207 5.38839 8.69824 5.30804C8.77441 5.22768 8.8125 5.125 8.8125 5V4.35714H14.0938C14.2122 4.35714 14.3096 4.31696 14.3857 4.23661C14.4619 4.15625 14.5 4.05357 14.5 3.92857V3.5C14.5 3.375 14.4619 3.27232 14.3857 3.19196C14.3096 3.11161 14.2122 3.07143 14.0938 3.07143H8.8125V2.42857C8.8125 2.30357 8.77441 2.20089 8.69824 2.12054C8.62207 2.04018 8.52474 2 8.40625 2H7.59375C7.47526 2 7.37793 2.04018 7.30176 2.12054C7.22559 2.20089 7.1875 2.30357 7.1875 2.42857V3.07143H1.90625C1.78776 3.07143 1.69043 3.11161 1.61426 3.19196C1.53809 3.27232 1.5 3.375 1.5 3.5V3.92857C1.5 4.05357 1.53809 4.15625 1.61426 4.23661C1.69043 4.31696 1.78776 4.35714 1.90625 4.35714H7.1875V5C7.1875 5.125 7.22559 5.22768 7.30176 5.30804C7.37793 5.38839 7.47526 5.42857 7.59375 5.42857H8.40625ZM11.6562 9.71429C11.7747 9.71429 11.8721 9.67411 11.9482 9.59375C12.0244 9.51339 12.0625 9.41071 12.0625 9.28571V8.64286H14.0938C14.2122 8.64286 14.3096 8.60268 14.3857 8.52232C14.4619 8.44196 14.5 8.33929 14.5 8.21429V7.78571C14.5 7.66071 14.4619 7.55804 14.3857 7.47768C14.3096 7.39732 14.2122 7.35714 14.0938 7.35714H12.0625V6.71429C12.0625 6.58929 12.0244 6.48661 11.9482 6.40625C11.8721 6.32589 11.7747 6.28571 11.6562 6.28571H10.8438C10.7253 6.28571 10.6279 6.32589 10.5518 6.40625C10.4756 6.48661 10.4375 6.58929 10.4375 6.71429V7.35714H1.90625C1.78776 7.35714 1.69043 7.39732 1.61426 7.47768C1.53809 7.55804 1.5 7.66071 1.5 7.78571V8.21429C1.5 8.33929 1.53809 8.44196 1.61426 8.52232C1.69043 8.60268 1.78776 8.64286 1.90625 8.64286H10.4375V9.28571C10.4375 9.41071 10.4756 9.51339 10.5518 9.59375C10.6279 9.67411 10.7253 9.71429 10.8438 9.71429H11.6562ZM5.15625 14C5.27474 14 5.37207 13.9598 5.44824 13.8795C5.52441 13.7991 5.5625 13.6964 5.5625 13.5714V12.9286H14.0938C14.2122 12.9286 14.3096 12.8884 14.3857 12.808C14.4619 12.7277 14.5 12.625 14.5 12.5V12.0714C14.5 11.9464 14.4619 11.8437 14.3857 11.7634C14.3096 11.683 14.2122 11.6429 14.0938 11.6429H5.5625V11C5.5625 10.875 5.52441 10.7723 5.44824 10.692C5.37207 10.6116 5.27474 10.5714 5.15625 10.5714H4.34375C4.22526 10.5714 4.12793 10.6116 4.05176 10.692C3.97559 10.7723 3.9375 10.875 3.9375 11V11.6429H1.90625C1.78776 11.6429 1.69043 11.683 1.61426 11.7634C1.53809 11.8437 1.5 11.9464 1.5 12.0714V12.5C1.5 12.625 1.53809 12.7277 1.61426 12.808C1.69043 12.8884 1.78776 12.9286 1.90625 12.9286H3.9375V13.5714C3.9375 13.6964 3.97559 13.7991 4.05176 13.8795C4.12793 13.9598 4.22526 14 4.34375 14H5.15625Z"
5
- />
6
- </g>
7
- </template>
1
+ <template>
2
+ <g>
3
+ <path
4
+ d="M8.40625 5.42857C8.52474 5.42857 8.62207 5.38839 8.69824 5.30804C8.77441 5.22768 8.8125 5.125 8.8125 5V4.35714H14.0938C14.2122 4.35714 14.3096 4.31696 14.3857 4.23661C14.4619 4.15625 14.5 4.05357 14.5 3.92857V3.5C14.5 3.375 14.4619 3.27232 14.3857 3.19196C14.3096 3.11161 14.2122 3.07143 14.0938 3.07143H8.8125V2.42857C8.8125 2.30357 8.77441 2.20089 8.69824 2.12054C8.62207 2.04018 8.52474 2 8.40625 2H7.59375C7.47526 2 7.37793 2.04018 7.30176 2.12054C7.22559 2.20089 7.1875 2.30357 7.1875 2.42857V3.07143H1.90625C1.78776 3.07143 1.69043 3.11161 1.61426 3.19196C1.53809 3.27232 1.5 3.375 1.5 3.5V3.92857C1.5 4.05357 1.53809 4.15625 1.61426 4.23661C1.69043 4.31696 1.78776 4.35714 1.90625 4.35714H7.1875V5C7.1875 5.125 7.22559 5.22768 7.30176 5.30804C7.37793 5.38839 7.47526 5.42857 7.59375 5.42857H8.40625ZM11.6562 9.71429C11.7747 9.71429 11.8721 9.67411 11.9482 9.59375C12.0244 9.51339 12.0625 9.41071 12.0625 9.28571V8.64286H14.0938C14.2122 8.64286 14.3096 8.60268 14.3857 8.52232C14.4619 8.44196 14.5 8.33929 14.5 8.21429V7.78571C14.5 7.66071 14.4619 7.55804 14.3857 7.47768C14.3096 7.39732 14.2122 7.35714 14.0938 7.35714H12.0625V6.71429C12.0625 6.58929 12.0244 6.48661 11.9482 6.40625C11.8721 6.32589 11.7747 6.28571 11.6562 6.28571H10.8438C10.7253 6.28571 10.6279 6.32589 10.5518 6.40625C10.4756 6.48661 10.4375 6.58929 10.4375 6.71429V7.35714H1.90625C1.78776 7.35714 1.69043 7.39732 1.61426 7.47768C1.53809 7.55804 1.5 7.66071 1.5 7.78571V8.21429C1.5 8.33929 1.53809 8.44196 1.61426 8.52232C1.69043 8.60268 1.78776 8.64286 1.90625 8.64286H10.4375V9.28571C10.4375 9.41071 10.4756 9.51339 10.5518 9.59375C10.6279 9.67411 10.7253 9.71429 10.8438 9.71429H11.6562ZM5.15625 14C5.27474 14 5.37207 13.9598 5.44824 13.8795C5.52441 13.7991 5.5625 13.6964 5.5625 13.5714V12.9286H14.0938C14.2122 12.9286 14.3096 12.8884 14.3857 12.808C14.4619 12.7277 14.5 12.625 14.5 12.5V12.0714C14.5 11.9464 14.4619 11.8437 14.3857 11.7634C14.3096 11.683 14.2122 11.6429 14.0938 11.6429H5.5625V11C5.5625 10.875 5.52441 10.7723 5.44824 10.692C5.37207 10.6116 5.27474 10.5714 5.15625 10.5714H4.34375C4.22526 10.5714 4.12793 10.6116 4.05176 10.692C3.97559 10.7723 3.9375 10.875 3.9375 11V11.6429H1.90625C1.78776 11.6429 1.69043 11.683 1.61426 11.7634C1.53809 11.8437 1.5 11.9464 1.5 12.0714V12.5C1.5 12.625 1.53809 12.7277 1.61426 12.808C1.69043 12.8884 1.78776 12.9286 1.90625 12.9286H3.9375V13.5714C3.9375 13.6964 3.97559 13.7991 4.05176 13.8795C4.12793 13.9598 4.22526 14 4.34375 14H5.15625Z"
5
+ />
6
+ </g>
7
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <path
3
- d="M9.52 3.862a.666.666 0 0 1 .943 0l2.009 2.008a.666.666 0 0 1 0 .943L4.48 14.805a.665.665 0 0 1-.943 0l-2.009-2.009a.666.666 0 0 1 0-.943zm-1.4 3.284-5.177 5.179 1.066 1.067 5.178-5.179L8.12 7.146zm5.547.52c.25.5.5.751 1 1-.5.251-.75.5-1 1-.25-.5-.5-.749-1-1 .5-.249.75-.5 1-1zm-3.675-2.39-.928.927L10.13 7.27l.928-.929-1.067-1.065zM6.333 1.333c.333.667.667 1 1.333 1.333-.667.333-1 .667-1.333 1.333C6 3.332 5.666 2.999 5 2.666c.667-.333 1-.667 1.333-1.333zm6 .333c.25.5.5.75 1 1-.5.25-.75.5-1 1-.25-.5-.5-.75-1-1 .5-.25.75-.5 1-1z"
4
- fill-rule="evenodd"
5
- />
6
- </template>
1
+ <template>
2
+ <path
3
+ d="M9.52 3.862a.666.666 0 0 1 .943 0l2.009 2.008a.666.666 0 0 1 0 .943L4.48 14.805a.665.665 0 0 1-.943 0l-2.009-2.009a.666.666 0 0 1 0-.943zm-1.4 3.284-5.177 5.179 1.066 1.067 5.178-5.179L8.12 7.146zm5.547.52c.25.5.5.751 1 1-.5.251-.75.5-1 1-.25-.5-.5-.749-1-1 .5-.249.75-.5 1-1zm-3.675-2.39-.928.927L10.13 7.27l.928-.929-1.067-1.065zM6.333 1.333c.333.667.667 1 1.333 1.333-.667.333-1 .667-1.333 1.333C6 3.332 5.666 2.999 5 2.666c.667-.333 1-.667 1.333-1.333zm6 .333c.25.5.5.75 1 1-.5.25-.75.5-1 1-.25-.5-.5-.75-1-1 .5-.25.75-.5 1-1z"
4
+ fill-rule="evenodd"
5
+ />
6
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <g fill-rule="evenodd">
3
- <path fill-rule="nonzero" d="M3 1v14h2V1z" />
4
- <path d="M13 3v8H3V3h10zm-1.6667 1.7778H4.6667v4.4444h6.6666V4.7778z" />
5
- </g>
6
- </template>
1
+ <template>
2
+ <g fill-rule="evenodd">
3
+ <path fill-rule="nonzero" d="M3 1v14h2V1z" />
4
+ <path d="M13 3v8H3V3h10zm-1.6667 1.7778H4.6667v4.4444h6.6666V4.7778z" />
5
+ </g>
6
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <path
3
- fill-rule="evenodd"
4
- clip-rule="evenodd"
5
- d="M8.5477 2.74585C8.5477 1.94482 9.67133 1.70841 10.0126 2.43764L14.9304 12.9469C15.1611 13.4401 14.79 14 14.2323 14H9.3145C8.89101 14 8.5477 13.6665 8.5477 13.2552V2.74585ZM6.35686 12.9359V4.21955L2.27805 12.9359H6.35686ZM5.98742 2.43764C6.32866 1.70841 7.45229 1.94482 7.45229 2.74585V13.2552C7.45229 13.6665 7.10898 14 6.68549 14H1.76769C1.21 14 0.838847 13.4401 1.06962 12.9469L5.98742 2.43764Z"
6
- />
7
- </template>
1
+ <template>
2
+ <path
3
+ fill-rule="evenodd"
4
+ clip-rule="evenodd"
5
+ d="M8.5477 2.74585C8.5477 1.94482 9.67133 1.70841 10.0126 2.43764L14.9304 12.9469C15.1611 13.4401 14.79 14 14.2323 14H9.3145C8.89101 14 8.5477 13.6665 8.5477 13.2552V2.74585ZM6.35686 12.9359V4.21955L2.27805 12.9359H6.35686ZM5.98742 2.43764C6.32866 1.70841 7.45229 1.94482 7.45229 2.74585V13.2552C7.45229 13.6665 7.10898 14 6.68549 14H1.76769C1.21 14 0.838847 13.4401 1.06962 12.9469L5.98742 2.43764Z"
6
+ />
7
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <path
3
- fill-rule="evenodd"
4
- clip-rule="evenodd"
5
- d="M2.74585 7.45228C1.94482 7.45228 1.70841 6.32866 2.43764 5.98742L12.9469 1.06961C13.4401 0.838843 14 1.21 14 1.76768V6.68549C14 7.10898 13.6665 7.45228 13.2552 7.45228L2.74585 7.45228ZM12.9359 9.64314L4.21955 9.64314L12.9359 13.722V9.64314ZM2.43764 10.0126C1.70841 9.67134 1.94482 8.54771 2.74585 8.54771L13.2552 8.54771C13.6665 8.54771 14 8.89102 14 9.31451V14.2323C14 14.79 13.4401 15.1612 12.9469 14.9304L2.43764 10.0126Z"
6
- />
7
- </template>
1
+ <template>
2
+ <path
3
+ fill-rule="evenodd"
4
+ clip-rule="evenodd"
5
+ d="M2.74585 7.45228C1.94482 7.45228 1.70841 6.32866 2.43764 5.98742L12.9469 1.06961C13.4401 0.838843 14 1.21 14 1.76768V6.68549C14 7.10898 13.6665 7.45228 13.2552 7.45228L2.74585 7.45228ZM12.9359 9.64314L4.21955 9.64314L12.9359 13.722V9.64314ZM2.43764 10.0126C1.70841 9.67134 1.94482 8.54771 2.74585 8.54771L13.2552 8.54771C13.6665 8.54771 14 8.89102 14 9.31451V14.2323C14 14.79 13.4401 15.1612 12.9469 14.9304L2.43764 10.0126Z"
6
+ />
7
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <path
3
- d="M6.2 2.25h-3c-1.0723 0-1.95.8533-1.95 1.9167v8.1666c0 1.0634.8777 1.9167 1.95 1.9167h9.6c1.0723 0 1.95-.8533 1.95-1.9167V5.9167l-.0059-.1504C14.666 4.774 13.8212 4 12.8 4H7.795l-.9765-1.4241A.75.75 0 006.2 2.25zm-3 1.5h2.605l.9765 1.4241A.75.75 0 007.4 5.5h5.4c.2532 0 .45.1914.45.4167v6.4166c0 .2253-.1968.4167-.45.4167H3.2c-.2532 0-.45-.1914-.45-.4167V4.1667c0-.2253.1968-.4167.45-.4167z"
4
- fill-rule="nonzero"
5
- />
6
- </template>
1
+ <template>
2
+ <path
3
+ d="M6.2 2.25h-3c-1.0723 0-1.95.8533-1.95 1.9167v8.1666c0 1.0634.8777 1.9167 1.95 1.9167h9.6c1.0723 0 1.95-.8533 1.95-1.9167V5.9167l-.0059-.1504C14.666 4.774 13.8212 4 12.8 4H7.795l-.9765-1.4241A.75.75 0 006.2 2.25zm-3 1.5h2.605l.9765 1.4241A.75.75 0 007.4 5.5h5.4c.2532 0 .45.1914.45.4167v6.4166c0 .2253-.1968.4167-.45.4167H3.2c-.2532 0-.45-.1914-.45-.4167V4.1667c0-.2253.1968-.4167.45-.4167z"
4
+ fill-rule="nonzero"
5
+ />
6
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <svg viewBox="0 0 94 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect x="36" y="1" width="22" height="4" rx="2" />
4
- <rect x="19" y="10" width="56" height="4" rx="2" />
5
- <rect x="32.5" y="19" width="29" height="4" rx="2" />
6
- </svg>
7
- </template>
1
+ <template>
2
+ <svg viewBox="0 0 94 24" xmlns="http://www.w3.org/2000/svg">
3
+ <rect x="36" y="1" width="22" height="4" rx="2" />
4
+ <rect x="19" y="10" width="56" height="4" rx="2" />
5
+ <rect x="32.5" y="19" width="29" height="4" rx="2" />
6
+ </svg>
7
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <svg viewBox="0 0 94 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect x="5" y="9" width="20" height="6" rx="3" />
4
- <rect x="37" y="9" width="20" height="6" rx="3" />
5
- <rect x="69" y="9" width="20" height="6" rx="3" />
6
- </svg>
7
- </template>
1
+ <template>
2
+ <svg viewBox="0 0 94 24" xmlns="http://www.w3.org/2000/svg">
3
+ <rect x="5" y="9" width="20" height="6" rx="3" />
4
+ <rect x="37" y="9" width="20" height="6" rx="3" />
5
+ <rect x="69" y="9" width="20" height="6" rx="3" />
6
+ </svg>
7
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <path
3
- d="M 10.34 15.818 L 7.228 8.837 L 0.228 5.731 L 14.514 0.744 C 14.526 0.74 14.537 0.738 14.548 0.733 L 15.783 0.302 L 15.351 1.535 C 15.347 1.545 15.343 1.557 15.34 1.567 L 10.34 15.818 Z M 3.694 5.874 L 7.57 7.595 L 12.31 2.864 L 3.694 5.874 Z M 10.197 12.36 L 13.215 3.766 L 8.473 8.496 L 10.197 12.36 Z"
4
- fill-rule="nonzero"
5
- />
6
- </template>
1
+ <template>
2
+ <path
3
+ d="M 10.34 15.818 L 7.228 8.837 L 0.228 5.731 L 14.514 0.744 C 14.526 0.74 14.537 0.738 14.548 0.733 L 15.783 0.302 L 15.351 1.535 C 15.347 1.545 15.343 1.557 15.34 1.567 L 10.34 15.818 Z M 3.694 5.874 L 7.57 7.595 L 12.31 2.864 L 3.694 5.874 Z M 10.197 12.36 L 13.215 3.766 L 8.473 8.496 L 10.197 12.36 Z"
4
+ fill-rule="nonzero"
5
+ />
6
+ </template>
@@ -1,5 +1,5 @@
1
- <template>
2
- <path
3
- d="M9.125 4.71875C9.125 4.90104 9.1888 5.05599 9.31641 5.18359C9.44401 5.3112 9.59896 5.375 9.78125 5.375H13.5V14.3438C13.5 14.526 13.4362 14.681 13.3086 14.8086C13.181 14.9362 13.026 15 12.8438 15H3.65625C3.47396 15 3.31901 14.9362 3.19141 14.8086C3.0638 14.681 3 14.526 3 14.3438V1.65625C3 1.47396 3.0638 1.31901 3.19141 1.19141C3.31901 1.0638 3.47396 1 3.65625 1H9.125V4.71875ZM10.875 11.1719V10.9531C10.875 10.7344 10.7656 10.625 10.5469 10.625H5.95312C5.73438 10.625 5.625 10.7344 5.625 10.9531V11.1719C5.625 11.3906 5.73438 11.5 5.95312 11.5H10.5469C10.7656 11.5 10.875 11.3906 10.875 11.1719ZM10.875 9.42188V9.20312C10.875 8.98437 10.7656 8.875 10.5469 8.875H5.95312C5.73438 8.875 5.625 8.98437 5.625 9.20312V9.42188C5.625 9.64062 5.73438 9.75 5.95312 9.75H10.5469C10.7656 9.75 10.875 9.64062 10.875 9.42188ZM10.875 7.45312C10.875 7.23438 10.7656 7.125 10.5469 7.125H5.95312C5.73438 7.125 5.625 7.23438 5.625 7.45312V7.67188C5.625 7.89062 5.73438 8 5.95312 8H10.5469C10.7656 8 10.875 7.89062 10.875 7.67188V7.45312ZM13.5 4.33594V4.5H10V1H10.1641C10.3464 1 10.5013 1.0638 10.6289 1.19141L13.3086 3.87109C13.4362 3.9987 13.5 4.15365 13.5 4.33594Z"
4
- />
5
- </template>
1
+ <template>
2
+ <path
3
+ d="M9.125 4.71875C9.125 4.90104 9.1888 5.05599 9.31641 5.18359C9.44401 5.3112 9.59896 5.375 9.78125 5.375H13.5V14.3438C13.5 14.526 13.4362 14.681 13.3086 14.8086C13.181 14.9362 13.026 15 12.8438 15H3.65625C3.47396 15 3.31901 14.9362 3.19141 14.8086C3.0638 14.681 3 14.526 3 14.3438V1.65625C3 1.47396 3.0638 1.31901 3.19141 1.19141C3.31901 1.0638 3.47396 1 3.65625 1H9.125V4.71875ZM10.875 11.1719V10.9531C10.875 10.7344 10.7656 10.625 10.5469 10.625H5.95312C5.73438 10.625 5.625 10.7344 5.625 10.9531V11.1719C5.625 11.3906 5.73438 11.5 5.95312 11.5H10.5469C10.7656 11.5 10.875 11.3906 10.875 11.1719ZM10.875 9.42188V9.20312C10.875 8.98437 10.7656 8.875 10.5469 8.875H5.95312C5.73438 8.875 5.625 8.98437 5.625 9.20312V9.42188C5.625 9.64062 5.73438 9.75 5.95312 9.75H10.5469C10.7656 9.75 10.875 9.64062 10.875 9.42188ZM10.875 7.45312C10.875 7.23438 10.7656 7.125 10.5469 7.125H5.95312C5.73438 7.125 5.625 7.23438 5.625 7.45312V7.67188C5.625 7.89062 5.73438 8 5.95312 8H10.5469C10.7656 8 10.875 7.89062 10.875 7.67188V7.45312ZM13.5 4.33594V4.5H10V1H10.1641C10.3464 1 10.5013 1.0638 10.6289 1.19141L13.3086 3.87109C13.4362 3.9987 13.5 4.15365 13.5 4.33594Z"
4
+ />
5
+ </template>
@@ -1,5 +1,5 @@
1
- <template>
2
- <path
3
- d="M9.745 6.5803a.685.685 0 01-.174-.1265l.0645.0553-.0645-.0552a.6874.6874 0 01-.1124-.1475.6894.6894 0 01-.089-.3437l.0325-4.2537c.003-.3774.3099-.6817.6886-.6817.3823.003.6883.312.6856.6923l-.0188 2.5775 3.0671-3.0685a.6853.6853 0 01.3784-.193l.1074-.0083a.6852.6852 0 01.4857.2012.6868.6868 0 010 .9717l-3.0676 3.069 2.5783-.0207c.311 0 .5734.2032.6602.4842l.0223.0964.0082.1011a.6871.6871 0 01-.682.6924l-4.2588.0325a.687.687 0 01-.3074-.0724zM9.745 9.4748a.685.685 0 00-.174.1265l.0645-.0553-.0645.0552a.6874.6874 0 00-.1124.1475.6894.6894 0 00-.089.3437l.0325 4.2537c.003.3774.3099.6817.6886.6817.3823-.003.6883-.312.6856-.6923l-.0188-2.5775 3.0671 3.0685a.6853.6853 0 00.3784.193l.1074.0083a.6852.6852 0 00.4857-.2012.6868.6868 0 000-.9717l-3.0676-3.0689 2.5783.0206a.6894.6894 0 00.6602-.4842l.0223-.0964.0082-.1011a.6871.6871 0 00-.682-.6924L10.0567 9.4a.687.687 0 00-.3074.0724zM6.2525 6.5803a.685.685 0 00.174-.1265l-.0645.0553.0645-.0552a.6874.6874 0 00.1125-.1475.6894.6894 0 00.0889-.3437L6.5954 1.709c-.003-.3774-.3099-.6817-.6886-.6817-.3823.003-.6883.312-.6855.6923L5.24 4.2971 2.173 1.2286a.6853.6853 0 00-.3785-.193l-.1074-.0083a.6852.6852 0 00-.4857.2012.6868.6868 0 000 .9717l3.0676 3.069-2.5783-.0207a.6894.6894 0 00-.6602.4842l-.0223.0964L1 5.9302a.6871.6871 0 00.682.6924l4.2588.0325a.687.687 0 00.3074-.0724zM6.2525 9.4748a.685.685 0 01.174.1265L6.362 9.546l.0645.0552a.6874.6874 0 01.1125.1475.6894.6894 0 01.0889.3437l-.0325 4.2537c-.003.3774-.3099.6817-.6886.6817-.3823-.003-.6883-.312-.6855-.6923L5.24 11.758l-3.067 3.0685a.6853.6853 0 01-.3785.193l-.1074.0083a.6852.6852 0 01-.4857-.2012.6868.6868 0 010-.9717L4.269 10.786l-2.5783.0206a.6894.6894 0 01-.6602-.4842l-.0223-.0964L1 10.1249a.6871.6871 0 01.682-.6924L5.9408 9.4a.687.687 0 01.3074.0724z"
4
- />
5
- </template>
1
+ <template>
2
+ <path
3
+ d="M9.745 6.5803a.685.685 0 01-.174-.1265l.0645.0553-.0645-.0552a.6874.6874 0 01-.1124-.1475.6894.6894 0 01-.089-.3437l.0325-4.2537c.003-.3774.3099-.6817.6886-.6817.3823.003.6883.312.6856.6923l-.0188 2.5775 3.0671-3.0685a.6853.6853 0 01.3784-.193l.1074-.0083a.6852.6852 0 01.4857.2012.6868.6868 0 010 .9717l-3.0676 3.069 2.5783-.0207c.311 0 .5734.2032.6602.4842l.0223.0964.0082.1011a.6871.6871 0 01-.682.6924l-4.2588.0325a.687.687 0 01-.3074-.0724zM9.745 9.4748a.685.685 0 00-.174.1265l.0645-.0553-.0645.0552a.6874.6874 0 00-.1124.1475.6894.6894 0 00-.089.3437l.0325 4.2537c.003.3774.3099.6817.6886.6817.3823-.003.6883-.312.6856-.6923l-.0188-2.5775 3.0671 3.0685a.6853.6853 0 00.3784.193l.1074.0083a.6852.6852 0 00.4857-.2012.6868.6868 0 000-.9717l-3.0676-3.0689 2.5783.0206a.6894.6894 0 00.6602-.4842l.0223-.0964.0082-.1011a.6871.6871 0 00-.682-.6924L10.0567 9.4a.687.687 0 00-.3074.0724zM6.2525 6.5803a.685.685 0 00.174-.1265l-.0645.0553.0645-.0552a.6874.6874 0 00.1125-.1475.6894.6894 0 00.0889-.3437L6.5954 1.709c-.003-.3774-.3099-.6817-.6886-.6817-.3823.003-.6883.312-.6855.6923L5.24 4.2971 2.173 1.2286a.6853.6853 0 00-.3785-.193l-.1074-.0083a.6852.6852 0 00-.4857.2012.6868.6868 0 000 .9717l3.0676 3.069-2.5783-.0207a.6894.6894 0 00-.6602.4842l-.0223.0964L1 5.9302a.6871.6871 0 00.682.6924l4.2588.0325a.687.687 0 00.3074-.0724zM6.2525 9.4748a.685.685 0 01.174.1265L6.362 9.546l.0645.0552a.6874.6874 0 01.1125.1475.6894.6894 0 01.0889.3437l-.0325 4.2537c-.003.3774-.3099.6817-.6886.6817-.3823-.003-.6883-.312-.6855-.6923L5.24 11.758l-3.067 3.0685a.6853.6853 0 01-.3785.193l-.1074.0083a.6852.6852 0 01-.4857-.2012.6868.6868 0 010-.9717L4.269 10.786l-2.5783.0206a.6894.6894 0 01-.6602-.4842l-.0223-.0964L1 10.1249a.6871.6871 0 01.682-.6924L5.9408 9.4a.687.687 0 01.3074.0724z"
4
+ />
5
+ </template>
@@ -1,5 +1,5 @@
1
- <template>
2
- <path
3
- d="M14.6221 1.102a.685.685 0 01.1741.1266l-.0646-.0553.0645.0552a.6874.6874 0 01.1125.1475.6894.6894 0 01.0889.3436l-.0325 4.2538c-.003.3774-.3099.6817-.6886.6817-.3822-.003-.6883-.312-.6855-.6923l.0187-2.5775-3.067 3.0685a.6853.6853 0 01-.3784.1929l-.1075.0084a.6852.6852 0 01-.4857-.2012.6868.6868 0 010-.9717l3.0676-3.069-2.5783.0207a.6894.6894 0 01-.6602-.4842l-.0222-.0964-.0083-.1012a.6871.6871 0 01.682-.6923l4.2588-.0325a.687.687 0 01.3074.0724zM14.6221 14.953a.685.685 0 00.1741-.1265l-.0646.0553.0645-.0552a.6874.6874 0 00.1125-.1475.6894.6894 0 00.0889-.3436l-.0325-4.2537c-.003-.3775-.3099-.6818-.6886-.6818-.3822.003-.6883.312-.6855.6923l.0187 2.5775-3.067-3.0685a.6853.6853 0 00-.3784-.1929L10.0567 9.4a.6852.6852 0 00-.4857.2012.6868.6868 0 000 .9717l3.0676 3.069-2.5783-.0207a.6894.6894 0 00-.6602.4842l-.0222.0964-.0083.1012a.6871.6871 0 00.682.6923l4.2588.0325a.687.687 0 00.3074-.0724zM1.3754 1.102a.685.685 0 00-.174.1266l.0645-.0553-.0645.0552a.6874.6874 0 00-.1125.1475A.6894.6894 0 001 1.7196l.0325 4.2538c.003.3774.3099.6817.6886.6817.3823-.003.6883-.312.6856-.6923l-.0188-2.5775 3.067 3.0685a.6853.6853 0 00.3785.1929l.1074.0084a.6852.6852 0 00.4857-.2012.6868.6868 0 000-.9717l-3.0676-3.069 2.5783.0207a.6894.6894 0 00.6602-.4842l.0223-.0964.0082-.1012a.6871.6871 0 00-.682-.6923L1.687 1.0273a.687.687 0 00-.3074.0724zM1.3754 14.953a.685.685 0 01-.174-.1265l.0645.0553-.0645-.0552a.6874.6874 0 01-.1125-.1475A.6894.6894 0 011 14.3355l.0325-4.2537c.003-.3775.3099-.6818.6886-.6818.3823.003.6883.312.6856.6923l-.0188 2.5775 3.067-3.0685a.6853.6853 0 01.3785-.1929L5.9408 9.4a.6852.6852 0 01.4857.2012.6868.6868 0 010 .9717l-3.0676 3.069 2.5783-.0207c.311 0 .5734.2032.6602.4842l.0223.0964.0082.1012a.6871.6871 0 01-.682.6923l-4.2588.0325a.687.687 0 01-.3074-.0724z"
4
- />
5
- </template>
1
+ <template>
2
+ <path
3
+ d="M14.6221 1.102a.685.685 0 01.1741.1266l-.0646-.0553.0645.0552a.6874.6874 0 01.1125.1475.6894.6894 0 01.0889.3436l-.0325 4.2538c-.003.3774-.3099.6817-.6886.6817-.3822-.003-.6883-.312-.6855-.6923l.0187-2.5775-3.067 3.0685a.6853.6853 0 01-.3784.1929l-.1075.0084a.6852.6852 0 01-.4857-.2012.6868.6868 0 010-.9717l3.0676-3.069-2.5783.0207a.6894.6894 0 01-.6602-.4842l-.0222-.0964-.0083-.1012a.6871.6871 0 01.682-.6923l4.2588-.0325a.687.687 0 01.3074.0724zM14.6221 14.953a.685.685 0 00.1741-.1265l-.0646.0553.0645-.0552a.6874.6874 0 00.1125-.1475.6894.6894 0 00.0889-.3436l-.0325-4.2537c-.003-.3775-.3099-.6818-.6886-.6818-.3822.003-.6883.312-.6855.6923l.0187 2.5775-3.067-3.0685a.6853.6853 0 00-.3784-.1929L10.0567 9.4a.6852.6852 0 00-.4857.2012.6868.6868 0 000 .9717l3.0676 3.069-2.5783-.0207a.6894.6894 0 00-.6602.4842l-.0222.0964-.0083.1012a.6871.6871 0 00.682.6923l4.2588.0325a.687.687 0 00.3074-.0724zM1.3754 1.102a.685.685 0 00-.174.1266l.0645-.0553-.0645.0552a.6874.6874 0 00-.1125.1475A.6894.6894 0 001 1.7196l.0325 4.2538c.003.3774.3099.6817.6886.6817.3823-.003.6883-.312.6856-.6923l-.0188-2.5775 3.067 3.0685a.6853.6853 0 00.3785.1929l.1074.0084a.6852.6852 0 00.4857-.2012.6868.6868 0 000-.9717l-3.0676-3.069 2.5783.0207a.6894.6894 0 00.6602-.4842l.0223-.0964.0082-.1012a.6871.6871 0 00-.682-.6923L1.687 1.0273a.687.687 0 00-.3074.0724zM1.3754 14.953a.685.685 0 01-.174-.1265l.0645.0553-.0645-.0552a.6874.6874 0 01-.1125-.1475A.6894.6894 0 011 14.3355l.0325-4.2537c.003-.3775.3099-.6818.6886-.6818.3823.003.6883.312.6856.6923l-.0188 2.5775 3.067-3.0685a.6853.6853 0 01.3785-.1929L5.9408 9.4a.6852.6852 0 01.4857.2012.6868.6868 0 010 .9717l-3.0676 3.069 2.5783-.0207c.311 0 .5734.2032.6602.4842l.0223.0964.0082.1012a.6871.6871 0 01-.682.6923l-4.2588.0325a.687.687 0 01-.3074-.0724z"
4
+ />
5
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <path
3
- d="M8 15c1.9382 0 3.5894-.6821 4.9536-2.0464C14.318 11.5894 15 9.9382 15 8c0-1.9382-.6821-3.5894-2.0464-4.9536C11.5894 1.682 9.9382 1 8 1c-1.9382 0-3.594.6868-4.9677 2.0605C1.6774 4.4153 1 6.0618 1 8c0 1.9382.6821 3.5894 2.0464 4.9536C4.4106 14.318 6.0618 15 8 15zm1.7782-9.4839H6.2218c.1881-.9408.461-1.703.8185-2.2863.3575-.5833.6774-.875.9597-.875s.6022.2917.9597.875c.3575.5834.6304 1.3455.8185 2.2863zm3.2742 0h-1.8911c-.1882-1.035-.4798-1.9287-.875-2.6814 1.242.5645 2.164 1.4583 2.7661 2.6814zm-8.2137 0H2.9476c.6021-1.223 1.5242-2.117 2.7661-2.6814-.3952.7527-.6868 1.6465-.875 2.6814zm-.1693 3.613H2.4677A5.744 5.744 0 012.3548 8c0-.3763.0377-.7527.113-1.129h2.2016c-.0377.414-.0565.7903-.0565 1.129s.0188.715.0565 1.129zm5.3064 0H6.0242C5.9866 8.715 5.9677 8.3386 5.9677 8s.0189-.715.0565-1.129h3.9516c.0376.414.0565.7903.0565 1.129 0 .3199-.0189.6962-.0565 1.129zm3.5565 0h-2.2017c.0377-.414.0565-.7904.0565-1.1291s-.0188-.715-.0565-1.129h2.2017A5.744 5.744 0 0113.6452 8a5.744 5.744 0 01-.113 1.129zm-7.8186 4.0362a6.1783 6.1783 0 01-1.623-1.1008c-.4798-.4516-.8609-.9785-1.1431-1.5806h1.8911c.1882 1.035.4798 1.9287.875 2.6814zM8 13.6452c-.2823 0-.6022-.2917-.9597-.875-.3575-.5834-.6304-1.3455-.8185-2.2863h3.5564c-.1881.9408-.461 1.703-.8185 2.2863-.3575.5833-.6774.875-.9597.875zm2.2863-.4799c.3952-.7527.6868-1.6465.875-2.6814h1.8911c-.6021 1.223-1.5242 2.117-2.7661 2.6814z"
4
- fill-rule="nonzero"
5
- />
6
- </template>
1
+ <template>
2
+ <path
3
+ d="M8 15c1.9382 0 3.5894-.6821 4.9536-2.0464C14.318 11.5894 15 9.9382 15 8c0-1.9382-.6821-3.5894-2.0464-4.9536C11.5894 1.682 9.9382 1 8 1c-1.9382 0-3.594.6868-4.9677 2.0605C1.6774 4.4153 1 6.0618 1 8c0 1.9382.6821 3.5894 2.0464 4.9536C4.4106 14.318 6.0618 15 8 15zm1.7782-9.4839H6.2218c.1881-.9408.461-1.703.8185-2.2863.3575-.5833.6774-.875.9597-.875s.6022.2917.9597.875c.3575.5834.6304 1.3455.8185 2.2863zm3.2742 0h-1.8911c-.1882-1.035-.4798-1.9287-.875-2.6814 1.242.5645 2.164 1.4583 2.7661 2.6814zm-8.2137 0H2.9476c.6021-1.223 1.5242-2.117 2.7661-2.6814-.3952.7527-.6868 1.6465-.875 2.6814zm-.1693 3.613H2.4677A5.744 5.744 0 012.3548 8c0-.3763.0377-.7527.113-1.129h2.2016c-.0377.414-.0565.7903-.0565 1.129s.0188.715.0565 1.129zm5.3064 0H6.0242C5.9866 8.715 5.9677 8.3386 5.9677 8s.0189-.715.0565-1.129h3.9516c.0376.414.0565.7903.0565 1.129 0 .3199-.0189.6962-.0565 1.129zm3.5565 0h-2.2017c.0377-.414.0565-.7904.0565-1.1291s-.0188-.715-.0565-1.129h2.2017A5.744 5.744 0 0113.6452 8a5.744 5.744 0 01-.113 1.129zm-7.8186 4.0362a6.1783 6.1783 0 01-1.623-1.1008c-.4798-.4516-.8609-.9785-1.1431-1.5806h1.8911c.1882 1.035.4798 1.9287.875 2.6814zM8 13.6452c-.2823 0-.6022-.2917-.9597-.875-.3575-.5834-.6304-1.3455-.8185-2.2863h3.5564c-.1881.9408-.461 1.703-.8185 2.2863-.3575.5833-.6774.875-.9597.875zm2.2863-.4799c.3952-.7527.6868-1.6465.875-2.6814h1.8911c-.6021 1.223-1.5242 2.117-2.7661 2.6814z"
4
+ fill-rule="nonzero"
5
+ />
6
+ </template>
@@ -1,5 +1,5 @@
1
- <template>
2
- <path
3
- d="M 11.82037,0.61745166 C 10.450155,-0.28175202 8.6089283,-0.06765591 6.9389786,0.96000544 5.3118482,-0.06765591 3.4706216,-0.28175202 2.0575873,0.61745166 -0.12619305,1.9876668 -0.42592761,5.5416622 1.4581181,8.5390082 2.8711525,10.765607 5.0121137,12.093004 6.9389786,12.050184 8.8658436,12.093001 11.049624,10.765607 12.41984,8.5390082 14.303885,5.5416622 14.04697,1.9876668 11.82037,0.61745166 Z M 2.4857795,7.9395389 C 2.1004065,7.2972505 1.800672,6.6549621 1.629395,5.9270353 1.4581181,5.3275662 1.3724797,4.6852778 1.415299,4.0429895 1.5009374,2.9725089 1.9719488,2.0733053 2.6998756,1.6451131 3.4278024,1.1741016 4.4126446,1.1312824 5.4403059,1.5594746 5.6115828,1.6022937 5.7828597,1.6879322 5.9113173,1.7735707 5.3546675,2.2874014 4.8408367,2.8868705 4.4126446,3.571978 3.2993447,5.3703854 2.9139717,7.4257082 3.342164,9.0528377 2.9996102,8.7102846 2.7426948,8.3249118 2.4857795,7.9395389 Z M 12.291382,5.9270353 C 12.077286,6.6549621 11.82037,7.2972505 11.434997,7.9395389 11.178082,8.3249118 10.878348,8.7102846 10.578613,9.0528377 10.921166,7.596985 10.664247,5.7985776 9.807867,4.128628 L 9.6794097,4.0001703 c -0.085643,0 -0.1284582,0 -0.1712779,0.04282 l -2.74043,1.7127685 c -0.04282,0.04282 -0.085638,0.085638 -0.085638,0.1284576 -0.04282,0.04282 0,0.1284577 0,0.1712768 l 0.4281923,0.6422885 c 0,0.04282 0.085638,0.085638 0.1284576,0.085638 0.04282,0.04282 0.1284577,0 0.1712769,0 L 9.1655779,5.67012 c 0.042817,0.1712769 0.1284582,0.3425538 0.1712779,0.5138306 0.171276,0.5994691 0.2140957,1.2417576 0.171276,1.8412266 C 9.4224978,9.1384771 8.9943009,10.037681 8.2235554,10.465872 7.8810015,10.722788 7.4099901,10.851245 6.981798,10.851245 h -0.04282 v 0 c -0.4710115,0 -0.8992037,-0.128457 -1.2845767,-0.385373 C 4.9264752,10.037681 4.4554637,9.1384771 4.3698254,8.0251772 4.3270061,7.4257082 4.4126446,6.7834197 4.5839214,6.1839506 4.9692944,4.7709163 5.7400405,3.4863397 6.8533402,2.5443168 7.3243517,2.1161245 7.8810015,1.7735707 8.4376515,1.5594746 9.465313,1.1312824 10.450155,1.1741016 11.178082,1.6451131 c 0.770746,0.4281922 1.198938,1.2845766 1.284576,2.3978764 0.04282,0.6422883 0,1.2845767 -0.171276,1.8840458 z"
4
- />
5
- </template>
1
+ <template>
2
+ <path
3
+ d="M 11.82037,0.61745166 C 10.450155,-0.28175202 8.6089283,-0.06765591 6.9389786,0.96000544 5.3118482,-0.06765591 3.4706216,-0.28175202 2.0575873,0.61745166 -0.12619305,1.9876668 -0.42592761,5.5416622 1.4581181,8.5390082 2.8711525,10.765607 5.0121137,12.093004 6.9389786,12.050184 8.8658436,12.093001 11.049624,10.765607 12.41984,8.5390082 14.303885,5.5416622 14.04697,1.9876668 11.82037,0.61745166 Z M 2.4857795,7.9395389 C 2.1004065,7.2972505 1.800672,6.6549621 1.629395,5.9270353 1.4581181,5.3275662 1.3724797,4.6852778 1.415299,4.0429895 1.5009374,2.9725089 1.9719488,2.0733053 2.6998756,1.6451131 3.4278024,1.1741016 4.4126446,1.1312824 5.4403059,1.5594746 5.6115828,1.6022937 5.7828597,1.6879322 5.9113173,1.7735707 5.3546675,2.2874014 4.8408367,2.8868705 4.4126446,3.571978 3.2993447,5.3703854 2.9139717,7.4257082 3.342164,9.0528377 2.9996102,8.7102846 2.7426948,8.3249118 2.4857795,7.9395389 Z M 12.291382,5.9270353 C 12.077286,6.6549621 11.82037,7.2972505 11.434997,7.9395389 11.178082,8.3249118 10.878348,8.7102846 10.578613,9.0528377 10.921166,7.596985 10.664247,5.7985776 9.807867,4.128628 L 9.6794097,4.0001703 c -0.085643,0 -0.1284582,0 -0.1712779,0.04282 l -2.74043,1.7127685 c -0.04282,0.04282 -0.085638,0.085638 -0.085638,0.1284576 -0.04282,0.04282 0,0.1284577 0,0.1712768 l 0.4281923,0.6422885 c 0,0.04282 0.085638,0.085638 0.1284576,0.085638 0.04282,0.04282 0.1284577,0 0.1712769,0 L 9.1655779,5.67012 c 0.042817,0.1712769 0.1284582,0.3425538 0.1712779,0.5138306 0.171276,0.5994691 0.2140957,1.2417576 0.171276,1.8412266 C 9.4224978,9.1384771 8.9943009,10.037681 8.2235554,10.465872 7.8810015,10.722788 7.4099901,10.851245 6.981798,10.851245 h -0.04282 v 0 c -0.4710115,0 -0.8992037,-0.128457 -1.2845767,-0.385373 C 4.9264752,10.037681 4.4554637,9.1384771 4.3698254,8.0251772 4.3270061,7.4257082 4.4126446,6.7834197 4.5839214,6.1839506 4.9692944,4.7709163 5.7400405,3.4863397 6.8533402,2.5443168 7.3243517,2.1161245 7.8810015,1.7735707 8.4376515,1.5594746 9.465313,1.1312824 10.450155,1.1741016 11.178082,1.6451131 c 0.770746,0.4281922 1.198938,1.2845766 1.284576,2.3978764 0.04282,0.6422883 0,1.2845767 -0.171276,1.8840458 z"
4
+ />
5
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <g transform="translate(1 2)" fill-rule="nonzero">
3
- <rect width="14" height="2.4" rx="1.2" />
4
- <rect y="4.8" width="14" height="2.4" rx="1.2" />
5
- <rect y="9.6" width="14" height="2.4" rx="1.2" />
6
- </g>
7
- </template>
1
+ <template>
2
+ <g transform="translate(1 2)" fill-rule="nonzero">
3
+ <rect width="14" height="2.4" rx="1.2" />
4
+ <rect y="4.8" width="14" height="2.4" rx="1.2" />
5
+ <rect y="9.6" width="14" height="2.4" rx="1.2" />
6
+ </g>
7
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <path
3
- fill-rule="evenodd"
4
- clip-rule="evenodd"
5
- d="M13.0035 5.86669L14.9047 7.45989C14.9329 7.48236 14.956 7.5106 14.9724 7.54271C14.9889 7.57482 14.9982 7.61006 14.9999 7.64609C15.0039 7.68266 15.0006 7.71967 14.9903 7.75498C14.98 7.79029 14.9628 7.82322 14.9397 7.85189L14.4007 8.49729C14.3533 8.5499 14.2889 8.5841 14.2187 8.59389H14.1921C14.1259 8.59661 14.0611 8.57466 14.0101 8.53229L8.00134 3.49229L1.99114 8.52949C1.9307 8.57328 1.85707 8.59502 1.78254 8.59109C1.71221 8.5819 1.64757 8.54759 1.60054 8.49449L1.06154 7.84909C1.01577 7.79077 0.994212 7.71708 1.00134 7.64329C1.00361 7.60764 1.01338 7.57287 1.03003 7.54126C1.04668 7.50965 1.06982 7.48192 1.09794 7.45989L7.34194 2.22669C7.53035 2.07978 7.76242 2 8.00134 2C8.24025 2 8.47232 2.07978 8.66074 2.22669L10.7803 4.00749V2.30509C10.7788 2.26811 10.785 2.23122 10.7985 2.19676C10.812 2.1623 10.8325 2.13101 10.8587 2.10489C10.8845 2.07864 10.9156 2.05811 10.9498 2.0446C10.9841 2.0311 11.0208 2.02493 11.0575 2.02649H12.7249C12.7619 2.02499 12.7988 2.03118 12.8333 2.04468C12.8677 2.05817 12.899 2.07867 12.9251 2.10489C12.9511 2.13116 12.9715 2.16247 12.985 2.1969C12.9985 2.23132 13.0048 2.26814 13.0035 2.30509V5.86669ZM3.00894 8.39928L8.00134 4.26089L12.9993 8.39928C13.0059 8.41572 13.0088 8.43341 13.0077 8.45109V14.0399C13.0077 14.1884 12.9487 14.3308 12.8437 14.4359C12.7387 14.5409 12.5963 14.5999 12.4477 14.5999H9.11294V10.8283H6.88974V14.5999H3.56894C3.42042 14.5999 3.27798 14.5409 3.17296 14.4359C3.06794 14.3308 3.00894 14.1884 3.00894 14.0399V8.45109C3.0081 8.44224 3.0081 8.43333 3.00894 8.42449C3.01035 8.41614 3.01035 8.40763 3.00894 8.39928Z"
6
- />
7
- </template>
1
+ <template>
2
+ <path
3
+ fill-rule="evenodd"
4
+ clip-rule="evenodd"
5
+ d="M13.0035 5.86669L14.9047 7.45989C14.9329 7.48236 14.956 7.5106 14.9724 7.54271C14.9889 7.57482 14.9982 7.61006 14.9999 7.64609C15.0039 7.68266 15.0006 7.71967 14.9903 7.75498C14.98 7.79029 14.9628 7.82322 14.9397 7.85189L14.4007 8.49729C14.3533 8.5499 14.2889 8.5841 14.2187 8.59389H14.1921C14.1259 8.59661 14.0611 8.57466 14.0101 8.53229L8.00134 3.49229L1.99114 8.52949C1.9307 8.57328 1.85707 8.59502 1.78254 8.59109C1.71221 8.5819 1.64757 8.54759 1.60054 8.49449L1.06154 7.84909C1.01577 7.79077 0.994212 7.71708 1.00134 7.64329C1.00361 7.60764 1.01338 7.57287 1.03003 7.54126C1.04668 7.50965 1.06982 7.48192 1.09794 7.45989L7.34194 2.22669C7.53035 2.07978 7.76242 2 8.00134 2C8.24025 2 8.47232 2.07978 8.66074 2.22669L10.7803 4.00749V2.30509C10.7788 2.26811 10.785 2.23122 10.7985 2.19676C10.812 2.1623 10.8325 2.13101 10.8587 2.10489C10.8845 2.07864 10.9156 2.05811 10.9498 2.0446C10.9841 2.0311 11.0208 2.02493 11.0575 2.02649H12.7249C12.7619 2.02499 12.7988 2.03118 12.8333 2.04468C12.8677 2.05817 12.899 2.07867 12.9251 2.10489C12.9511 2.13116 12.9715 2.16247 12.985 2.1969C12.9985 2.23132 13.0048 2.26814 13.0035 2.30509V5.86669ZM3.00894 8.39928L8.00134 4.26089L12.9993 8.39928C13.0059 8.41572 13.0088 8.43341 13.0077 8.45109V14.0399C13.0077 14.1884 12.9487 14.3308 12.8437 14.4359C12.7387 14.5409 12.5963 14.5999 12.4477 14.5999H9.11294V10.8283H6.88974V14.5999H3.56894C3.42042 14.5999 3.27798 14.5409 3.17296 14.4359C3.06794 14.3308 3.00894 14.1884 3.00894 14.0399V8.45109C3.0081 8.44224 3.0081 8.43333 3.00894 8.42449C3.01035 8.41614 3.01035 8.40763 3.00894 8.39928Z"
6
+ />
7
+ </template>
@@ -1,22 +1,22 @@
1
- <template>
2
- <g>
3
- <path
4
- fill-rule="evenodd"
5
- clip-rule="evenodd"
6
- d="M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24ZM12 5C11.6515 5 11.3988 5.15683 11.242 5.4705L9.54294 8.92084L5.72666 9.49589C5.37814 9.53074 5.15161 9.71372 5.04705 10.0448C4.94249 10.3759 5.0122 10.6634 5.25616 10.9074L8.02689 13.5997L7.37341 17.416C7.32114 17.7471 7.4344 18.0172 7.71322 18.2263C7.99203 18.4354 8.27956 18.4528 8.5758 18.2786L12 16.5011L15.4242 18.2786C15.7204 18.4354 16.008 18.4093 16.2868 18.2001C16.5656 18.0085 16.6789 17.7471 16.6266 17.416L15.9731 13.5997L18.7438 10.9074C18.9878 10.6634 19.0575 10.3759 18.9529 10.0448C18.8484 9.71372 18.6219 9.53074 18.2733 9.49589L14.4571 8.92084L12.758 5.4705C12.6012 5.15683 12.3485 5 12 5Z"
7
- fill="#595959"
8
- />
9
- <path
10
- fill-rule="evenodd"
11
- clip-rule="evenodd"
12
- d="M47 24C53.6274 24 59 18.6274 59 12C59 5.37258 53.6274 0 47 0C40.3726 0 35 5.37258 35 12C35 18.6274 40.3726 24 47 24ZM47 5C46.6515 5 46.3988 5.15683 46.242 5.4705L44.5429 8.92084L40.7267 9.49589C40.3781 9.53074 40.1516 9.71372 40.047 10.0448C39.9425 10.3759 40.0122 10.6634 40.2562 10.9074L43.0269 13.5997L42.3734 17.416C42.3211 17.7471 42.4344 18.0172 42.7132 18.2263C42.992 18.4354 43.2796 18.4528 43.5758 18.2786L47 16.5011L50.4242 18.2786C50.7204 18.4354 51.008 18.4093 51.2868 18.2001C51.5656 18.0085 51.6789 17.7471 51.6266 17.416L50.9731 13.5997L53.7438 10.9074C53.9878 10.6634 54.0575 10.3759 53.9529 10.0448C53.8484 9.71372 53.6219 9.53074 53.2733 9.49589L49.4571 8.92084L47.758 5.4705C47.6012 5.15683 47.3485 5 47 5Z"
13
- fill="#595959"
14
- />
15
- <path
16
- fill-rule="evenodd"
17
- clip-rule="evenodd"
18
- d="M82 24C88.6274 24 94 18.6274 94 12C94 5.37258 88.6274 0 82 0C75.3726 0 70 5.37258 70 12C70 18.6274 75.3726 24 82 24ZM82 5C81.6515 5 81.3988 5.15683 81.242 5.4705L79.5429 8.92084L75.7267 9.49589C75.3781 9.53074 75.1516 9.71372 75.047 10.0448C74.9425 10.3759 75.0122 10.6634 75.2562 10.9074L78.0269 13.5997L77.3734 17.416C77.3211 17.7471 77.4344 18.0172 77.7132 18.2263C77.992 18.4354 78.2796 18.4528 78.5758 18.2786L82 16.5011L85.4242 18.2786C85.7204 18.4354 86.008 18.4093 86.2868 18.2001C86.5656 18.0085 86.6789 17.7471 86.6266 17.416L85.9731 13.5997L88.7438 10.9074C88.9878 10.6634 89.0575 10.3759 88.9529 10.0448C88.8484 9.71372 88.6219 9.53074 88.2733 9.49589L84.4571 8.92084L82.758 5.4705C82.6012 5.15683 82.3485 5 82 5Z"
19
- fill="#595959"
20
- />
21
- </g>
22
- </template>
1
+ <template>
2
+ <g>
3
+ <path
4
+ fill-rule="evenodd"
5
+ clip-rule="evenodd"
6
+ d="M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24ZM12 5C11.6515 5 11.3988 5.15683 11.242 5.4705L9.54294 8.92084L5.72666 9.49589C5.37814 9.53074 5.15161 9.71372 5.04705 10.0448C4.94249 10.3759 5.0122 10.6634 5.25616 10.9074L8.02689 13.5997L7.37341 17.416C7.32114 17.7471 7.4344 18.0172 7.71322 18.2263C7.99203 18.4354 8.27956 18.4528 8.5758 18.2786L12 16.5011L15.4242 18.2786C15.7204 18.4354 16.008 18.4093 16.2868 18.2001C16.5656 18.0085 16.6789 17.7471 16.6266 17.416L15.9731 13.5997L18.7438 10.9074C18.9878 10.6634 19.0575 10.3759 18.9529 10.0448C18.8484 9.71372 18.6219 9.53074 18.2733 9.49589L14.4571 8.92084L12.758 5.4705C12.6012 5.15683 12.3485 5 12 5Z"
7
+ fill="#595959"
8
+ />
9
+ <path
10
+ fill-rule="evenodd"
11
+ clip-rule="evenodd"
12
+ d="M47 24C53.6274 24 59 18.6274 59 12C59 5.37258 53.6274 0 47 0C40.3726 0 35 5.37258 35 12C35 18.6274 40.3726 24 47 24ZM47 5C46.6515 5 46.3988 5.15683 46.242 5.4705L44.5429 8.92084L40.7267 9.49589C40.3781 9.53074 40.1516 9.71372 40.047 10.0448C39.9425 10.3759 40.0122 10.6634 40.2562 10.9074L43.0269 13.5997L42.3734 17.416C42.3211 17.7471 42.4344 18.0172 42.7132 18.2263C42.992 18.4354 43.2796 18.4528 43.5758 18.2786L47 16.5011L50.4242 18.2786C50.7204 18.4354 51.008 18.4093 51.2868 18.2001C51.5656 18.0085 51.6789 17.7471 51.6266 17.416L50.9731 13.5997L53.7438 10.9074C53.9878 10.6634 54.0575 10.3759 53.9529 10.0448C53.8484 9.71372 53.6219 9.53074 53.2733 9.49589L49.4571 8.92084L47.758 5.4705C47.6012 5.15683 47.3485 5 47 5Z"
13
+ fill="#595959"
14
+ />
15
+ <path
16
+ fill-rule="evenodd"
17
+ clip-rule="evenodd"
18
+ d="M82 24C88.6274 24 94 18.6274 94 12C94 5.37258 88.6274 0 82 0C75.3726 0 70 5.37258 70 12C70 18.6274 75.3726 24 82 24ZM82 5C81.6515 5 81.3988 5.15683 81.242 5.4705L79.5429 8.92084L75.7267 9.49589C75.3781 9.53074 75.1516 9.71372 75.047 10.0448C74.9425 10.3759 75.0122 10.6634 75.2562 10.9074L78.0269 13.5997L77.3734 17.416C77.3211 17.7471 77.4344 18.0172 77.7132 18.2263C77.992 18.4354 78.2796 18.4528 78.5758 18.2786L82 16.5011L85.4242 18.2786C85.7204 18.4354 86.008 18.4093 86.2868 18.2001C86.5656 18.0085 86.6789 17.7471 86.6266 17.416L85.9731 13.5997L88.7438 10.9074C88.9878 10.6634 89.0575 10.3759 88.9529 10.0448C88.8484 9.71372 88.6219 9.53074 88.2733 9.49589L84.4571 8.92084L82.758 5.4705C82.6012 5.15683 82.3485 5 82 5Z"
19
+ fill="#595959"
20
+ />
21
+ </g>
22
+ </template>
@@ -1,16 +1,16 @@
1
- <template>
2
- <g>
3
- <path
4
- d="M10.863 2.20575C11.0982 1.73525 11.4772 1.5 12 1.5C12.5228 1.5 12.9018 1.73525 13.137 2.20575L15.6856 7.38125L21.41 8.24384C21.9328 8.29612 22.2726 8.57058 22.4294 9.06721C22.5863 9.56385 22.4817 9.99515 22.1158 10.3611L17.9597 14.3996L18.9399 20.124C19.0183 20.6206 18.8484 21.0127 18.4302 21.3002C18.0119 21.6139 17.5807 21.6531 17.1363 21.4178L12 18.7517L6.8637 21.4178C6.41934 21.6792 5.98805 21.6531 5.56983 21.3394C5.15161 21.0258 4.9817 20.6206 5.06012 20.124L6.04033 14.3996L1.88424 10.3611C1.5183 9.99515 1.41374 9.56385 1.57058 9.06721C1.72741 8.57058 2.06721 8.29612 2.58999 8.24384L8.31441 7.38125L10.863 2.20575Z"
5
- fill="#595959"
6
- />
7
- <path
8
- d="M45.863 2.20575C46.0982 1.73525 46.4772 1.5 47 1.5C47.5228 1.5 47.9018 1.73525 48.137 2.20575L50.6856 7.38125L56.41 8.24384C56.9328 8.29612 57.2726 8.57058 57.4294 9.06721C57.5863 9.56385 57.4817 9.99515 57.1158 10.3611L52.9597 14.3996L53.9399 20.124C54.0183 20.6206 53.8484 21.0127 53.4302 21.3002C53.0119 21.6139 52.5807 21.6531 52.1363 21.4178L47 18.7517L41.8637 21.4178C41.4193 21.6792 40.9881 21.6531 40.5698 21.3394C40.1516 21.0258 39.9817 20.6206 40.0601 20.124L41.0403 14.3996L36.8842 10.3611C36.5183 9.99515 36.4137 9.56385 36.5706 9.06721C36.7274 8.57058 37.0672 8.29612 37.59 8.24384L43.3144 7.38125L45.863 2.20575Z"
9
- fill="#595959"
10
- />
11
- <path
12
- d="M80.863 2.20575C81.0982 1.73525 81.4772 1.5 82 1.5C82.5228 1.5 82.9018 1.73525 83.137 2.20575L85.6856 7.38125L91.41 8.24384C91.9328 8.29612 92.2726 8.57058 92.4294 9.06721C92.5863 9.56385 92.4817 9.99515 92.1158 10.3611L87.9597 14.3996L88.9399 20.124C89.0183 20.6206 88.8484 21.0127 88.4302 21.3002C88.0119 21.6139 87.5807 21.6531 87.1363 21.4178L82 18.7517L76.8637 21.4178C76.4193 21.6792 75.9881 21.6531 75.5698 21.3394C75.1516 21.0258 74.9817 20.6206 75.0601 20.124L76.0403 14.3996L71.8842 10.3611C71.5183 9.99515 71.4137 9.56385 71.5706 9.06721C71.7274 8.57058 72.0672 8.29612 72.59 8.24384L78.3144 7.38125L80.863 2.20575Z"
13
- fill="#595959"
14
- />
15
- </g>
16
- </template>
1
+ <template>
2
+ <g>
3
+ <path
4
+ d="M10.863 2.20575C11.0982 1.73525 11.4772 1.5 12 1.5C12.5228 1.5 12.9018 1.73525 13.137 2.20575L15.6856 7.38125L21.41 8.24384C21.9328 8.29612 22.2726 8.57058 22.4294 9.06721C22.5863 9.56385 22.4817 9.99515 22.1158 10.3611L17.9597 14.3996L18.9399 20.124C19.0183 20.6206 18.8484 21.0127 18.4302 21.3002C18.0119 21.6139 17.5807 21.6531 17.1363 21.4178L12 18.7517L6.8637 21.4178C6.41934 21.6792 5.98805 21.6531 5.56983 21.3394C5.15161 21.0258 4.9817 20.6206 5.06012 20.124L6.04033 14.3996L1.88424 10.3611C1.5183 9.99515 1.41374 9.56385 1.57058 9.06721C1.72741 8.57058 2.06721 8.29612 2.58999 8.24384L8.31441 7.38125L10.863 2.20575Z"
5
+ fill="#595959"
6
+ />
7
+ <path
8
+ d="M45.863 2.20575C46.0982 1.73525 46.4772 1.5 47 1.5C47.5228 1.5 47.9018 1.73525 48.137 2.20575L50.6856 7.38125L56.41 8.24384C56.9328 8.29612 57.2726 8.57058 57.4294 9.06721C57.5863 9.56385 57.4817 9.99515 57.1158 10.3611L52.9597 14.3996L53.9399 20.124C54.0183 20.6206 53.8484 21.0127 53.4302 21.3002C53.0119 21.6139 52.5807 21.6531 52.1363 21.4178L47 18.7517L41.8637 21.4178C41.4193 21.6792 40.9881 21.6531 40.5698 21.3394C40.1516 21.0258 39.9817 20.6206 40.0601 20.124L41.0403 14.3996L36.8842 10.3611C36.5183 9.99515 36.4137 9.56385 36.5706 9.06721C36.7274 8.57058 37.0672 8.29612 37.59 8.24384L43.3144 7.38125L45.863 2.20575Z"
9
+ fill="#595959"
10
+ />
11
+ <path
12
+ d="M80.863 2.20575C81.0982 1.73525 81.4772 1.5 82 1.5C82.5228 1.5 82.9018 1.73525 83.137 2.20575L85.6856 7.38125L91.41 8.24384C91.9328 8.29612 92.2726 8.57058 92.4294 9.06721C92.5863 9.56385 92.4817 9.99515 92.1158 10.3611L87.9597 14.3996L88.9399 20.124C89.0183 20.6206 88.8484 21.0127 88.4302 21.3002C88.0119 21.6139 87.5807 21.6531 87.1363 21.4178L82 18.7517L76.8637 21.4178C76.4193 21.6792 75.9881 21.6531 75.5698 21.3394C75.1516 21.0258 74.9817 20.6206 75.0601 20.124L76.0403 14.3996L71.8842 10.3611C71.5183 9.99515 71.4137 9.56385 71.5706 9.06721C71.7274 8.57058 72.0672 8.29612 72.59 8.24384L78.3144 7.38125L80.863 2.20575Z"
13
+ fill="#595959"
14
+ />
15
+ </g>
16
+ </template>
@@ -1,22 +1,22 @@
1
- <template>
2
- <g>
3
- <path
4
- fill-rule="evenodd"
5
- clip-rule="evenodd"
6
- d="M4 0C1.79086 0 0 1.79086 0 4V20C0 22.2091 1.79086 24 4 24H20C22.2091 24 24 22.2091 24 20V4C24 1.79086 22.2091 0 20 0H4ZM12 5C11.6515 5 11.3988 5.15683 11.242 5.4705L9.54294 8.92084L5.72666 9.49589C5.37814 9.53074 5.15161 9.71372 5.04705 10.0448C4.94249 10.3759 5.0122 10.6634 5.25616 10.9074L8.02689 13.5997L7.37341 17.416C7.32114 17.7471 7.4344 18.0172 7.71322 18.2263C7.99203 18.4354 8.27956 18.4528 8.5758 18.2786L12 16.5011L15.4242 18.2786C15.7204 18.4354 16.008 18.4093 16.2868 18.2001C16.5656 18.0085 16.6789 17.7471 16.6266 17.416L15.9731 13.5997L18.7438 10.9074C18.9878 10.6634 19.0575 10.3759 18.9529 10.0448C18.8484 9.71372 18.6219 9.53074 18.2733 9.49589L14.4571 8.92084L12.758 5.4705C12.6012 5.15683 12.3485 5 12 5Z"
7
- fill="#595959"
8
- />
9
- <path
10
- fill-rule="evenodd"
11
- clip-rule="evenodd"
12
- d="M39 0C36.7909 0 35 1.79086 35 4V20C35 22.2091 36.7909 24 39 24H55C57.2091 24 59 22.2091 59 20V4C59 1.79086 57.2091 0 55 0H39ZM47 5C46.6515 5 46.3988 5.15683 46.242 5.4705L44.5429 8.92084L40.7267 9.49589C40.3781 9.53074 40.1516 9.71372 40.047 10.0448C39.9425 10.3759 40.0122 10.6634 40.2562 10.9074L43.0269 13.5997L42.3734 17.416C42.3211 17.7471 42.4344 18.0172 42.7132 18.2263C42.992 18.4354 43.2796 18.4528 43.5758 18.2786L47 16.5011L50.4242 18.2786C50.7204 18.4354 51.008 18.4093 51.2868 18.2001C51.5656 18.0085 51.6789 17.7471 51.6266 17.416L50.9731 13.5997L53.7438 10.9074C53.9878 10.6634 54.0575 10.3759 53.9529 10.0448C53.8484 9.71372 53.6219 9.53074 53.2733 9.49589L49.4571 8.92084L47.758 5.4705C47.6012 5.15683 47.3485 5 47 5Z"
13
- fill="#595959"
14
- />
15
- <path
16
- fill-rule="evenodd"
17
- clip-rule="evenodd"
18
- d="M74 0C71.7909 0 70 1.79086 70 4V20C70 22.2091 71.7909 24 74 24H90C92.2091 24 94 22.2091 94 20V4C94 1.79086 92.2091 0 90 0H74ZM82 5C81.6515 5 81.3988 5.15683 81.242 5.4705L79.5429 8.92084L75.7267 9.49589C75.3781 9.53074 75.1516 9.71372 75.047 10.0448C74.9425 10.3759 75.0122 10.6634 75.2562 10.9074L78.0269 13.5997L77.3734 17.416C77.3211 17.7471 77.4344 18.0172 77.7132 18.2263C77.992 18.4354 78.2796 18.4528 78.5758 18.2786L82 16.5011L85.4242 18.2786C85.7204 18.4354 86.008 18.4093 86.2868 18.2001C86.5656 18.0085 86.6789 17.7471 86.6266 17.416L85.9731 13.5997L88.7438 10.9074C88.9878 10.6634 89.0575 10.3759 88.9529 10.0448C88.8484 9.71372 88.6219 9.53074 88.2733 9.49589L84.4571 8.92084L82.758 5.4705C82.6012 5.15683 82.3485 5 82 5Z"
19
- fill="#595959"
20
- />
21
- </g>
22
- </template>
1
+ <template>
2
+ <g>
3
+ <path
4
+ fill-rule="evenodd"
5
+ clip-rule="evenodd"
6
+ d="M4 0C1.79086 0 0 1.79086 0 4V20C0 22.2091 1.79086 24 4 24H20C22.2091 24 24 22.2091 24 20V4C24 1.79086 22.2091 0 20 0H4ZM12 5C11.6515 5 11.3988 5.15683 11.242 5.4705L9.54294 8.92084L5.72666 9.49589C5.37814 9.53074 5.15161 9.71372 5.04705 10.0448C4.94249 10.3759 5.0122 10.6634 5.25616 10.9074L8.02689 13.5997L7.37341 17.416C7.32114 17.7471 7.4344 18.0172 7.71322 18.2263C7.99203 18.4354 8.27956 18.4528 8.5758 18.2786L12 16.5011L15.4242 18.2786C15.7204 18.4354 16.008 18.4093 16.2868 18.2001C16.5656 18.0085 16.6789 17.7471 16.6266 17.416L15.9731 13.5997L18.7438 10.9074C18.9878 10.6634 19.0575 10.3759 18.9529 10.0448C18.8484 9.71372 18.6219 9.53074 18.2733 9.49589L14.4571 8.92084L12.758 5.4705C12.6012 5.15683 12.3485 5 12 5Z"
7
+ fill="#595959"
8
+ />
9
+ <path
10
+ fill-rule="evenodd"
11
+ clip-rule="evenodd"
12
+ d="M39 0C36.7909 0 35 1.79086 35 4V20C35 22.2091 36.7909 24 39 24H55C57.2091 24 59 22.2091 59 20V4C59 1.79086 57.2091 0 55 0H39ZM47 5C46.6515 5 46.3988 5.15683 46.242 5.4705L44.5429 8.92084L40.7267 9.49589C40.3781 9.53074 40.1516 9.71372 40.047 10.0448C39.9425 10.3759 40.0122 10.6634 40.2562 10.9074L43.0269 13.5997L42.3734 17.416C42.3211 17.7471 42.4344 18.0172 42.7132 18.2263C42.992 18.4354 43.2796 18.4528 43.5758 18.2786L47 16.5011L50.4242 18.2786C50.7204 18.4354 51.008 18.4093 51.2868 18.2001C51.5656 18.0085 51.6789 17.7471 51.6266 17.416L50.9731 13.5997L53.7438 10.9074C53.9878 10.6634 54.0575 10.3759 53.9529 10.0448C53.8484 9.71372 53.6219 9.53074 53.2733 9.49589L49.4571 8.92084L47.758 5.4705C47.6012 5.15683 47.3485 5 47 5Z"
13
+ fill="#595959"
14
+ />
15
+ <path
16
+ fill-rule="evenodd"
17
+ clip-rule="evenodd"
18
+ d="M74 0C71.7909 0 70 1.79086 70 4V20C70 22.2091 71.7909 24 74 24H90C92.2091 24 94 22.2091 94 20V4C94 1.79086 92.2091 0 90 0H74ZM82 5C81.6515 5 81.3988 5.15683 81.242 5.4705L79.5429 8.92084L75.7267 9.49589C75.3781 9.53074 75.1516 9.71372 75.047 10.0448C74.9425 10.3759 75.0122 10.6634 75.2562 10.9074L78.0269 13.5997L77.3734 17.416C77.3211 17.7471 77.4344 18.0172 77.7132 18.2263C77.992 18.4354 78.2796 18.4528 78.5758 18.2786L82 16.5011L85.4242 18.2786C85.7204 18.4354 86.008 18.4093 86.2868 18.2001C86.5656 18.0085 86.6789 17.7471 86.6266 17.416L85.9731 13.5997L88.7438 10.9074C88.9878 10.6634 89.0575 10.3759 88.9529 10.0448C88.8484 9.71372 88.6219 9.53074 88.2733 9.49589L84.4571 8.92084L82.758 5.4705C82.6012 5.15683 82.3485 5 82 5Z"
19
+ fill="#595959"
20
+ />
21
+ </g>
22
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <svg viewBox="0 0 94 24" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M0 0H15C17.2091 0 19 1.79086 19 4V20C19 22.2091 17.2091 24 15 24H0V0Z" />
4
- <rect x="27" width="40" height="24" rx="4" />
5
- <path d="M75 4C75 1.79086 76.7909 0 79 0H94V24H79C76.7909 24 75 22.2091 75 20V4Z" />
6
- </svg>
7
- </template>
1
+ <template>
2
+ <svg viewBox="0 0 94 24" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M0 0H15C17.2091 0 19 1.79086 19 4V20C19 22.2091 17.2091 24 15 24H0V0Z" />
4
+ <rect x="27" width="40" height="24" rx="4" />
5
+ <path d="M75 4C75 1.79086 76.7909 0 79 0H94V24H79C76.7909 24 75 22.2091 75 20V4Z" />
6
+ </svg>
7
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <svg viewBox="0 0 94 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect x="4" width="24" height="24" rx="4" />
4
- <rect x="35" width="24" height="24" rx="4" />
5
- <rect x="66" width="24" height="24" rx="4" />
6
- </svg>
7
- </template>
1
+ <template>
2
+ <svg viewBox="0 0 94 24" xmlns="http://www.w3.org/2000/svg">
3
+ <rect x="4" width="24" height="24" rx="4" />
4
+ <rect x="35" width="24" height="24" rx="4" />
5
+ <rect x="66" width="24" height="24" rx="4" />
6
+ </svg>
7
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <svg viewBox="0 0 94 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect x="4" width="24" height="24" rx="4" />
4
- <rect x="32" width="58" height="24" rx="4" />
5
- </svg>
6
- </template>
1
+ <template>
2
+ <svg viewBox="0 0 94 24" xmlns="http://www.w3.org/2000/svg">
3
+ <rect x="4" width="24" height="24" rx="4" />
4
+ <rect x="32" width="58" height="24" rx="4" />
5
+ </svg>
6
+ </template>
@@ -1,5 +1,5 @@
1
- <template>
2
- <path
3
- d="M12.6667 11.9286V12.3214C12.6667 12.6488 12.5532 12.9271 12.3264 13.1563C12.0995 13.3854 11.8241 13.5 11.5 13.5H2.16667C1.84259 13.5 1.56713 13.3854 1.34028 13.1563C1.11343 12.9271 1 12.6488 1 12.3214V6.03571C1 5.70833 1.11343 5.43006 1.34028 5.20089C1.56713 4.97173 1.84259 4.85714 2.16667 4.85714H2.55556V9.96429C2.55556 10.5045 2.7419 10.971 3.11458 11.3638C3.50347 11.7403 3.96528 11.9286 4.5 11.9286H12.6667ZM15 9.96429C15 10.2917 14.8866 10.5699 14.6597 10.7991C14.4329 11.0283 14.1574 11.1429 13.8333 11.1429H4.5C4.17593 11.1429 3.90046 11.0283 3.67361 10.7991C3.44676 10.5699 3.33333 10.2917 3.33333 9.96429V3.67857C3.33333 3.35119 3.44676 3.07292 3.67361 2.84375C3.90046 2.61458 4.17593 2.5 4.5 2.5H13.8333C14.1574 2.5 14.4329 2.61458 14.6597 2.84375C14.8866 3.07292 15 3.35119 15 3.67857V9.96429ZM6.88194 5.69196C7.1088 5.4628 7.22222 5.18452 7.22222 4.85714C7.22222 4.52976 7.1088 4.25149 6.88194 4.02232C6.65509 3.79315 6.37963 3.67857 6.05556 3.67857C5.73148 3.67857 5.45602 3.79315 5.22917 4.02232C5.00231 4.25149 4.88889 4.52976 4.88889 4.85714C4.88889 5.18452 5.00231 5.4628 5.22917 5.69196C5.45602 5.92113 5.73148 6.03571 6.05556 6.03571C6.37963 6.03571 6.65509 5.92113 6.88194 5.69196ZM4.88889 8.39286V9.57143H13.4444V6.82143L11.3056 4.66071C11.1759 4.52976 11.0463 4.52976 10.9167 4.66071L7.61111 8L6.63889 7.01786C6.50926 6.8869 6.37963 6.8869 6.25 7.01786L4.88889 8.39286Z"
4
- />
5
- </template>
1
+ <template>
2
+ <path
3
+ d="M12.6667 11.9286V12.3214C12.6667 12.6488 12.5532 12.9271 12.3264 13.1563C12.0995 13.3854 11.8241 13.5 11.5 13.5H2.16667C1.84259 13.5 1.56713 13.3854 1.34028 13.1563C1.11343 12.9271 1 12.6488 1 12.3214V6.03571C1 5.70833 1.11343 5.43006 1.34028 5.20089C1.56713 4.97173 1.84259 4.85714 2.16667 4.85714H2.55556V9.96429C2.55556 10.5045 2.7419 10.971 3.11458 11.3638C3.50347 11.7403 3.96528 11.9286 4.5 11.9286H12.6667ZM15 9.96429C15 10.2917 14.8866 10.5699 14.6597 10.7991C14.4329 11.0283 14.1574 11.1429 13.8333 11.1429H4.5C4.17593 11.1429 3.90046 11.0283 3.67361 10.7991C3.44676 10.5699 3.33333 10.2917 3.33333 9.96429V3.67857C3.33333 3.35119 3.44676 3.07292 3.67361 2.84375C3.90046 2.61458 4.17593 2.5 4.5 2.5H13.8333C14.1574 2.5 14.4329 2.61458 14.6597 2.84375C14.8866 3.07292 15 3.35119 15 3.67857V9.96429ZM6.88194 5.69196C7.1088 5.4628 7.22222 5.18452 7.22222 4.85714C7.22222 4.52976 7.1088 4.25149 6.88194 4.02232C6.65509 3.79315 6.37963 3.67857 6.05556 3.67857C5.73148 3.67857 5.45602 3.79315 5.22917 4.02232C5.00231 4.25149 4.88889 4.52976 4.88889 4.85714C4.88889 5.18452 5.00231 5.4628 5.22917 5.69196C5.45602 5.92113 5.73148 6.03571 6.05556 6.03571C6.37963 6.03571 6.65509 5.92113 6.88194 5.69196ZM4.88889 8.39286V9.57143H13.4444V6.82143L11.3056 4.66071C11.1759 4.52976 11.0463 4.52976 10.9167 4.66071L7.61111 8L6.63889 7.01786C6.50926 6.8869 6.37963 6.8869 6.25 7.01786L4.88889 8.39286Z"
4
+ />
5
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <path
3
- fill-rule="evenodd"
4
- clip-rule="evenodd"
5
- d="M12.6667 2C13.403 2 14 2.597 14 3.3333v9.3334C14 13.403 13.403 14 12.6667 14H3.3333C2.597 14 2 13.403 2 12.6667V3.3333C2 2.597 2.597 2 3.3333 2h9.3334Zm0 1.3333H3.3333v7.696l1.4957-1.678a.3334.3334 0 0 1 .4381-.0528l.048.0404 1.8302 1.8544 3.2544-3.423a.3334.3334 0 0 1 .433-.0433l.047.04 1.787 1.8283v-6.262ZM6 4.3333c.9205 0 1.6667.7462 1.6667 1.6667 0 .9205-.7462 1.6667-1.6667 1.6667-.9205 0-1.6667-.7462-1.6667-1.6667 0-.9205.7462-1.6667 1.6667-1.6667Z"
6
- />
7
- </template>
1
+ <template>
2
+ <path
3
+ fill-rule="evenodd"
4
+ clip-rule="evenodd"
5
+ d="M12.6667 2C13.403 2 14 2.597 14 3.3333v9.3334C14 13.403 13.403 14 12.6667 14H3.3333C2.597 14 2 13.403 2 12.6667V3.3333C2 2.597 2.597 2 3.3333 2h9.3334Zm0 1.3333H3.3333v7.696l1.4957-1.678a.3334.3334 0 0 1 .4381-.0528l.048.0404 1.8302 1.8544 3.2544-3.423a.3334.3334 0 0 1 .433-.0433l.047.04 1.787 1.8283v-6.262ZM6 4.3333c.9205 0 1.6667.7462 1.6667 1.6667 0 .9205-.7462 1.6667-1.6667 1.6667-.9205 0-1.6667-.7462-1.6667-1.6667 0-.9205.7462-1.6667 1.6667-1.6667Z"
6
+ />
7
+ </template>
@@ -1,9 +1,9 @@
1
- <template>
2
- <g transform="translate(2 2)" fill-rule="nonzero">
3
- <path
4
- d="M11.25 0H.75C.3 0 0 .3 0 .75v10.5c0 .45.3.75.75.75h10.5c.45 0 .75-.3.75-.75V.75c0-.45-.3-.75-.75-.75zm-.75 10.5h-9v-9h9v9z"
5
- />
6
- <path d="M5.25 5.25h1.5V9h-1.5z" />
7
- <circle cx="6" cy="3.75" r="1" />
8
- </g>
9
- </template>
1
+ <template>
2
+ <g transform="translate(2 2)" fill-rule="nonzero">
3
+ <path
4
+ d="M11.25 0H.75C.3 0 0 .3 0 .75v10.5c0 .45.3.75.75.75h10.5c.45 0 .75-.3.75-.75V.75c0-.45-.3-.75-.75-.75zm-.75 10.5h-9v-9h9v9z"
5
+ />
6
+ <path d="M5.25 5.25h1.5V9h-1.5z" />
7
+ <circle cx="6" cy="3.75" r="1" />
8
+ </g>
9
+ </template>
@@ -1,8 +1,8 @@
1
- <template>
2
- <g fill-rule="nonzero">
3
- <path
4
- d="M13.25 5H11V2.75c0-.45-.3-.75-.75-.75h-4.5C5.3 2 5 2.3 5 2.75V5H2.75C2.3 5 2 5.3 2 5.75v7.5c0 .45.3.75.75.75h10.5c.45 0 .75-.3.75-.75v-7.5c0-.45-.3-.75-.75-.75zM6.5 3.5h3V5h-3V3.5zm6 9h-9v-6h9v6z"
5
- />
6
- <path d="M5.75 7.25h4.5V9.5h-4.5z" />
7
- </g>
8
- </template>
1
+ <template>
2
+ <g fill-rule="nonzero">
3
+ <path
4
+ d="M13.25 5H11V2.75c0-.45-.3-.75-.75-.75h-4.5C5.3 2 5 2.3 5 2.75V5H2.75C2.3 5 2 5.3 2 5.75v7.5c0 .45.3.75.75.75h10.5c.45 0 .75-.3.75-.75v-7.5c0-.45-.3-.75-.75-.75zM6.5 3.5h3V5h-3V3.5zm6 9h-9v-6h9v6z"
5
+ />
6
+ <path d="M5.75 7.25h4.5V9.5h-4.5z" />
7
+ </g>
8
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <path
3
- d="M2.132 9.613a.706.706 0 0 1 1.006-.18L8.5 13.341l5.361-3.908a.707.707 0 0 1 1.006.18.762.762 0 0 1-.173 1.04v-.001l-5.777 4.212a.715.715 0 0 1-.834 0l-5.778-4.212a.762.762 0 0 1-.173-1.039zm5.951-7.477a.708.708 0 0 1 .834 0l5.777 4.21c.192.14.306.369.306.61a.753.753 0 0 1-.306.61l-5.777 4.212a.708.708 0 0 1-.834 0L2.306 7.566A.753.753 0 0 1 2 6.956c0-.241.114-.47.306-.61z"
4
- fill-rule="evenodd"
5
- />
6
- </template>
1
+ <template>
2
+ <path
3
+ d="M2.132 9.613a.706.706 0 0 1 1.006-.18L8.5 13.341l5.361-3.908a.707.707 0 0 1 1.006.18.762.762 0 0 1-.173 1.04v-.001l-5.777 4.212a.715.715 0 0 1-.834 0l-5.778-4.212a.762.762 0 0 1-.173-1.039zm5.951-7.477a.708.708 0 0 1 .834 0l5.777 4.21c.192.14.306.369.306.61a.753.753 0 0 1-.306.61l-5.777 4.212a.708.708 0 0 1-.834 0L2.306 7.566A.753.753 0 0 1 2 6.956c0-.241.114-.47.306-.61z"
4
+ fill-rule="evenodd"
5
+ />
6
+ </template>