@designcrowd/fe-shared-lib 1.1.7 → 1.1.8

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 (525) hide show
  1. package/.eslintrc.js +35 -35
  2. package/.prettierrc.js +7 -7
  3. package/.storybook/main.ts +39 -39
  4. package/.storybook/preview-head-master.html +4 -4
  5. package/.storybook/preview-head-publish-master.html +4 -4
  6. package/.storybook/preview-head-publish.html +9 -9
  7. package/.storybook/preview-head.html +9 -9
  8. package/.storybook/preview.js +14 -14
  9. package/Dockerfile +41 -41
  10. package/README.md +103 -103
  11. package/buildspec.yml +46 -46
  12. package/index.cjs +16 -16
  13. package/index.js +54 -54
  14. package/package.json +110 -110
  15. package/postcss.config.js +5 -5
  16. package/public/css/tailwind-brandCrowd.css +503 -471
  17. package/public/css/tailwind-brandPage.css +401 -393
  18. package/public/css/tailwind-crazyDomains.css +503 -471
  19. package/public/css/tailwind-designCom.css +503 -471
  20. package/public/css/tailwind-designCrowd.css +503 -471
  21. package/src/atoms/components/Button/Button.vue +336 -323
  22. package/src/atoms/components/Button/ButtonVariant.mixin.vue +126 -126
  23. package/src/atoms/components/Button/Buttons.stories.js +778 -778
  24. package/src/atoms/components/Button/ButtonsCrazyDomains.stories.js +117 -117
  25. package/src/atoms/components/Button/variants/ButtonDarkModePill.vue +52 -52
  26. package/src/atoms/components/Button/variants/ButtonFlat.vue +65 -65
  27. package/src/atoms/components/Button/variants/ButtonGray.vue +64 -64
  28. package/src/atoms/components/Button/variants/ButtonInfo.vue +51 -51
  29. package/src/atoms/components/Button/variants/ButtonInfoFilled.vue +63 -63
  30. package/src/atoms/components/Button/variants/ButtonNoBorder.vue +65 -65
  31. package/src/atoms/components/Button/variants/ButtonOutline.vue +62 -62
  32. package/src/atoms/components/Button/variants/ButtonOutlineNoHover.vue +62 -62
  33. package/src/atoms/components/Button/variants/ButtonOutlineSuccess.vue +54 -54
  34. package/src/atoms/components/Button/variants/ButtonPill.vue +52 -52
  35. package/src/atoms/components/Button/variants/ButtonPrimary.vue +69 -69
  36. package/src/atoms/components/Button/variants/ButtonPrimaryWithIcon.vue +68 -68
  37. package/src/atoms/components/Button/variants/ButtonSecondary.vue +51 -51
  38. package/src/atoms/components/Button/variants/ButtonSuccess.vue +55 -55
  39. package/src/atoms/components/Button/variants/ButtonWarning.vue +65 -65
  40. package/src/atoms/components/Button/variants/crazy-domains/ButtonCrazyDomainsOutline.vue +58 -58
  41. package/src/atoms/components/Button/variants/crazy-domains/ButtonCrazyDomainsPrimary.vue +38 -38
  42. package/src/atoms/components/ButtonGroup/ButtonGroup.stories.js +574 -562
  43. package/src/atoms/components/ButtonGroup/ButtonGroup.vue +188 -188
  44. package/src/atoms/components/Carousel/Carousel.fixtures.js +35 -35
  45. package/src/atoms/components/Carousel/Carousel.vue +352 -352
  46. package/src/atoms/components/Carousel/carousel.stories.js +261 -261
  47. package/src/atoms/components/Checkbox/Checkbox.mixin.js +57 -57
  48. package/src/atoms/components/Checkbox/Checkbox.stories.js +206 -206
  49. package/src/atoms/components/Checkbox/Checkbox.vue +89 -89
  50. package/src/atoms/components/Checktile/Checktile.stories.js +79 -79
  51. package/src/atoms/components/Checktile/Checktile.vue +73 -73
  52. package/src/atoms/components/CollapsiblePanel/CollapsiblePanel.mixin.js +34 -34
  53. package/src/atoms/components/CollapsiblePanel/CollapsiblePanel.stories.js +40 -40
  54. package/src/atoms/components/CollapsiblePanel/CollapsiblePanel.vue +30 -30
  55. package/src/atoms/components/ColorPicker/ColorPicker.stories.js +89 -89
  56. package/src/atoms/components/ColorPicker/ColorPicker.vue +95 -95
  57. package/src/atoms/components/CopyToClipboardText/CopyToClipboardText.stories.js +41 -41
  58. package/src/atoms/components/CopyToClipboardText/CopyToClipboardText.vue +71 -71
  59. package/src/atoms/components/Dropdown/Dropdown.stories.js +140 -140
  60. package/src/atoms/components/Dropdown/Dropdown.vue +118 -108
  61. package/src/atoms/components/Dropdown/DropdownItem.vue +33 -21
  62. package/src/atoms/components/FormControl/FormControl.mixin.js +127 -127
  63. package/src/atoms/components/HelloBar/HelloBar.stories.js +195 -195
  64. package/src/atoms/components/HelloBar/HelloBar.vue +156 -156
  65. package/src/atoms/components/Icon/Icon.stories.js +390 -390
  66. package/src/atoms/components/Icon/Icon.vue +825 -819
  67. package/src/atoms/components/Icon/icons/add-page.vue +6 -6
  68. package/src/atoms/components/Icon/icons/ai.vue +6 -6
  69. package/src/atoms/components/Icon/icons/arrow-down.vue +6 -6
  70. package/src/atoms/components/Icon/icons/arrow-left.vue +7 -7
  71. package/src/atoms/components/Icon/icons/arrow-right.vue +7 -7
  72. package/src/atoms/components/Icon/icons/arrow-top-right.vue +6 -6
  73. package/src/atoms/components/Icon/icons/arrow-up-underline.vue +7 -7
  74. package/src/atoms/components/Icon/icons/arrow-up.vue +7 -7
  75. package/src/atoms/components/Icon/icons/attach.vue +6 -6
  76. package/src/atoms/components/Icon/icons/auth-facebook-white.vue +17 -17
  77. package/src/atoms/components/Icon/icons/auth-facebook.vue +24 -24
  78. package/src/atoms/components/Icon/icons/auth-google.vue +32 -32
  79. package/src/atoms/components/Icon/icons/background.vue +7 -7
  80. package/src/atoms/components/Icon/icons/banner-centered.vue +6 -6
  81. package/src/atoms/components/Icon/icons/banner-left.vue +6 -6
  82. package/src/atoms/components/Icon/icons/banner.vue +7 -7
  83. package/src/atoms/components/Icon/icons/bc-mast.vue +7 -7
  84. package/src/atoms/components/Icon/icons/brush.vue +6 -6
  85. package/src/atoms/components/Icon/icons/business-card-filled.vue +5 -5
  86. package/src/atoms/components/Icon/icons/business.vue +6 -6
  87. package/src/atoms/components/Icon/icons/calendar.vue +5 -5
  88. package/src/atoms/components/Icon/icons/callout-error.vue +6 -6
  89. package/src/atoms/components/Icon/icons/callout-info.vue +6 -6
  90. package/src/atoms/components/Icon/icons/callout-success.vue +8 -8
  91. package/src/atoms/components/Icon/icons/callout-warning.vue +6 -6
  92. package/src/atoms/components/Icon/icons/cap.vue +22 -22
  93. package/src/atoms/components/Icon/icons/card.vue +9 -9
  94. package/src/atoms/components/Icon/icons/cart-empty.vue +9 -9
  95. package/src/atoms/components/Icon/icons/check-thin.vue +7 -7
  96. package/src/atoms/components/Icon/icons/check.vue +3 -3
  97. package/src/atoms/components/Icon/icons/chevron-down.vue +7 -7
  98. package/src/atoms/components/Icon/icons/chevron-left.vue +7 -7
  99. package/src/atoms/components/Icon/icons/chevron-right-wide.vue +3 -3
  100. package/src/atoms/components/Icon/icons/chevron-right.vue +3 -3
  101. package/src/atoms/components/Icon/icons/chevron-up.vue +7 -7
  102. package/src/atoms/components/Icon/icons/close.vue +6 -6
  103. package/src/atoms/components/Icon/icons/community.vue +5 -5
  104. package/src/atoms/components/Icon/icons/contact-message.vue +10 -10
  105. package/src/atoms/components/Icon/icons/content.vue +7 -7
  106. package/src/atoms/components/Icon/icons/copy.vue +10 -10
  107. package/src/atoms/components/Icon/icons/crazy-domains/filter.vue +6 -6
  108. package/src/atoms/components/Icon/icons/crazy-domains/globe.vue +6 -6
  109. package/src/atoms/components/Icon/icons/crazy-domains/home.vue +6 -6
  110. package/src/atoms/components/Icon/icons/crazy-domains/social-facebook.vue +6 -6
  111. package/src/atoms/components/Icon/icons/crazy-domains/social-google.vue +6 -6
  112. package/src/atoms/components/Icon/icons/crazy-domains/social-instagram.vue +6 -6
  113. package/src/atoms/components/Icon/icons/crazy-domains/social-twitter.vue +6 -6
  114. package/src/atoms/components/Icon/icons/crazy-domains/social-youtube.vue +6 -6
  115. package/src/atoms/components/Icon/icons/crop.vue +6 -6
  116. package/src/atoms/components/Icon/icons/delete.vue +8 -8
  117. package/src/atoms/components/Icon/icons/designs.vue +6 -6
  118. package/src/atoms/components/Icon/icons/desktop.vue +7 -7
  119. package/src/atoms/components/Icon/icons/donate.vue +6 -6
  120. package/src/atoms/components/Icon/icons/download.vue +5 -5
  121. package/src/atoms/components/Icon/icons/duplicate.vue +6 -6
  122. package/src/atoms/components/Icon/icons/edit-line.vue +10 -10
  123. package/src/atoms/components/Icon/icons/edit.vue +6 -6
  124. package/src/atoms/components/Icon/icons/ellipsis.vue +6 -6
  125. package/src/atoms/components/Icon/icons/envelope-email.vue +9 -9
  126. package/src/atoms/components/Icon/icons/error.vue +8 -8
  127. package/src/atoms/components/Icon/icons/eye-crossed.vue +7 -7
  128. package/src/atoms/components/Icon/icons/fees.vue +6 -6
  129. package/src/atoms/components/Icon/icons/filter.vue +7 -7
  130. package/src/atoms/components/Icon/icons/filters.vue +6 -6
  131. package/src/atoms/components/Icon/icons/flag.vue +6 -6
  132. package/src/atoms/components/Icon/icons/flip-horizontal.vue +7 -7
  133. package/src/atoms/components/Icon/icons/flip-vertical.vue +7 -7
  134. package/src/atoms/components/Icon/icons/folder.vue +6 -6
  135. package/src/atoms/components/Icon/icons/footer-centered.vue +7 -7
  136. package/src/atoms/components/Icon/icons/footer-left.vue +7 -7
  137. package/src/atoms/components/Icon/icons/form-message.vue +6 -6
  138. package/src/atoms/components/Icon/icons/form.vue +5 -5
  139. package/src/atoms/components/Icon/icons/fullscreen-exit.vue +5 -5
  140. package/src/atoms/components/Icon/icons/fullscreen.vue +5 -5
  141. package/src/atoms/components/Icon/icons/globe.vue +6 -6
  142. package/src/atoms/components/Icon/icons/godaddy/logo.vue +5 -5
  143. package/src/atoms/components/Icon/icons/hamburger.vue +7 -7
  144. package/src/atoms/components/Icon/icons/home.vue +7 -7
  145. package/src/atoms/components/Icon/icons/icon-style-circle-bg.vue +22 -22
  146. package/src/atoms/components/Icon/icons/icon-style-no-bg.vue +16 -16
  147. package/src/atoms/components/Icon/icons/icon-style-square-bg.vue +22 -22
  148. package/src/atoms/components/Icon/icons/image-gallery-carousel.vue +7 -7
  149. package/src/atoms/components/Icon/icons/image-gallery-grid.vue +7 -7
  150. package/src/atoms/components/Icon/icons/image-gallery-masonry.vue +6 -6
  151. package/src/atoms/components/Icon/icons/images-gallery.vue +5 -5
  152. package/src/atoms/components/Icon/icons/images.vue +7 -7
  153. package/src/atoms/components/Icon/icons/info.vue +9 -9
  154. package/src/atoms/components/Icon/icons/jobs.vue +8 -8
  155. package/src/atoms/components/Icon/icons/layer-bring-front.vue +6 -6
  156. package/src/atoms/components/Icon/icons/layer-send-back.vue +6 -6
  157. package/src/atoms/components/Icon/icons/layer.vue +6 -6
  158. package/src/atoms/components/Icon/icons/layout/display-style-about-1.vue +20 -20
  159. package/src/atoms/components/Icon/icons/layout/display-style-about-2.vue +20 -20
  160. package/src/atoms/components/Icon/icons/layout/display-style-about-3.vue +20 -20
  161. package/src/atoms/components/Icon/icons/layout/display-style-about-4.vue +32 -32
  162. package/src/atoms/components/Icon/icons/layout/display-style-about-5.vue +27 -27
  163. package/src/atoms/components/Icon/icons/layout/display-style-about-6.vue +27 -27
  164. package/src/atoms/components/Icon/icons/layout/display-style-banner-1.vue +20 -20
  165. package/src/atoms/components/Icon/icons/layout/display-style-banner-2.vue +20 -20
  166. package/src/atoms/components/Icon/icons/layout/display-style-banner-3.vue +20 -20
  167. package/src/atoms/components/Icon/icons/layout/display-style-banner-4.vue +20 -20
  168. package/src/atoms/components/Icon/icons/layout/display-style-banner-5.vue +20 -20
  169. package/src/atoms/components/Icon/icons/layout/display-style-banner-6.vue +27 -27
  170. package/src/atoms/components/Icon/icons/layout/display-style-banner-7.vue +27 -27
  171. package/src/atoms/components/Icon/icons/layout/display-style-banner-8.vue +20 -20
  172. package/src/atoms/components/Icon/icons/layout/display-style-banner-9.vue +20 -20
  173. package/src/atoms/components/Icon/icons/layout/display-style-contact-1.vue +24 -24
  174. package/src/atoms/components/Icon/icons/layout/display-style-contact-2.vue +24 -24
  175. package/src/atoms/components/Icon/icons/layout/display-style-contact-4.vue +24 -24
  176. package/src/atoms/components/Icon/icons/layout/display-style-contact-5.vue +39 -39
  177. package/src/atoms/components/Icon/icons/layout/display-style-contact-6.vue +39 -39
  178. package/src/atoms/components/Icon/icons/layout/footer/display-style-1.vue +7 -7
  179. package/src/atoms/components/Icon/icons/layout/footer/display-style-2.vue +16 -16
  180. package/src/atoms/components/Icon/icons/layout/header/desktop-hamburger-display-style-1.vue +17 -17
  181. package/src/atoms/components/Icon/icons/layout/header/desktop-hamburger-display-style-2.vue +17 -17
  182. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-1.vue +17 -17
  183. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-2.vue +17 -17
  184. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-3.vue +13 -13
  185. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-4.vue +13 -13
  186. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-5.vue +17 -17
  187. package/src/atoms/components/Icon/icons/layout/header/desktop-tab-display-style-6.vue +17 -17
  188. package/src/atoms/components/Icon/icons/layout/header/hamburger-display-style-no-logo-1.vue +16 -16
  189. package/src/atoms/components/Icon/icons/layout/header/hamburger-display-style-no-logo-2.vue +16 -16
  190. package/src/atoms/components/Icon/icons/layout/header/hamburger-display-style-no-logo-3.vue +16 -16
  191. package/src/atoms/components/Icon/icons/layout/header/mobile-hamburger-display-style-1.vue +17 -17
  192. package/src/atoms/components/Icon/icons/layout/header/mobile-hamburger-display-style-2.vue +17 -17
  193. package/src/atoms/components/Icon/icons/layout/header/mobile-hamburger-display-style-3.vue +17 -17
  194. package/src/atoms/components/Icon/icons/layout/header/mobile-hamburger-display-style-4.vue +21 -21
  195. package/src/atoms/components/Icon/icons/layout/header/mobile-tab-display-style-1.vue +17 -17
  196. package/src/atoms/components/Icon/icons/layout/header/mobile-tab-display-style-2.vue +17 -17
  197. package/src/atoms/components/Icon/icons/layout/header/tab-display-style-no-logo-1.vue +16 -16
  198. package/src/atoms/components/Icon/icons/layout/header/tab-display-style-no-logo-2.vue +16 -16
  199. package/src/atoms/components/Icon/icons/layout/header/tab-display-style-no-logo-3.vue +16 -16
  200. package/src/atoms/components/Icon/icons/layout/layout-icon-bottom-normal-text-center-normal.vue +7 -7
  201. package/src/atoms/components/Icon/icons/layout/layout-icon-bottom-normal-text-center-small.vue +7 -7
  202. package/src/atoms/components/Icon/icons/layout/layout-icon-bottom-small-text-center-normal.vue +7 -7
  203. package/src/atoms/components/Icon/icons/layout/layout-icon-center-normal-curved-text-bottom.vue +11 -11
  204. package/src/atoms/components/Icon/icons/layout/layout-icon-center-normal-curved-text-circle.vue +10 -10
  205. package/src/atoms/components/Icon/icons/layout/layout-icon-center-normal-curved-text-top.vue +11 -11
  206. package/src/atoms/components/Icon/icons/layout/layout-icon-left-normal-text-center-normal.vue +7 -7
  207. package/src/atoms/components/Icon/icons/layout/layout-icon-left-normal-text-justify-normal.vue +7 -7
  208. package/src/atoms/components/Icon/icons/layout/layout-icon-left-normal-text-left-normal.vue +7 -7
  209. package/src/atoms/components/Icon/icons/layout/layout-icon-left-small-text-left-normal.vue +7 -7
  210. package/src/atoms/components/Icon/icons/layout/layout-icon-right-normal-text-center-normal.vue +7 -7
  211. package/src/atoms/components/Icon/icons/layout/layout-icon-right-normal-text-justify-normal.vue +7 -7
  212. package/src/atoms/components/Icon/icons/layout/layout-icon-right-normal-text-right-normal.vue +7 -7
  213. package/src/atoms/components/Icon/icons/layout/layout-icon-right-small-text-right-normal.vue +7 -7
  214. package/src/atoms/components/Icon/icons/layout/layout-icon-top-normal-text-center-normal.vue +7 -7
  215. package/src/atoms/components/Icon/icons/layout/layout-icon-top-normal-text-center-small.vue +7 -7
  216. package/src/atoms/components/Icon/icons/layout/layout-icon-top-normal-text-justify-normal.vue +7 -7
  217. package/src/atoms/components/Icon/icons/layout/layout-icon-top-small-text-center-normal.vue +7 -7
  218. package/src/atoms/components/Icon/icons/layout/nav/hamburger/display-style-1.vue +16 -16
  219. package/src/atoms/components/Icon/icons/layout/nav/hamburger/display-style-2.vue +10 -10
  220. package/src/atoms/components/Icon/icons/layout/nav/hamburger/display-style-3.vue +10 -10
  221. package/src/atoms/components/Icon/icons/layout/nav/hamburger/display-style-4.vue +23 -23
  222. package/src/atoms/components/Icon/icons/layout/nav/tab/display-style-1.vue +16 -16
  223. package/src/atoms/components/Icon/icons/layout/nav/tab/display-style-2.vue +7 -7
  224. package/src/atoms/components/Icon/icons/letterhead-filled.vue +5 -5
  225. package/src/atoms/components/Icon/icons/link.vue +6 -6
  226. package/src/atoms/components/Icon/icons/location.vue +6 -6
  227. package/src/atoms/components/Icon/icons/lock.vue +6 -6
  228. package/src/atoms/components/Icon/icons/mac-command.vue +7 -7
  229. package/src/atoms/components/Icon/icons/maker/align-center.vue +7 -7
  230. package/src/atoms/components/Icon/icons/maker/align-justify.vue +7 -7
  231. package/src/atoms/components/Icon/icons/maker/align-left.vue +7 -7
  232. package/src/atoms/components/Icon/icons/maker/align-right.vue +7 -7
  233. package/src/atoms/components/Icon/icons/maker/animate.vue +7 -7
  234. package/src/atoms/components/Icon/icons/maker/bold.vue +7 -7
  235. package/src/atoms/components/Icon/icons/maker/custom-landscape.vue +5 -5
  236. package/src/atoms/components/Icon/icons/maker/email-symbol.vue +5 -5
  237. package/src/atoms/components/Icon/icons/maker/email.vue +5 -5
  238. package/src/atoms/components/Icon/icons/maker/eraser.vue +5 -5
  239. package/src/atoms/components/Icon/icons/maker/etsy.vue +5 -5
  240. package/src/atoms/components/Icon/icons/maker/facebook.vue +5 -5
  241. package/src/atoms/components/Icon/icons/maker/favicon.vue +7 -7
  242. package/src/atoms/components/Icon/icons/maker/flyer.vue +7 -7
  243. package/src/atoms/components/Icon/icons/maker/gift-certificate.vue +5 -5
  244. package/src/atoms/components/Icon/icons/maker/globe.vue +5 -5
  245. package/src/atoms/components/Icon/icons/maker/image.vue +7 -7
  246. package/src/atoms/components/Icon/icons/maker/instagram.vue +7 -7
  247. package/src/atoms/components/Icon/icons/maker/invitation.vue +5 -5
  248. package/src/atoms/components/Icon/icons/maker/invoice.vue +5 -5
  249. package/src/atoms/components/Icon/icons/maker/italic.vue +7 -7
  250. package/src/atoms/components/Icon/icons/maker/link.vue +7 -7
  251. package/src/atoms/components/Icon/icons/maker/linkedin.vue +7 -7
  252. package/src/atoms/components/Icon/icons/maker/menu.vue +5 -5
  253. package/src/atoms/components/Icon/icons/maker/pause.vue +5 -5
  254. package/src/atoms/components/Icon/icons/maker/phone.vue +5 -5
  255. package/src/atoms/components/Icon/icons/maker/pinterest.vue +5 -5
  256. package/src/atoms/components/Icon/icons/maker/play.vue +5 -5
  257. package/src/atoms/components/Icon/icons/maker/postcard.vue +5 -5
  258. package/src/atoms/components/Icon/icons/maker/poster.vue +7 -7
  259. package/src/atoms/components/Icon/icons/maker/profile.vue +5 -5
  260. package/src/atoms/components/Icon/icons/maker/qrcode.vue +5 -5
  261. package/src/atoms/components/Icon/icons/maker/snapchat.vue +5 -5
  262. package/src/atoms/components/Icon/icons/maker/soundcloud.vue +7 -7
  263. package/src/atoms/components/Icon/icons/maker/spacing.vue +18 -0
  264. package/src/atoms/components/Icon/icons/maker/strikethrough.vue +7 -7
  265. package/src/atoms/components/Icon/icons/maker/t-shirt.vue +32 -32
  266. package/src/atoms/components/Icon/icons/maker/text-background-color.vue +12 -0
  267. package/src/atoms/components/Icon/icons/maker/text-color.vue +14 -0
  268. package/src/atoms/components/Icon/icons/maker/text.vue +7 -7
  269. package/src/atoms/components/Icon/icons/maker/thankyou-card.vue +5 -5
  270. package/src/atoms/components/Icon/icons/maker/tiktok.vue +5 -5
  271. package/src/atoms/components/Icon/icons/maker/tumblr.vue +5 -5
  272. package/src/atoms/components/Icon/icons/maker/twitch.vue +7 -7
  273. package/src/atoms/components/Icon/icons/maker/twitter.vue +5 -5
  274. package/src/atoms/components/Icon/icons/maker/underline.vue +7 -7
  275. package/src/atoms/components/Icon/icons/maker/uppercase.vue +14 -14
  276. package/src/atoms/components/Icon/icons/maker/video.vue +5 -5
  277. package/src/atoms/components/Icon/icons/maker/whatsapp.vue +7 -7
  278. package/src/atoms/components/Icon/icons/maker/youtube.vue +5 -5
  279. package/src/atoms/components/Icon/icons/maker/zoom.vue +5 -5
  280. package/src/atoms/components/Icon/icons/map.vue +6 -6
  281. package/src/atoms/components/Icon/icons/message.vue +6 -6
  282. package/src/atoms/components/Icon/icons/minus-circle-light.vue +7 -7
  283. package/src/atoms/components/Icon/icons/minus.vue +3 -3
  284. package/src/atoms/components/Icon/icons/mobile.vue +5 -5
  285. package/src/atoms/components/Icon/icons/mug.vue +29 -29
  286. package/src/atoms/components/Icon/icons/opacity.vue +6 -6
  287. package/src/atoms/components/Icon/icons/other.vue +7 -7
  288. package/src/atoms/components/Icon/icons/page-buttons.vue +8 -8
  289. package/src/atoms/components/Icon/icons/page-hamburger.vue +9 -9
  290. package/src/atoms/components/Icon/icons/page-tabs.vue +9 -9
  291. package/src/atoms/components/Icon/icons/pages.vue +6 -6
  292. package/src/atoms/components/Icon/icons/palette.vue +6 -6
  293. package/src/atoms/components/Icon/icons/pause.vue +5 -5
  294. package/src/atoms/components/Icon/icons/payment.vue +8 -8
  295. package/src/atoms/components/Icon/icons/payments-featured.vue +6 -6
  296. package/src/atoms/components/Icon/icons/payments-textonly.vue +8 -8
  297. package/src/atoms/components/Icon/icons/payments-thumbnail.vue +9 -9
  298. package/src/atoms/components/Icon/icons/phone.vue +6 -6
  299. package/src/atoms/components/Icon/icons/plus-circle-light.vue +8 -8
  300. package/src/atoms/components/Icon/icons/plus-circle.vue +7 -7
  301. package/src/atoms/components/Icon/icons/plus.vue +3 -3
  302. package/src/atoms/components/Icon/icons/poll.vue +3 -3
  303. package/src/atoms/components/Icon/icons/portfolio.vue +10 -10
  304. package/src/atoms/components/Icon/icons/preview.vue +6 -6
  305. package/src/atoms/components/Icon/icons/printing.vue +6 -6
  306. package/src/atoms/components/Icon/icons/processing.vue +5 -5
  307. package/src/atoms/components/Icon/icons/question.vue +11 -11
  308. package/src/atoms/components/Icon/icons/ratio-1-1.vue +3 -3
  309. package/src/atoms/components/Icon/icons/ratio-16-9.vue +1 -1
  310. package/src/atoms/components/Icon/icons/ratio-2-3.vue +3 -3
  311. package/src/atoms/components/Icon/icons/ratio-3-2.vue +3 -3
  312. package/src/atoms/components/Icon/icons/ratio-3-4.vue +3 -3
  313. package/src/atoms/components/Icon/icons/ratio-4-3.vue +3 -3
  314. package/src/atoms/components/Icon/icons/ratio-9-16.vue +3 -3
  315. package/src/atoms/components/Icon/icons/ratio-circle.vue +8 -8
  316. package/src/atoms/components/Icon/icons/ratio-original.vue +11 -11
  317. package/src/atoms/components/Icon/icons/redo.vue +6 -6
  318. package/src/atoms/components/Icon/icons/reload.vue +6 -6
  319. package/src/atoms/components/Icon/icons/reorderable.vue +5 -5
  320. package/src/atoms/components/Icon/icons/request-payment.vue +6 -6
  321. package/src/atoms/components/Icon/icons/reset.vue +6 -6
  322. package/src/atoms/components/Icon/icons/search.vue +11 -11
  323. package/src/atoms/components/Icon/icons/secure.vue +7 -7
  324. package/src/atoms/components/Icon/icons/services.vue +7 -7
  325. package/src/atoms/components/Icon/icons/settings.vue +7 -7
  326. package/src/atoms/components/Icon/icons/shape.vue +5 -5
  327. package/src/atoms/components/Icon/icons/share.vue +8 -8
  328. package/src/atoms/components/Icon/icons/shop.vue +5 -5
  329. package/src/atoms/components/Icon/icons/sms.vue +5 -5
  330. package/src/atoms/components/Icon/icons/social-facebook-color.vue +9 -9
  331. package/src/atoms/components/Icon/icons/social-facebook.vue +5 -5
  332. package/src/atoms/components/Icon/icons/social-google.vue +5 -5
  333. package/src/atoms/components/Icon/icons/social-instagram-color.vue +24 -24
  334. package/src/atoms/components/Icon/icons/social-linkedin-color.vue +9 -9
  335. package/src/atoms/components/Icon/icons/social-share.vue +7 -7
  336. package/src/atoms/components/Icon/icons/social-twitter-color.vue +9 -9
  337. package/src/atoms/components/Icon/icons/star-filled.vue +6 -6
  338. package/src/atoms/components/Icon/icons/star-hollow.vue +6 -6
  339. package/src/atoms/components/Icon/icons/sticker.vue +28 -28
  340. package/src/atoms/components/Icon/icons/styles.vue +5 -5
  341. package/src/atoms/components/Icon/icons/submit.vue +5 -5
  342. package/src/atoms/components/Icon/icons/templates.vue +7 -7
  343. package/src/atoms/components/Icon/icons/text-image-center.vue +6 -6
  344. package/src/atoms/components/Icon/icons/text-image-justified.vue +7 -7
  345. package/src/atoms/components/Icon/icons/text-image-left.vue +9 -9
  346. package/src/atoms/components/Icon/icons/text-image-only.vue +5 -5
  347. package/src/atoms/components/Icon/icons/text-image-right.vue +9 -9
  348. package/src/atoms/components/Icon/icons/text-image.vue +13 -13
  349. package/src/atoms/components/Icon/icons/time.vue +8 -8
  350. package/src/atoms/components/Icon/icons/tooltip-bottom.vue +5 -5
  351. package/src/atoms/components/Icon/icons/tooltip-left.vue +5 -5
  352. package/src/atoms/components/Icon/icons/tooltip-right.vue +5 -5
  353. package/src/atoms/components/Icon/icons/tooltip-top.vue +5 -5
  354. package/src/atoms/components/Icon/icons/undo.vue +6 -6
  355. package/src/atoms/components/Icon/icons/upgrade-alt.vue +7 -7
  356. package/src/atoms/components/Icon/icons/upgrade.vue +9 -9
  357. package/src/atoms/components/Icon/icons/upload-arrow.vue +5 -5
  358. package/src/atoms/components/Icon/icons/upload.vue +5 -5
  359. package/src/atoms/components/Icon/icons/user-accounts.vue +5 -5
  360. package/src/atoms/components/Icon/icons/user-headset.vue +50 -50
  361. package/src/atoms/components/Icon/icons/volume-muted.vue +5 -5
  362. package/src/atoms/components/Icon/icons/volume.vue +5 -5
  363. package/src/atoms/components/Icon/icons/watchlist-filled.vue +14 -14
  364. package/src/atoms/components/Icon/icons/watchlist-hollow-alt.vue +14 -14
  365. package/src/atoms/components/Icon/icons/watchlist-hollow.vue +6 -6
  366. package/src/atoms/components/Icon/icons/website-filled.vue +5 -5
  367. package/src/atoms/components/Icon/icons/website.vue +6 -6
  368. package/src/atoms/components/Icon/icons/wholesale.vue +6 -6
  369. package/src/atoms/components/Icon/icons/zoom-in.vue +5 -5
  370. package/src/atoms/components/Icon/icons/zoom-out.vue +5 -5
  371. package/src/atoms/components/Icon/icons/zoom.vue +11 -11
  372. package/src/atoms/components/Loader/Loader.vue +15 -15
  373. package/src/atoms/components/Masonry/Masonry.stories.js +48 -48
  374. package/src/atoms/components/Masonry/Masonry.vue +48 -48
  375. package/src/atoms/components/Masonry/fixtures.js +589 -589
  376. package/src/atoms/components/Modal/HashRouteModal.stories.js +68 -68
  377. package/src/atoms/components/Modal/HashRouteModal.vue +120 -120
  378. package/src/atoms/components/Modal/Modal.stories.js +303 -303
  379. package/src/atoms/components/Modal/Modal.vue +258 -258
  380. package/src/atoms/components/Notice/Notice.stories.js +174 -174
  381. package/src/atoms/components/Notice/Notice.vue +71 -71
  382. package/src/atoms/components/NumberStepper/NumberStepper.stories.js +55 -51
  383. package/src/atoms/components/NumberStepper/NumberStepper.vue +340 -298
  384. package/src/atoms/components/Picture/Picture.stories.js +90 -90
  385. package/src/atoms/components/Picture/Picture.vue +84 -84
  386. package/src/atoms/components/Picture/picture.fixtures.js +35 -35
  387. package/src/atoms/components/Pill/Pill.stories.js +20 -20
  388. package/src/atoms/components/Pill/Pill.vue +8 -8
  389. package/src/atoms/components/PillBar/PillBar.fixtures.js +941 -941
  390. package/src/atoms/components/PillBar/PillBar.stories.js +39 -39
  391. package/src/atoms/components/PillBar/PillBar.vue +62 -62
  392. package/src/atoms/components/Price/Price.fixtures.js +25 -25
  393. package/src/atoms/components/Price/Price.stories.js +173 -173
  394. package/src/atoms/components/Price/Price.vue +106 -106
  395. package/src/atoms/components/SearchBar/SearchBar.stories.js +21 -21
  396. package/src/atoms/components/SearchBar/SearchBar.vue +51 -51
  397. package/src/atoms/components/Select/Select.stories.js +142 -142
  398. package/src/atoms/components/Select/Select.vue +619 -619
  399. package/src/atoms/components/Select/pointerMixin.js +99 -99
  400. package/src/atoms/components/Select/selectMixin.js +356 -356
  401. package/src/atoms/components/Slider/Slider.stories.js +2 -2
  402. package/src/atoms/components/Slider/Slider.vue +44 -11
  403. package/src/atoms/components/StarRating/StarRating.stories.js +50 -50
  404. package/src/atoms/components/StarRating/StarRating.vue +84 -84
  405. package/src/atoms/components/TabMenu/TabMenu.stories.js +54 -54
  406. package/src/atoms/components/TabMenu/TabMenu.vue +44 -44
  407. package/src/atoms/components/TextCopyField/TextCopyField.stories.js +68 -68
  408. package/src/atoms/components/TextCopyField/TextCopyField.vue +75 -75
  409. package/src/atoms/components/TextInput/TextInput.stories.js +232 -232
  410. package/src/atoms/components/TextInput/TextInput.vue +156 -156
  411. package/src/atoms/components/Textarea/Textarea.stories.js +209 -209
  412. package/src/atoms/components/Textarea/Textarea.vue +109 -109
  413. package/src/atoms/components/Toggle/Toggle.stories.js +176 -176
  414. package/src/atoms/components/Toggle/Toggle.vue +69 -69
  415. package/src/atoms/components/Tooltip/Tooltip.stories.js +493 -493
  416. package/src/atoms/components/Tooltip/Tooltip.vue +196 -196
  417. package/src/atoms/components/design-com/Icon/Icon.stories.js +82 -82
  418. package/src/atoms/components/design-com/Icon/Icon.vue +157 -157
  419. package/src/atoms/components/design-com/Icon/icons/award.vue +7 -7
  420. package/src/atoms/components/design-com/Icon/icons/bulb.vue +7 -7
  421. package/src/atoms/components/design-com/Icon/icons/card.vue +7 -7
  422. package/src/atoms/components/design-com/Icon/icons/check-circle-light.vue +7 -7
  423. package/src/atoms/components/design-com/Icon/icons/chevron-down.vue +7 -7
  424. package/src/atoms/components/design-com/Icon/icons/chevron-left.vue +7 -7
  425. package/src/atoms/components/design-com/Icon/icons/chevron-right.vue +3 -3
  426. package/src/atoms/components/design-com/Icon/icons/chevron-up.vue +7 -7
  427. package/src/atoms/components/design-com/Icon/icons/diamond.vue +7 -7
  428. package/src/atoms/components/design-com/Icon/icons/download.vue +7 -7
  429. package/src/atoms/components/design-com/Icon/icons/file-empty.vue +7 -7
  430. package/src/atoms/components/design-com/Icon/icons/file.vue +7 -7
  431. package/src/atoms/components/design-com/Icon/icons/filter.vue +7 -7
  432. package/src/atoms/components/design-com/Icon/icons/font.vue +7 -7
  433. package/src/atoms/components/design-com/Icon/icons/headphones.vue +7 -7
  434. package/src/atoms/components/design-com/Icon/icons/heart.vue +7 -7
  435. package/src/atoms/components/design-com/Icon/icons/image.vue +7 -7
  436. package/src/atoms/components/design-com/Icon/icons/logo.vue +7 -7
  437. package/src/atoms/components/design-com/Icon/icons/minus-circle-light.vue +7 -7
  438. package/src/atoms/components/design-com/Icon/icons/plus-circle-light.vue +8 -8
  439. package/src/atoms/components/design-com/Icon/icons/question-circle-filled.vue +7 -7
  440. package/src/atoms/components/design-com/Icon/icons/search.vue +7 -7
  441. package/src/atoms/components/design-com/Icon/icons/star-filled.vue +6 -6
  442. package/src/atoms/components/design-com/Icon/icons/star-hollow.vue +6 -6
  443. package/src/atoms/components/design-com/Icon/icons/users.vue +7 -7
  444. package/src/atoms/constants/constants.ts +6 -6
  445. package/src/atoms/mixin/hash-router-mixin.js +68 -68
  446. package/src/atoms/thirdparty-components/VueMasonryWall/VueMasonryWall.vue +280 -280
  447. package/src/atoms/thirdparty-components/VueMasonryWall/maxBy.js +50 -50
  448. package/src/css/tailwind.css +3 -3
  449. package/src/experiences/clients/brand-crowd-api.client.js +104 -104
  450. package/src/experiences/clients/brand-page-api.client.js +47 -47
  451. package/src/experiences/components/AuthFlow/Auth.fixtures.js +4 -4
  452. package/src/experiences/components/AuthFlow/Auth.stories.js +345 -345
  453. package/src/experiences/components/AuthFlow/AuthCrazyDomains.stories.js +60 -60
  454. package/src/experiences/components/AuthFlow/AuthLegal.vue +108 -108
  455. package/src/experiences/components/AuthFlow/AuthModal.vue +39 -39
  456. package/src/experiences/components/AuthFlow/ForgotPassword.vue +210 -210
  457. package/src/experiences/components/AuthFlow/ForgotPasswordModal.vue +68 -68
  458. package/src/experiences/components/AuthFlow/ResetPassword.vue +150 -150
  459. package/src/experiences/components/AuthFlow/ResetPasswordModal.vue +64 -64
  460. package/src/experiences/components/AuthFlow/ResetPasswordSuccessModal.vue +56 -56
  461. package/src/experiences/components/AuthFlow/SignIn.vue +442 -442
  462. package/src/experiences/components/AuthFlow/SignUp.vue +272 -272
  463. package/src/experiences/components/AuthFlow/SignUpModal.vue +90 -90
  464. package/src/experiences/components/AuthFlow/SocialSignIn.vue +177 -177
  465. package/src/experiences/components/AuthFlow/SocialSignInButton.vue +74 -74
  466. package/src/experiences/components/AuthFlow/SubmissionButton.vue +56 -56
  467. package/src/experiences/components/PaymentConfigList/PaymentConfig.mixin.js +97 -97
  468. package/src/experiences/components/PaymentConfigList/PaymentConfigDeleteConfigModal.vue +106 -106
  469. package/src/experiences/components/PaymentConfigList/PaymentConfigDropdown.vue +134 -134
  470. package/src/experiences/components/PaymentConfigList/PaymentConfigList.stories.js +189 -189
  471. package/src/experiences/components/PaymentConfigList/PaymentConfigList.vue +133 -133
  472. package/src/experiences/components/PublishBrandPageModal/PublishBrandPageCard.vue +115 -115
  473. package/src/experiences/components/PublishBrandPageModal/PublishBrandPageModal.stories.js +203 -203
  474. package/src/experiences/components/PublishBrandPageModal/__fixtures__/data.js +25 -25
  475. package/src/experiences/components/SellDomainNameList/SellDomainNameList.fixtures.js +32 -32
  476. package/src/experiences/components/SellDomainNameList/SellDomainNameList.vue +145 -145
  477. package/src/experiences/components/SellDomainNameListModal/SellDomainNameListModal.stories.js +74 -74
  478. package/src/experiences/components/SellDomainNameListModal/SellDomainNameListModal.vue +124 -124
  479. package/src/experiences/components/SellDomainNameModalApplication/SellDomainNameModalApplication.vue +205 -205
  480. package/src/experiences/components/SellDomainNameSearchResult/SellDomainNameListSearchResult.vue +153 -153
  481. package/src/experiences/components/SellDomainNameSearchWithResults/SellDomainNameSearchWithResults.stories.js +38 -38
  482. package/src/experiences/components/SellDomainNameSearchWithResults/SellDomainNameSearchWithResults.vue +184 -184
  483. package/src/experiences/components/SellDomainNameWidget/SellDomainNameWidget.stories.js +40 -40
  484. package/src/experiences/components/SellDomainNameWidget/SellDomainNameWidget.vue +152 -152
  485. package/src/experiences/components/UploadYourLogoApplication/UploadYourLogoApplication.stories.js +205 -205
  486. package/src/experiences/components/UploadYourLogoApplication/UploadYourLogoApplication.vue +127 -127
  487. package/src/experiences/components/UploadYourLogoDropzone/UploadYourLogoDropzone.stories.js +58 -58
  488. package/src/experiences/components/UploadYourLogoDropzone/UploadYourLogoDropzone.vue +278 -278
  489. package/src/experiences/components/UploadYourLogoOnBoarding/LogoBusinessBrandColours.stories.js +37 -37
  490. package/src/experiences/components/UploadYourLogoOnBoarding/LogoBusinessBrandColours.vue +328 -328
  491. package/src/experiences/components/UploadYourLogoOnBoarding/LogoBusinessText.vue +140 -140
  492. package/src/experiences/components/UploadYourLogoOnBoarding/LogoCropper.vue +467 -467
  493. package/src/experiences/components/UploadYourLogoOnBoarding/LogoPreview.vue +97 -97
  494. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploadError.vue +69 -69
  495. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploadExitConfirmation.vue +49 -49
  496. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploadModal.vue +38 -38
  497. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploader.vue +91 -91
  498. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploadingLoader.vue +22 -22
  499. package/src/experiences/components/UploadYourLogoOnBoarding/UploadYourLogoOnBoarding.vue +290 -290
  500. package/src/experiences/components/UploadedLogoSearchResultCard/UploadedLogoSearchResultCard.stories.js +82 -82
  501. package/src/experiences/components/UploadedLogoSearchResultCard/UploadedLogoSearchResultCard.vue +201 -201
  502. package/src/experiences/constants/api.js +8 -8
  503. package/src/experiences/constants/error-constants.js +5 -5
  504. package/src/experiences/constants/event-constants.js +18 -18
  505. package/src/experiences/constants/partner-dictionary-constants.js +27 -27
  506. package/src/experiences/constants/rego-source-constants.js +3 -3
  507. package/src/experiences/constants/sell-domain-name-constants.js +4 -4
  508. package/src/experiences/helpers/email-validator.js +5 -5
  509. package/src/experiences/helpers/hex-diff.js +116 -116
  510. package/src/experiences/helpers/tracking.js +5 -5
  511. package/src/experiences/mixins/mediaQueryMixin.js +31 -31
  512. package/src/experiences/mixins/themeMixin.js +22 -22
  513. package/src/themes/base.js +20 -20
  514. package/src/themes/bc.js +95 -95
  515. package/src/themes/bp.js +21 -21
  516. package/src/themes/cd.js +94 -94
  517. package/src/themes/dc.js +84 -84
  518. package/src/themes/dcom.js +106 -106
  519. package/src/themes/themes.js +16 -16
  520. package/src/viewports.js +51 -51
  521. package/stylelint.config.js +19 -19
  522. package/tailwind.build.js +83 -83
  523. package/tailwind.config.js +37 -37
  524. package/tailwind.themes.js +59 -59
  525. package/vite.config.ts +37 -37
