@designcrowd/fe-shared-lib 1.4.8 → 1.4.9

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 (632) 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 +1074 -949
  15. package/{public → dist}/css/tailwind-brandPage.css +918 -818
  16. package/{public → dist}/css/tailwind-crazyDomains.css +1074 -949
  17. package/{public → dist}/css/tailwind-designCom.css +1074 -949
  18. package/{public → dist}/css/tailwind-designCrowd.css +1074 -949
  19. package/index.cjs +16 -16
  20. package/index.js +57 -57
  21. package/nodemon.translation.json +6 -6
  22. package/package.json +115 -115
  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 +340 -340
  54. package/src/atoms/components/Checkbox/Checkbox.vue +84 -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 +396 -396
  71. package/src/atoms/components/Icon/Icon.vue +838 -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/badge.vue +7 -7
  86. package/src/atoms/components/Icon/icons/banner-centered.vue +6 -6
  87. package/src/atoms/components/Icon/icons/banner-left.vue +6 -6
  88. package/src/atoms/components/Icon/icons/banner.vue +7 -7
  89. package/src/atoms/components/Icon/icons/bc-mast.vue +7 -7
  90. package/src/atoms/components/Icon/icons/briefcase.vue +7 -7
  91. package/src/atoms/components/Icon/icons/brush.vue +6 -6
  92. package/src/atoms/components/Icon/icons/business-card-filled.vue +5 -5
  93. package/src/atoms/components/Icon/icons/business.vue +6 -6
  94. package/src/atoms/components/Icon/icons/calendar.vue +5 -5
  95. package/src/atoms/components/Icon/icons/callout-error.vue +6 -6
  96. package/src/atoms/components/Icon/icons/callout-info.vue +6 -6
  97. package/src/atoms/components/Icon/icons/callout-success.vue +8 -8
  98. package/src/atoms/components/Icon/icons/callout-warning.vue +6 -6
  99. package/src/atoms/components/Icon/icons/cap.vue +22 -22
  100. package/src/atoms/components/Icon/icons/card.vue +9 -9
  101. package/src/atoms/components/Icon/icons/cart-empty.vue +9 -9
  102. package/src/atoms/components/Icon/icons/check-thin.vue +7 -7
  103. package/src/atoms/components/Icon/icons/check.vue +3 -3
  104. package/src/atoms/components/Icon/icons/chevron-down.vue +7 -7
  105. package/src/atoms/components/Icon/icons/chevron-left.vue +7 -7
  106. package/src/atoms/components/Icon/icons/chevron-right-wide.vue +3 -3
  107. package/src/atoms/components/Icon/icons/chevron-right.vue +3 -3
  108. package/src/atoms/components/Icon/icons/chevron-up.vue +7 -7
  109. package/src/atoms/components/Icon/icons/clipboard-check.vue +6 -6
  110. package/src/atoms/components/Icon/icons/close.vue +6 -6
  111. package/src/atoms/components/Icon/icons/community.vue +5 -5
  112. package/src/atoms/components/Icon/icons/contact-message.vue +10 -10
  113. package/src/atoms/components/Icon/icons/content.vue +7 -7
  114. package/src/atoms/components/Icon/icons/copy.vue +10 -10
  115. package/src/atoms/components/Icon/icons/crazy-domains/filter.vue +6 -6
  116. package/src/atoms/components/Icon/icons/crazy-domains/globe.vue +6 -6
  117. package/src/atoms/components/Icon/icons/crazy-domains/home.vue +6 -6
  118. package/src/atoms/components/Icon/icons/crazy-domains/social-facebook.vue +6 -6
  119. package/src/atoms/components/Icon/icons/crazy-domains/social-google.vue +6 -6
  120. package/src/atoms/components/Icon/icons/crazy-domains/social-instagram.vue +6 -6
  121. package/src/atoms/components/Icon/icons/crazy-domains/social-twitter.vue +6 -6
  122. package/src/atoms/components/Icon/icons/crazy-domains/social-youtube.vue +6 -6
  123. package/src/atoms/components/Icon/icons/crop.vue +6 -6
  124. package/src/atoms/components/Icon/icons/delete.vue +8 -8
  125. package/src/atoms/components/Icon/icons/designs.vue +6 -6
  126. package/src/atoms/components/Icon/icons/desktop.vue +7 -7
  127. package/src/atoms/components/Icon/icons/donate.vue +6 -6
  128. package/src/atoms/components/Icon/icons/download.vue +5 -5
  129. package/src/atoms/components/Icon/icons/duplicate.vue +6 -6
  130. package/src/atoms/components/Icon/icons/edit-line.vue +10 -10
  131. package/src/atoms/components/Icon/icons/edit.vue +6 -6
  132. package/src/atoms/components/Icon/icons/ellipsis.vue +6 -6
  133. package/src/atoms/components/Icon/icons/envelope-email.vue +9 -9
  134. package/src/atoms/components/Icon/icons/error.vue +8 -8
  135. package/src/atoms/components/Icon/icons/eye-crossed.vue +7 -7
  136. package/src/atoms/components/Icon/icons/eye-open.vue +11 -11
  137. package/src/atoms/components/Icon/icons/fees.vue +6 -6
  138. package/src/atoms/components/Icon/icons/file.vue +7 -7
  139. package/src/atoms/components/Icon/icons/filter.vue +7 -7
  140. package/src/atoms/components/Icon/icons/filters.vue +6 -6
  141. package/src/atoms/components/Icon/icons/flag.vue +6 -6
  142. package/src/atoms/components/Icon/icons/flip-horizontal.vue +7 -7
  143. package/src/atoms/components/Icon/icons/flip-vertical.vue +7 -7
  144. package/src/atoms/components/Icon/icons/folder.vue +6 -6
  145. package/src/atoms/components/Icon/icons/footer-centered.vue +7 -7
  146. package/src/atoms/components/Icon/icons/footer-left.vue +7 -7
  147. package/src/atoms/components/Icon/icons/form-message.vue +6 -6
  148. package/src/atoms/components/Icon/icons/form.vue +5 -5
  149. package/src/atoms/components/Icon/icons/fullscreen-exit.vue +5 -5
  150. package/src/atoms/components/Icon/icons/fullscreen.vue +5 -5
  151. package/src/atoms/components/Icon/icons/globe.vue +6 -6
  152. package/src/atoms/components/Icon/icons/godaddy/logo.vue +5 -5
  153. package/src/atoms/components/Icon/icons/hamburger.vue +7 -7
  154. package/src/atoms/components/Icon/icons/home.vue +7 -7
  155. package/src/atoms/components/Icon/icons/icon-style-circle-bg.vue +22 -22
  156. package/src/atoms/components/Icon/icons/icon-style-no-bg.vue +16 -16
  157. package/src/atoms/components/Icon/icons/icon-style-square-bg.vue +22 -22
  158. package/src/atoms/components/Icon/icons/image-gallery-carousel.vue +7 -7
  159. package/src/atoms/components/Icon/icons/image-gallery-grid.vue +7 -7
  160. package/src/atoms/components/Icon/icons/image-gallery-masonry.vue +6 -6
  161. package/src/atoms/components/Icon/icons/images-gallery.vue +5 -5
  162. package/src/atoms/components/Icon/icons/images.vue +7 -7
  163. package/src/atoms/components/Icon/icons/info.vue +9 -9
  164. package/src/atoms/components/Icon/icons/jobs.vue +8 -8
  165. package/src/atoms/components/Icon/icons/layer-bring-front.vue +6 -6
  166. package/src/atoms/components/Icon/icons/layer-send-back.vue +6 -6
  167. package/src/atoms/components/Icon/icons/layer.vue +6 -6
  168. package/src/atoms/components/Icon/icons/layout/display-style-about-1.vue +20 -20
  169. package/src/atoms/components/Icon/icons/layout/display-style-about-2.vue +20 -20
  170. package/src/atoms/components/Icon/icons/layout/display-style-about-3.vue +20 -20
  171. package/src/atoms/components/Icon/icons/layout/display-style-about-4.vue +32 -32
  172. package/src/atoms/components/Icon/icons/layout/display-style-about-5.vue +27 -27
  173. package/src/atoms/components/Icon/icons/layout/display-style-about-6.vue +27 -27
  174. package/src/atoms/components/Icon/icons/layout/display-style-banner-1.vue +20 -20
  175. package/src/atoms/components/Icon/icons/layout/display-style-banner-2.vue +20 -20
  176. package/src/atoms/components/Icon/icons/layout/display-style-banner-3.vue +20 -20
  177. package/src/atoms/components/Icon/icons/layout/display-style-banner-4.vue +20 -20
  178. package/src/atoms/components/Icon/icons/layout/display-style-banner-5.vue +20 -20
  179. package/src/atoms/components/Icon/icons/layout/display-style-banner-6.vue +27 -27
  180. package/src/atoms/components/Icon/icons/layout/display-style-banner-7.vue +27 -27
  181. package/src/atoms/components/Icon/icons/layout/display-style-banner-8.vue +20 -20
  182. package/src/atoms/components/Icon/icons/layout/display-style-banner-9.vue +20 -20
  183. package/src/atoms/components/Icon/icons/layout/display-style-contact-1.vue +24 -24
  184. package/src/atoms/components/Icon/icons/layout/display-style-contact-2.vue +24 -24
  185. package/src/atoms/components/Icon/icons/layout/display-style-contact-4.vue +24 -24
  186. package/src/atoms/components/Icon/icons/layout/display-style-contact-5.vue +39 -39
  187. package/src/atoms/components/Icon/icons/layout/display-style-contact-6.vue +39 -39
  188. package/src/atoms/components/Icon/icons/layout/footer/display-style-1.vue +7 -7
  189. package/src/atoms/components/Icon/icons/layout/footer/display-style-2.vue +16 -16
  190. package/src/atoms/components/Icon/icons/layout/header/desktop-hamburger-display-style-1.vue +17 -17
  191. package/src/atoms/components/Icon/icons/layout/header/desktop-hamburger-display-style-2.vue +17 -17
  192. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-1.vue +17 -17
  193. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-2.vue +17 -17
  194. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-3.vue +13 -13
  195. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-4.vue +13 -13
  196. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-5.vue +17 -17
  197. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-6.vue +17 -17
  198. package/src/atoms/components/Icon/icons/layout/header/hamburger-display-style-no-logo-1.vue +16 -16
  199. package/src/atoms/components/Icon/icons/layout/header/hamburger-display-style-no-logo-2.vue +16 -16
  200. package/src/atoms/components/Icon/icons/layout/header/hamburger-display-style-no-logo-3.vue +16 -16
  201. package/src/atoms/components/Icon/icons/layout/header/mobile-hamburger-display-style-1.vue +17 -17
  202. package/src/atoms/components/Icon/icons/layout/header/mobile-hamburger-display-style-2.vue +17 -17
  203. package/src/atoms/components/Icon/icons/layout/header/mobile-hamburger-display-style-3.vue +17 -17
  204. package/src/atoms/components/Icon/icons/layout/header/mobile-hamburger-display-style-4.vue +21 -21
  205. package/src/atoms/components/Icon/icons/layout/header/mobile-tab-display-style-1.vue +17 -17
  206. package/src/atoms/components/Icon/icons/layout/header/mobile-tab-display-style-2.vue +17 -17
  207. package/src/atoms/components/Icon/icons/layout/header/tab-display-style-no-logo-1.vue +16 -16
  208. package/src/atoms/components/Icon/icons/layout/header/tab-display-style-no-logo-2.vue +16 -16
  209. package/src/atoms/components/Icon/icons/layout/header/tab-display-style-no-logo-3.vue +16 -16
  210. package/src/atoms/components/Icon/icons/layout/layout-icon-bottom-normal-text-center-normal.vue +7 -7
  211. package/src/atoms/components/Icon/icons/layout/layout-icon-bottom-normal-text-center-small.vue +7 -7
  212. package/src/atoms/components/Icon/icons/layout/layout-icon-bottom-small-text-center-normal.vue +7 -7
  213. package/src/atoms/components/Icon/icons/layout/layout-icon-center-normal-curved-text-bottom.vue +11 -11
  214. package/src/atoms/components/Icon/icons/layout/layout-icon-center-normal-curved-text-circle.vue +10 -10
  215. package/src/atoms/components/Icon/icons/layout/layout-icon-center-normal-curved-text-top.vue +11 -11
  216. package/src/atoms/components/Icon/icons/layout/layout-icon-left-normal-text-center-normal.vue +7 -7
  217. package/src/atoms/components/Icon/icons/layout/layout-icon-left-normal-text-justify-normal.vue +7 -7
  218. package/src/atoms/components/Icon/icons/layout/layout-icon-left-normal-text-left-normal.vue +7 -7
  219. package/src/atoms/components/Icon/icons/layout/layout-icon-left-small-text-left-normal.vue +7 -7
  220. package/src/atoms/components/Icon/icons/layout/layout-icon-right-normal-text-center-normal.vue +7 -7
  221. package/src/atoms/components/Icon/icons/layout/layout-icon-right-normal-text-justify-normal.vue +7 -7
  222. package/src/atoms/components/Icon/icons/layout/layout-icon-right-normal-text-right-normal.vue +7 -7
  223. package/src/atoms/components/Icon/icons/layout/layout-icon-right-small-text-right-normal.vue +7 -7
  224. package/src/atoms/components/Icon/icons/layout/layout-icon-top-normal-text-center-normal.vue +7 -7
  225. package/src/atoms/components/Icon/icons/layout/layout-icon-top-normal-text-center-small.vue +7 -7
  226. package/src/atoms/components/Icon/icons/layout/layout-icon-top-normal-text-justify-normal.vue +7 -7
  227. package/src/atoms/components/Icon/icons/layout/layout-icon-top-small-text-center-normal.vue +7 -7
  228. package/src/atoms/components/Icon/icons/layout/nav/hamburger/display-style-1.vue +16 -16
  229. package/src/atoms/components/Icon/icons/layout/nav/hamburger/display-style-2.vue +10 -10
  230. package/src/atoms/components/Icon/icons/layout/nav/hamburger/display-style-3.vue +10 -10
  231. package/src/atoms/components/Icon/icons/layout/nav/hamburger/display-style-4.vue +23 -23
  232. package/src/atoms/components/Icon/icons/layout/nav/tab/display-style-1.vue +16 -16
  233. package/src/atoms/components/Icon/icons/layout/nav/tab/display-style-2.vue +7 -7
  234. package/src/atoms/components/Icon/icons/letterhead-filled.vue +5 -5
  235. package/src/atoms/components/Icon/icons/link.vue +6 -6
  236. package/src/atoms/components/Icon/icons/location.vue +6 -6
  237. package/src/atoms/components/Icon/icons/lock.vue +6 -6
  238. package/src/atoms/components/Icon/icons/mac-command.vue +7 -7
  239. package/src/atoms/components/Icon/icons/maker/align-center.vue +7 -7
  240. package/src/atoms/components/Icon/icons/maker/align-justify.vue +7 -7
  241. package/src/atoms/components/Icon/icons/maker/align-left.vue +7 -7
  242. package/src/atoms/components/Icon/icons/maker/align-right.vue +7 -7
  243. package/src/atoms/components/Icon/icons/maker/animate.vue +7 -7
  244. package/src/atoms/components/Icon/icons/maker/bold.vue +7 -7
  245. package/src/atoms/components/Icon/icons/maker/custom-landscape.vue +5 -5
  246. package/src/atoms/components/Icon/icons/maker/email-symbol.vue +5 -5
  247. package/src/atoms/components/Icon/icons/maker/email.vue +5 -5
  248. package/src/atoms/components/Icon/icons/maker/eraser.vue +5 -5
  249. package/src/atoms/components/Icon/icons/maker/etsy.vue +5 -5
  250. package/src/atoms/components/Icon/icons/maker/facebook.vue +5 -5
  251. package/src/atoms/components/Icon/icons/maker/favicon.vue +7 -7
  252. package/src/atoms/components/Icon/icons/maker/flyer.vue +7 -7
  253. package/src/atoms/components/Icon/icons/maker/gift-certificate.vue +5 -5
  254. package/src/atoms/components/Icon/icons/maker/globe.vue +5 -5
  255. package/src/atoms/components/Icon/icons/maker/image.vue +7 -7
  256. package/src/atoms/components/Icon/icons/maker/instagram.vue +7 -7
  257. package/src/atoms/components/Icon/icons/maker/invitation.vue +5 -5
  258. package/src/atoms/components/Icon/icons/maker/invoice.vue +5 -5
  259. package/src/atoms/components/Icon/icons/maker/italic.vue +7 -7
  260. package/src/atoms/components/Icon/icons/maker/link.vue +7 -7
  261. package/src/atoms/components/Icon/icons/maker/linkedin.vue +7 -7
  262. package/src/atoms/components/Icon/icons/maker/menu.vue +5 -5
  263. package/src/atoms/components/Icon/icons/maker/pause.vue +5 -5
  264. package/src/atoms/components/Icon/icons/maker/phone.vue +5 -5
  265. package/src/atoms/components/Icon/icons/maker/pinterest.vue +5 -5
  266. package/src/atoms/components/Icon/icons/maker/play.vue +5 -5
  267. package/src/atoms/components/Icon/icons/maker/postcard.vue +5 -5
  268. package/src/atoms/components/Icon/icons/maker/poster.vue +7 -7
  269. package/src/atoms/components/Icon/icons/maker/profile.vue +5 -5
  270. package/src/atoms/components/Icon/icons/maker/qrcode.vue +5 -5
  271. package/src/atoms/components/Icon/icons/maker/snapchat.vue +5 -5
  272. package/src/atoms/components/Icon/icons/maker/soundcloud.vue +7 -7
  273. package/src/atoms/components/Icon/icons/maker/spacing.vue +18 -18
  274. package/src/atoms/components/Icon/icons/maker/strikethrough.vue +7 -7
  275. package/src/atoms/components/Icon/icons/maker/t-shirt.vue +32 -32
  276. package/src/atoms/components/Icon/icons/maker/text-background-color.vue +12 -12
  277. package/src/atoms/components/Icon/icons/maker/text-color.vue +14 -14
  278. package/src/atoms/components/Icon/icons/maker/text.vue +7 -7
  279. package/src/atoms/components/Icon/icons/maker/thankyou-card.vue +5 -5
  280. package/src/atoms/components/Icon/icons/maker/tiktok.vue +5 -5
  281. package/src/atoms/components/Icon/icons/maker/tumblr.vue +5 -5
  282. package/src/atoms/components/Icon/icons/maker/twitch.vue +7 -7
  283. package/src/atoms/components/Icon/icons/maker/twitter.vue +5 -5
  284. package/src/atoms/components/Icon/icons/maker/underline.vue +7 -7
  285. package/src/atoms/components/Icon/icons/maker/uppercase.vue +14 -14
  286. package/src/atoms/components/Icon/icons/maker/video.vue +5 -5
  287. package/src/atoms/components/Icon/icons/maker/whatsapp.vue +7 -7
  288. package/src/atoms/components/Icon/icons/maker/youtube.vue +5 -5
  289. package/src/atoms/components/Icon/icons/maker/zoom.vue +5 -5
  290. package/src/atoms/components/Icon/icons/map.vue +6 -6
  291. package/src/atoms/components/Icon/icons/message.vue +6 -6
  292. package/src/atoms/components/Icon/icons/minus-circle-light.vue +7 -7
  293. package/src/atoms/components/Icon/icons/minus.vue +3 -3
  294. package/src/atoms/components/Icon/icons/mobile.vue +5 -5
  295. package/src/atoms/components/Icon/icons/mug.vue +29 -29
  296. package/src/atoms/components/Icon/icons/opacity.vue +6 -6
  297. package/src/atoms/components/Icon/icons/other.vue +7 -7
  298. package/src/atoms/components/Icon/icons/page-buttons.vue +8 -8
  299. package/src/atoms/components/Icon/icons/page-hamburger.vue +9 -9
  300. package/src/atoms/components/Icon/icons/page-tabs.vue +9 -9
  301. package/src/atoms/components/Icon/icons/pages.vue +6 -6
  302. package/src/atoms/components/Icon/icons/palette.vue +6 -6
  303. package/src/atoms/components/Icon/icons/pause.vue +5 -5
  304. package/src/atoms/components/Icon/icons/payment.vue +8 -8
  305. package/src/atoms/components/Icon/icons/payments-featured.vue +6 -6
  306. package/src/atoms/components/Icon/icons/payments-textonly.vue +8 -8
  307. package/src/atoms/components/Icon/icons/payments-thumbnail.vue +9 -9
  308. package/src/atoms/components/Icon/icons/pen-tool.vue +7 -7
  309. package/src/atoms/components/Icon/icons/phone.vue +6 -6
  310. package/src/atoms/components/Icon/icons/plus-circle-light.vue +8 -8
  311. package/src/atoms/components/Icon/icons/plus-circle.vue +7 -7
  312. package/src/atoms/components/Icon/icons/plus.vue +3 -3
  313. package/src/atoms/components/Icon/icons/poll.vue +3 -3
  314. package/src/atoms/components/Icon/icons/portfolio.vue +10 -10
  315. package/src/atoms/components/Icon/icons/preview.vue +6 -6
  316. package/src/atoms/components/Icon/icons/printing.vue +6 -6
  317. package/src/atoms/components/Icon/icons/processing.vue +5 -5
  318. package/src/atoms/components/Icon/icons/question.vue +11 -11
  319. package/src/atoms/components/Icon/icons/ratio-1-1.vue +3 -3
  320. package/src/atoms/components/Icon/icons/ratio-16-9.vue +1 -1
  321. package/src/atoms/components/Icon/icons/ratio-2-3.vue +3 -3
  322. package/src/atoms/components/Icon/icons/ratio-3-2.vue +3 -3
  323. package/src/atoms/components/Icon/icons/ratio-3-4.vue +3 -3
  324. package/src/atoms/components/Icon/icons/ratio-4-3.vue +3 -3
  325. package/src/atoms/components/Icon/icons/ratio-9-16.vue +3 -3
  326. package/src/atoms/components/Icon/icons/ratio-circle.vue +8 -8
  327. package/src/atoms/components/Icon/icons/ratio-original.vue +11 -11
  328. package/src/atoms/components/Icon/icons/redo.vue +6 -6
  329. package/src/atoms/components/Icon/icons/reload.vue +6 -6
  330. package/src/atoms/components/Icon/icons/reorderable.vue +5 -5
  331. package/src/atoms/components/Icon/icons/request-payment.vue +6 -6
  332. package/src/atoms/components/Icon/icons/reset.vue +6 -6
  333. package/src/atoms/components/Icon/icons/search.vue +11 -11
  334. package/src/atoms/components/Icon/icons/secure.vue +7 -7
  335. package/src/atoms/components/Icon/icons/services.vue +7 -7
  336. package/src/atoms/components/Icon/icons/settings.vue +7 -7
  337. package/src/atoms/components/Icon/icons/shape.vue +5 -5
  338. package/src/atoms/components/Icon/icons/share.vue +8 -8
  339. package/src/atoms/components/Icon/icons/shop.vue +5 -5
  340. package/src/atoms/components/Icon/icons/sms.vue +5 -5
  341. package/src/atoms/components/Icon/icons/social-facebook-color.vue +9 -9
  342. package/src/atoms/components/Icon/icons/social-facebook.vue +5 -5
  343. package/src/atoms/components/Icon/icons/social-google.vue +5 -5
  344. package/src/atoms/components/Icon/icons/social-instagram-color.vue +24 -24
  345. package/src/atoms/components/Icon/icons/social-linkedin-color.vue +9 -9
  346. package/src/atoms/components/Icon/icons/social-share.vue +7 -7
  347. package/src/atoms/components/Icon/icons/social-twitter-color.vue +9 -9
  348. package/src/atoms/components/Icon/icons/star-filled.vue +6 -6
  349. package/src/atoms/components/Icon/icons/star-hollow.vue +6 -6
  350. package/src/atoms/components/Icon/icons/sticker.vue +28 -28
  351. package/src/atoms/components/Icon/icons/styles.vue +5 -5
  352. package/src/atoms/components/Icon/icons/submit.vue +5 -5
  353. package/src/atoms/components/Icon/icons/templates.vue +7 -7
  354. package/src/atoms/components/Icon/icons/text-image-center.vue +6 -6
  355. package/src/atoms/components/Icon/icons/text-image-justified.vue +7 -7
  356. package/src/atoms/components/Icon/icons/text-image-left.vue +9 -9
  357. package/src/atoms/components/Icon/icons/text-image-only.vue +5 -5
  358. package/src/atoms/components/Icon/icons/text-image-right.vue +9 -9
  359. package/src/atoms/components/Icon/icons/text-image.vue +13 -13
  360. package/src/atoms/components/Icon/icons/time.vue +8 -8
  361. package/src/atoms/components/Icon/icons/tooltip-bottom.vue +5 -5
  362. package/src/atoms/components/Icon/icons/tooltip-left.vue +5 -5
  363. package/src/atoms/components/Icon/icons/tooltip-right.vue +5 -5
  364. package/src/atoms/components/Icon/icons/tooltip-top.vue +5 -5
  365. package/src/atoms/components/Icon/icons/undo.vue +6 -6
  366. package/src/atoms/components/Icon/icons/upgrade-alt.vue +7 -7
  367. package/src/atoms/components/Icon/icons/upgrade.vue +9 -9
  368. package/src/atoms/components/Icon/icons/upload-arrow.vue +5 -5
  369. package/src/atoms/components/Icon/icons/upload.vue +5 -5
  370. package/src/atoms/components/Icon/icons/user-accounts.vue +5 -5
  371. package/src/atoms/components/Icon/icons/user-headset.vue +50 -50
  372. package/src/atoms/components/Icon/icons/volume-muted.vue +5 -5
  373. package/src/atoms/components/Icon/icons/volume.vue +5 -5
  374. package/src/atoms/components/Icon/icons/watchlist-filled.vue +14 -14
  375. package/src/atoms/components/Icon/icons/watchlist-hollow-alt.vue +14 -14
  376. package/src/atoms/components/Icon/icons/watchlist-hollow.vue +6 -6
  377. package/src/atoms/components/Icon/icons/website-filled.vue +5 -5
  378. package/src/atoms/components/Icon/icons/website.vue +6 -6
  379. package/src/atoms/components/Icon/icons/wholesale.vue +6 -6
  380. package/src/atoms/components/Icon/icons/zoom-in.vue +5 -5
  381. package/src/atoms/components/Icon/icons/zoom-out.vue +5 -5
  382. package/src/atoms/components/Icon/icons/zoom.vue +11 -11
  383. package/src/atoms/components/Loader/Loader.vue +15 -15
  384. package/src/atoms/components/Masonry/Masonry.stories.js +48 -48
  385. package/src/atoms/components/Masonry/Masonry.vue +48 -48
  386. package/src/atoms/components/Masonry/fixtures.js +589 -589
  387. package/src/atoms/components/Modal/HashRouteModal.stories.js +68 -68
  388. package/src/atoms/components/Modal/HashRouteModal.vue +120 -120
  389. package/src/atoms/components/Modal/Modal.stories.js +293 -293
  390. package/src/atoms/components/Modal/Modal.vue +263 -263
  391. package/src/atoms/components/Notice/Notice.stories.js +174 -174
  392. package/src/atoms/components/Notice/Notice.vue +71 -71
  393. package/src/atoms/components/NumberStepper/NumberStepper.stories.js +55 -55
  394. package/src/atoms/components/NumberStepper/NumberStepper.vue +340 -340
  395. package/src/atoms/components/Picture/Picture.stories.js +90 -90
  396. package/src/atoms/components/Picture/Picture.vue +84 -84
  397. package/src/atoms/components/Picture/picture.fixtures.js +35 -35
  398. package/src/atoms/components/Pill/Pill.stories.js +20 -20
  399. package/src/atoms/components/Pill/Pill.vue +8 -8
  400. package/src/atoms/components/PillBar/PillBar.fixtures.js +941 -941
  401. package/src/atoms/components/PillBar/PillBar.stories.js +39 -39
  402. package/src/atoms/components/PillBar/PillBar.vue +62 -62
  403. package/src/atoms/components/Price/Price.fixtures.js +85 -85
  404. package/src/atoms/components/Price/Price.stories.js +291 -291
  405. package/src/atoms/components/Price/Price.vue +135 -135
  406. package/src/atoms/components/Price/i18n/price.de-DE.json +5 -5
  407. package/src/atoms/components/Price/i18n/price.es-ES.json +5 -5
  408. package/src/atoms/components/Price/i18n/price.fr-CA.json +5 -5
  409. package/src/atoms/components/Price/i18n/price.fr-FR.json +5 -5
  410. package/src/atoms/components/Price/i18n/price.json +5 -5
  411. package/src/atoms/components/Price/i18n/price.pt-BR.json +5 -5
  412. package/src/atoms/components/Price/i18n/price.pt-PT.json +5 -5
  413. package/src/atoms/components/SearchBar/SearchBar.stories.js +21 -21
  414. package/src/atoms/components/SearchBar/SearchBar.vue +51 -51
  415. package/src/atoms/components/Select/Select.stories.js +142 -142
  416. package/src/atoms/components/Select/Select.vue +619 -619
  417. package/src/atoms/components/Select/pointerMixin.js +99 -99
  418. package/src/atoms/components/Select/selectMixin.js +356 -356
  419. package/src/atoms/components/SparkleIcon/SparkleIcon.stories.js +182 -182
  420. package/src/atoms/components/SparkleIcon/SparkleIcon.vue +105 -105
  421. package/src/atoms/components/SparkleIcon/assets/animations/state-01.svg +5 -5
  422. package/src/atoms/components/SparkleIcon/assets/animations/state-02.svg +5 -5
  423. package/src/atoms/components/SparkleIcon/assets/animations/state-03.svg +5 -5
  424. package/src/atoms/components/SparkleIcon/assets/animations/state-04.svg +5 -5
  425. package/src/atoms/components/SparkleIcon/assets/animations/state-05.svg +5 -5
  426. package/src/atoms/components/SparkleIcon/assets/animations/state-06.svg +5 -5
  427. package/src/atoms/components/SparkleIcon/assets/animations/state-07.svg +5 -5
  428. package/src/atoms/components/SparkleIcon/assets/animations/state-08.svg +5 -5
  429. package/src/atoms/components/SparkleIcon/assets/sparkle.svg +3 -3
  430. package/src/atoms/components/SparkleIcon/index.ts +3 -3
  431. package/src/atoms/components/StarRating/StarRating.stories.js +50 -50
  432. package/src/atoms/components/StarRating/StarRating.vue +84 -84
  433. package/src/atoms/components/TabMenu/TabMenu.stories.js +54 -54
  434. package/src/atoms/components/TabMenu/TabMenu.vue +44 -44
  435. package/src/atoms/components/TextCopyField/TextCopyField.stories.js +68 -68
  436. package/src/atoms/components/TextCopyField/TextCopyField.vue +75 -75
  437. package/src/atoms/components/TextInput/TextInput.stories.js +232 -232
  438. package/src/atoms/components/TextInput/TextInput.vue +161 -161
  439. package/src/atoms/components/Textarea/Textarea.stories.js +209 -209
  440. package/src/atoms/components/Textarea/Textarea.vue +112 -112
  441. package/src/atoms/components/Toggle/Toggle.stories.js +176 -176
  442. package/src/atoms/components/Toggle/Toggle.vue +69 -69
  443. package/src/atoms/components/Tooltip/Tooltip.stories.js +493 -493
  444. package/src/atoms/components/Tooltip/Tooltip.vue +196 -196
  445. package/src/atoms/components/design-com/Icon/Icon.stories.js +82 -82
  446. package/src/atoms/components/design-com/Icon/Icon.vue +157 -157
  447. package/src/atoms/components/design-com/Icon/icons/award.vue +7 -7
  448. package/src/atoms/components/design-com/Icon/icons/bulb.vue +7 -7
  449. package/src/atoms/components/design-com/Icon/icons/card.vue +7 -7
  450. package/src/atoms/components/design-com/Icon/icons/check-circle-light.vue +7 -7
  451. package/src/atoms/components/design-com/Icon/icons/chevron-down.vue +7 -7
  452. package/src/atoms/components/design-com/Icon/icons/chevron-left.vue +7 -7
  453. package/src/atoms/components/design-com/Icon/icons/chevron-right.vue +3 -3
  454. package/src/atoms/components/design-com/Icon/icons/chevron-up.vue +7 -7
  455. package/src/atoms/components/design-com/Icon/icons/diamond.vue +7 -7
  456. package/src/atoms/components/design-com/Icon/icons/download.vue +7 -7
  457. package/src/atoms/components/design-com/Icon/icons/file-empty.vue +7 -7
  458. package/src/atoms/components/design-com/Icon/icons/file.vue +7 -7
  459. package/src/atoms/components/design-com/Icon/icons/filter.vue +7 -7
  460. package/src/atoms/components/design-com/Icon/icons/font.vue +7 -7
  461. package/src/atoms/components/design-com/Icon/icons/headphones.vue +7 -7
  462. package/src/atoms/components/design-com/Icon/icons/heart.vue +7 -7
  463. package/src/atoms/components/design-com/Icon/icons/image.vue +7 -7
  464. package/src/atoms/components/design-com/Icon/icons/logo.vue +7 -7
  465. package/src/atoms/components/design-com/Icon/icons/minus-circle-light.vue +7 -7
  466. package/src/atoms/components/design-com/Icon/icons/plus-circle-light.vue +8 -8
  467. package/src/atoms/components/design-com/Icon/icons/question-circle-filled.vue +7 -7
  468. package/src/atoms/components/design-com/Icon/icons/search.vue +7 -7
  469. package/src/atoms/components/design-com/Icon/icons/star-filled.vue +6 -6
  470. package/src/atoms/components/design-com/Icon/icons/star-hollow.vue +6 -6
  471. package/src/atoms/components/design-com/Icon/icons/users.vue +7 -7
  472. package/src/atoms/constants/constants.ts +6 -6
  473. package/src/atoms/mixin/hash-router-mixin.js +68 -68
  474. package/src/atoms/thirdparty-components/VueMasonryWall/VueMasonryWall.vue +280 -280
  475. package/src/atoms/thirdparty-components/VueMasonryWall/maxBy.js +50 -50
  476. package/src/bundleTranslation.js +86 -86
  477. package/src/bundles/bundled-translations.de-DE.json +6 -6
  478. package/src/bundles/bundled-translations.es-ES.json +6 -6
  479. package/src/bundles/bundled-translations.fr-CA.json +6 -6
  480. package/src/bundles/bundled-translations.fr-FR.json +6 -6
  481. package/src/bundles/bundled-translations.json +6 -6
  482. package/src/bundles/bundled-translations.pt-BR.json +6 -6
  483. package/src/bundles/bundled-translations.pt-PT.json +6 -6
  484. package/src/css/tailwind.css +3 -3
  485. package/src/experiences/clients/brand-crowd-api.client.js +119 -119
  486. package/src/experiences/clients/brand-page-api.client.js +62 -62
  487. package/src/experiences/components/AuthFlow/Auth.fixtures.js +4 -4
  488. package/src/experiences/components/AuthFlow/Auth.stories.js +345 -345
  489. package/src/experiences/components/AuthFlow/AuthCrazyDomains.stories.js +60 -60
  490. package/src/experiences/components/AuthFlow/AuthLegal.vue +108 -108
  491. package/src/experiences/components/AuthFlow/AuthModal.vue +39 -39
  492. package/src/experiences/components/AuthFlow/ForgotPassword.vue +222 -222
  493. package/src/experiences/components/AuthFlow/ForgotPasswordModal.vue +68 -68
  494. package/src/experiences/components/AuthFlow/ResetPassword.vue +179 -179
  495. package/src/experiences/components/AuthFlow/ResetPasswordModal.vue +64 -64
  496. package/src/experiences/components/AuthFlow/ResetPasswordSuccessModal.vue +56 -56
  497. package/src/experiences/components/AuthFlow/SignIn.vue +465 -465
  498. package/src/experiences/components/AuthFlow/SignUp.vue +278 -278
  499. package/src/experiences/components/AuthFlow/SignUpModal.vue +90 -90
  500. package/src/experiences/components/AuthFlow/SocialSignIn.vue +177 -177
  501. package/src/experiences/components/AuthFlow/SocialSignInButton.vue +74 -74
  502. package/src/experiences/components/AuthFlow/SubmissionButton.vue +56 -56
  503. package/src/experiences/components/PaymentConfigList/PaymentConfig.mixin.js +118 -118
  504. package/src/experiences/components/PaymentConfigList/PaymentConfigDeleteConfigModal.vue +108 -108
  505. package/src/experiences/components/PaymentConfigList/PaymentConfigDropdown.vue +175 -175
  506. package/src/experiences/components/PaymentConfigList/PaymentConfigList.stories.js +234 -234
  507. package/src/experiences/components/PaymentConfigList/PaymentConfigList.vue +136 -136
  508. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.de-DE.json +11 -11
  509. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.es-ES.json +11 -11
  510. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.fr-CA.json +11 -11
  511. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.fr-FR.json +11 -11
  512. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.json +11 -11
  513. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.pt-BR.json +11 -11
  514. package/src/experiences/components/PaymentConfigList/i18n/shared-payment-config.pt-PT.json +11 -11
  515. package/src/experiences/components/PublishBrandPageModal/PublishBrandPageCard.vue +119 -119
  516. package/src/experiences/components/PublishBrandPageModal/PublishBrandPageModal.stories.js +226 -226
  517. package/src/experiences/components/PublishBrandPageModal/__fixtures__/data.js +25 -25
  518. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.de-DE.json +24 -24
  519. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.es-ES.json +24 -24
  520. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.fr-CA.json +24 -24
  521. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.fr-FR.json +24 -24
  522. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.json +24 -24
  523. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.pt-BR.json +24 -24
  524. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.pt-PT.json +24 -24
  525. package/src/experiences/components/SellDomainNameList/SellDomainNameList.fixtures.js +32 -32
  526. package/src/experiences/components/SellDomainNameList/SellDomainNameList.vue +157 -157
  527. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.de-DE.json +7 -7
  528. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.es-ES.json +7 -7
  529. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.fr-CA.json +7 -7
  530. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.fr-FR.json +7 -7
  531. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.json +7 -7
  532. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.pt-BR.json +7 -7
  533. package/src/experiences/components/SellDomainNameList/i18n/sell-domain-name-list.pt-PT.json +7 -7
  534. package/src/experiences/components/SellDomainNameListModal/SellDomainNameListModal.stories.js +74 -74
  535. package/src/experiences/components/SellDomainNameListModal/SellDomainNameListModal.vue +128 -128
  536. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.de-DE.json +5 -5
  537. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.es-ES.json +5 -5
  538. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.fr-CA.json +5 -5
  539. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.fr-FR.json +5 -5
  540. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.json +5 -5
  541. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.pt-BR.json +5 -5
  542. package/src/experiences/components/SellDomainNameListModal/i18n/sell-domain-name-list-modal.pt-PT.json +5 -5
  543. package/src/experiences/components/SellDomainNameModalApplication/SellDomainNameModalApplication.vue +209 -209
  544. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.de-DE.json +5 -5
  545. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.es-ES.json +5 -5
  546. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.fr-CA.json +5 -5
  547. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.fr-FR.json +5 -5
  548. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.json +5 -5
  549. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.pt-BR.json +5 -5
  550. package/src/experiences/components/SellDomainNameModalApplication/i18n/sell-domain-name-modal-application.pt-PT.json +5 -5
  551. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.de-DE.json +7 -7
  552. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.es-ES.json +7 -7
  553. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.fr-CA.json +7 -7
  554. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.fr-FR.json +7 -7
  555. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.json +7 -7
  556. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.pt-BR.json +7 -7
  557. package/src/experiences/components/SellDomainNameSearch/i18n/sell-domain-name-search.pt-PT.json +7 -7
  558. package/src/experiences/components/SellDomainNameSearchResult/SellDomainNameListSearchResult.vue +167 -167
  559. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.de-DE.json +5 -5
  560. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.es-ES.json +5 -5
  561. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.fr-CA.json +5 -5
  562. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.fr-FR.json +5 -5
  563. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.json +5 -5
  564. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.pt-BR.json +5 -5
  565. package/src/experiences/components/SellDomainNameSearchResult/i18n/sell-domain-name-list-search-result.pt-PT.json +5 -5
  566. package/src/experiences/components/SellDomainNameSearchWithResults/SellDomainNameSearchWithResults.stories.js +38 -38
  567. package/src/experiences/components/SellDomainNameSearchWithResults/SellDomainNameSearchWithResults.vue +214 -214
  568. package/src/experiences/components/SellDomainNameWidget/SellDomainNameWidget.stories.js +40 -40
  569. package/src/experiences/components/SellDomainNameWidget/SellDomainNameWidget.vue +155 -155
  570. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.de-DE.json +7 -7
  571. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.es-ES.json +7 -7
  572. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.fr-CA.json +7 -7
  573. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.fr-FR.json +7 -7
  574. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.json +7 -7
  575. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.pt-BR.json +7 -7
  576. package/src/experiences/components/SellDomainNameWidget/i18n/sell-domain-name-widget.pt-PT.json +7 -7
  577. package/src/experiences/components/UploadYourLogoApplication/UploadYourLogoApplication.stories.js +205 -205
  578. package/src/experiences/components/UploadYourLogoApplication/UploadYourLogoApplication.vue +133 -133
  579. package/src/experiences/components/UploadYourLogoDropzone/UploadYourLogoDropzone.stories.js +59 -59
  580. package/src/experiences/components/UploadYourLogoDropzone/UploadYourLogoDropzone.vue +285 -285
  581. package/src/experiences/components/UploadYourLogoOnBoarding/LogoBusinessBrandColours.stories.js +37 -37
  582. package/src/experiences/components/UploadYourLogoOnBoarding/LogoBusinessBrandColours.vue +338 -338
  583. package/src/experiences/components/UploadYourLogoOnBoarding/LogoBusinessText.vue +146 -146
  584. package/src/experiences/components/UploadYourLogoOnBoarding/LogoCropper.vue +473 -473
  585. package/src/experiences/components/UploadYourLogoOnBoarding/LogoPreview.vue +103 -103
  586. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploadError.vue +75 -75
  587. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploadExitConfirmation.vue +55 -55
  588. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploadModal.vue +38 -38
  589. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploader.vue +102 -102
  590. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploadingLoader.vue +22 -22
  591. package/src/experiences/components/UploadYourLogoOnBoarding/UploadYourLogoOnBoarding.vue +302 -302
  592. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.de-DE.json +34 -34
  593. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.es-ES.json +34 -34
  594. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.fr-CA.json +34 -34
  595. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.fr-FR.json +34 -34
  596. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.json +35 -35
  597. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.pt-BR.json +34 -34
  598. package/src/experiences/components/UploadYourLogoOnBoarding/i18n/upload-your-logo.pt-PT.json +34 -34
  599. package/src/experiences/components/UploadedLogoSearchResultCard/UploadedLogoSearchResultCard.stories.js +82 -82
  600. package/src/experiences/components/UploadedLogoSearchResultCard/UploadedLogoSearchResultCard.vue +211 -211
  601. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.de-DE.json +8 -8
  602. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.es-ES.json +8 -8
  603. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.fr-CA.json +8 -8
  604. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.fr-FR.json +8 -8
  605. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.json +8 -8
  606. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.pt-BR.json +8 -8
  607. package/src/experiences/components/UploadedLogoSearchResultCard/i18n/upload-logo-search-result-card.pt-PT.json +8 -8
  608. package/src/experiences/constants/api.js +8 -8
  609. package/src/experiences/constants/error-constants.js +5 -5
  610. package/src/experiences/constants/event-constants.js +18 -18
  611. package/src/experiences/constants/partner-dictionary-constants.js +27 -27
  612. package/src/experiences/constants/rego-source-constants.js +3 -3
  613. package/src/experiences/constants/sell-domain-name-constants.js +4 -4
  614. package/src/experiences/helpers/email-validator.js +5 -5
  615. package/src/experiences/helpers/hex-diff.js +116 -116
  616. package/src/experiences/helpers/tracking.js +5 -5
  617. package/src/experiences/mixins/mediaQueryMixin.js +31 -31
  618. package/src/experiences/mixins/themeMixin.js +22 -22
  619. package/src/themes/base.js +20 -20
  620. package/src/themes/bc.js +95 -95
  621. package/src/themes/bp.js +21 -21
  622. package/src/themes/cd.js +94 -94
  623. package/src/themes/dc.js +84 -84
  624. package/src/themes/dcom.js +106 -106
  625. package/src/themes/themes.js +16 -16
  626. package/src/useSharedLibTranslate.js +127 -127
  627. package/src/viewports.js +51 -51
  628. package/stylelint.config.js +19 -19
  629. package/tailwind.build.js +83 -83
  630. package/tailwind.config.js +37 -37
  631. package/tailwind.themes.js +59 -59
  632. package/vite.config.ts +37 -37