@@ -1,7 +1,7 @@
1
- <template>
2
- <g>
3
- <path
4
- d="M10.85 9.5C11.475 9.5 12.0063 9.71875 12.4438 10.1562C12.8813 10.5938 13.1 11.125 13.1 11.75C13.1 12.375 12.8813 12.9062 12.4438 13.3438C12.0063 13.7812 11.475 14 10.85 14C10.225 14 9.69376 13.7812 9.25626 13.3438C8.81876 12.9062 8.60001 12.375 8.60001 11.75C8.60001 11.5781 8.61563 11.4141 8.64688 11.2578L6.25626 9.75781C5.85001 10.0859 5.38126 10.25 4.85001 10.25C4.22501 10.25 3.69376 10.0312 3.25626 9.59375C2.81876 9.15625 2.60001 8.625 2.60001 8C2.60001 7.375 2.81876 6.84375 3.25626 6.40625C3.69376 5.96875 4.22501 5.75 4.85001 5.75C5.38126 5.75 5.85001 5.91406 6.25626 6.24219L8.64688 4.74219C8.61563 4.58594 8.60001 4.42188 8.60001 4.25C8.60001 3.625 8.81876 3.09375 9.25626 2.65625C9.69376 2.21875 10.225 2 10.85 2C11.475 2 12.0063 2.21875 12.4438 2.65625C12.8813 3.09375 13.1 3.625 13.1 4.25C13.1 4.875 12.8813 5.40625 12.4438 5.84375C12.0063 6.28125 11.475 6.5 10.85 6.5C10.3188 6.5 9.85001 6.33594 9.44376 6.00781L7.05313 7.50781C7.08438 7.66406 7.10001 7.82812 7.10001 8C7.10001 8.17188 7.08438 8.33594 7.05313 8.49219L9.44376 9.99219C9.85001 9.66406 10.3188 9.5 10.85 9.5Z"
5
- />
6
- </g>
7
- </template>
1
+ <template>
2
+ <g>
3
+ <path
4
+ d="M10.85 9.5C11.475 9.5 12.0063 9.71875 12.4438 10.1562C12.8813 10.5938 13.1 11.125 13.1 11.75C13.1 12.375 12.8813 12.9062 12.4438 13.3438C12.0063 13.7812 11.475 14 10.85 14C10.225 14 9.69376 13.7812 9.25626 13.3438C8.81876 12.9062 8.60001 12.375 8.60001 11.75C8.60001 11.5781 8.61563 11.4141 8.64688 11.2578L6.25626 9.75781C5.85001 10.0859 5.38126 10.25 4.85001 10.25C4.22501 10.25 3.69376 10.0312 3.25626 9.59375C2.81876 9.15625 2.60001 8.625 2.60001 8C2.60001 7.375 2.81876 6.84375 3.25626 6.40625C3.69376 5.96875 4.22501 5.75 4.85001 5.75C5.38126 5.75 5.85001 5.91406 6.25626 6.24219L8.64688 4.74219C8.61563 4.58594 8.60001 4.42188 8.60001 4.25C8.60001 3.625 8.81876 3.09375 9.25626 2.65625C9.69376 2.21875 10.225 2 10.85 2C11.475 2 12.0063 2.21875 12.4438 2.65625C12.8813 3.09375 13.1 3.625 13.1 4.25C13.1 4.875 12.8813 5.40625 12.4438 5.84375C12.0063 6.28125 11.475 6.5 10.85 6.5C10.3188 6.5 9.85001 6.33594 9.44376 6.00781L7.05313 7.50781C7.08438 7.66406 7.10001 7.82812 7.10001 8C7.10001 8.17188 7.08438 8.33594 7.05313 8.49219L9.44376 9.99219C9.85001 9.66406 10.3188 9.5 10.85 9.5Z"
5
+ />
6
+ </g>
7
+ </template>
@@ -1,9 +1,9 @@
1
- <template>
2
- <g transform="translate(1 1)" fill="none" fill-rule="evenodd">
3
- <circle fill="#55ACEE" cx="7" cy="7" r="7" />
4
- <path
5
- d="M11 4.7103a3.4907 3.4907 0 01-.9427.2382c.3389-.1874.599-.4839.7218-.8378a3.4567 3.4567 0 01-1.0423.3675C9.4374 4.1839 9.0108 4 8.5385 4c-.9063 0-1.6413.6783-1.6413 1.5147 0 .1187.0145.2343.0427.3452-1.364-.0631-2.5735-.6661-3.383-1.5828a1.4204 1.4204 0 00-.2224.7616c0 .5254.29.9892.7302 1.2608a1.7346 1.7346 0 01-.7434-.1897l-.0001.0192c0 .734.566 1.346 1.3167 1.4851a1.7641 1.7641 0 01-.4324.0532c-.106 0-.2087-.0094-.3088-.027.2088.6017.8149 1.0396 1.5332 1.052-.5618.4063-1.2694.6483-2.0386.6483A3.578 3.578 0 013 9.3194c.726.43 1.589.6806 2.5157.6806 3.019 0 4.67-2.308 4.67-4.3099 0-.0656-.0016-.131-.0048-.1958A3.1987 3.1987 0 0011 4.7103z"
6
- fill="#F1F2F2"
7
- />
8
- </g>
9
- </template>
1
+ <template>
2
+ <g transform="translate(1 1)" fill="none" fill-rule="evenodd">
3
+ <circle fill="#55ACEE" cx="7" cy="7" r="7" />
4
+ <path
5
+ d="M11 4.7103a3.4907 3.4907 0 01-.9427.2382c.3389-.1874.599-.4839.7218-.8378a3.4567 3.4567 0 01-1.0423.3675C9.4374 4.1839 9.0108 4 8.5385 4c-.9063 0-1.6413.6783-1.6413 1.5147 0 .1187.0145.2343.0427.3452-1.364-.0631-2.5735-.6661-3.383-1.5828a1.4204 1.4204 0 00-.2224.7616c0 .5254.29.9892.7302 1.2608a1.7346 1.7346 0 01-.7434-.1897l-.0001.0192c0 .734.566 1.346 1.3167 1.4851a1.7641 1.7641 0 01-.4324.0532c-.106 0-.2087-.0094-.3088-.027.2088.6017.8149 1.0396 1.5332 1.052-.5618.4063-1.2694.6483-2.0386.6483A3.578 3.578 0 013 9.3194c.726.43 1.589.6806 2.5157.6806 3.019 0 4.67-2.308 4.67-4.3099 0-.0656-.0016-.131-.0048-.1958A3.1987 3.1987 0 0011 4.7103z"
6
+ fill="#F1F2F2"
7
+ />
8
+ </g>
9
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <path
3
- d="M14.2503 5.63l-3.7761-.5749-1.6895-3.5855c-.2957-.6261-1.2739-.6261-1.5696 0L5.5265 5.0551l-3.777.5749c-.7149.109-1.0045 1.0332-.4848 1.565L3.998 9.9855l-.6448 3.9412c-.1216.7463.6273 1.3193 1.2695.9663l3.3772-1.8601 3.378 1.861c.637.3493 1.392-.2145 1.2696-.9663l-.6449-3.9412 2.7333-2.7907c.5188-.5326.2292-1.4567-.4856-1.5658z"
4
- fill-rule="nonzero"
5
- />
6
- </template>
1
+ <template>
2
+ <path
3
+ d="M14.2503 5.63l-3.7761-.5749-1.6895-3.5855c-.2957-.6261-1.2739-.6261-1.5696 0L5.5265 5.0551l-3.777.5749c-.7149.109-1.0045 1.0332-.4848 1.565L3.998 9.9855l-.6448 3.9412c-.1216.7463.6273 1.3193 1.2695.9663l3.3772-1.8601 3.378 1.861c.637.3493 1.392-.2145 1.2696-.9663l-.6449-3.9412 2.7333-2.7907c.5188-.5326.2292-1.4567-.4856-1.5658z"
4
+ fill-rule="nonzero"
5
+ />
6
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <path
3
- d="M11.377 14.892l-3.3772-1.86-3.3772 1.86c-.636.3547-1.3929-.2155-1.2695-.9662l.6448-3.941-2.7332-2.7904c-.5197-.5317-.2301-1.4548.4856-1.5639l3.776-.5748 1.6895-3.5861c.294-.6261 1.2748-.6261 1.5688 0l1.6894 3.5852 3.7761.5748c.7157.109 1.0044 1.0322.4856 1.5639l-2.7332 2.7914.6448 3.9409c.1233.7544-.6352 1.3164-1.2704.9662zm-2.9695-3.7072l2.2152 1.2202-.4225-2.5852c-.049-.297.0455-.6004.251-.8112L12.244 7.177l-2.4768-.3768c-.2861-.043-.532-.231-.6588-.5014L7.9998 3.9465 6.8912 6.2988c-.1277.2704-.3735.4583-.6588.5014l-2.4768.3768 1.7927 1.8316c.2056.2099.3.5142.251.8112l-.4225 2.5852 2.2152-1.2202a.838.838 0 01.8155 0z"
4
- fill-rule="nonzero"
5
- />
6
- </template>
1
+ <template>
2
+ <path
3
+ d="M11.377 14.892l-3.3772-1.86-3.3772 1.86c-.636.3547-1.3929-.2155-1.2695-.9662l.6448-3.941-2.7332-2.7904c-.5197-.5317-.2301-1.4548.4856-1.5639l3.776-.5748 1.6895-3.5861c.294-.6261 1.2748-.6261 1.5688 0l1.6894 3.5852 3.7761.5748c.7157.109 1.0044 1.0322.4856 1.5639l-2.7332 2.7914.6448 3.9409c.1233.7544-.6352 1.3164-1.2704.9662zm-2.9695-3.7072l2.2152 1.2202-.4225-2.5852c-.049-.297.0455-.6004.251-.8112L12.244 7.177l-2.4768-.3768c-.2861-.043-.532-.231-.6588-.5014L7.9998 3.9465 6.8912 6.2988c-.1277.2704-.3735.4583-.6588.5014l-2.4768.3768 1.7927 1.8316c.2056.2099.3.5142.251.8112l-.4225 2.5852 2.2152-1.2202a.838.838 0 01.8155 0z"
4
+ fill-rule="nonzero"
5
+ />
6
+ </template>
@@ -1,29 +1,29 @@
1
- <template>
2
- <path
3
- d="M 8.00,2.00
4
- C 11.31,2.00 14.00,4.69 14.00,8.00
5
- 14.00,11.31 11.31,14.00 8.00,14.00
6
- 4.69,14.00 2.00,11.31 2.00,8.00
7
- 2.00,4.69 4.69,2.00 8.00,2.00 Z
8
- M 8.30,5.27
9
- C 8.18,5.02 7.82,5.02 7.70,5.27
10
- 7.70,5.27 7.10,6.49 7.10,6.49
11
- 7.05,6.59 6.96,6.66 6.85,6.68
12
- 6.85,6.68 5.50,6.87 5.50,6.87
13
- 5.22,6.91 5.12,7.25 5.31,7.44
14
- 5.31,7.44 6.29,8.39 6.29,8.39
15
- 6.37,8.47 6.40,8.58 6.39,8.69
16
- 6.39,8.69 6.16,10.03 6.16,10.03
17
- 6.11,10.30 6.39,10.51 6.64,10.38
18
- 6.64,10.38 7.84,9.75 7.84,9.75
19
- 7.94,9.70 8.06,9.70 8.16,9.75
20
- 8.16,9.75 9.36,10.38 9.36,10.38
21
- 9.61,10.51 9.89,10.30 9.84,10.03
22
- 9.84,10.03 9.61,8.69 9.61,8.69
23
- 9.60,8.58 9.63,8.47 9.71,8.39
24
- 9.71,8.39 10.69,7.44 10.69,7.44
25
- 10.88,7.25 10.78,6.91 10.50,6.87
26
- 10.50,6.87 9.15,6.68 9.15,6.68
27
- 9.04,6.66 8.95,6.59 8.90,6.49
28
- 8.90,6.49 8.30,5.27 8.30,5.27 Z" />
1
+ <template>
2
+ <path
3
+ d="M 8.00,2.00
4
+ C 11.31,2.00 14.00,4.69 14.00,8.00
5
+ 14.00,11.31 11.31,14.00 8.00,14.00
6
+ 4.69,14.00 2.00,11.31 2.00,8.00
7
+ 2.00,4.69 4.69,2.00 8.00,2.00 Z
8
+ M 8.30,5.27
9
+ C 8.18,5.02 7.82,5.02 7.70,5.27
10
+ 7.70,5.27 7.10,6.49 7.10,6.49
11
+ 7.05,6.59 6.96,6.66 6.85,6.68
12
+ 6.85,6.68 5.50,6.87 5.50,6.87
13
+ 5.22,6.91 5.12,7.25 5.31,7.44
14
+ 5.31,7.44 6.29,8.39 6.29,8.39
15
+ 6.37,8.47 6.40,8.58 6.39,8.69
16
+ 6.39,8.69 6.16,10.03 6.16,10.03
17
+ 6.11,10.30 6.39,10.51 6.64,10.38
18
+ 6.64,10.38 7.84,9.75 7.84,9.75
19
+ 7.94,9.70 8.06,9.70 8.16,9.75
20
+ 8.16,9.75 9.36,10.38 9.36,10.38
21
+ 9.61,10.51 9.89,10.30 9.84,10.03
22
+ 9.84,10.03 9.61,8.69 9.61,8.69
23
+ 9.60,8.58 9.63,8.47 9.71,8.39
24
+ 9.71,8.39 10.69,7.44 10.69,7.44
25
+ 10.88,7.25 10.78,6.91 10.50,6.87
26
+ 10.50,6.87 9.15,6.68 9.15,6.68
27
+ 9.04,6.66 8.95,6.59 8.90,6.49
28
+ 8.90,6.49 8.30,5.27 8.30,5.27 Z" />
29
29
  </template>
@@ -1,5 +1,5 @@
1
- <template>
2
- <path
3
- d="M11.75 5.5c0 .2031-.0781.3828-.2344.539-.1406.1407-.3125.211-.5156.211H2.75c-.2031 0-.3828-.0703-.539-.211C2.0702 5.8829 2 5.7032 2 5.5V3.25c0-.2031.0703-.375.211-.5156.1562-.1563.3359-.2344.539-.2344H11c.2031 0 .375.0781.5156.2344.1563.1406.2344.3125.2344.5156V5.5ZM12.5 4c.4219 0 .7734.1484 1.0547.4453.2969.2813.4453.6328.4453 1.0547V7c0 .625-.2188 1.1563-.6562 1.5938-.4376.4375-.9688.6562-1.5938.6562H8V10c.2031 0 .375.0781.5156.2344.1563.1406.2344.3125.2344.5156v3c0 .2031-.0781.375-.2344.5156-.1406.1563-.3125.2344-.5156.2344H6.5c-.2031 0-.3828-.0781-.539-.2344-.1407-.1406-.211-.3125-.211-.5156v-3c0-.2031.0703-.375.211-.5156.1562-.1563.3359-.2344.539-.2344v-.75c0-.4219.1406-.7734.4219-1.0547C7.2188 7.8984 7.578 7.75 8 7.75h3.75c.2031 0 .375-.0703.5156-.211.1563-.1562.2344-.3359.2344-.539V4Z"
4
- />
5
- </template>
1
+ <template>
2
+ <path
3
+ d="M11.75 5.5c0 .2031-.0781.3828-.2344.539-.1406.1407-.3125.211-.5156.211H2.75c-.2031 0-.3828-.0703-.539-.211C2.0702 5.8829 2 5.7032 2 5.5V3.25c0-.2031.0703-.375.211-.5156.1562-.1563.3359-.2344.539-.2344H11c.2031 0 .375.0781.5156.2344.1563.1406.2344.3125.2344.5156V5.5ZM12.5 4c.4219 0 .7734.1484 1.0547.4453.2969.2813.4453.6328.4453 1.0547V7c0 .625-.2188 1.1563-.6562 1.5938-.4376.4375-.9688.6562-1.5938.6562H8V10c.2031 0 .375.0781.5156.2344.1563.1406.2344.3125.2344.5156v3c0 .2031-.0781.375-.2344.5156-.1406.1563-.3125.2344-.5156.2344H6.5c-.2031 0-.3828-.0781-.539-.2344-.1407-.1406-.211-.3125-.211-.5156v-3c0-.2031.0703-.375.211-.5156.1562-.1563.3359-.2344.539-.2344v-.75c0-.4219.1406-.7734.4219-1.0547C7.2188 7.8984 7.578 7.75 8 7.75h3.75c.2031 0 .375-.0703.5156-.211.1563-.1562.2344-.3359.2344-.539V4Z"
4
+ />
5
+ </template>
@@ -1,5 +1,5 @@
1
- <template>
2
- <path
3
- d="M14.125 15h-5.25C8.392 15 8 14.608 8 14.125v-.875c0-.483.392-.875.875-.875h5.25c.483 0 .875.392.875.875v.875c0 .483-.392.875-.875.875zM14.125 1H1.875C1.392 1 1 1.392 1 1.875V9.75c0 .483.392.875.875.875h12.25c.483 0 .875-.392.875-.875V1.875c0-.483-.392-.875-.875-.875zm-.875 7.875H2.75V4.5h10.5v4.375z"
4
- />
5
- </template>
1
+ <template>
2
+ <path
3
+ d="M14.125 15h-5.25C8.392 15 8 14.608 8 14.125v-.875c0-.483.392-.875.875-.875h5.25c.483 0 .875.392.875.875v.875c0 .483-.392.875-.875.875zM14.125 1H1.875C1.392 1 1 1.392 1 1.875V9.75c0 .483.392.875.875.875h12.25c.483 0 .875-.392.875-.875V1.875c0-.483-.392-.875-.875-.875zm-.875 7.875H2.75V4.5h10.5v4.375z"
4
+ />
5
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <path
3
- fill-rule="evenodd"
4
- clip-rule="evenodd"
5
- d="M13.9259 12.1481c0 .9819-.7959 1.7778-1.7777 1.7778H3.8519c-.9819 0-1.7778-.7959-1.7778-1.7778V3.8519c0-.9819.796-1.7778 1.7778-1.7778h8.2963c.9818 0 1.7777.796 1.7777 1.7778v8.2962ZM5.6296 8H3.2593v4.1481c0 .3273.2653.5926.5926.5926h1.7777V8Zm7.1111 0H6.8148v4.7407h5.3334a.5926.5926 0 0 0 .5925-.5926V8Zm-.5925-4.7407H3.8519a.5926.5926 0 0 0-.5926.5926v2.963h9.4814v-2.963a.5926.5926 0 0 0-.5925-.5926Z"
6
- />
7
- </template>
1
+ <template>
2
+ <path
3
+ fill-rule="evenodd"
4
+ clip-rule="evenodd"
5
+ d="M13.9259 12.1481c0 .9819-.7959 1.7778-1.7777 1.7778H3.8519c-.9819 0-1.7778-.7959-1.7778-1.7778V3.8519c0-.9819.796-1.7778 1.7778-1.7778h8.2963c.9818 0 1.7777.796 1.7777 1.7778v8.2962ZM5.6296 8H3.2593v4.1481c0 .3273.2653.5926.5926.5926h1.7777V8Zm7.1111 0H6.8148v4.7407h5.3334a.5926.5926 0 0 0 .5925-.5926V8Zm-.5925-4.7407H3.8519a.5926.5926 0 0 0-.5926.5926v2.963h9.4814v-2.963a.5926.5926 0 0 0-.5925-.5926Z"
6
+ />
7
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <svg viewBox="0 0 94 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect x="7" y="2" width="80" height="12" rx="2" />
4
- <rect x="19" y="18" width="56" height="4" rx="2" />
5
- </svg>
6
- </template>
1
+ <template>
2
+ <svg viewBox="0 0 94 24" xmlns="http://www.w3.org/2000/svg">
3
+ <rect x="7" y="2" width="80" height="12" rx="2" />
4
+ <rect x="19" y="18" width="56" height="4" rx="2" />
5
+ </svg>
6
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <g>
3
- <rect x="5" y="9" width="20" height="6" rx="3" fill="#595959" />
4
- <rect x="37" y="9" width="20" height="6" rx="3" fill="#595959" />
5
- <rect x="69" y="9" width="20" height="6" rx="3" fill="#595959" />
6
- </g>
7
- </template>
1
+ <template>
2
+ <g>
3
+ <rect x="5" y="9" width="20" height="6" rx="3" fill="#595959" />
4
+ <rect x="37" y="9" width="20" height="6" rx="3" fill="#595959" />
5
+ <rect x="69" y="9" width="20" height="6" rx="3" fill="#595959" />
6
+ </g>
7
+ </template>
@@ -1,9 +1,9 @@
1
- <template>
2
- <svg viewBox="0 0 94 24" xmlns="http://www.w3.org/2000/svg">
3
- <path
4
- d="M5 4C5 1.79086 6.79086 0 9 0H25C27.2091 0 29 1.79086 29 4V20C29 22.2091 27.2091 24 25 24H9C6.79086 24 5 22.2091 5 20V4Z"
5
- />
6
- <rect x="35" y="3" width="50" height="6" rx="3" />
7
- <rect x="35" y="15" width="32" height="6" rx="3" />
8
- </svg>
9
- </template>
1
+ <template>
2
+ <svg viewBox="0 0 94 24" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ d="M5 4C5 1.79086 6.79086 0 9 0H25C27.2091 0 29 1.79086 29 4V20C29 22.2091 27.2091 24 25 24H9C6.79086 24 5 22.2091 5 20V4Z"
5
+ />
6
+ <rect x="35" y="3" width="50" height="6" rx="3" />
7
+ <rect x="35" y="15" width="32" height="6" rx="3" />
8
+ </svg>
9
+ </template>
@@ -1,5 +1,5 @@
1
- <template>
2
- <svg viewBox="0 0 94 24" xmlns="http://www.w3.org/2000/svg">
3
- <rect x="15" y="3" width="64" height="18" rx="4" />
4
- </svg>
5
- </template>
1
+ <template>
2
+ <svg viewBox="0 0 94 24" xmlns="http://www.w3.org/2000/svg">
3
+ <rect x="15" y="3" width="64" height="18" rx="4" />
4
+ </svg>
5
+ </template>
@@ -1,9 +1,9 @@
1
- <template>
2
- <svg viewBox="0 0 94 24" xmlns="http://www.w3.org/2000/svg">
3
- <path
4
- d="M61 4C61 1.79086 62.7909 0 65 0H81C83.2091 0 85 1.79086 85 4V20C85 22.2091 83.2091 24 81 24H65C62.7909 24 61 22.2091 61 20V4Z"
5
- />
6
- <rect x="5" y="3" width="50" height="6" rx="3" />
7
- <rect x="5" y="15" width="32" height="6" rx="3" />
8
- </svg>
9
- </template>
1
+ <template>
2
+ <svg viewBox="0 0 94 24" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ d="M61 4C61 1.79086 62.7909 0 65 0H81C83.2091 0 85 1.79086 85 4V20C85 22.2091 83.2091 24 81 24H65C62.7909 24 61 22.2091 61 20V4Z"
5
+ />
6
+ <rect x="5" y="3" width="50" height="6" rx="3" />
7
+ <rect x="5" y="15" width="32" height="6" rx="3" />
8
+ </svg>
9
+ </template>
@@ -1,13 +1,13 @@
1
- <template>
2
- <g>
3
- <rect x="12" y="9" width="3" height="1.5" rx="0.75" />
4
- <rect x="12" y="2" width="3" height="1.5" rx="0.75" />
5
- <rect x="12" y="5.5" width="3" height="1.5" rx="0.75" />
6
- <rect x="1" y="12.5" width="14" height="1.5" rx="0.75" />
7
- <path
8
- fill-rule="evenodd"
9
- clip-rule="evenodd"
10
- d="M2 1C1.44772 1 1 1.44772 1 2V10C1 10.5523 1.44772 11 2 11H10C10.5523 11 11 10.5523 11 10V2C11 1.44772 10.5523 1 10 1H2ZM2.26829 3.99268C2.46341 3.79756 2.69919 3.7 2.97561 3.7C3.25203 3.7 3.47967 3.79756 3.65854 3.99268C3.85366 4.17154 3.95122 4.39918 3.95122 4.67561C3.95122 4.95203 3.85366 5.1878 3.65854 5.38292C3.47967 5.56179 3.25203 5.65122 2.97561 5.65122C2.69919 5.65122 2.46341 5.56179 2.26829 5.38292C2.08943 5.1878 2 4.95203 2 4.67561C2 4.39918 2.08943 4.17154 2.26829 3.99268ZM2.19512 8.57805V7.40731L3.17073 6.4317C3.30081 6.30162 3.43089 6.30162 3.56098 6.4317L4.53659 7.40731L7.46341 4.48048C7.5935 4.3504 7.72358 4.3504 7.85366 4.48048L10 6.62683V8.57805H2.19512Z"
11
- />
12
- </g>
13
- </template>
1
+ <template>
2
+ <g>
3
+ <rect x="12" y="9" width="3" height="1.5" rx="0.75" />
4
+ <rect x="12" y="2" width="3" height="1.5" rx="0.75" />
5
+ <rect x="12" y="5.5" width="3" height="1.5" rx="0.75" />
6
+ <rect x="1" y="12.5" width="14" height="1.5" rx="0.75" />
7
+ <path
8
+ fill-rule="evenodd"
9
+ clip-rule="evenodd"
10
+ d="M2 1C1.44772 1 1 1.44772 1 2V10C1 10.5523 1.44772 11 2 11H10C10.5523 11 11 10.5523 11 10V2C11 1.44772 10.5523 1 10 1H2ZM2.26829 3.99268C2.46341 3.79756 2.69919 3.7 2.97561 3.7C3.25203 3.7 3.47967 3.79756 3.65854 3.99268C3.85366 4.17154 3.95122 4.39918 3.95122 4.67561C3.95122 4.95203 3.85366 5.1878 3.65854 5.38292C3.47967 5.56179 3.25203 5.65122 2.97561 5.65122C2.69919 5.65122 2.46341 5.56179 2.26829 5.38292C2.08943 5.1878 2 4.95203 2 4.67561C2 4.39918 2.08943 4.17154 2.26829 3.99268ZM2.19512 8.57805V7.40731L3.17073 6.4317C3.30081 6.30162 3.43089 6.30162 3.56098 6.4317L4.53659 7.40731L7.46341 4.48048C7.5935 4.3504 7.72358 4.3504 7.85366 4.48048L10 6.62683V8.57805H2.19512Z"
11
+ />
12
+ </g>
13
+ </template>
@@ -1,8 +1,8 @@
1
- <template>
2
- <g fill-rule="evenodd">
3
- <path
4
- d="M12.1125 1.2625c-.35-.35-.875-.35-1.225 0-.35.35-.35.875 0 1.225l.7.7-.7875.7875C9.75 3.1875 8.525 2.75 7.125 2.75 3.7125 2.75 1 5.4625 1 8.875S3.7125 15 7.125 15s6.125-2.7125 6.125-6.125c0-1.4-.4375-2.625-1.225-3.675l.7875-.7875.7.7c.175.175.35.2625.6125.2625.2625 0 .4375-.0875.6125-.2625.35-.35.35-.875 0-1.225l-2.625-2.625zM7.125 13.25c-2.45 0-4.375-1.925-4.375-4.375S4.675 4.5 7.125 4.5 11.5 6.425 11.5 8.875 9.575 13.25 7.125 13.25z"
5
- />
6
- <path d="M8 6.25H6.25v3.5h3.5V8H8z" />
7
- </g>
8
- </template>
1
+ <template>
2
+ <g fill-rule="evenodd">
3
+ <path
4
+ d="M12.1125 1.2625c-.35-.35-.875-.35-1.225 0-.35.35-.35.875 0 1.225l.7.7-.7875.7875C9.75 3.1875 8.525 2.75 7.125 2.75 3.7125 2.75 1 5.4625 1 8.875S3.7125 15 7.125 15s6.125-2.7125 6.125-6.125c0-1.4-.4375-2.625-1.225-3.675l.7875-.7875.7.7c.175.175.35.2625.6125.2625.2625 0 .4375-.0875.6125-.2625.35-.35.35-.875 0-1.225l-2.625-2.625zM7.125 13.25c-2.45 0-4.375-1.925-4.375-4.375S4.675 4.5 7.125 4.5 11.5 6.425 11.5 8.875 9.575 13.25 7.125 13.25z"
5
+ />
6
+ <path d="M8 6.25H6.25v3.5h3.5V8H8z" />
7
+ </g>
8
+ </template>
@@ -1,5 +1,5 @@
1
- <template>
2
- <g fill-rule="nonzero">
3
- <path d="M8.0004 10L16 .0017h-1.0425l-6.9571 8.695L1.0409 0 0 .0017z" />
4
- </g>
5
- </template>
1
+ <template>
2
+ <g fill-rule="nonzero">
3
+ <path d="M8.0004 10L16 .0017h-1.0425l-6.9571 8.695L1.0409 0 0 .0017z" />
4
+ </g>
5
+ </template>
@@ -1,5 +1,5 @@
1
- <template>
2
- <g fill-rule="nonzero">
3
- <path d="M0 7.9996L9.9983 0v1.0425l-8.695 6.9571L10 14.9591 9.9983 16z" />
4
- </g>
5
- </template>
1
+ <template>
2
+ <g fill-rule="nonzero">
3
+ <path d="M0 7.9996L9.9983 0v1.0425l-8.695 6.9571L10 14.9591 9.9983 16z" />
4
+ </g>
5
+ </template>
@@ -1,5 +1,5 @@
1
- <template>
2
- <g fill-rule="nonzero">
3
- <path d="M10 7.9996L.0017 0v1.0425l8.695 6.9571L0 14.9591.0017 16z" />
4
- </g>
5
- </template>
1
+ <template>
2
+ <g fill-rule="nonzero">
3
+ <path d="M10 7.9996L.0017 0v1.0425l8.695 6.9571L0 14.9591.0017 16z" />
4
+ </g>
5
+ </template>
@@ -1,5 +1,5 @@
1
- <template>
2
- <g fill-rule="nonzero">
3
- <path d="M7.9996 0L0 9.9983h1.0425l6.9571-8.695L14.9591 10 16 9.9983z" />
4
- </g>
5
- </template>
1
+ <template>
2
+ <g fill-rule="nonzero">
3
+ <path d="M7.9996 0L0 9.9983h1.0425l6.9571-8.695L14.9591 10 16 9.9983z" />
4
+ </g>
5
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <path
3
- d="M10.625 5.5H3.613l1.783-1.729a.633.633 0 0 0 0-.915.683.683 0 0 0-.945 0L1.528 5.689a.637.637 0 0 0 0 .915l2.923 2.832c.131.127.301.19.472.19a.673.673 0 0 0 .472-.19.631.631 0 0 0 0-.915L3.613 6.793h7.011c1.491 0 2.707 1.177 2.707 2.623 0 1.447-1.215 2.623-2.707 2.623H6.311c-.369 0-.669.29-.669.647s.3.647.669.647h4.313c2.229 0 4.043-1.757 4.043-3.917 0-2.159-1.813-3.917-4.042-3.917"
4
- fill-rule="evenodd"
5
- />
6
- </template>
1
+ <template>
2
+ <path
3
+ d="M10.625 5.5H3.613l1.783-1.729a.633.633 0 0 0 0-.915.683.683 0 0 0-.945 0L1.528 5.689a.637.637 0 0 0 0 .915l2.923 2.832c.131.127.301.19.472.19a.673.673 0 0 0 .472-.19.631.631 0 0 0 0-.915L3.613 6.793h7.011c1.491 0 2.707 1.177 2.707 2.623 0 1.447-1.215 2.623-2.707 2.623H6.311c-.369 0-.669.29-.669.647s.3.647.669.647h4.313c2.229 0 4.043-1.757 4.043-3.917 0-2.159-1.813-3.917-4.042-3.917"
4
+ fill-rule="evenodd"
5
+ />
6
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <path
3
- d="M14.9967 6.134a.2494.2494 0 00.003-.0296.2905.2905 0 00-.0006-.035.2433.2433 0 00-.015-.0633c-.002-.0057-.0025-.0117-.0051-.0173-.0019-.004-.0051-.0072-.0072-.0113-.0021-.004-.003-.0084-.0054-.0125l-2.3339-3.8519a.2457.2457 0 00-.0376-.0474l-.0007-.0005a.2284.2284 0 00-.0693-.0445c-.0032-.0014-.0053-.0043-.0089-.0058-.0025-.001-.0053-.0005-.0079-.0012A.2224.2224 0 0012.4348 2H3.5661a.2218.2218 0 00-.0724.0135c-.0025.0007-.0051.0002-.0074.0012-.0035.0012-.0056.004-.009.0055a.2314.2314 0 00-.0669.0422c-.0012.0012-.0028.0019-.004.0028a.2407.2407 0 00-.038.0477L1.0345 5.9648c-.0023.0038-.0032.0084-.0053.0125-.0021.004-.0054.0072-.0073.0113-.0025.0055-.003.0115-.0054.0173a.2433.2433 0 00-.0149.0636.197.197 0 00-.0014.0349.222.222 0 00.0117.0638.2486.2486 0 00.0105.0277c.002.0043.0028.0091.0051.0135.0038.007.0094.0122.0136.0187.0032.005.005.0106.009.0154l6.7657 8.6633c.0005.0008.001.0012.0014.0017l.0012.0017c.0007.001.0019.0012.0026.0022a.2305.2305 0 00.0688.0563.2394.2394 0 00.0208.0104A.2245.2245 0 008 15a.2292.2292 0 00.08-.0147c.004-.0014.0066-.0048.0105-.0065.012-.005.0213-.0132.032-.0202a.2271.2271 0 00.0481-.0392c.0033-.0037.0082-.0053.0112-.0092l6.7683-8.6667c.0037-.0048.0056-.0106.009-.0154.0045-.0065.0099-.0118.0136-.0187.0023-.0044.003-.0092.0051-.0135a.2319.2319 0 00.0105-.0277c.0033-.0113.0066-.0224.0084-.0342zM8.4906 2.4817h3.608l-1.1343 3.1405-2.4737-3.1405zm2.053 3.3704h-5.087L8 2.623l2.5437 3.229zm-5.5242-.209l-1.12-3.1614h3.6102L5.0194 5.6431zm5.6879.6905L7.959 13.9424 5.2637 6.3336h5.4436zm1.7803-3.5502l1.8594 3.069h-2.9678l1.1084-3.069zm-8.9773.0031l1.086 3.0656H1.653l1.8573-3.0656zm1.2566 3.547l2.5297 7.1414-5.577-7.1413h3.0473zm3.7925 7.3258l2.646-7.3257h3.075l-5.721 7.3257z"
4
- stroke-width=".5"
5
- fill-rule="nonzero"
6
- />
7
- </template>
1
+ <template>
2
+ <path
3
+ d="M14.9967 6.134a.2494.2494 0 00.003-.0296.2905.2905 0 00-.0006-.035.2433.2433 0 00-.015-.0633c-.002-.0057-.0025-.0117-.0051-.0173-.0019-.004-.0051-.0072-.0072-.0113-.0021-.004-.003-.0084-.0054-.0125l-2.3339-3.8519a.2457.2457 0 00-.0376-.0474l-.0007-.0005a.2284.2284 0 00-.0693-.0445c-.0032-.0014-.0053-.0043-.0089-.0058-.0025-.001-.0053-.0005-.0079-.0012A.2224.2224 0 0012.4348 2H3.5661a.2218.2218 0 00-.0724.0135c-.0025.0007-.0051.0002-.0074.0012-.0035.0012-.0056.004-.009.0055a.2314.2314 0 00-.0669.0422c-.0012.0012-.0028.0019-.004.0028a.2407.2407 0 00-.038.0477L1.0345 5.9648c-.0023.0038-.0032.0084-.0053.0125-.0021.004-.0054.0072-.0073.0113-.0025.0055-.003.0115-.0054.0173a.2433.2433 0 00-.0149.0636.197.197 0 00-.0014.0349.222.222 0 00.0117.0638.2486.2486 0 00.0105.0277c.002.0043.0028.0091.0051.0135.0038.007.0094.0122.0136.0187.0032.005.005.0106.009.0154l6.7657 8.6633c.0005.0008.001.0012.0014.0017l.0012.0017c.0007.001.0019.0012.0026.0022a.2305.2305 0 00.0688.0563.2394.2394 0 00.0208.0104A.2245.2245 0 008 15a.2292.2292 0 00.08-.0147c.004-.0014.0066-.0048.0105-.0065.012-.005.0213-.0132.032-.0202a.2271.2271 0 00.0481-.0392c.0033-.0037.0082-.0053.0112-.0092l6.7683-8.6667c.0037-.0048.0056-.0106.009-.0154.0045-.0065.0099-.0118.0136-.0187.0023-.0044.003-.0092.0051-.0135a.2319.2319 0 00.0105-.0277c.0033-.0113.0066-.0224.0084-.0342zM8.4906 2.4817h3.608l-1.1343 3.1405-2.4737-3.1405zm2.053 3.3704h-5.087L8 2.623l2.5437 3.229zm-5.5242-.209l-1.12-3.1614h3.6102L5.0194 5.6431zm5.6879.6905L7.959 13.9424 5.2637 6.3336h5.4436zm1.7803-3.5502l1.8594 3.069h-2.9678l1.1084-3.069zm-8.9773.0031l1.086 3.0656H1.653l1.8573-3.0656zm1.2566 3.547l2.5297 7.1414-5.577-7.1413h3.0473zm3.7925 7.3258l2.646-7.3257h3.075l-5.721 7.3257z"
4
+ stroke-width=".5"
5
+ fill-rule="nonzero"
6
+ />
7
+ </template>
@@ -1,9 +1,9 @@
1
- <template>
2
- <path
3
- d="M14.9967 6.134a.2494.2494 0 00.003-.0296.2905.2905 0 00-.0006-.035.2433.2433 0 00-.015-.0633c-.002-.0057-.0025-.0117-.0051-.0173-.0019-.004-.0051-.0072-.0072-.0113-.0021-.004-.003-.0084-.0054-.0125l-2.3339-3.8519a.2457.2457 0 00-.0376-.0474l-.0007-.0005a.2284.2284 0 00-.0693-.0445c-.0032-.0014-.0053-.0043-.0089-.0058-.0025-.001-.0053-.0005-.0079-.0012A.2224.2224 0 0012.4348 2H3.5661a.2218.2218 0 00-.0724.0135c-.0025.0007-.0051.0002-.0074.0012-.0035.0012-.0056.004-.009.0055a.2314.2314 0 00-.0669.0422c-.0012.0012-.0028.0019-.004.0028a.2407.2407 0 00-.038.0477L1.0345 5.9648c-.0023.0038-.0032.0084-.0053.0125-.0021.004-.0054.0072-.0073.0113-.0025.0055-.003.0115-.0054.0173a.2433.2433 0 00-.0149.0636.197.197 0 00-.0014.0349.222.222 0 00.0117.0638.2486.2486 0 00.0105.0277c.002.0043.0028.0091.0051.0135.0038.007.0094.0122.0136.0187.0032.005.005.0106.009.0154l6.7657 8.6633c.0005.0008.001.0012.0014.0017l.0012.0017c.0007.001.0019.0012.0026.0022a.2305.2305 0 00.0688.0563.2394.2394 0 00.0208.0104A.2245.2245 0 008 15a.2292.2292 0 00.08-.0147c.004-.0014.0066-.0048.0105-.0065.012-.005.0213-.0132.032-.0202a.2271.2271 0 00.0481-.0392c.0033-.0037.0082-.0053.0112-.0092l6.7683-8.6667c.0037-.0048.0056-.0106.009-.0154.0045-.0065.0099-.0118.0136-.0187.0023-.0044.003-.0092.0051-.0135a.2319.2319 0 00.0105-.0277c.0033-.0113.0066-.0224.0084-.0342zM8.4906 2.4817h3.608l-1.1343 3.1405-2.4737-3.1405zm2.053 3.3704h-5.087L8 2.623l2.5437 3.229zm-5.5242-.209l-1.12-3.1614h3.6102L5.0194 5.6431zm5.6879.6905L7.959 13.9424 5.2637 6.3336h5.4436zm1.7803-3.5502l1.8594 3.069h-2.9678l1.1084-3.069zm-8.9773.0031l1.086 3.0656H1.653l1.8573-3.0656zm1.2566 3.547l2.5297 7.1414-5.577-7.1413h3.0473zm3.7925 7.3258l2.646-7.3257h3.075l-5.721 7.3257z"
4
- stroke-width=".5"
5
- fill-rule="nonzero"
6
- fill="#0097D7"
7
- stroke="#0097D7"
8
- />
9
- </template>
1
+ <template>
2
+ <path
3
+ d="M14.9967 6.134a.2494.2494 0 00.003-.0296.2905.2905 0 00-.0006-.035.2433.2433 0 00-.015-.0633c-.002-.0057-.0025-.0117-.0051-.0173-.0019-.004-.0051-.0072-.0072-.0113-.0021-.004-.003-.0084-.0054-.0125l-2.3339-3.8519a.2457.2457 0 00-.0376-.0474l-.0007-.0005a.2284.2284 0 00-.0693-.0445c-.0032-.0014-.0053-.0043-.0089-.0058-.0025-.001-.0053-.0005-.0079-.0012A.2224.2224 0 0012.4348 2H3.5661a.2218.2218 0 00-.0724.0135c-.0025.0007-.0051.0002-.0074.0012-.0035.0012-.0056.004-.009.0055a.2314.2314 0 00-.0669.0422c-.0012.0012-.0028.0019-.004.0028a.2407.2407 0 00-.038.0477L1.0345 5.9648c-.0023.0038-.0032.0084-.0053.0125-.0021.004-.0054.0072-.0073.0113-.0025.0055-.003.0115-.0054.0173a.2433.2433 0 00-.0149.0636.197.197 0 00-.0014.0349.222.222 0 00.0117.0638.2486.2486 0 00.0105.0277c.002.0043.0028.0091.0051.0135.0038.007.0094.0122.0136.0187.0032.005.005.0106.009.0154l6.7657 8.6633c.0005.0008.001.0012.0014.0017l.0012.0017c.0007.001.0019.0012.0026.0022a.2305.2305 0 00.0688.0563.2394.2394 0 00.0208.0104A.2245.2245 0 008 15a.2292.2292 0 00.08-.0147c.004-.0014.0066-.0048.0105-.0065.012-.005.0213-.0132.032-.0202a.2271.2271 0 00.0481-.0392c.0033-.0037.0082-.0053.0112-.0092l6.7683-8.6667c.0037-.0048.0056-.0106.009-.0154.0045-.0065.0099-.0118.0136-.0187.0023-.0044.003-.0092.0051-.0135a.2319.2319 0 00.0105-.0277c.0033-.0113.0066-.0224.0084-.0342zM8.4906 2.4817h3.608l-1.1343 3.1405-2.4737-3.1405zm2.053 3.3704h-5.087L8 2.623l2.5437 3.229zm-5.5242-.209l-1.12-3.1614h3.6102L5.0194 5.6431zm5.6879.6905L7.959 13.9424 5.2637 6.3336h5.4436zm1.7803-3.5502l1.8594 3.069h-2.9678l1.1084-3.069zm-8.9773.0031l1.086 3.0656H1.653l1.8573-3.0656zm1.2566 3.547l2.5297 7.1414-5.577-7.1413h3.0473zm3.7925 7.3258l2.646-7.3257h3.075l-5.721 7.3257z"
4
+ stroke-width=".5"
5
+ fill-rule="nonzero"
6
+ fill="#0097D7"
7
+ stroke="#0097D7"
8
+ />
9
+ </template>
@@ -1,5 +1,5 @@
1
- <template>
2
- <path
3
- d="M8.58929 1.26673L12.0179 4.76844C12.3661 5.09673 12.3661 5.67123 12.0179 5.99951C11.6964 6.35515 11.1339 6.35515 10.8125 5.99951L8.85714 4.00244V9.74744C8.85714 10.2399 8.45536 10.6229 8 10.6229C7.51786 10.6229 7.14286 10.2399 7.14286 9.74744V4.00244L5.16071 5.99951C4.83929 6.35515 4.27679 6.35515 3.95536 5.99951C3.60714 5.67123 3.60714 5.09673 3.95536 4.76844L7.38393 1.26673C7.70536 0.911089 8.26786 0.911089 8.58929 1.26673ZM3.71429 10.6229V12.3737C3.71429 12.8661 4.08929 13.2491 4.57143 13.2491H11.4286C11.8839 13.2491 12.2857 12.8661 12.2857 12.3737V10.6229C12.2857 10.1578 12.6607 9.74744 13.1429 9.74744C13.5982 9.74744 14 10.1578 14 10.6229V12.3737C14 13.8236 12.8482 15 11.4286 15H4.57143C3.15179 15 2 13.8236 2 12.3737V10.6229C2 10.1578 2.375 9.74744 2.85714 9.74744C3.3125 9.74744 3.71429 10.1578 3.71429 10.6229Z"
4
- />
5
- </template>
1
+ <template>
2
+ <path
3
+ d="M8.58929 1.26673L12.0179 4.76844C12.3661 5.09673 12.3661 5.67123 12.0179 5.99951C11.6964 6.35515 11.1339 6.35515 10.8125 5.99951L8.85714 4.00244V9.74744C8.85714 10.2399 8.45536 10.6229 8 10.6229C7.51786 10.6229 7.14286 10.2399 7.14286 9.74744V4.00244L5.16071 5.99951C4.83929 6.35515 4.27679 6.35515 3.95536 5.99951C3.60714 5.67123 3.60714 5.09673 3.95536 4.76844L7.38393 1.26673C7.70536 0.911089 8.26786 0.911089 8.58929 1.26673ZM3.71429 10.6229V12.3737C3.71429 12.8661 4.08929 13.2491 4.57143 13.2491H11.4286C11.8839 13.2491 12.2857 12.8661 12.2857 12.3737V10.6229C12.2857 10.1578 12.6607 9.74744 13.1429 9.74744C13.5982 9.74744 14 10.1578 14 10.6229V12.3737C14 13.8236 12.8482 15 11.4286 15H4.57143C3.15179 15 2 13.8236 2 12.3737V10.6229C2 10.1578 2.375 9.74744 2.85714 9.74744C3.3125 9.74744 3.71429 10.1578 3.71429 10.6229Z"
4
+ />
5
+ </template>
@@ -1,5 +1,5 @@
1
- <template>
2
- <path
3
- d="M8 5.9582l2.3434 2.391-.7141.7L8.5 7.8966v4.5613h-1V7.896L6.3707 9.0491l-.7141-.7L8 5.9581zm-.2727-3.1249c2.2547 0 4.147 1.6809 4.5095 3.8938l.0052.037.1.0173c1.1863.2406 2.0936 1.2816 2.1547 2.5382l.0033.1355c0 1.4528-1.1316 2.6514-2.5482 2.7227l-.1336.0034h-.803v-1h.803c.9216 0 1.6818-.7757 1.6818-1.7261 0-.9124-.7006-1.6638-1.572-1.7224l-.1098-.0037h-.4969l-.0294-.4687c-.1206-1.9192-1.6862-3.427-3.5646-3.427-1.863 0-3.414 1.4627-3.5812 3.3535l-.0103.1502-.018.366-.3545.0931c-.745.1955-1.2633.8673-1.2633 1.659 0 .9124.7006 1.6637 1.572 1.7224l.1098.0037h.803v1h-.803c-1.4784 0-2.6818-1.2279-2.6818-2.7261 0-1.1077.6517-2.0756 1.6286-2.4954l.0374-.0157.0186-.1362c.3316-2.206 2.1643-3.8944 4.3835-3.9717l.1592-.0028z"
4
- />
5
- </template>
1
+ <template>
2
+ <path
3
+ d="M8 5.9582l2.3434 2.391-.7141.7L8.5 7.8966v4.5613h-1V7.896L6.3707 9.0491l-.7141-.7L8 5.9581zm-.2727-3.1249c2.2547 0 4.147 1.6809 4.5095 3.8938l.0052.037.1.0173c1.1863.2406 2.0936 1.2816 2.1547 2.5382l.0033.1355c0 1.4528-1.1316 2.6514-2.5482 2.7227l-.1336.0034h-.803v-1h.803c.9216 0 1.6818-.7757 1.6818-1.7261 0-.9124-.7006-1.6638-1.572-1.7224l-.1098-.0037h-.4969l-.0294-.4687c-.1206-1.9192-1.6862-3.427-3.5646-3.427-1.863 0-3.414 1.4627-3.5812 3.3535l-.0103.1502-.018.366-.3545.0931c-.745.1955-1.2633.8673-1.2633 1.659 0 .9124.7006 1.6637 1.572 1.7224l.1098.0037h.803v1h-.803c-1.4784 0-2.6818-1.2279-2.6818-2.7261 0-1.1077.6517-2.0756 1.6286-2.4954l.0374-.0157.0186-.1362c.3316-2.206 2.1643-3.8944 4.3835-3.9717l.1592-.0028z"
4
+ />
5
+ </template>
@@ -1,5 +1,5 @@
1
- <template>
2
- <path
3
- d="M8 2.75c.9429 0 1.7143.7875 1.7143 1.75v.875c0 .9625-.7714 1.75-1.7143 1.75s-1.7143-.7875-1.7143-1.75V4.5c0-.9625.7714-1.75 1.7143-1.75zM8 1C6.1143 1 4.5714 2.575 4.5714 4.5v.875c0 1.925 1.5429 3.5 3.4286 3.5s3.4286-1.575 3.4286-3.5V4.5C11.4286 2.575 9.8857 1 8 1zM8.8571 11.5c1.2858 0 2.4.7 3 1.75H4.2286c.6-1.05 1.7143-1.75 3-1.75H8.857zm0-1.75H7.143C4.3143 9.75 2 12.1125 2 15h12c0-2.8875-2.3143-5.25-5.1429-5.25z"
4
- />
5
- </template>
1
+ <template>
2
+ <path
3
+ d="M8 2.75c.9429 0 1.7143.7875 1.7143 1.75v.875c0 .9625-.7714 1.75-1.7143 1.75s-1.7143-.7875-1.7143-1.75V4.5c0-.9625.7714-1.75 1.7143-1.75zM8 1C6.1143 1 4.5714 2.575 4.5714 4.5v.875c0 1.925 1.5429 3.5 3.4286 3.5s3.4286-1.575 3.4286-3.5V4.5C11.4286 2.575 9.8857 1 8 1zM8.8571 11.5c1.2858 0 2.4.7 3 1.75H4.2286c.6-1.05 1.7143-1.75 3-1.75H8.857zm0-1.75H7.143C4.3143 9.75 2 12.1125 2 15h12c0-2.8875-2.3143-5.25-5.1429-5.25z"
4
+ />
5
+ </template>
@@ -1,51 +1,51 @@
1
- <template>
2
- <path
3
- d="M 7.70,1.83
4
- C 5.40,1.83 3.53,3.70 3.53,6.00
5
- 3.53,6.00 3.53,6.42 3.53,6.42
6
- 3.53,6.65 3.35,6.83 3.12,6.83
7
- 2.89,6.83 2.70,6.65 2.70,6.42
8
- 2.70,6.42 2.70,6.00 2.70,6.00
9
- 2.70,3.24 4.94,1.00 7.70,1.00
10
- 10.46,1.00 12.70,3.24 12.70,6.00
11
- 12.70,6.00 12.70,6.42 12.70,6.42
12
- 12.70,8.03 11.40,9.33 9.78,9.33
13
- 9.78,9.33 8.12,9.33 8.12,9.33
14
- 8.12,9.33 7.70,9.33 7.70,9.33
15
- 7.70,9.33 7.28,9.33 7.28,9.33
16
- 6.82,9.33 6.45,8.96 6.45,8.50
17
- 6.45,8.04 6.82,7.67 7.28,7.67
18
- 7.28,7.67 8.12,7.67 8.12,7.67
19
- 8.58,7.67 8.95,8.04 8.95,8.50
20
- 8.95,8.50 9.78,8.50 9.78,8.50
21
- 10.93,8.50 11.87,7.57 11.87,6.42
22
- 11.87,6.42 11.87,6.00 11.87,6.00
23
- 11.87,3.70 10.00,1.83 7.70,1.83 Z
24
- M 4.37,6.00
25
- C 4.37,4.16 5.86,2.67 7.70,2.67
26
- 9.54,2.67 11.03,4.16 11.03,6.00
27
- 11.03,6.36 10.98,6.71 10.87,7.04
28
- 10.65,7.41 10.25,7.67 9.78,7.67
29
- 9.78,7.67 9.56,7.67 9.56,7.67
30
- 9.27,7.17 8.73,6.83 8.12,6.83
31
- 8.12,6.83 7.28,6.83 7.28,6.83
32
- 6.36,6.83 5.62,7.58 5.62,8.50
33
- 5.62,8.54 5.62,8.57 5.62,8.60
34
- 4.86,7.99 4.37,7.05 4.37,6.00 Z
35
- M 12.26,10.69
36
- C 11.65,10.06 10.92,9.75 10.06,9.75
37
- 10.06,9.75 9.66,9.75 9.66,9.75
38
- 9.11,10.00 8.54,10.12 7.95,10.12
39
- 7.36,10.12 6.79,10.00 6.24,9.75
40
- 6.24,9.75 5.84,9.75 5.84,9.75
41
- 4.98,9.75 4.24,10.06 3.61,10.69
42
- 3.00,11.30 2.70,12.03 2.70,12.89
43
- 2.70,12.89 2.70,13.88 2.70,13.88
44
- 2.70,14.19 2.81,14.45 3.03,14.67
45
- 3.25,14.89 3.51,15.00 3.82,15.00
46
- 3.82,15.00 12.08,15.00 12.08,15.00
47
- 12.39,15.00 12.65,14.89 12.87,14.67
48
- 13.09,14.45 13.20,14.19 13.20,13.88
49
- 13.20,13.88 13.20,12.89 13.20,12.89
50
- 13.20,12.03 12.89,11.30 12.26,10.69 Z" />
1
+ <template>
2
+ <path
3
+ d="M 7.70,1.83
4
+ C 5.40,1.83 3.53,3.70 3.53,6.00
5
+ 3.53,6.00 3.53,6.42 3.53,6.42
6
+ 3.53,6.65 3.35,6.83 3.12,6.83
7
+ 2.89,6.83 2.70,6.65 2.70,6.42
8
+ 2.70,6.42 2.70,6.00 2.70,6.00
9
+ 2.70,3.24 4.94,1.00 7.70,1.00
10
+ 10.46,1.00 12.70,3.24 12.70,6.00
11
+ 12.70,6.00 12.70,6.42 12.70,6.42
12
+ 12.70,8.03 11.40,9.33 9.78,9.33
13
+ 9.78,9.33 8.12,9.33 8.12,9.33
14
+ 8.12,9.33 7.70,9.33 7.70,9.33
15
+ 7.70,9.33 7.28,9.33 7.28,9.33
16
+ 6.82,9.33 6.45,8.96 6.45,8.50
17
+ 6.45,8.04 6.82,7.67 7.28,7.67
18
+ 7.28,7.67 8.12,7.67 8.12,7.67
19
+ 8.58,7.67 8.95,8.04 8.95,8.50
20
+ 8.95,8.50 9.78,8.50 9.78,8.50
21
+ 10.93,8.50 11.87,7.57 11.87,6.42
22
+ 11.87,6.42 11.87,6.00 11.87,6.00
23
+ 11.87,3.70 10.00,1.83 7.70,1.83 Z
24
+ M 4.37,6.00
25
+ C 4.37,4.16 5.86,2.67 7.70,2.67
26
+ 9.54,2.67 11.03,4.16 11.03,6.00
27
+ 11.03,6.36 10.98,6.71 10.87,7.04
28
+ 10.65,7.41 10.25,7.67 9.78,7.67
29
+ 9.78,7.67 9.56,7.67 9.56,7.67
30
+ 9.27,7.17 8.73,6.83 8.12,6.83
31
+ 8.12,6.83 7.28,6.83 7.28,6.83
32
+ 6.36,6.83 5.62,7.58 5.62,8.50
33
+ 5.62,8.54 5.62,8.57 5.62,8.60
34
+ 4.86,7.99 4.37,7.05 4.37,6.00 Z
35
+ M 12.26,10.69
36
+ C 11.65,10.06 10.92,9.75 10.06,9.75
37
+ 10.06,9.75 9.66,9.75 9.66,9.75
38
+ 9.11,10.00 8.54,10.12 7.95,10.12
39
+ 7.36,10.12 6.79,10.00 6.24,9.75
40
+ 6.24,9.75 5.84,9.75 5.84,9.75
41
+ 4.98,9.75 4.24,10.06 3.61,10.69
42
+ 3.00,11.30 2.70,12.03 2.70,12.89
43
+ 2.70,12.89 2.70,13.88 2.70,13.88
44
+ 2.70,14.19 2.81,14.45 3.03,14.67
45
+ 3.25,14.89 3.51,15.00 3.82,15.00
46
+ 3.82,15.00 12.08,15.00 12.08,15.00
47
+ 12.39,15.00 12.65,14.89 12.87,14.67
48
+ 13.09,14.45 13.20,14.19 13.20,13.88
49
+ 13.20,13.88 13.20,12.89 13.20,12.89
50
+ 13.20,12.03 12.89,11.30 12.26,10.69 Z" />
51
51
  </template>