@@ -1,6 +1,6 @@
1
- <template>
2
- <path
3
- d="M12.8172 3.67969C13.0724 3.9349 13.2 4.24479 13.2 4.60938V13.6875C13.2 14.0521 13.0724 14.362 12.8172 14.6172C12.562 14.8724 12.2521 15 11.8875 15H4.0125C3.64792 15 3.33802 14.8724 3.08281 14.6172C2.8276 14.362 2.7 14.0521 2.7 13.6875V2.3125C2.7 1.94792 2.8276 1.63802 3.08281 1.38281C3.33802 1.1276 3.64792 1 4.0125 1H9.59063C9.95521 1 10.2651 1.1276 10.5203 1.38281L12.8172 3.67969ZM9.7 2.42188V4.5H11.7781L9.7 2.42188ZM11.8875 13.6875V5.8125H9.04375C8.86146 5.8125 8.70651 5.7487 8.57891 5.62109C8.4513 5.49349 8.3875 5.33854 8.3875 5.15625V2.3125H4.0125V13.6875H11.8875ZM8.57891 7.125V8.65625H10.1375C10.2469 8.65625 10.3471 8.70182 10.4383 8.79297C10.5294 8.88411 10.575 8.98438 10.575 9.09375V9.53125C10.575 9.65885 10.5294 9.76823 10.4383 9.85938C10.3471 9.93229 10.2469 9.96875 10.1375 9.96875H8.57891V11.5C8.57891 11.6276 8.53333 11.737 8.44219 11.8281C8.36927 11.901 8.26901 11.9375 8.14141 11.9375H7.70391C7.5763 11.9375 7.46693 11.901 7.37578 11.8281C7.30287 11.737 7.26641 11.6276 7.26641 11.5V9.96875H5.7625C5.6349 9.96875 5.52552 9.93229 5.43438 9.85938C5.36146 9.76823 5.325 9.65885 5.325 9.53125V9.09375C5.325 8.98438 5.36146 8.88411 5.43438 8.79297C5.52552 8.70182 5.6349 8.65625 5.7625 8.65625H7.26641V7.125C7.26641 6.9974 7.30287 6.89714 7.37578 6.82422C7.46693 6.73307 7.5763 6.6875 7.70391 6.6875H8.14141C8.26901 6.6875 8.36927 6.73307 8.44219 6.82422C8.53333 6.89714 8.57891 6.9974 8.57891 7.125Z"
4
- fill-rule="nonzero"
5
- />
6
- </template>
1
+ <template>
2
+ <path
3
+ d="M12.8172 3.67969C13.0724 3.9349 13.2 4.24479 13.2 4.60938V13.6875C13.2 14.0521 13.0724 14.362 12.8172 14.6172C12.562 14.8724 12.2521 15 11.8875 15H4.0125C3.64792 15 3.33802 14.8724 3.08281 14.6172C2.8276 14.362 2.7 14.0521 2.7 13.6875V2.3125C2.7 1.94792 2.8276 1.63802 3.08281 1.38281C3.33802 1.1276 3.64792 1 4.0125 1H9.59063C9.95521 1 10.2651 1.1276 10.5203 1.38281L12.8172 3.67969ZM9.7 2.42188V4.5H11.7781L9.7 2.42188ZM11.8875 13.6875V5.8125H9.04375C8.86146 5.8125 8.70651 5.7487 8.57891 5.62109C8.4513 5.49349 8.3875 5.33854 8.3875 5.15625V2.3125H4.0125V13.6875H11.8875ZM8.57891 7.125V8.65625H10.1375C10.2469 8.65625 10.3471 8.70182 10.4383 8.79297C10.5294 8.88411 10.575 8.98438 10.575 9.09375V9.53125C10.575 9.65885 10.5294 9.76823 10.4383 9.85938C10.3471 9.93229 10.2469 9.96875 10.1375 9.96875H8.57891V11.5C8.57891 11.6276 8.53333 11.737 8.44219 11.8281C8.36927 11.901 8.26901 11.9375 8.14141 11.9375H7.70391C7.5763 11.9375 7.46693 11.901 7.37578 11.8281C7.30287 11.737 7.26641 11.6276 7.26641 11.5V9.96875H5.7625C5.6349 9.96875 5.52552 9.93229 5.43438 9.85938C5.36146 9.76823 5.325 9.65885 5.325 9.53125V9.09375C5.325 8.98438 5.36146 8.88411 5.43438 8.79297C5.52552 8.70182 5.6349 8.65625 5.7625 8.65625H7.26641V7.125C7.26641 6.9974 7.30287 6.89714 7.37578 6.82422C7.46693 6.73307 7.5763 6.6875 7.70391 6.6875H8.14141C8.26901 6.6875 8.36927 6.73307 8.44219 6.82422C8.53333 6.89714 8.57891 6.9974 8.57891 7.125Z"
4
+ fill-rule="nonzero"
5
+ />
6
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <path
3
- d="M9.59375 4.41406C9.53125 4.38281 9.5 4.32812 9.5 4.25C9.5 4.17188 9.53125 4.11719 9.59375 4.08594L11 3.5L11.5859 2.09375C11.6172 2.03125 11.6719 2 11.75 2C11.8281 2 11.8828 2.03125 11.9141 2.09375L12.5 3.5L13.9062 4.08594C13.9688 4.11719 14 4.17188 14 4.25C14 4.32812 13.9688 4.38281 13.9062 4.41406L12.5 5L11.9141 6.40625C11.8828 6.46875 11.8281 6.5 11.75 6.5C11.6719 6.5 11.6172 6.46875 11.5859 6.40625L11 5L9.59375 4.41406ZM13.9062 11.5859C13.9688 11.6172 14 11.6719 14 11.75C14 11.8281 13.9688 11.8828 13.9062 11.9141L12.5 12.5L11.9141 13.9062C11.8828 13.9688 11.8281 14 11.75 14C11.6719 14 11.6172 13.9688 11.5859 13.9062L11 12.5L9.59375 11.9141C9.53125 11.8828 9.5 11.8281 9.5 11.75C9.5 11.6719 9.53125 11.6172 9.59375 11.5859L11 11L11.5859 9.59375C11.6172 9.53125 11.6719 9.5 11.75 9.5C11.8281 9.5 11.8828 9.53125 11.9141 9.59375L12.5 11L13.9062 11.5859ZM10.7891 7.64844C10.9297 7.72656 11 7.84375 11 8C11 8.15625 10.9297 8.26562 10.7891 8.32812L8.16406 9.64062L6.82812 12.2891C6.76562 12.4297 6.65625 12.5 6.5 12.5C6.34375 12.5 6.23438 12.4297 6.17188 12.2891L4.83594 9.64062L2.21094 8.32812C2.07031 8.26562 2 8.15625 2 8C2 7.84375 2.07031 7.72656 2.21094 7.64844L4.83594 6.33594L6.17188 3.6875C6.23438 3.5625 6.34375 3.5 6.5 3.5C6.65625 3.5 6.76562 3.5625 6.82812 3.6875L8.16406 6.33594L10.7891 7.64844Z"
4
- fill-rule="nonzero"
5
- />
6
- </template>
1
+ <template>
2
+ <path
3
+ d="M9.59375 4.41406C9.53125 4.38281 9.5 4.32812 9.5 4.25C9.5 4.17188 9.53125 4.11719 9.59375 4.08594L11 3.5L11.5859 2.09375C11.6172 2.03125 11.6719 2 11.75 2C11.8281 2 11.8828 2.03125 11.9141 2.09375L12.5 3.5L13.9062 4.08594C13.9688 4.11719 14 4.17188 14 4.25C14 4.32812 13.9688 4.38281 13.9062 4.41406L12.5 5L11.9141 6.40625C11.8828 6.46875 11.8281 6.5 11.75 6.5C11.6719 6.5 11.6172 6.46875 11.5859 6.40625L11 5L9.59375 4.41406ZM13.9062 11.5859C13.9688 11.6172 14 11.6719 14 11.75C14 11.8281 13.9688 11.8828 13.9062 11.9141L12.5 12.5L11.9141 13.9062C11.8828 13.9688 11.8281 14 11.75 14C11.6719 14 11.6172 13.9688 11.5859 13.9062L11 12.5L9.59375 11.9141C9.53125 11.8828 9.5 11.8281 9.5 11.75C9.5 11.6719 9.53125 11.6172 9.59375 11.5859L11 11L11.5859 9.59375C11.6172 9.53125 11.6719 9.5 11.75 9.5C11.8281 9.5 11.8828 9.53125 11.9141 9.59375L12.5 11L13.9062 11.5859ZM10.7891 7.64844C10.9297 7.72656 11 7.84375 11 8C11 8.15625 10.9297 8.26562 10.7891 8.32812L8.16406 9.64062L6.82812 12.2891C6.76562 12.4297 6.65625 12.5 6.5 12.5C6.34375 12.5 6.23438 12.4297 6.17188 12.2891L4.83594 9.64062L2.21094 8.32812C2.07031 8.26562 2 8.15625 2 8C2 7.84375 2.07031 7.72656 2.21094 7.64844L4.83594 6.33594L6.17188 3.6875C6.23438 3.5625 6.34375 3.5 6.5 3.5C6.65625 3.5 6.76562 3.5625 6.82812 3.6875L8.16406 6.33594L10.7891 7.64844Z"
4
+ fill-rule="nonzero"
5
+ />
6
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <path
3
- d="M8.9036 1L8.903 11.636l3.94-3.5568L14 9.5832 8 15 2 9.5832l1.157-1.504 3.939 3.5558L7.0964 1h1.8072z"
4
- fill-rule="nonzero"
5
- />
6
- </template>
1
+ <template>
2
+ <path
3
+ d="M8.9036 1L8.903 11.636l3.94-3.5568L14 9.5832 8 15 2 9.5832l1.157-1.504 3.939 3.5558L7.0964 1h1.8072z"
4
+ fill-rule="nonzero"
5
+ />
6
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <path
3
- transform="rotate(90) translate(0 -16)"
4
- d="M8.9036 1L8.903 11.636l3.94-3.5568L14 9.5832 8 15 2 9.5832l1.157-1.504 3.939 3.5558L7.0964 1h1.8072z"
5
- fill-rule="nonzero"
6
- />
7
- </template>
1
+ <template>
2
+ <path
3
+ transform="rotate(90) translate(0 -16)"
4
+ d="M8.9036 1L8.903 11.636l3.94-3.5568L14 9.5832 8 15 2 9.5832l1.157-1.504 3.939 3.5558L7.0964 1h1.8072z"
5
+ fill-rule="nonzero"
6
+ />
7
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <path
3
- transform="rotate(-90) translate(-16 0)"
4
- d="M8.9036 1L8.903 11.636l3.94-3.5568L14 9.5832 8 15 2 9.5832l1.157-1.504 3.939 3.5558L7.0964 1h1.8072z"
5
- fill-rule="nonzero"
6
- />
7
- </template>
1
+ <template>
2
+ <path
3
+ transform="rotate(-90) translate(-16 0)"
4
+ d="M8.9036 1L8.903 11.636l3.94-3.5568L14 9.5832 8 15 2 9.5832l1.157-1.504 3.939 3.5558L7.0964 1h1.8072z"
5
+ fill-rule="nonzero"
6
+ />
7
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <path
3
- fill-rule="evenodd"
4
- d="M1.5 1.5A.5.5 0 0 0 1 2v4.8a2.5 2.5 0 0 0 2.5 2.5h9.793l-3.347 3.346a.5.5 0 0 0 .708.708l4.2-4.2a.5.5 0 0 0 0-.708l-4-4a.5.5 0 0 0-.708.708L13.293 8.3H3.5A1.5 1.5 0 0 1 2 6.8V2a.5.5 0 0 0-.5-.5"
5
- />
6
- </template>
1
+ <template>
2
+ <path
3
+ fill-rule="evenodd"
4
+ d="M1.5 1.5A.5.5 0 0 0 1 2v4.8a2.5 2.5 0 0 0 2.5 2.5h9.793l-3.347 3.346a.5.5 0 0 0 .708.708l4.2-4.2a.5.5 0 0 0 0-.708l-4-4a.5.5 0 0 0-.708.708L13.293 8.3H3.5A1.5 1.5 0 0 1 2 6.8V2a.5.5 0 0 0-.5-.5"
5
+ />
6
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <path
3
- transform="translate(7.999558, 8.000000) rotate(180.000000) translate(-7.999558, -8.000000) translate(0.999117, 1.000000)"
4
- d="M14.000883,12 L14.000883,14 L0,14 L0,12 L14.000883,12 Z M7.75299114,5.68434189e-14 L7.752,8.357 L11.0358936,5.56224224 L12,6.74397996 L7,11 L2,6.74397996 L2.96410636,5.56224224 L6.247,8.356 L6.24700886,5.68434189e-14 L7.75299114,5.68434189e-14 Z"
5
- fill-rule="nonzero"
6
- />
7
- </template>
1
+ <template>
2
+ <path
3
+ transform="translate(7.999558, 8.000000) rotate(180.000000) translate(-7.999558, -8.000000) translate(0.999117, 1.000000)"
4
+ d="M14.000883,12 L14.000883,14 L0,14 L0,12 L14.000883,12 Z M7.75299114,5.68434189e-14 L7.752,8.357 L11.0358936,5.56224224 L12,6.74397996 L7,11 L2,6.74397996 L2.96410636,5.56224224 L6.247,8.356 L6.24700886,5.68434189e-14 L7.75299114,5.68434189e-14 Z"
5
+ fill-rule="nonzero"
6
+ />
7
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <path
3
- transform="rotate(-180) translate(-16 -16)"
4
- d="M8.9036 1L8.903 11.636l3.94-3.5568L14 9.5832 8 15 2 9.5832l1.157-1.504 3.939 3.5558L7.0964 1h1.8072z"
5
- fill-rule="nonzero"
6
- />
7
- </template>
1
+ <template>
2
+ <path
3
+ transform="rotate(-180) translate(-16 -16)"
4
+ d="M8.9036 1L8.903 11.636l3.94-3.5568L14 9.5832 8 15 2 9.5832l1.157-1.504 3.939 3.5558L7.0964 1h1.8072z"
5
+ fill-rule="nonzero"
6
+ />
7
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <path
3
- d="M9.3073 12.226c-1.3173 1.387-3.3755 1.387-4.6927 0-1.3173-1.387-1.3996-3.4675-.0823-4.7678l3.7047-3.901c.8233-.8668 2.1406-.8668 2.8815 0 .8233.867.8233 2.254 0 3.0341L8.237 9.7121c-.3293.3467-.8233.3467-1.1526 0-.3293-.3468-.3293-.8669 0-1.2136l2.3052-2.4273-1.2349-1.2136L5.9318 7.198c-.9879 1.0403-.9879 2.6873 0 3.641.988.9535 2.5522 1.0402 3.4578 0l2.9638-3.1208a4.0175 4.0175 0 000-5.548c-1.4819-1.5604-3.787-1.5604-5.269 0L3.3797 6.2446c-1.8936 1.9938-1.8113 5.2012.0823 7.195C4.45 14.48 5.6849 15 7.0021 15c1.3173 0 2.5522-.5201 3.4578-1.5604L14 9.7121l-1.1526-1.2136-3.5401 3.7275z"
4
- fill-rule="nonzero"
5
- />
6
- </template>
1
+ <template>
2
+ <path
3
+ d="M9.3073 12.226c-1.3173 1.387-3.3755 1.387-4.6927 0-1.3173-1.387-1.3996-3.4675-.0823-4.7678l3.7047-3.901c.8233-.8668 2.1406-.8668 2.8815 0 .8233.867.8233 2.254 0 3.0341L8.237 9.7121c-.3293.3467-.8233.3467-1.1526 0-.3293-.3468-.3293-.8669 0-1.2136l2.3052-2.4273-1.2349-1.2136L5.9318 7.198c-.9879 1.0403-.9879 2.6873 0 3.641.988.9535 2.5522 1.0402 3.4578 0l2.9638-3.1208a4.0175 4.0175 0 000-5.548c-1.4819-1.5604-3.787-1.5604-5.269 0L3.3797 6.2446c-1.8936 1.9938-1.8113 5.2012.0823 7.195C4.45 14.48 5.6849 15 7.0021 15c1.3173 0 2.5522-.5201 3.4578-1.5604L14 9.7121l-1.1526-1.2136-3.5401 3.7275z"
4
+ fill-rule="nonzero"
5
+ />
6
+ </template>
@@ -1,17 +1,17 @@
1
- <template>
2
- <svg
3
- xmlns="http://www.w3.org/2000/svg"
4
- xmlns:xlink="http://www.w3.org/1999/xlink"
5
- width="16px"
6
- height="16px"
7
- viewBox="0 0 16 15"
8
- version="1.1"
9
- >
10
- <g id="surface1">
11
- <path
12
- style="stroke: none; fill-rule: evenodd; fill: rgb(100%, 100%, 100%); fill-opacity: 1"
13
- d="M 16 7.546875 C 16 3.378906 12.417969 0 8 0 C 3.582031 0 0 3.378906 0 7.546875 C 0 11.3125 2.925781 14.433594 6.75 15 L 6.75 9.726562 L 4.71875 9.726562 L 4.71875 7.546875 L 6.75 7.546875 L 6.75 5.882812 C 6.75 3.992188 7.945312 2.949219 9.773438 2.949219 C 10.648438 2.949219 11.5625 3.09375 11.5625 3.09375 L 11.5625 4.953125 L 10.554688 4.953125 C 9.558594 4.953125 9.25 5.535156 9.25 6.128906 L 9.25 7.546875 L 11.46875 7.546875 L 11.113281 9.726562 L 9.25 9.726562 L 9.25 15 C 13.074219 14.433594 16 11.3125 16 7.546875 "
14
- />
15
- </g>
16
- </svg>
17
- </template>
1
+ <template>
2
+ <svg
3
+ xmlns="http://www.w3.org/2000/svg"
4
+ xmlns:xlink="http://www.w3.org/1999/xlink"
5
+ width="16px"
6
+ height="16px"
7
+ viewBox="0 0 16 15"
8
+ version="1.1"
9
+ >
10
+ <g id="surface1">
11
+ <path
12
+ style="stroke: none; fill-rule: evenodd; fill: rgb(100%, 100%, 100%); fill-opacity: 1"
13
+ d="M 16 7.546875 C 16 3.378906 12.417969 0 8 0 C 3.582031 0 0 3.378906 0 7.546875 C 0 11.3125 2.925781 14.433594 6.75 15 L 6.75 9.726562 L 4.71875 9.726562 L 4.71875 7.546875 L 6.75 7.546875 L 6.75 5.882812 C 6.75 3.992188 7.945312 2.949219 9.773438 2.949219 C 10.648438 2.949219 11.5625 3.09375 11.5625 3.09375 L 11.5625 4.953125 L 10.554688 4.953125 C 9.558594 4.953125 9.25 5.535156 9.25 6.128906 L 9.25 7.546875 L 11.46875 7.546875 L 11.113281 9.726562 L 9.25 9.726562 L 9.25 15 C 13.074219 14.433594 16 11.3125 16 7.546875 "
14
+ />
15
+ </g>
16
+ </svg>
17
+ </template>
@@ -1,24 +1,24 @@
1
- <template>
2
- <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
3
- <g clip-path="url(#a)">
4
- <g clip-path="url(#b)">
5
- <path
6
- d="M20 10c0-5.523-4.477-10-10-10S0 4.477 0 10c0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.54V10h2.54V7.797c0-2.506 1.492-3.89 3.777-3.89 1.093 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.563V10h2.773l-.443 2.89h-2.33v6.988C16.343 19.128 20 14.991 20 10Z"
7
- fill="#1877F2"
8
- />
9
- <path
10
- d="m13.893 12.89.443-2.89h-2.774V8.125c0-.79.388-1.563 1.63-1.563h1.261v-2.46s-1.144-.196-2.238-.196c-2.285 0-3.777 1.385-3.777 3.89V10h-2.54v2.89h2.54v6.988c1.035.163 2.09.163 3.124 0v-6.987h2.33Z"
11
- fill="#fff"
12
- />
13
- </g>
14
- </g>
15
- <defs>
16
- <clipPath id="a">
17
- <path fill="#fff" d="M0 0h20v20H0z" />
18
- </clipPath>
19
- <clipPath id="b">
20
- <path fill="#fff" d="M0 0h20v20H0z" />
21
- </clipPath>
22
- </defs>
23
- </svg>
24
- </template>
1
+ <template>
2
+ <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
3
+ <g clip-path="url(#a)">
4
+ <g clip-path="url(#b)">
5
+ <path
6
+ d="M20 10c0-5.523-4.477-10-10-10S0 4.477 0 10c0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.54V10h2.54V7.797c0-2.506 1.492-3.89 3.777-3.89 1.093 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.563V10h2.773l-.443 2.89h-2.33v6.988C16.343 19.128 20 14.991 20 10Z"
7
+ fill="#1877F2"
8
+ />
9
+ <path
10
+ d="m13.893 12.89.443-2.89h-2.774V8.125c0-.79.388-1.563 1.63-1.563h1.261v-2.46s-1.144-.196-2.238-.196c-2.285 0-3.777 1.385-3.777 3.89V10h-2.54v2.89h2.54v6.988c1.035.163 2.09.163 3.124 0v-6.987h2.33Z"
11
+ fill="#fff"
12
+ />
13
+ </g>
14
+ </g>
15
+ <defs>
16
+ <clipPath id="a">
17
+ <path fill="#fff" d="M0 0h20v20H0z" />
18
+ </clipPath>
19
+ <clipPath id="b">
20
+ <path fill="#fff" d="M0 0h20v20H0z" />
21
+ </clipPath>
22
+ </defs>
23
+ </svg>
24
+ </template>
@@ -1,32 +1,32 @@
1
- <template>
2
- <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
3
- <g clip-path="url(#a)">
4
- <g clip-path="url(#b)">
5
- <path
6
- d="M19.805 10.23c0-.68-.055-1.363-.173-2.032H10.2v3.851h5.402a4.63 4.63 0 0 1-2 3.039v2.499h3.223c1.892-1.742 2.98-4.314 2.98-7.357Z"
7
- fill="#4285F4"
8
- />
9
- <path
10
- d="M10.2 20c2.697 0 4.972-.885 6.629-2.413l-3.223-2.499c-.896.61-2.054.955-3.402.955-2.61 0-4.821-1.76-5.615-4.126H1.264v2.576A10.001 10.001 0 0 0 10.2 20Z"
11
- fill="#34A853"
12
- />
13
- <path
14
- d="M4.585 11.917a5.99 5.99 0 0 1 0-3.829V5.512H1.264a10.009 10.009 0 0 0 0 8.98l3.321-2.575Z"
15
- fill="#FBBC04"
16
- />
17
- <path
18
- d="M10.2 3.958a5.434 5.434 0 0 1 3.836 1.5l2.855-2.856A9.611 9.611 0 0 0 10.2.001a9.998 9.998 0 0 0-8.936 5.511l3.321 2.576c.79-2.37 3.006-4.13 5.615-4.13Z"
19
- fill="#EA4335"
20
- />
21
- </g>
22
- </g>
23
- <defs>
24
- <clipPath id="a">
25
- <path fill="#fff" d="M0 0h20v20H0z" />
26
- </clipPath>
27
- <clipPath id="b">
28
- <path fill="#fff" d="M0 0h20v20H0z" />
29
- </clipPath>
30
- </defs>
31
- </svg>
32
- </template>
1
+ <template>
2
+ <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
3
+ <g clip-path="url(#a)">
4
+ <g clip-path="url(#b)">
5
+ <path
6
+ d="M19.805 10.23c0-.68-.055-1.363-.173-2.032H10.2v3.851h5.402a4.63 4.63 0 0 1-2 3.039v2.499h3.223c1.892-1.742 2.98-4.314 2.98-7.357Z"
7
+ fill="#4285F4"
8
+ />
9
+ <path
10
+ d="M10.2 20c2.697 0 4.972-.885 6.629-2.413l-3.223-2.499c-.896.61-2.054.955-3.402.955-2.61 0-4.821-1.76-5.615-4.126H1.264v2.576A10.001 10.001 0 0 0 10.2 20Z"
11
+ fill="#34A853"
12
+ />
13
+ <path
14
+ d="M4.585 11.917a5.99 5.99 0 0 1 0-3.829V5.512H1.264a10.009 10.009 0 0 0 0 8.98l3.321-2.575Z"
15
+ fill="#FBBC04"
16
+ />
17
+ <path
18
+ d="M10.2 3.958a5.434 5.434 0 0 1 3.836 1.5l2.855-2.856A9.611 9.611 0 0 0 10.2.001a9.998 9.998 0 0 0-8.936 5.511l3.321 2.576c.79-2.37 3.006-4.13 5.615-4.13Z"
19
+ fill="#EA4335"
20
+ />
21
+ </g>
22
+ </g>
23
+ <defs>
24
+ <clipPath id="a">
25
+ <path fill="#fff" d="M0 0h20v20H0z" />
26
+ </clipPath>
27
+ <clipPath id="b">
28
+ <path fill="#fff" d="M0 0h20v20H0z" />
29
+ </clipPath>
30
+ </defs>
31
+ </svg>
32
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <path
3
- fill-rule="evenodd"
4
- clip-rule="evenodd"
5
- d="M13.8051 8.852c.26.2607.26.682 0 .9414l-4.0114 4.0113c-.13.13-.3.1954-.4706.1954a.6634.6634 0 0 1-.4707-.1954.6646.6646 0 0 1 0-.9406l4.0113-4.012a.6668.6668 0 0 1 .9414 0Zm-.0503-3.2777c.2607.2606.2607.682 0 .9413l-7.2547 7.254c-.13.13-.3.1953-.4706.1953a.6633.6633 0 0 1-.4707-.1953.6648.6648 0 0 1 0-.9407l7.2553-7.2546a.6648.6648 0 0 1 .9407 0Zm.0375-3.3664a.6643.6643 0 0 1 0 .9414L3.241 13.7006a.6667.6667 0 0 1-.4707.1947.6655.6655 0 0 1-.4707-1.136L12.8518 2.2079c.26-.26.6813-.26.9406 0Zm-.046 10.0317a.6642.6642 0 0 1 0 .9413l-.504.5047a.6666.6666 0 0 1-.9413 0 .6642.6642 0 0 1 0-.9413l.5047-.5047a.6646.6646 0 0 1 .9406 0ZM10.426 2.2455c.2607.2606.2607.682 0 .9413l-7.254 7.254c-.13.13-.3.1953-.4707.1953a.6633.6633 0 0 1-.4706-.1953.6647.6647 0 0 1 0-.9407l7.2546-7.2546a.6647.6647 0 0 1 .9407 0Zm-3.2778-.051c.26.2607.26.682 0 .9414l-4.012 4.012a.6645.6645 0 0 1-.9413 0 .6647.6647 0 0 1 0-.9407l4.012-4.0127a.6667.6667 0 0 1 .9413 0ZM3.76 2.2533a.6657.6657 0 0 1 .0007.942l-.5034.5046a.668.668 0 0 1-.942.0007.667.667 0 0 1-.0006-.942l.504-.5047c.2593-.26.6813-.2593.9413-.0006Z"
6
- />
7
- </template>
1
+ <template>
2
+ <path
3
+ fill-rule="evenodd"
4
+ clip-rule="evenodd"
5
+ d="M13.8051 8.852c.26.2607.26.682 0 .9414l-4.0114 4.0113c-.13.13-.3.1954-.4706.1954a.6634.6634 0 0 1-.4707-.1954.6646.6646 0 0 1 0-.9406l4.0113-4.012a.6668.6668 0 0 1 .9414 0Zm-.0503-3.2777c.2607.2606.2607.682 0 .9413l-7.2547 7.254c-.13.13-.3.1953-.4706.1953a.6633.6633 0 0 1-.4707-.1953.6648.6648 0 0 1 0-.9407l7.2553-7.2546a.6648.6648 0 0 1 .9407 0Zm.0375-3.3664a.6643.6643 0 0 1 0 .9414L3.241 13.7006a.6667.6667 0 0 1-.4707.1947.6655.6655 0 0 1-.4707-1.136L12.8518 2.2079c.26-.26.6813-.26.9406 0Zm-.046 10.0317a.6642.6642 0 0 1 0 .9413l-.504.5047a.6666.6666 0 0 1-.9413 0 .6642.6642 0 0 1 0-.9413l.5047-.5047a.6646.6646 0 0 1 .9406 0ZM10.426 2.2455c.2607.2606.2607.682 0 .9413l-7.254 7.254c-.13.13-.3.1953-.4707.1953a.6633.6633 0 0 1-.4706-.1953.6647.6647 0 0 1 0-.9407l7.2546-7.2546a.6647.6647 0 0 1 .9407 0Zm-3.2778-.051c.26.2607.26.682 0 .9414l-4.012 4.012a.6645.6645 0 0 1-.9413 0 .6647.6647 0 0 1 0-.9407l4.012-4.0127a.6667.6667 0 0 1 .9413 0ZM3.76 2.2533a.6657.6657 0 0 1 .0007.942l-.5034.5046a.668.668 0 0 1-.942.0007.667.667 0 0 1-.0006-.942l.504-.5047c.2593-.26.6813-.2593.9413-.0006Z"
6
+ />
7
+ </template>
@@ -1,8 +1,8 @@
1
- <template>
2
- <path
3
- fill-rule="evenodd"
4
- clip-rule="evenodd"
5
- d="M8 12C10.2091 12 12 10.2091 12 8C12 5.79086 10.2091 4 8 4C5.79086 4 4 5.79086 4 8C4 10.2091 5.79086 12 8 12Z
6
- M12.1308 3.09889C12.275 3.44751 12.5516 3.72462 12.9 3.86929L14.1217 4.37532C14.4703 4.51974 14.7473 4.79673 14.8917 5.14538C15.0361 5.49402 15.0361 5.88576 14.8917 6.2344L14.386 7.4552C14.2416 7.804 14.2414 8.19613 14.3865 8.54476L14.8913 9.76519C14.9629 9.93787 14.9997 10.123 14.9997 10.3099C14.9998 10.4968 14.963 10.6819 14.8914 10.8546C14.8199 11.0273 14.715 11.1843 14.5828 11.3164C14.4507 11.4486 14.2937 11.5534 14.121 11.6249L12.9002 12.1305C12.5516 12.2747 12.2745 12.5514 12.1299 12.8998L11.6239 14.1214C11.4794 14.4701 11.2025 14.7471 10.8538 14.8915C10.5052 15.0359 10.1135 15.0359 9.76485 14.8915L8.54409 14.3858C8.19545 14.2418 7.80387 14.2421 7.45545 14.3867L6.23382 14.892C5.88538 15.036 5.494 15.0359 5.14566 14.8916C4.79731 14.7473 4.52047 14.4707 4.37597 14.1224L3.8698 12.9003C3.72566 12.5517 3.44898 12.2746 3.10059 12.13L1.87896 11.6239C1.53048 11.4796 1.25358 11.2027 1.10912 10.8543C0.964656 10.5059 0.96446 10.1143 1.10857 9.76572L1.61422 8.54492C1.75828 8.19627 1.75798 7.80467 1.61341 7.45623L1.10848 6.23369C1.03689 6.06101 1.00003 5.87591 1 5.68898C0.99997 5.50205 1.03677 5.31694 1.10831 5.14424C1.17984 4.97154 1.2847 4.81462 1.4169 4.68246C1.54909 4.5503 1.70604 4.44549 1.87876 4.37401L3.09951 3.86834C3.44781 3.72432 3.72474 3.44798 3.86951 3.09998L4.37553 1.87831C4.51993 1.52966 4.79692 1.25266 5.14555 1.10825C5.49419 0.963836 5.88591 0.963836 6.23454 1.10825L7.45529 1.61392C7.80393 1.75798 8.19551 1.75768 8.54393 1.6131L9.76608 1.10903C10.1147 0.964701 10.5063 0.96473 10.8549 1.10912C11.2034 1.2535 11.4804 1.53042 11.6248 1.87897L12.131 3.10101L12.1308 3.09889Z"
7
- />
1
+ <template>
2
+ <path
3
+ fill-rule="evenodd"
4
+ clip-rule="evenodd"
5
+ d="M8 12C10.2091 12 12 10.2091 12 8C12 5.79086 10.2091 4 8 4C5.79086 4 4 5.79086 4 8C4 10.2091 5.79086 12 8 12Z
6
+ M12.1308 3.09889C12.275 3.44751 12.5516 3.72462 12.9 3.86929L14.1217 4.37532C14.4703 4.51974 14.7473 4.79673 14.8917 5.14538C15.0361 5.49402 15.0361 5.88576 14.8917 6.2344L14.386 7.4552C14.2416 7.804 14.2414 8.19613 14.3865 8.54476L14.8913 9.76519C14.9629 9.93787 14.9997 10.123 14.9997 10.3099C14.9998 10.4968 14.963 10.6819 14.8914 10.8546C14.8199 11.0273 14.715 11.1843 14.5828 11.3164C14.4507 11.4486 14.2937 11.5534 14.121 11.6249L12.9002 12.1305C12.5516 12.2747 12.2745 12.5514 12.1299 12.8998L11.6239 14.1214C11.4794 14.4701 11.2025 14.7471 10.8538 14.8915C10.5052 15.0359 10.1135 15.0359 9.76485 14.8915L8.54409 14.3858C8.19545 14.2418 7.80387 14.2421 7.45545 14.3867L6.23382 14.892C5.88538 15.036 5.494 15.0359 5.14566 14.8916C4.79731 14.7473 4.52047 14.4707 4.37597 14.1224L3.8698 12.9003C3.72566 12.5517 3.44898 12.2746 3.10059 12.13L1.87896 11.6239C1.53048 11.4796 1.25358 11.2027 1.10912 10.8543C0.964656 10.5059 0.96446 10.1143 1.10857 9.76572L1.61422 8.54492C1.75828 8.19627 1.75798 7.80467 1.61341 7.45623L1.10848 6.23369C1.03689 6.06101 1.00003 5.87591 1 5.68898C0.99997 5.50205 1.03677 5.31694 1.10831 5.14424C1.17984 4.97154 1.2847 4.81462 1.4169 4.68246C1.54909 4.5503 1.70604 4.44549 1.87876 4.37401L3.09951 3.86834C3.44781 3.72432 3.72474 3.44798 3.86951 3.09998L4.37553 1.87831C4.51993 1.52966 4.79692 1.25266 5.14555 1.10825C5.49419 0.963836 5.88591 0.963836 6.23454 1.10825L7.45529 1.61392C7.80393 1.75798 8.19551 1.75768 8.54393 1.6131L9.76608 1.10903C10.1147 0.964701 10.5063 0.96473 10.8549 1.10912C11.2034 1.2535 11.4804 1.53042 11.6248 1.87897L12.131 3.10101L12.1308 3.09889Z"
7
+ />
8
8
  </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <svg viewBox="0 0 94 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect x="19" y="3" width="56" height="6" rx="3" />