@@ -1,5 +1,5 @@
1
- <template>
2
- <path
3
- d="M14.8504 12.7186C15.0249 12.8743 15.0468 13.0534 14.9159 13.2558L14.4795 13.8398C14.3341 14.0267 14.1741 14.0501 13.9996 13.9099L1.1496 3.28142C0.975067 3.1257 0.95325 2.94661 1.08415 2.74416L1.52048 2.16018C1.66592 1.9733 1.82591 1.94994 2.00045 2.0901L5.31656 4.8465L6.40739 3.67853C6.56738 3.50723 6.75646 3.4683 6.97462 3.56174C7.19279 3.65517 7.30187 3.82647 7.30187 4.07564V6.48165L9.02538 7.90656C8.99629 7.57953 8.85085 7.33815 8.58905 7.18243C8.45815 7.10456 8.37088 6.99555 8.32725 6.85539C8.29816 6.69967 8.3127 6.55951 8.37088 6.43493C8.4436 6.29477 8.55269 6.20133 8.69813 6.15462C8.84357 6.1079 8.97447 6.12347 9.09083 6.20133C9.39626 6.38821 9.63624 6.64516 9.81077 6.97219C9.99985 7.28365 10.0944 7.62625 10.0944 8C10.0944 8.20245 10.0508 8.42825 9.96349 8.67742L10.8362 9.40156C11.0398 8.96552 11.1416 8.49833 11.1416 8C11.1416 7.45495 11.018 6.94105 10.7707 6.45829C10.5234 5.97553 10.1889 5.58621 9.76714 5.29032C9.63624 5.21246 9.55625 5.10345 9.52716 4.96329C9.49807 4.80756 9.51989 4.66741 9.59261 4.54283C9.66533 4.40267 9.77441 4.31702 9.91986 4.28587C10.0653 4.25473 10.1962 4.27809 10.3126 4.35595C10.8943 4.74527 11.3525 5.26696 11.687 5.92102C12.0215 6.57508 12.1888 7.27586 12.1888 8.02336C12.1888 8.75528 12.0142 9.44828 11.6652 10.1023L12.4942 10.7798C12.9887 9.92325 13.236 8.99666 13.236 8C13.236 7.0812 13.0251 6.21691 12.6033 5.40712C12.1961 4.59733 11.6361 3.93548 10.9234 3.42158C10.7925 3.34372 10.7125 3.22692 10.6834 3.07119C10.6543 2.91546 10.6762 2.77531 10.7489 2.65072C10.8362 2.52614 10.9525 2.44828 11.098 2.41713C11.2434 2.37041 11.3743 2.39377 11.4907 2.48721C12.3633 3.09455 13.0469 3.88877 13.5414 4.86986C14.0359 5.85095 14.2832 6.89433 14.2832 8C14.2832 9.24583 13.9705 10.406 13.3451 11.4805L14.8504 12.7186ZM1.71683 6.31813C1.71683 6.11568 1.8041 5.95996 1.97863 5.85095L7.30187 10.2659V11.9244C7.30187 12.1735 7.19279 12.3448 6.97462 12.4383C6.75646 12.5317 6.56738 12.4928 6.40739 12.3215L4.46572 10.2425H2.24043C2.09498 10.2425 1.97136 10.188 1.86955 10.079C1.76774 9.96997 1.71683 9.8376 1.71683 9.68187V6.31813Z"
4
- />
5
- </template>
1
+ <template>
2
+ <path
3
+ d="M14.8504 12.7186C15.0249 12.8743 15.0468 13.0534 14.9159 13.2558L14.4795 13.8398C14.3341 14.0267 14.1741 14.0501 13.9996 13.9099L1.1496 3.28142C0.975067 3.1257 0.95325 2.94661 1.08415 2.74416L1.52048 2.16018C1.66592 1.9733 1.82591 1.94994 2.00045 2.0901L5.31656 4.8465L6.40739 3.67853C6.56738 3.50723 6.75646 3.4683 6.97462 3.56174C7.19279 3.65517 7.30187 3.82647 7.30187 4.07564V6.48165L9.02538 7.90656C8.99629 7.57953 8.85085 7.33815 8.58905 7.18243C8.45815 7.10456 8.37088 6.99555 8.32725 6.85539C8.29816 6.69967 8.3127 6.55951 8.37088 6.43493C8.4436 6.29477 8.55269 6.20133 8.69813 6.15462C8.84357 6.1079 8.97447 6.12347 9.09083 6.20133C9.39626 6.38821 9.63624 6.64516 9.81077 6.97219C9.99985 7.28365 10.0944 7.62625 10.0944 8C10.0944 8.20245 10.0508 8.42825 9.96349 8.67742L10.8362 9.40156C11.0398 8.96552 11.1416 8.49833 11.1416 8C11.1416 7.45495 11.018 6.94105 10.7707 6.45829C10.5234 5.97553 10.1889 5.58621 9.76714 5.29032C9.63624 5.21246 9.55625 5.10345 9.52716 4.96329C9.49807 4.80756 9.51989 4.66741 9.59261 4.54283C9.66533 4.40267 9.77441 4.31702 9.91986 4.28587C10.0653 4.25473 10.1962 4.27809 10.3126 4.35595C10.8943 4.74527 11.3525 5.26696 11.687 5.92102C12.0215 6.57508 12.1888 7.27586 12.1888 8.02336C12.1888 8.75528 12.0142 9.44828 11.6652 10.1023L12.4942 10.7798C12.9887 9.92325 13.236 8.99666 13.236 8C13.236 7.0812 13.0251 6.21691 12.6033 5.40712C12.1961 4.59733 11.6361 3.93548 10.9234 3.42158C10.7925 3.34372 10.7125 3.22692 10.6834 3.07119C10.6543 2.91546 10.6762 2.77531 10.7489 2.65072C10.8362 2.52614 10.9525 2.44828 11.098 2.41713C11.2434 2.37041 11.3743 2.39377 11.4907 2.48721C12.3633 3.09455 13.0469 3.88877 13.5414 4.86986C14.0359 5.85095 14.2832 6.89433 14.2832 8C14.2832 9.24583 13.9705 10.406 13.3451 11.4805L14.8504 12.7186ZM1.71683 6.31813C1.71683 6.11568 1.8041 5.95996 1.97863 5.85095L7.30187 10.2659V11.9244C7.30187 12.1735 7.19279 12.3448 6.97462 12.4383C6.75646 12.5317 6.56738 12.4928 6.40739 12.3215L4.46572 10.2425H2.24043C2.09498 10.2425 1.97136 10.188 1.86955 10.079C1.76774 9.96997 1.71683 9.8376 1.71683 9.68187V6.31813Z"
4
+ />
5
+ </template>
@@ -1,5 +1,5 @@
1
- <template>
2
- <path
3
- d="M7.27083 2.2076C7.48472 1.99371 7.7375 1.9451 8.02917 2.06177C8.32083 2.17844 8.46667 2.39232 8.46667 2.70344V12.5034C8.46667 12.8145 8.32083 13.0284 8.02917 13.1451C7.7375 13.2618 7.48472 13.2132 7.27083 12.9993L4.675 10.4034H1.7C1.50556 10.4034 1.34028 10.3354 1.20417 10.1993C1.06806 10.0632 1 9.89788 1 9.70343V5.50344C1 5.30899 1.06806 5.14371 1.20417 5.0076C1.34028 4.87149 1.50556 4.80344 1.7 4.80344H4.675L7.27083 2.2076ZM14.3292 5.0076C14.7764 5.80482 15 6.6701 15 7.60343C15 8.53677 14.7764 9.41177 14.3292 10.2284C13.9014 11.0257 13.2889 11.6673 12.4917 12.1534C12.3167 12.2701 12.1319 12.309 11.9375 12.2701C11.7625 12.2118 11.6264 12.1048 11.5292 11.9493C11.4319 11.7743 11.4028 11.5993 11.4417 11.4243C11.4806 11.2298 11.5875 11.0743 11.7625 10.9576C12.1319 10.7243 12.4528 10.4326 12.725 10.0826C13.0167 9.7326 13.2306 9.34371 13.3667 8.91593C13.5222 8.48816 13.6 8.05066 13.6 7.60343C13.6 7.15621 13.5222 6.71871 13.3667 6.29093C13.2306 5.86316 13.0167 5.47427 12.725 5.12427C12.4528 4.77427 12.1319 4.4826 11.7625 4.24927C11.5875 4.1326 11.4806 3.98677 11.4417 3.81177C11.4028 3.61732 11.4319 3.44232 11.5292 3.28677C11.6264 3.11177 11.7722 3.00482 11.9667 2.96594C12.1611 2.9076 12.3361 2.93677 12.4917 3.05344C13.2889 3.53955 13.9014 4.19094 14.3292 5.0076ZM10.8583 5.3576C11.2667 5.59094 11.5875 5.91177 11.8208 6.3201C12.0736 6.70899 12.2 7.13677 12.2 7.60343C12.2 8.0701 12.0736 8.5076 11.8208 8.91593C11.5875 9.30482 11.2667 9.61593 10.8583 9.84927C10.7028 9.94649 10.5278 9.96593 10.3333 9.9076C10.1389 9.84927 9.99306 9.74232 9.89583 9.58677C9.81806 9.41177 9.79861 9.23677 9.8375 9.06177C9.89583 8.86732 10.0125 8.72149 10.1875 8.62427C10.5958 8.39093 10.8 8.05066 10.8 7.60343C10.8 7.15621 10.5958 6.81593 10.1875 6.5826C10.0125 6.48538 9.89583 6.34927 9.8375 6.17427C9.79861 5.97982 9.81806 5.80482 9.89583 5.64927C9.99306 5.47427 10.1389 5.3576 10.3333 5.29927C10.5278 5.24094 10.7028 5.26038 10.8583 5.3576Z"
4
- />
5
- </template>
1
+ <template>
2
+ <path
3
+ d="M7.27083 2.2076C7.48472 1.99371 7.7375 1.9451 8.02917 2.06177C8.32083 2.17844 8.46667 2.39232 8.46667 2.70344V12.5034C8.46667 12.8145 8.32083 13.0284 8.02917 13.1451C7.7375 13.2618 7.48472 13.2132 7.27083 12.9993L4.675 10.4034H1.7C1.50556 10.4034 1.34028 10.3354 1.20417 10.1993C1.06806 10.0632 1 9.89788 1 9.70343V5.50344C1 5.30899 1.06806 5.14371 1.20417 5.0076C1.34028 4.87149 1.50556 4.80344 1.7 4.80344H4.675L7.27083 2.2076ZM14.3292 5.0076C14.7764 5.80482 15 6.6701 15 7.60343C15 8.53677 14.7764 9.41177 14.3292 10.2284C13.9014 11.0257 13.2889 11.6673 12.4917 12.1534C12.3167 12.2701 12.1319 12.309 11.9375 12.2701C11.7625 12.2118 11.6264 12.1048 11.5292 11.9493C11.4319 11.7743 11.4028 11.5993 11.4417 11.4243C11.4806 11.2298 11.5875 11.0743 11.7625 10.9576C12.1319 10.7243 12.4528 10.4326 12.725 10.0826C13.0167 9.7326 13.2306 9.34371 13.3667 8.91593C13.5222 8.48816 13.6 8.05066 13.6 7.60343C13.6 7.15621 13.5222 6.71871 13.3667 6.29093C13.2306 5.86316 13.0167 5.47427 12.725 5.12427C12.4528 4.77427 12.1319 4.4826 11.7625 4.24927C11.5875 4.1326 11.4806 3.98677 11.4417 3.81177C11.4028 3.61732 11.4319 3.44232 11.5292 3.28677C11.6264 3.11177 11.7722 3.00482 11.9667 2.96594C12.1611 2.9076 12.3361 2.93677 12.4917 3.05344C13.2889 3.53955 13.9014 4.19094 14.3292 5.0076ZM10.8583 5.3576C11.2667 5.59094 11.5875 5.91177 11.8208 6.3201C12.0736 6.70899 12.2 7.13677 12.2 7.60343C12.2 8.0701 12.0736 8.5076 11.8208 8.91593C11.5875 9.30482 11.2667 9.61593 10.8583 9.84927C10.7028 9.94649 10.5278 9.96593 10.3333 9.9076C10.1389 9.84927 9.99306 9.74232 9.89583 9.58677C9.81806 9.41177 9.79861 9.23677 9.8375 9.06177C9.89583 8.86732 10.0125 8.72149 10.1875 8.62427C10.5958 8.39093 10.8 8.05066 10.8 7.60343C10.8 7.15621 10.5958 6.81593 10.1875 6.5826C10.0125 6.48538 9.89583 6.34927 9.8375 6.17427C9.79861 5.97982 9.81806 5.80482 9.89583 5.64927C9.99306 5.47427 10.1389 5.3576 10.3333 5.29927C10.5278 5.24094 10.7028 5.26038 10.8583 5.3576Z"
4
+ />
5
+ </template>