4
- <rect x="32.5" y="15" width="29" height="6" rx="3" />
5
- </svg>
6
- </template>
1
+ <template>
2
+ <svg viewBox="0 0 94 24" xmlns="http://www.w3.org/2000/svg">
3
+ <rect x="19" y="3" width="56" height="6" rx="3" />
4
+ <rect x="32.5" y="15" width="29" height="6" rx="3" />
5
+ </svg>
6
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <svg viewBox="0 0 94 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect x="19" y="3" width="56" height="6" rx="3" />
4
- <rect x="19" y="15" width="29" height="6" rx="3" />
5
- </svg>
6
- </template>
1
+ <template>
2
+ <svg viewBox="0 0 94 24" xmlns="http://www.w3.org/2000/svg">
3
+ <rect x="19" y="3" width="56" height="6" rx="3" />
4
+ <rect x="19" y="15" width="29" height="6" rx="3" />
5
+ </svg>
6
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <path
3
- fill-rule="evenodd"
4
- clip-rule="evenodd"
5
- d="M13.875 2.5C14.1875 2.5 14.4531 2.60938 14.6719 2.82812C14.8906 3.04688 15 3.3125 15 3.625V12.375C15 12.6875 14.8906 12.9531 14.6719 13.1719C14.4531 13.3906 14.1875 13.5 13.875 13.5H2.125C1.8125 13.5 1.54688 13.3906 1.32812 13.1719C1.10938 12.9531 1 12.6875 1 12.375V3.625C1 3.3125 1.10938 3.04688 1.32812 2.82812C1.54688 2.60938 1.8125 2.5 2.125 2.5H13.875ZM4.9375 4.5C4.67188 4.5 4.44531 4.59375 4.25781 4.78125C4.08594 4.95312 4 5.17188 4 5.4375C4 5.70312 4.08594 5.92969 4.25781 6.11719C4.44531 6.28906 4.67188 6.375 4.9375 6.375C5.20312 6.375 5.42188 6.28906 5.59375 6.11719C5.78125 5.92969 5.875 5.70312 5.875 5.4375C5.875 5.17188 5.78125 4.95312 5.59375 4.78125C5.42188 4.59375 5.20312 4.5 4.9375 4.5ZM4.1875 8.0625V9.1875H11.6875V7.3125L9.625 5.25C9.5 5.125 9.375 5.125 9.25 5.25L6.4375 8.0625L5.5 7.125C5.375 7 5.25 7 5.125 7.125L4.1875 8.0625ZM3.5 10.5C3.22386 10.5 3 10.7239 3 11C3 11.2761 3.22386 11.5 3.5 11.5H12.5C12.7761 11.5 13 11.2761 13 11C13 10.7239 12.7761 10.5 12.5 10.5H3.5Z"
6
- />
7
- </template>
1
+ <template>
2
+ <path
3
+ fill-rule="evenodd"
4
+ clip-rule="evenodd"
5
+ d="M13.875 2.5C14.1875 2.5 14.4531 2.60938 14.6719 2.82812C14.8906 3.04688 15 3.3125 15 3.625V12.375C15 12.6875 14.8906 12.9531 14.6719 13.1719C14.4531 13.3906 14.1875 13.5 13.875 13.5H2.125C1.8125 13.5 1.54688 13.3906 1.32812 13.1719C1.10938 12.9531 1 12.6875 1 12.375V3.625C1 3.3125 1.10938 3.04688 1.32812 2.82812C1.54688 2.60938 1.8125 2.5 2.125 2.5H13.875ZM4.9375 4.5C4.67188 4.5 4.44531 4.59375 4.25781 4.78125C4.08594 4.95312 4 5.17188 4 5.4375C4 5.70312 4.08594 5.92969 4.25781 6.11719C4.44531 6.28906 4.67188 6.375 4.9375 6.375C5.20312 6.375 5.42188 6.28906 5.59375 6.11719C5.78125 5.92969 5.875 5.70312 5.875 5.4375C5.875 5.17188 5.78125 4.95312 5.59375 4.78125C5.42188 4.59375 5.20312 4.5 4.9375 4.5ZM4.1875 8.0625V9.1875H11.6875V7.3125L9.625 5.25C9.5 5.125 9.375 5.125 9.25 5.25L6.4375 8.0625L5.5 7.125C5.375 7 5.25 7 5.125 7.125L4.1875 8.0625ZM3.5 10.5C3.22386 10.5 3 10.7239 3 11C3 11.2761 3.22386 11.5 3.5 11.5H12.5C12.7761 11.5 13 11.2761 13 11C13 10.7239 12.7761 10.5 12.5 10.5H3.5Z"
6
+ />
7
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <path
3
- fill-rule="evenodd"
4
- clip-rule="evenodd"
5
- d="M14.6653 4.9467c-1.0543.8086-2.1084 1.2463-3.0729 1.4612.6586-.8467 1.0642-1.783 1.0411-2.7071-.9172.7035-1.8343.9936-2.6232 1.0814.7379-.7239 1.2348-1.5937 1.2135-2.4489-1.7365 1.3319-3.4728.5723-3.4728.5723-.2355 2.7363-2.9333 3.1003-2.9333 3.1003.3447.3404.814.4998 1.3432.5163l-.0005.0002c.3489.0095.6982-.0401 1.0371-.1255C6.0638 8.5523 3.587 8.8872 3.587 8.8872c.4868.4806 1.1497.7058 1.8969.729l-.0008.0003a4.8127 4.8127 0 0 0 .7765-.0433C4.4708 12.166 1.3333 12.59 1.3333 12.59c.7173.7081 1.694 1.0401 2.795 1.0744l-.0005.0002c1.3849.0351 2.749-.3546 4.008-.9091.0003 0 .0005-.0002.0007-.0003 1.0824-.4832 2.1016-1.1083 3.0278-1.8482l.0002-.0002a.0008.0008 0 0 0-.0005.0002c2.0553-1.646 3.5546-3.825 3.5013-5.9602Z"
6
- />
7
- </template>
1
+ <template>
2
+ <path
3
+ fill-rule="evenodd"
4
+ clip-rule="evenodd"
5
+ d="M14.6653 4.9467c-1.0543.8086-2.1084 1.2463-3.0729 1.4612.6586-.8467 1.0642-1.783 1.0411-2.7071-.9172.7035-1.8343.9936-2.6232 1.0814.7379-.7239 1.2348-1.5937 1.2135-2.4489-1.7365 1.3319-3.4728.5723-3.4728.5723-.2355 2.7363-2.9333 3.1003-2.9333 3.1003.3447.3404.814.4998 1.3432.5163l-.0005.0002c.3489.0095.6982-.0401 1.0371-.1255C6.0638 8.5523 3.587 8.8872 3.587 8.8872c.4868.4806 1.1497.7058 1.8969.729l-.0008.0003a4.8127 4.8127 0 0 0 .7765-.0433C4.4708 12.166 1.3333 12.59 1.3333 12.59c.7173.7081 1.694 1.0401 2.795 1.0744l-.0005.0002c1.3849.0351 2.749-.3546 4.008-.9091.0003 0 .0005-.0002.0007-.0003 1.0824-.4832 2.1016-1.1083 3.0278-1.8482l.0002-.0002a.0008.0008 0 0 0-.0005.0002c2.0553-1.646 3.5546-3.825 3.5013-5.9602Z"
6
+ />
7
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <path
3
- d="M13.9163 6.79983C13.9163 6.41419 13.9158 6.17005 13.9007 5.98537C13.8864 5.80959 13.8627 5.75468 13.8529 5.73537C13.7969 5.62561 13.7077 5.53642 13.598 5.48049C13.5787 5.47066 13.5238 5.447 13.348 5.43264C13.1633 5.41755 12.9192 5.41701 12.5335 5.41701H11.4163V13.25H12.5335C12.9191 13.25 13.1633 13.2495 13.348 13.2344C13.5234 13.2201 13.5786 13.1964 13.598 13.1865C13.7077 13.1307 13.7969 13.0413 13.8529 12.9317C13.8627 12.9124 13.8863 12.8574 13.9007 12.6817C13.9158 12.497 13.9163 12.252 13.9163 11.8662V6.79983ZM6.08333 13.25H9.91634V5.41701H6.08333V13.25ZM8.00032 2.75002C7.33233 2.75002 7.14499 2.75688 7.01009 2.79299C6.57872 2.90857 6.24188 3.24541 6.1263 3.67678C6.11062 3.73534 6.10144 3.80371 6.09505 3.91701H9.90462C9.89823 3.80382 9.89 3.7353 9.87435 3.67678C9.7588 3.24556 9.42171 2.90868 8.99056 2.79299C8.85566 2.75684 8.66833 2.75002 8.00032 2.75002ZM2.08333 11.8662C2.08333 12.252 2.08386 12.497 2.09896 12.6817C2.11333 12.8574 2.137 12.9124 2.14681 12.9317C2.20272 13.0414 2.29199 13.1306 2.40169 13.1865C2.42094 13.1964 2.47598 13.22 2.65169 13.2344C2.8364 13.2495 3.08138 13.25 3.46712 13.25H4.58333V5.41701H3.46712C3.08138 5.41701 2.8364 5.41755 2.65169 5.43264C2.476 5.44702 2.42094 5.47068 2.40169 5.48049C2.29202 5.53642 2.2027 5.62568 2.14681 5.73537C2.13694 5.75479 2.11329 5.80997 2.09896 5.98537C2.08387 6.17005 2.08333 6.4142 2.08333 6.79983V11.8662ZM15.4163 11.8662C15.4163 12.2272 15.4171 12.5438 15.3958 12.8037C15.3739 13.0723 15.3252 13.3465 15.1898 13.6123C14.9901 14.0041 14.6714 14.3227 14.2796 14.5225C14.0137 14.658 13.7388 14.7076 13.47 14.7295C13.2102 14.7507 12.8944 14.75 12.5335 14.75H3.46712C3.10613 14.75 2.78958 14.7508 2.52962 14.7295C2.26098 14.7075 1.98691 14.658 1.72103 14.5225C1.32906 14.3228 1.0106 14.0043 0.81087 13.6123C0.675395 13.3464 0.625803 13.0724 0.603839 12.8037C0.582599 12.5438 0.583331 12.2272 0.583331 11.8662V6.79983C0.583331 6.43896 0.582611 6.1232 0.603839 5.8633C0.625794 5.59459 0.675358 5.31969 0.81087 5.05373C1.01062 4.66199 1.32921 4.34322 1.72103 4.14358C1.98684 4.00819 2.26106 3.95948 2.52962 3.93752C2.78958 3.91628 3.10613 3.91701 3.46712 3.91701H4.5931C4.60372 3.68501 4.626 3.47875 4.67708 3.28811C4.93139 2.33924 5.67255 1.59808 6.62142 1.34377C6.99517 1.24363 7.42863 1.25002 8.00032 1.25002C8.57179 1.25002 9.00461 1.24368 9.37825 1.34377C10.3272 1.59803 11.0682 2.33922 11.3226 3.28811C11.3737 3.47875 11.3969 3.68499 11.4075 3.91701H12.5335C12.8944 3.91701 13.2101 3.91629 13.47 3.93752C13.7388 3.95948 14.0137 4.00806 14.2796 4.14358C14.6714 4.34327 14.9901 4.66197 15.1898 5.05373C15.3253 5.31969 15.3739 5.59459 15.3958 5.8633C15.4171 6.1232 15.4163 6.43895 15.4163 6.79983V11.8662Z"
4
- fill-rule="evenodd"
5
- clip-rule="evenodd"
6
- />
7
- </template>
1
+ <template>
2
+ <path
3
+ d="M13.9163 6.79983C13.9163 6.41419 13.9158 6.17005 13.9007 5.98537C13.8864 5.80959 13.8627 5.75468 13.8529 5.73537C13.7969 5.62561 13.7077 5.53642 13.598 5.48049C13.5787 5.47066 13.5238 5.447 13.348 5.43264C13.1633 5.41755 12.9192 5.41701 12.5335 5.41701H11.4163V13.25H12.5335C12.9191 13.25 13.1633 13.2495 13.348 13.2344C13.5234 13.2201 13.5786 13.1964 13.598 13.1865C13.7077 13.1307 13.7969 13.0413 13.8529 12.9317C13.8627 12.9124 13.8863 12.8574 13.9007 12.6817C13.9158 12.497 13.9163 12.252 13.9163 11.8662V6.79983ZM6.08333 13.25H9.91634V5.41701H6.08333V13.25ZM8.00032 2.75002C7.33233 2.75002 7.14499 2.75688 7.01009 2.79299C6.57872 2.90857 6.24188 3.24541 6.1263 3.67678C6.11062 3.73534 6.10144 3.80371 6.09505 3.91701H9.90462C9.89823 3.80382 9.89 3.7353 9.87435 3.67678C9.7588 3.24556 9.42171 2.90868 8.99056 2.79299C8.85566 2.75684 8.66833 2.75002 8.00032 2.75002ZM2.08333 11.8662C2.08333 12.252 2.08386 12.497 2.09896 12.6817C2.11333 12.8574 2.137 12.9124 2.14681 12.9317C2.20272 13.0414 2.29199 13.1306 2.40169 13.1865C2.42094 13.1964 2.47598 13.22 2.65169 13.2344C2.8364 13.2495 3.08138 13.25 3.46712 13.25H4.58333V5.41701H3.46712C3.08138 5.41701 2.8364 5.41755 2.65169 5.43264C2.476 5.44702 2.42094 5.47068 2.40169 5.48049C2.29202 5.53642 2.2027 5.62568 2.14681 5.73537C2.13694 5.75479 2.11329 5.80997 2.09896 5.98537C2.08387 6.17005 2.08333 6.4142 2.08333 6.79983V11.8662ZM15.4163 11.8662C15.4163 12.2272 15.4171 12.5438 15.3958 12.8037C15.3739 13.0723 15.3252 13.3465 15.1898 13.6123C14.9901 14.0041 14.6714 14.3227 14.2796 14.5225C14.0137 14.658 13.7388 14.7076 13.47 14.7295C13.2102 14.7507 12.8944 14.75 12.5335 14.75H3.46712C3.10613 14.75 2.78958 14.7508 2.52962 14.7295C2.26098 14.7075 1.98691 14.658 1.72103 14.5225C1.32906 14.3228 1.0106 14.0043 0.81087 13.6123C0.675395 13.3464 0.625803 13.0724 0.603839 12.8037C0.582599 12.5438 0.583331 12.2272 0.583331 11.8662V6.79983C0.583331 6.43896 0.582611 6.1232 0.603839 5.8633C0.625794 5.59459 0.675358 5.31969 0.81087 5.05373C1.01062 4.66199 1.32921 4.34322 1.72103 4.14358C1.98684 4.00819 2.26106 3.95948 2.52962 3.93752C2.78958 3.91628 3.10613 3.91701 3.46712 3.91701H4.5931C4.60372 3.68501 4.626 3.47875 4.67708 3.28811C4.93139 2.33924 5.67255 1.59808 6.62142 1.34377C6.99517 1.24363 7.42863 1.25002 8.00032 1.25002C8.57179 1.25002 9.00461 1.24368 9.37825 1.34377C10.3272 1.59803 11.0682 2.33922 11.3226 3.28811C11.3737 3.47875 11.3969 3.68499 11.4075 3.91701H12.5335C12.8944 3.91701 13.2101 3.91629 13.47 3.93752C13.7388 3.95948 14.0137 4.00806 14.2796 4.14358C14.6714 4.34327 14.9901 4.66197 15.1898 5.05373C15.3253 5.31969 15.3739 5.59459 15.3958 5.8633C15.4171 6.1232 15.4163 6.43895 15.4163 6.79983V11.8662Z"
4
+ fill-rule="evenodd"
5
+ clip-rule="evenodd"
6
+ />
7
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <path
3
- d="M1.9297 14.75l5.1406-1.7227c.2917-.0911.483-.2825.5742-.5742l.793-2.3515 5.7695-5.2227c.401-.3646.6472-.7884.7383-1.2715.0912-.483.0501-.9342-.123-1.3535-.1732-.4193-.4603-.7747-.8614-1.0664C13.56.8958 13.1133.75 12.6211.75c-.6927 0-1.276.2643-1.75.793L5.6484 7.3125l-2.3515.793c-.2917.0911-.4831.2825-.5742.5742L1 13.8203l.9297.9297zM8.082 8.6523l-.9843-.9843 4.7578-5.25c.2005-.237.4557-.3555.7656-.3555.2734 0 .5195.1094.7383.3281.2187.2188.3281.474.3281.7656-.0182.2917-.1367.5378-.3555.7383l-5.25 4.7578zM3.543 12.836l1.3672-1.3672h.0273c.1823 0 .3372-.0638.4648-.1914s.1914-.2825.1914-.4648c0-.1276-.0319-.2415-.0957-.3418a.6675.6675 0 00-.5742-.3145.6742.6742 0 00-.3281.082.5709.5709 0 00-.2324.2325c-.0547.1003-.082.2142-.082.3418v.0273L2.914 12.207l.9843-2.9258 2.1602-.7109.0547-.0273L7.207 9.6367l-.0273.0547-.711 2.1602-2.9257.9843z"
4
- fill-rule="nonzero"
5
- />
6
- </template>
1
+ <template>
2
+ <path
3
+ d="M1.9297 14.75l5.1406-1.7227c.2917-.0911.483-.2825.5742-.5742l.793-2.3515 5.7695-5.2227c.401-.3646.6472-.7884.7383-1.2715.0912-.483.0501-.9342-.123-1.3535-.1732-.4193-.4603-.7747-.8614-1.0664C13.56.8958 13.1133.75 12.6211.75c-.6927 0-1.276.2643-1.75.793L5.6484 7.3125l-2.3515.793c-.2917.0911-.4831.2825-.5742.5742L1 13.8203l.9297.9297zM8.082 8.6523l-.9843-.9843 4.7578-5.25c.2005-.237.4557-.3555.7656-.3555.2734 0 .5195.1094.7383.3281.2187.2188.3281.474.3281.7656-.0182.2917-.1367.5378-.3555.7383l-5.25 4.7578zM3.543 12.836l1.3672-1.3672h.0273c.1823 0 .3372-.0638.4648-.1914s.1914-.2825.1914-.4648c0-.1276-.0319-.2415-.0957-.3418a.6675.6675 0 00-.5742-.3145.6742.6742 0 00-.3281.082.5709.5709 0 00-.2324.2325c-.0547.1003-.082.2142-.082.3418v.0273L2.914 12.207l.9843-2.9258 2.1602-.7109.0547-.0273L7.207 9.6367l-.0273.0547-.711 2.1602-2.9257.9843z"
4
+ fill-rule="nonzero"
5
+ />
6
+ </template>
@@ -1,5 +1,5 @@
1
- <template>
2
- <path
3
- d="M13.8333 3C14.1574 3 14.4329 3.11343 14.6597 3.34028C14.8866 3.56713 15 3.84259 15 4.16667V4.55556H1V4.16667C1 3.84259 1.11343 3.56713 1.34028 3.34028C1.56713 3.11343 1.84259 3 2.16667 3H13.8333ZM1 12.7222V5.33333H15V12.7222C15 13.0463 14.8866 13.3218 14.6597 13.5486C14.4329 13.7755 14.1574 13.8889 13.8333 13.8889H2.16667C1.84259 13.8889 1.56713 13.7755 1.34028 13.5486C1.11343 13.3218 1 13.0463 1 12.7222ZM9.55556 7.08333V7.47222C9.55556 7.60185 9.62037 7.66667 9.75 7.66667H13.25C13.3796 7.66667 13.4444 7.60185 13.4444 7.47222V7.08333C13.4444 6.9537 13.3796 6.88889 13.25 6.88889H9.75C9.62037 6.88889 9.55556 6.9537 9.55556 7.08333ZM9.55556 8.63889V9.02778C9.55556 9.15741 9.62037 9.22222 9.75 9.22222H13.25C13.3796 9.22222 13.4444 9.15741 13.4444 9.02778V8.63889C13.4444 8.50926 13.3796 8.44445 13.25 8.44445H9.75C9.62037 8.44445 9.55556 8.50926 9.55556 8.63889ZM9.55556 10.1944V10.5833C9.55556 10.713 9.62037 10.7778 9.75 10.7778H13.25C13.3796 10.7778 13.4444 10.713 13.4444 10.5833V10.1944C13.4444 10.0648 13.3796 10 13.25 10H9.75C9.62037 10 9.55556 10.0648 9.55556 10.1944ZM6.37153 7.35069C6.06366 7.04282 5.69907 6.88889 5.27778 6.88889C4.85648 6.88889 4.4919 7.04282 4.18403 7.35069C3.87616 7.65857 3.72222 8.02315 3.72222 8.44445C3.72222 8.86574 3.87616 9.23032 4.18403 9.5382C4.4919 9.84607 4.85648 10 5.27778 10C5.69907 10 6.06366 9.84607 6.37153 9.5382C6.6794 9.23032 6.83333 8.86574 6.83333 8.44445C6.83333 8.02315 6.6794 7.65857 6.37153 7.35069ZM2.62847 11.8472C2.59606 11.9606 2.62037 12.0741 2.70139 12.1875C2.78241 12.2847 2.88773 12.3333 3.01736 12.3333H7.53819C7.66782 12.3333 7.77315 12.2847 7.85417 12.1875C7.93518 12.0903 7.95949 11.9769 7.92708 11.8472C7.82986 11.5394 7.64352 11.2882 7.36806 11.0938C7.09259 10.8831 6.78472 10.7778 6.44444 10.7778H6.25C5.94213 10.9074 5.61806 10.9722 5.27778 10.9722C4.9375 10.9722 4.61343 10.9074 4.30556 10.7778H4.11111C3.88426 10.7778 3.66551 10.8264 3.45486 10.9236C3.26042 11.0046 3.09028 11.1262 2.94444 11.2882C2.79861 11.4502 2.69329 11.6366 2.62847 11.8472Z"
4
- />
5
- </template>
1
+ <template>
2
+ <path
3
+ d="M13.8333 3C14.1574 3 14.4329 3.11343 14.6597 3.34028C14.8866 3.56713 15 3.84259 15 4.16667V4.55556H1V4.16667C1 3.84259 1.11343 3.56713 1.34028 3.34028C1.56713 3.11343 1.84259 3 2.16667 3H13.8333ZM1 12.7222V5.33333H15V12.7222C15 13.0463 14.8866 13.3218 14.6597 13.5486C14.4329 13.7755 14.1574 13.8889 13.8333 13.8889H2.16667C1.84259 13.8889 1.56713 13.7755 1.34028 13.5486C1.11343 13.3218 1 13.0463 1 12.7222ZM9.55556 7.08333V7.47222C9.55556 7.60185 9.62037 7.66667 9.75 7.66667H13.25C13.3796 7.66667 13.4444 7.60185 13.4444 7.47222V7.08333C13.4444 6.9537 13.3796 6.88889 13.25 6.88889H9.75C9.62037 6.88889 9.55556 6.9537 9.55556 7.08333ZM9.55556 8.63889V9.02778C9.55556 9.15741 9.62037 9.22222 9.75 9.22222H13.25C13.3796 9.22222 13.4444 9.15741 13.4444 9.02778V8.63889C13.4444 8.50926 13.3796 8.44445 13.25 8.44445H9.75C9.62037 8.44445 9.55556 8.50926 9.55556 8.63889ZM9.55556 10.1944V10.5833C9.55556 10.713 9.62037 10.7778 9.75 10.7778H13.25C13.3796 10.7778 13.4444 10.713 13.4444 10.5833V10.1944C13.4444 10.0648 13.3796 10 13.25 10H9.75C9.62037 10 9.55556 10.0648 9.55556 10.1944ZM6.37153 7.35069C6.06366 7.04282 5.69907 6.88889 5.27778 6.88889C4.85648 6.88889 4.4919 7.04282 4.18403 7.35069C3.87616 7.65857 3.72222 8.02315 3.72222 8.44445C3.72222 8.86574 3.87616 9.23032 4.18403 9.5382C4.4919 9.84607 4.85648 10 5.27778 10C5.69907 10 6.06366 9.84607 6.37153 9.5382C6.6794 9.23032 6.83333 8.86574 6.83333 8.44445C6.83333 8.02315 6.6794 7.65857 6.37153 7.35069ZM2.62847 11.8472C2.59606 11.9606 2.62037 12.0741 2.70139 12.1875C2.78241 12.2847 2.88773 12.3333 3.01736 12.3333H7.53819C7.66782 12.3333 7.77315 12.2847 7.85417 12.1875C7.93518 12.0903 7.95949 11.9769 7.92708 11.8472C7.82986 11.5394 7.64352 11.2882 7.36806 11.0938C7.09259 10.8831 6.78472 10.7778 6.44444 10.7778H6.25C5.94213 10.9074 5.61806 10.9722 5.27778 10.9722C4.9375 10.9722 4.61343 10.9074 4.30556 10.7778H4.11111C3.88426 10.7778 3.66551 10.8264 3.45486 10.9236C3.26042 11.0046 3.09028 11.1262 2.94444 11.2882C2.79861 11.4502 2.69329 11.6366 2.62847 11.8472Z"
4
+ />
5
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <path
3
- d="M12.0833 10.3625l-1.5833-4.9 1.5-3.15C12.25 1.875 12.1667 1 11.3333 1H4.6667c-.8334 0-.9167.875-.75 1.225l1.5 3.15-1.5834 4.9c-.0833.35 0 .7.1667.875l3.3333 3.5c.25.2625.4167.35.6667.35.25 0 .4167-.0875.5833-.2625l3.3334-3.5c.25-.2625.3333-.6125.1666-.875zM10 2.75L9.1667 4.5H6.8333L6 2.75h4zM8 12.9l-2.4167-2.5375L6.9167 6.25h2.1666l1.3334 4.1125L8 12.9z"
4
- fill-rule="nonzero"
5
- />
6
- </template>
1
+ <template>
2
+ <path
3
+ d="M12.0833 10.3625l-1.5833-4.9 1.5-3.15C12.25 1.875 12.1667 1 11.3333 1H4.6667c-.8334 0-.9167.875-.75 1.225l1.5 3.15-1.5834 4.9c-.0833.35 0 .7.1667.875l3.3333 3.5c.25.2625.4167.35.6667.35.25 0 .4167-.0875.5833-.2625l3.3334-3.5c.25-.2625.3333-.6125.1666-.875zM10 2.75L9.1667 4.5H6.8333L6 2.75h4zM8 12.9l-2.4167-2.5375L6.9167 6.25h2.1666l1.3334 4.1125L8 12.9z"
4
+ fill-rule="nonzero"
5
+ />
6
+ </template>
@@ -1,5 +1,5 @@
1
- <template>
2
- <path
3
- d="M2.69995 12.875V6.5H13.2V12.875C13.2 13.1875 13.0906 13.4531 12.8718 13.6719C12.6531 13.8906 12.3875 14 12.075 14H3.82495C3.51245 14 3.24683 13.8906 3.02808 13.6719C2.80933 13.4531 2.69995 13.1875 2.69995 12.875ZM10.2 8.28125V9.21875C10.2 9.40625 10.2937 9.5 10.4812 9.5H11.4187C11.6062 9.5 11.7 9.40625 11.7 9.21875V8.28125C11.7 8.09375 11.6062 8 11.4187 8H10.4812C10.2937 8 10.2 8.09375 10.2 8.28125ZM10.2 11.2812V12.2188C10.2 12.4062 10.2937 12.5 10.4812 12.5H11.4187C11.6062 12.5 11.7 12.4062 11.7 12.2188V11.2812C11.7 11.0938 11.6062 11 11.4187 11H10.4812C10.2937 11 10.2 11.0938 10.2 11.2812ZM7.19995 8.28125V9.21875C7.19995 9.40625 7.2937 9.5 7.4812 9.5H8.4187C8.6062 9.5 8.69995 9.40625 8.69995 9.21875V8.28125C8.69995 8.09375 8.6062 8 8.4187 8H7.4812C7.2937 8 7.19995 8.09375 7.19995 8.28125ZM7.19995 11.2812V12.2188C7.19995 12.4062 7.2937 12.5 7.4812 12.5H8.4187C8.6062 12.5 8.69995 12.4062 8.69995 12.2188V11.2812C8.69995 11.0938 8.6062 11 8.4187 11H7.4812C7.2937 11 7.19995 11.0938 7.19995 11.2812ZM4.19995 8.28125V9.21875C4.19995 9.40625 4.2937 9.5 4.4812 9.5H5.4187C5.6062 9.5 5.69995 9.40625 5.69995 9.21875V8.28125C5.69995 8.09375 5.6062 8 5.4187 8H4.4812C4.2937 8 4.19995 8.09375 4.19995 8.28125ZM4.19995 11.2812V12.2188C4.19995 12.4062 4.2937 12.5 4.4812 12.5H5.4187C5.6062 12.5 5.69995 12.4062 5.69995 12.2188V11.2812C5.69995 11.0938 5.6062 11 5.4187 11H4.4812C4.2937 11 4.19995 11.0938 4.19995 11.2812ZM12.075 3.5C12.3875 3.5 12.6531 3.60938 12.8718 3.82812C13.0906 4.04688 13.2 4.3125 13.2 4.625V5.75H2.69995V4.625C2.69995 4.3125 2.80933 4.04688 3.02808 3.82812C3.24683 3.60938 3.51245 3.5 3.82495 3.5H4.94995V2.375C4.94995 2.26562 4.9812 2.17969 5.0437 2.11719C5.12183 2.03906 5.21558 2 5.32495 2H6.07495C6.18433 2 6.27026 2.03906 6.33276 2.11719C6.41089 2.17969 6.44995 2.26562 6.44995 2.375V3.5H9.44995V2.375C9.44995 2.26562 9.4812 2.17969 9.5437 2.11719C9.62183 2.03906 9.71558 2 9.82495 2H10.575C10.6843 2 10.7703 2.03906 10.8328 2.11719C10.9109 2.17969 10.95 2.26562 10.95 2.375V3.5H12.075Z"
4
- />
5
- </template>
1
+ <template>
2
+ <path
3
+ d="M2.69995 12.875V6.5H13.2V12.875C13.2 13.1875 13.0906 13.4531 12.8718 13.6719C12.6531 13.8906 12.3875 14 12.075 14H3.82495C3.51245 14 3.24683 13.8906 3.02808 13.6719C2.80933 13.4531 2.69995 13.1875 2.69995 12.875ZM10.2 8.28125V9.21875C10.2 9.40625 10.2937 9.5 10.4812 9.5H11.4187C11.6062 9.5 11.7 9.40625 11.7 9.21875V8.28125C11.7 8.09375 11.6062 8 11.4187 8H10.4812C10.2937 8 10.2 8.09375 10.2 8.28125ZM10.2 11.2812V12.2188C10.2 12.4062 10.2937 12.5 10.4812 12.5H11.4187C11.6062 12.5 11.7 12.4062 11.7 12.2188V11.2812C11.7 11.0938 11.6062 11 11.4187 11H10.4812C10.2937 11 10.2 11.0938 10.2 11.2812ZM7.19995 8.28125V9.21875C7.19995 9.40625 7.2937 9.5 7.4812 9.5H8.4187C8.6062 9.5 8.69995 9.40625 8.69995 9.21875V8.28125C8.69995 8.09375 8.6062 8 8.4187 8H7.4812C7.2937 8 7.19995 8.09375 7.19995 8.28125ZM7.19995 11.2812V12.2188C7.19995 12.4062 7.2937 12.5 7.4812 12.5H8.4187C8.6062 12.5 8.69995 12.4062 8.69995 12.2188V11.2812C8.69995 11.0938 8.6062 11 8.4187 11H7.4812C7.2937 11 7.19995 11.0938 7.19995 11.2812ZM4.19995 8.28125V9.21875C4.19995 9.40625 4.2937 9.5 4.4812 9.5H5.4187C5.6062 9.5 5.69995 9.40625 5.69995 9.21875V8.28125C5.69995 8.09375 5.6062 8 5.4187 8H4.4812C4.2937 8 4.19995 8.09375 4.19995 8.28125ZM4.19995 11.2812V12.2188C4.19995 12.4062 4.2937 12.5 4.4812 12.5H5.4187C5.6062 12.5 5.69995 12.4062 5.69995 12.2188V11.2812C5.69995 11.0938 5.6062 11 5.4187 11H4.4812C4.2937 11 4.19995 11.0938 4.19995 11.2812ZM12.075 3.5C12.3875 3.5 12.6531 3.60938 12.8718 3.82812C13.0906 4.04688 13.2 4.3125 13.2 4.625V5.75H2.69995V4.625C2.69995 4.3125 2.80933 4.04688 3.02808 3.82812C3.24683 3.60938 3.51245 3.5 3.82495 3.5H4.94995V2.375C4.94995 2.26562 4.9812 2.17969 5.0437 2.11719C5.12183 2.03906 5.21558 2 5.32495 2H6.07495C6.18433 2 6.27026 2.03906 6.33276 2.11719C6.41089 2.17969 6.44995 2.26562 6.44995 2.375V3.5H9.44995V2.375C9.44995 2.26562 9.4812 2.17969 9.5437 2.11719C9.62183 2.03906 9.71558 2 9.82495 2H10.575C10.6843 2 10.7703 2.03906 10.8328 2.11719C10.9109 2.17969 10.95 2.26562 10.95 2.375V3.5H12.075Z"
4
+ />
5
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <path
3
- d="M8 1.25c3.728 0 6.75 3.022 6.75 6.75S11.728 14.75 8 14.75 1.25 11.728 1.25 8 4.272 1.25 8 1.25zm4.1899 3.586L4.555 11.9618C5.477 12.7642 6.6818 13.25 8 13.25c2.8995 0 5.25-2.3505 5.25-5.25a5.2269 5.2269 0 00-1.0601-3.164zM8 2.75C5.1005 2.75 2.75 5.1005 2.75 8c0 1.04.3024 2.0093.824 2.825l7.5488-7.0457A5.2266 5.2266 0 008 2.75z"
4
- fill-rule="nonzero"
5
- />
6
- </template>
1
+ <template>
2
+ <path
3
+ d="M8 1.25c3.728 0 6.75 3.022 6.75 6.75S11.728 14.75 8 14.75 1.25 11.728 1.25 8 4.272 1.25 8 1.25zm4.1899 3.586L4.555 11.9618C5.477 12.7642 6.6818 13.25 8 13.25c2.8995 0 5.25-2.3505 5.25-5.25a5.2269 5.2269 0 00-1.0601-3.164zM8 2.75C5.1005 2.75 2.75 5.1005 2.75 8c0 1.04.3024 2.0093.824 2.825l7.5488-7.0457A5.2266 5.2266 0 008 2.75z"
4
+ fill-rule="nonzero"
5
+ />
6
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <path
3
- d="M8 1.25c3.728 0 6.75 3.022 6.75 6.75S11.728 14.75 8 14.75 1.25 11.728 1.25 8 4.272 1.25 8 1.25zm0 1.5C5.1005 2.75 2.75 5.1005 2.75 8S5.1005 13.25 8 13.25s5.25-2.3505 5.25-5.25S10.8995 2.75 8 2.75zm.606 4.0379l-.0002 3.0297 1.2124.0006v1.2121H6.1818V9.8182l1.212-.0006L7.394 8H6.182V6.7879H8.606zm0-2.4243v1.8182H7.394V4.3636h1.212z"
4
- fill-rule="nonzero"
5
- />
6
- </template>
1
+ <template>
2
+ <path
3
+ d="M8 1.25c3.728 0 6.75 3.022 6.75 6.75S11.728 14.75 8 14.75 1.25 11.728 1.25 8 4.272 1.25 8 1.25zm0 1.5C5.1005 2.75 2.75 5.1005 2.75 8S5.1005 13.25 8 13.25s5.25-2.3505 5.25-5.25S10.8995 2.75 8 2.75zm.606 4.0379l-.0002 3.0297 1.2124.0006v1.2121H6.1818V9.8182l1.212-.0006L7.394 8H6.182V6.7879H8.606zm0-2.4243v1.8182H7.394V4.3636h1.212z"
4
+ fill-rule="nonzero"
5
+ />
6
+ </template>
@@ -1,8 +1,8 @@
1
- <template>
2
- <g fill-rule="nonzero">
3
- <path
4
- d="M8 1.25c1.0216 0 2.0116.2277 2.912.6589l.2967.1512.6596.357-.714 1.3192-.6595-.357C9.7352 2.9683 8.8842 2.75 8 2.75 5.1005 2.75 2.75 5.1005 2.75 8S5.1005 13.25 8 13.25c2.8087 0 5.105-2.2067 5.2434-4.9872L13.25 8v-.75h1.5l-.0002.8079C14.7186 11.7615 11.7063 14.75 8 14.75c-3.728 0-6.75-3.022-6.75-6.75S4.272 1.25 8 1.25z"
5
- />
6
- <path d="M14.0042 2.7393l1.0565 1.0649-7.454 7.3953-3.4585-3.4586L5.209 6.6803 7.611 9.082z" />
7
- </g>
8
- </template>
1
+ <template>
2
+ <g fill-rule="nonzero">
3
+ <path
4
+ d="M8 1.25c1.0216 0 2.0116.2277 2.912.6589l.2967.1512.6596.357-.714 1.3192-.6595-.357C9.7352 2.9683 8.8842 2.75 8 2.75 5.1005 2.75 2.75 5.1005 2.75 8S5.1005 13.25 8 13.25c2.8087 0 5.105-2.2067 5.2434-4.9872L13.25 8v-.75h1.5l-.0002.8079C14.7186 11.7615 11.7063 14.75 8 14.75c-3.728 0-6.75-3.022-6.75-6.75S4.272 1.25 8 1.25z"
5
+ />
6
+ <path d="M14.0042 2.7393l1.0565 1.0649-7.454 7.3953-3.4585-3.4586L5.209 6.6803 7.611 9.082z" />
7
+ </g>
8
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <path
3
- d="M8 1.25c3.728 0 6.75 3.022 6.75 6.75S11.728 14.75 8 14.75 1.25 11.728 1.25 8 4.272 1.25 8 1.25zm0 1.5C5.1005 2.75 2.75 5.1005 2.75 8S5.1005 13.25 8 13.25s5.25-2.3505 5.25-5.25S10.8995 2.75 8 2.75zm.75 6.9v2.1h-1.5v-2.1h1.5zm0-5.4v5.1h-1.5v-5.1h1.5z"
4
- fill-rule="nonzero"
5
- />
6
- </template>
1
+ <template>
2
+ <path
3
+ d="M8 1.25c3.728 0 6.75 3.022 6.75 6.75S11.728 14.75 8 14.75 1.25 11.728 1.25 8 4.272 1.25 8 1.25zm0 1.5C5.1005 2.75 2.75 5.1005 2.75 8S5.1005 13.25 8 13.25s5.25-2.3505 5.25-5.25S10.8995 2.75 8 2.75zm.75 6.9v2.1h-1.5v-2.1h1.5zm0-5.4v5.1h-1.5v-5.1h1.5z"
4
+ fill-rule="nonzero"
5
+ />
6
+ </template>
@@ -1,22 +1,22 @@
1
- <template>
2
- <path
3
- d="M 5.12,3.13
4
- C 5.12,3.45 5.37,3.71 5.69,3.71
5
- 6.01,3.71 6.27,3.45 6.27,3.13
6
- 6.27,2.81 6.01,2.55 5.69,2.55
7
- 5.37,2.55 5.12,2.81 5.12,3.13 Z
8
- M 15.12,11.85
9
- C 15.12,11.85 11.46,10.28 11.46,10.28
10
- 11.46,10.28 6.85,11.44 6.85,11.44
11
- 6.85,11.44 9.08,13.58 10.88,13.75
12
- 12.39,13.89 14.37,12.74 15.16,12.24
13
- 15.31,12.15 15.29,11.92 15.12,11.85 Z
14
- M 6.27,3.94
15
- C 3.40,3.94 1.08,6.26 1.08,9.13
16
- 1.08,9.13 1.08,9.90 1.08,9.90
17
- 1.84,10.20 3.82,10.86 6.27,10.86
18
- 8.72,10.86 10.69,10.20 11.46,9.90
19
- 11.46,9.90 11.46,9.13 11.46,9.13
20
- 11.46,6.26 9.14,3.94 6.27,3.94 Z"
21
- />
22
- </template>
1
+ <template>
2
+ <path
3
+ d="M 5.12,3.13
4
+ C 5.12,3.45 5.37,3.71 5.69,3.71
5
+ 6.01,3.71 6.27,3.45 6.27,3.13
6
+ 6.27,2.81 6.01,2.55 5.69,2.55
7
+ 5.37,2.55 5.12,2.81 5.12,3.13 Z
8
+ M 15.12,11.85
9
+ C 15.12,11.85 11.46,10.28 11.46,10.28
10
+ 11.46,10.28 6.85,11.44 6.85,11.44
11
+ 6.85,11.44 9.08,13.58 10.88,13.75
12
+ 12.39,13.89 14.37,12.74 15.16,12.24
13
+ 15.31,12.15 15.29,11.92 15.12,11.85 Z
14
+ M 6.27,3.94
15
+ C 3.40,3.94 1.08,6.26 1.08,9.13
16
+ 1.08,9.13 1.08,9.90 1.08,9.90
17
+ 1.84,10.20 3.82,10.86 6.27,10.86
18
+ 8.72,10.86 10.69,10.20 11.46,9.90
19
+ 11.46,9.90 11.46,9.13 11.46,9.13
20
+ 11.46,6.26 9.14,3.94 6.27,3.94 Z"
21
+ />
22
+ </template>