@snabcentr/client-ui 0.0.0-test
Sign up to get free protection for your applications and to get access to all the features.
- package/LICENSE +1 -0
- package/README.md +9 -0
- package/banner/index.d.ts +2 -0
- package/banner/sc-banner.component.d.ts +130 -0
- package/banner/sc-banner.module.d.ts +17 -0
- package/cart/cart-item-mobile/sc-cart-item-mobile.component.d.ts +77 -0
- package/cart/index.d.ts +2 -0
- package/cart/sc-cart.module.d.ts +16 -0
- package/catalog/category-card/sc-category-card.component.d.ts +68 -0
- package/catalog/index.d.ts +7 -0
- package/catalog/input-quantity/sc-input-quantity.component.d.ts +75 -0
- package/catalog/price-card/sc-price-card.component.d.ts +114 -0
- package/catalog/price-history/sc-chart-option.d.ts +7 -0
- package/catalog/price-history/sc-i-chart-data-item.d.ts +13 -0
- package/catalog/price-history/sc-lang-RU.d.ts +113 -0
- package/catalog/price-history/sc-price-history.component.d.ts +73 -0
- package/catalog/price-warehouse-stock/sc-price-warehouse-stock.component.d.ts +37 -0
- package/catalog/sc-catalog.module.d.ts +21 -0
- package/catalog/sc-favorite-btn/sc-favorite-btn.component.d.ts +13 -0
- package/esm2020/banner/index.mjs +3 -0
- package/esm2020/banner/sc-banner.component.mjs +222 -0
- package/esm2020/banner/sc-banner.module.mjs +27 -0
- package/esm2020/cart/cart-item-mobile/sc-cart-item-mobile.component.mjs +119 -0
- package/esm2020/cart/index.mjs +3 -0
- package/esm2020/cart/sc-cart.module.mjs +58 -0
- package/esm2020/catalog/category-card/sc-category-card.component.mjs +109 -0
- package/esm2020/catalog/index.mjs +8 -0
- package/esm2020/catalog/input-quantity/sc-input-quantity.component.mjs +154 -0
- package/esm2020/catalog/price-card/sc-price-card.component.mjs +154 -0
- package/esm2020/catalog/price-history/sc-chart-option.mjs +79 -0
- package/esm2020/catalog/price-history/sc-i-chart-data-item.mjs +2 -0
- package/esm2020/catalog/price-history/sc-lang-RU.mjs +113 -0
- package/esm2020/catalog/price-history/sc-price-history.component.mjs +104 -0
- package/esm2020/catalog/price-warehouse-stock/sc-price-warehouse-stock.component.mjs +44 -0
- package/esm2020/catalog/sc-catalog.module.mjs +88 -0
- package/esm2020/catalog/sc-favorite-btn/sc-favorite-btn.component.mjs +24 -0
- package/esm2020/files/directives/index.mjs +3 -0
- package/esm2020/files/directives/tree-top.directive.mjs +63 -0
- package/esm2020/files/directives/tree.directive.mjs +47 -0
- package/esm2020/files/file-tree-item/file-tree-item.component.mjs +18 -0
- package/esm2020/files/files-and-documents.component.mjs +60 -0
- package/esm2020/files/files-and-documents.module.mjs +26 -0
- package/esm2020/files/index.mjs +6 -0
- package/esm2020/files/interfaces/tree-node.mjs +2 -0
- package/esm2020/files/services/index.mjs +3 -0
- package/esm2020/files/services/tree-icon.service.mjs +48 -0
- package/esm2020/files/services/tree-loader.service.mjs +60 -0
- package/esm2020/helpers/index.mjs +2 -0
- package/esm2020/helpers/sc-px-converter.mjs +27 -0
- package/esm2020/helpers/sc-units-helper.mjs +44 -0
- package/esm2020/icons/index.mjs +2 -0
- package/esm2020/icons/sc-client-ui-icons-name.mjs +107 -0
- package/esm2020/loader/index.mjs +2 -0
- package/esm2020/loader/sc-i-loader.mjs +2 -0
- package/esm2020/news/index.mjs +4 -0
- package/esm2020/news/news-card/sc-news-card.component.mjs +31 -0
- package/esm2020/news/news-card-skeleton/sc-news-card-skeleton.component.mjs +23 -0
- package/esm2020/news/sc-news.module.mjs +24 -0
- package/esm2020/order/index.mjs +3 -0
- package/esm2020/order/order-item-mobile/order-item-mobile.component.mjs +79 -0
- package/esm2020/order/sc-order.module.mjs +23 -0
- package/esm2020/public-api.mjs +15 -0
- package/esm2020/share-button/index.mjs +3 -0
- package/esm2020/share-button/sc-share-button.component.mjs +35 -0
- package/esm2020/share-button/sc-share-button.module.mjs +22 -0
- package/esm2020/snabcentr-client-ui.mjs +5 -0
- package/esm2020/tokens/index.mjs +2 -0
- package/esm2020/tokens/sc-linear-values-token.mjs +10 -0
- package/esm2020/validators/index.mjs +2 -0
- package/esm2020/validators/stepValidator.mjs +13 -0
- package/fesm2015/snabcentr-client-ui.mjs +1929 -0
- package/fesm2015/snabcentr-client-ui.mjs.map +1 -0
- package/fesm2020/snabcentr-client-ui.mjs +1901 -0
- package/fesm2020/snabcentr-client-ui.mjs.map +1 -0
- package/files/directives/index.d.ts +2 -0
- package/files/directives/tree-top.directive.d.ts +33 -0
- package/files/directives/tree.directive.d.ts +35 -0
- package/files/file-tree-item/file-tree-item.component.d.ts +9 -0
- package/files/files-and-documents.component.d.ts +27 -0
- package/files/files-and-documents.module.d.ts +16 -0
- package/files/index.d.ts +5 -0
- package/files/interfaces/tree-node.d.ts +29 -0
- package/files/services/index.d.ts +2 -0
- package/files/services/tree-icon.service.d.ts +23 -0
- package/files/services/tree-loader.service.d.ts +43 -0
- package/helpers/index.d.ts +1 -0
- package/helpers/sc-px-converter.d.ts +15 -0
- package/helpers/sc-units-helper.d.ts +28 -0
- package/icons/index.d.ts +1 -0
- package/icons/sc-client-ui-icons-name.d.ts +5 -0
- package/icons/svg-pack/scIconAddProfile.svg +11 -0
- package/icons/svg-pack/scIconApplication.svg +11 -0
- package/icons/svg-pack/scIconArrowDown.svg +11 -0
- package/icons/svg-pack/scIconArrowDownLarge.svg +11 -0
- package/icons/svg-pack/scIconArrowDownLargeEnd.svg +12 -0
- package/icons/svg-pack/scIconArrowLeft.svg +11 -0
- package/icons/svg-pack/scIconArrowReturn.svg +11 -0
- package/icons/svg-pack/scIconArrowRight.svg +11 -0
- package/icons/svg-pack/scIconArrowUp.svg +11 -0
- package/icons/svg-pack/scIconAttention.svg +11 -0
- package/icons/svg-pack/scIconBag.svg +11 -0
- package/icons/svg-pack/scIconBasket.svg +11 -0
- package/icons/svg-pack/scIconBell.svg +11 -0
- package/icons/svg-pack/scIconBook.svg +11 -0
- package/icons/svg-pack/scIconBubble.svg +11 -0
- package/icons/svg-pack/scIconCalendar.svg +11 -0
- package/icons/svg-pack/scIconCancel.svg +18 -0
- package/icons/svg-pack/scIconCart.svg +11 -0
- package/icons/svg-pack/scIconCatalog.svg +16 -0
- package/icons/svg-pack/scIconClients.svg +11 -0
- package/icons/svg-pack/scIconClip.svg +11 -0
- package/icons/svg-pack/scIconClock.svg +11 -0
- package/icons/svg-pack/scIconConfigurator.svg +18 -0
- package/icons/svg-pack/scIconContacts.svg +11 -0
- package/icons/svg-pack/scIconCross.svg +11 -0
- package/icons/svg-pack/scIconDeleteProfile.svg +12 -0
- package/icons/svg-pack/scIconDone.svg +12 -0
- package/icons/svg-pack/scIconDownloading.svg +11 -0
- package/icons/svg-pack/scIconEdit.svg +11 -0
- package/icons/svg-pack/scIconError.svg +12 -0
- package/icons/svg-pack/scIconExcelFile.svg +11 -0
- package/icons/svg-pack/scIconEye.svg +11 -0
- package/icons/svg-pack/scIconFavorite.svg +11 -0
- package/icons/svg-pack/scIconFavoriteFill.svg +11 -0
- package/icons/svg-pack/scIconFile.svg +11 -0
- package/icons/svg-pack/scIconFilter.svg +11 -0
- package/icons/svg-pack/scIconFolder.svg +11 -0
- package/icons/svg-pack/scIconFolderOpen.svg +11 -0
- package/icons/svg-pack/scIconFolderPlus.svg +11 -0
- package/icons/svg-pack/scIconGraph.svg +11 -0
- package/icons/svg-pack/scIconHamburger.svg +13 -0
- package/icons/svg-pack/scIconHeart.svg +11 -0
- package/icons/svg-pack/scIconHeartFill.svg +11 -0
- package/icons/svg-pack/scIconHistory.svg +11 -0
- package/icons/svg-pack/scIconHome.svg +12 -0
- package/icons/svg-pack/scIconImage.svg +11 -0
- package/icons/svg-pack/scIconLike.svg +11 -0
- package/icons/svg-pack/scIconList.svg +11 -0
- package/icons/svg-pack/scIconLocation.svg +11 -0
- package/icons/svg-pack/scIconLock.svg +11 -0
- package/icons/svg-pack/scIconLockOpen.svg +11 -0
- package/icons/svg-pack/scIconLogIn.svg +11 -0
- package/icons/svg-pack/scIconLogOut.svg +13 -0
- package/icons/svg-pack/scIconLogOut2.svg +13 -0
- package/icons/svg-pack/scIconMail.svg +11 -0
- package/icons/svg-pack/scIconMinus.svg +11 -0
- package/icons/svg-pack/scIconMoney.svg +11 -0
- package/icons/svg-pack/scIconMoney2.svg +11 -0
- package/icons/svg-pack/scIconNews.svg +11 -0
- package/icons/svg-pack/scIconOffer.svg +11 -0
- package/icons/svg-pack/scIconPalette.svg +18 -0
- package/icons/svg-pack/scIconPdfFile.svg +12 -0
- package/icons/svg-pack/scIconPercentage.svg +11 -0
- package/icons/svg-pack/scIconPhone.svg +11 -0
- package/icons/svg-pack/scIconPlus.svg +11 -0
- package/icons/svg-pack/scIconPrice.svg +11 -0
- package/icons/svg-pack/scIconProfile.svg +11 -0
- package/icons/svg-pack/scIconQRCodeScan.svg +18 -0
- package/icons/svg-pack/scIconQuestion.svg +11 -0
- package/icons/svg-pack/scIconReclamation.svg +11 -0
- package/icons/svg-pack/scIconRefresh.svg +11 -0
- package/icons/svg-pack/scIconRepeat.svg +11 -0
- package/icons/svg-pack/scIconRequisites.svg +11 -0
- package/icons/svg-pack/scIconRocket.svg +18 -0
- package/icons/svg-pack/scIconSave.svg +11 -0
- package/icons/svg-pack/scIconSearch.svg +12 -0
- package/icons/svg-pack/scIconSend.svg +11 -0
- package/icons/svg-pack/scIconSettings.svg +11 -0
- package/icons/svg-pack/scIconShare.svg +15 -0
- package/icons/svg-pack/scIconSocialCopy.svg +13 -0
- package/icons/svg-pack/scIconSocialEmail.svg +13 -0
- package/icons/svg-pack/scIconSocialFacebook.svg +12 -0
- package/icons/svg-pack/scIconSocialInstagram.svg +33 -0
- package/icons/svg-pack/scIconSocialQR.svg +12 -0
- package/icons/svg-pack/scIconSocialTelegram.svg +20 -0
- package/icons/svg-pack/scIconSocialViber.svg +16 -0
- package/icons/svg-pack/scIconSocialVk.svg +12 -0
- package/icons/svg-pack/scIconSocialWhatsapp.svg +12 -0
- package/icons/svg-pack/scIconStar.svg +11 -0
- package/icons/svg-pack/scIconSuitcase.svg +11 -0
- package/icons/svg-pack/scIconTasks.svg +11 -0
- package/icons/svg-pack/scIconTick.svg +11 -0
- package/icons/svg-pack/scIconTop.svg +11 -0
- package/icons/svg-pack/scIconVerticalThreeDots.svg +11 -0
- package/icons/svg-pack/scIconViewGrid.svg +11 -0
- package/icons/svg-pack/scIconViewInline.svg +11 -0
- package/icons/svg-pack/scIconViewTree.svg +15 -0
- package/icons/svg-pack/scIconWallet.svg +11 -0
- package/icons/svg-pack/scIconWarning.svg +11 -0
- package/icons/svg-pack/scIconWordFile.svg +12 -0
- package/index.d.ts +5 -0
- package/loader/index.d.ts +1 -0
- package/loader/sc-i-loader.d.ts +9 -0
- package/news/index.d.ts +3 -0
- package/news/news-card/sc-news-card.component.d.ts +22 -0
- package/news/news-card-skeleton/sc-news-card-skeleton.component.d.ts +12 -0
- package/news/sc-news.module.d.ts +14 -0
- package/order/index.d.ts +2 -0
- package/order/order-item-mobile/order-item-mobile.component.d.ts +53 -0
- package/order/sc-order.module.d.ts +13 -0
- package/package.json +62 -0
- package/public-api.d.ts +11 -0
- package/share-button/index.d.ts +2 -0
- package/share-button/sc-share-button.component.d.ts +22 -0
- package/share-button/sc-share-button.module.d.ts +12 -0
- package/styles/taiga/taiga-tailwind-preset.js +163 -0
- package/styles/taiga/variables.less +44 -0
- package/styles/tailwind/tailwind.scss +1461 -0
- package/tokens/index.d.ts +1 -0
- package/tokens/sc-linear-values-token.d.ts +8 -0
- package/validators/index.d.ts +1 -0
- package/validators/stepValidator.d.ts +7 -0
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconPercentage" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.5em" height="1.5em" overflow="visible" viewBox="0 0 24 24">
|
4
|
+
<svg x="-12" y="-12">
|
5
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path d="M6.99624 11.1782C7.6265 11.1782 8.2426 10.9913 8.76664 10.6412C9.29068 10.291 9.69912 9.79333 9.94031 9.21104C10.1815 8.62876 10.2446 7.98803 10.1216 7.36989C9.99869 6.75174 9.69519 6.18393 9.24953 5.73827C8.80387 5.29261 8.23607 4.98912 7.61792 4.86616C6.99977 4.7432 6.35905 4.80631 5.77676 5.0475C5.19448 5.28869 4.6968 5.69713 4.34664 6.22117C3.99649 6.74521 3.8096 7.36131 3.8096 7.99157C3.81052 8.83644 4.14655 9.64643 4.74396 10.2438C5.34137 10.8413 6.15137 11.1773 6.99624 11.1782ZM6.99624 6.92936C7.20632 6.92936 7.41169 6.99165 7.58637 7.10837C7.76105 7.22509 7.8972 7.39098 7.97759 7.58508C8.05799 7.77917 8.07903 7.99275 8.03804 8.1988C7.99706 8.40485 7.89589 8.59411 7.74734 8.74267C7.59878 8.89122 7.40951 8.99239 7.20346 9.03337C6.99742 9.07436 6.78384 9.05332 6.58975 8.97293C6.39565 8.89253 6.22976 8.75638 6.11304 8.5817C5.99632 8.40702 5.93402 8.20165 5.93402 7.99157C5.93421 7.70991 6.04618 7.43984 6.24535 7.24068C6.44451 7.04152 6.71458 6.92954 6.99624 6.92936ZM16.0085 13.8172C15.3782 13.8172 14.7621 14.004 14.2381 14.3542C13.714 14.7043 13.3056 15.202 13.0644 15.7843C12.8232 16.3666 12.7601 17.0073 12.8831 17.6255C13.006 18.2436 13.3095 18.8114 13.7552 19.2571C14.2008 19.7027 14.7686 20.0062 15.3868 20.1292C16.0049 20.2522 16.6457 20.1891 17.2279 19.9479C17.8102 19.7067 18.3079 19.2982 18.6581 18.7742C19.0082 18.2502 19.1951 17.634 19.1951 17.0038C19.1942 16.1589 18.8581 15.3489 18.2607 14.7515C17.6633 14.1541 16.8533 13.8181 16.0085 13.8172ZM16.0085 18.066C15.7984 18.066 15.593 18.0037 15.4183 17.887C15.2436 17.7703 15.1075 17.6044 15.0271 17.4103C14.9467 17.2162 14.9257 17.0026 14.9667 16.7966C15.0076 16.5905 15.1088 16.4012 15.2574 16.2527C15.4059 16.1041 15.5952 16.003 15.8012 15.962C16.0073 15.921 16.2209 15.942 16.415 16.0224C16.609 16.1028 16.7749 16.239 16.8917 16.4137C17.0084 16.5883 17.0707 16.7937 17.0707 17.0038C17.0705 17.2854 16.9585 17.5555 16.7594 17.7547C16.5602 17.9538 16.2901 18.0658 16.0085 18.066ZM19.6888 4.3112C19.5902 4.21254 19.4731 4.13428 19.3443 4.08088C19.2154 4.02748 19.0773 4 18.9378 4C18.7983 4 18.6602 4.02748 18.5313 4.08088C18.4025 4.13428 18.2854 4.21254 18.1868 4.3112L3.31581 19.1822C3.21616 19.2806 3.13697 19.3977 3.08277 19.5268C3.02857 19.656 3.00044 19.7945 3.00001 19.9346C2.99957 20.0746 3.02683 20.2134 3.08022 20.3428C3.13361 20.4723 3.21207 20.5899 3.3111 20.6889C3.41012 20.788 3.52775 20.8664 3.65721 20.9198C3.78668 20.9732 3.92542 21.0004 4.06546 21C4.2055 20.9995 4.34407 20.9714 4.47319 20.9172C4.60231 20.863 4.71944 20.7838 4.81784 20.6842L19.6888 5.81317C19.7875 5.71457 19.8657 5.59749 19.9191 5.46863C19.9725 5.33978 20 5.20167 20 5.06219C20 4.92271 19.9725 4.78459 19.9191 4.65574C19.8657 4.52688 19.7875 4.40981 19.6888 4.3112Z" fill="currentColor" />
|
7
|
+
</svg>
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</g>
|
11
|
+
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconPhone" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 22 22">
|
4
|
+
<svg x="-11" y="-11">
|
5
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path d="M18.4582 11.9603C18.2382 11.9603 18.0082 11.8903 17.7882 11.8403C17.3427 11.7421 16.9048 11.6118 16.4782 11.4503C16.0143 11.2815 15.5043 11.2903 15.0465 11.4749C14.5886 11.6595 14.2153 12.007 13.9982 12.4503L13.7782 12.9003C12.8042 12.3585 11.9092 11.6855 11.1182 10.9003C10.3329 10.1093 9.65999 9.21432 9.11817 8.24032L9.53817 7.96032C9.98153 7.74323 10.3289 7.36985 10.5136 6.91201C10.6982 6.45417 10.7069 5.94423 10.5382 5.48032C10.3794 5.05274 10.2491 4.61512 10.1482 4.17032C10.0982 3.95032 10.0582 3.72032 10.0282 3.49032C9.90673 2.78594 9.53779 2.14806 8.98779 1.69156C8.43779 1.23505 7.74286 0.989926 7.02817 1.00032H4.02817C3.5972 0.996271 3.17042 1.08513 2.77688 1.26085C2.38334 1.43656 2.03228 1.69501 1.7476 2.0186C1.46292 2.34219 1.2513 2.72331 1.12716 3.13603C1.00301 3.54875 0.969247 3.98338 1.02817 4.41032C1.56091 8.5997 3.4742 12.4922 6.46582 15.473C9.45744 18.4537 13.3569 20.3528 17.5482 20.8703H17.9282C18.6656 20.8714 19.3776 20.6008 19.9282 20.1103C20.2445 19.8274 20.4973 19.4805 20.6696 19.0926C20.842 18.7048 20.9301 18.2848 20.9282 17.8603V14.8603C20.9159 14.1657 20.663 13.4969 20.2125 12.968C19.762 12.4391 19.142 12.0829 18.4582 11.9603ZM18.9582 17.9603C18.958 18.1023 18.9276 18.2426 18.8689 18.3719C18.8103 18.5013 18.7248 18.6166 18.6182 18.7103C18.5064 18.8068 18.3758 18.8789 18.2346 18.9219C18.0934 18.965 17.9447 18.978 17.7982 18.9603C14.0531 18.4801 10.5744 16.7668 7.91088 14.0906C5.24736 11.4144 3.55058 7.92765 3.08817 4.18032C3.07225 4.03384 3.0862 3.88565 3.12917 3.74471C3.17214 3.60377 3.24324 3.473 3.33817 3.36032C3.43188 3.25365 3.54723 3.16816 3.67655 3.10953C3.80586 3.05091 3.94618 3.0205 4.08817 3.02032H7.08817C7.32071 3.01514 7.54779 3.0912 7.73031 3.23539C7.91283 3.37958 8.03938 3.58289 8.08817 3.81032C8.12817 4.08365 8.17817 4.35365 8.23817 4.62032C8.35369 5.14746 8.50743 5.6655 8.69817 6.17032L7.29817 6.82032C7.17846 6.87524 7.07079 6.95326 6.98132 7.04991C6.89186 7.14656 6.82237 7.25993 6.77684 7.38351C6.73131 7.50709 6.71064 7.63845 6.71601 7.77004C6.72139 7.90163 6.75271 8.03086 6.80817 8.15032C8.24737 11.2331 10.7254 13.7111 13.8082 15.1503C14.0516 15.2503 14.3247 15.2503 14.5682 15.1503C14.6929 15.1057 14.8075 15.0368 14.9053 14.9475C15.0032 14.8582 15.0823 14.7504 15.1382 14.6303L15.7582 13.2303C16.2751 13.4152 16.8028 13.5688 17.3382 13.6903C17.6048 13.7503 17.8748 13.8003 18.1482 13.8403C18.3756 13.8891 18.5789 14.0157 18.7231 14.1982C18.8673 14.3807 18.9433 14.6078 18.9382 14.8403L18.9582 17.9603Z" fill="currentColor" />
|
7
|
+
</svg>
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</g>
|
11
|
+
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconPlus" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 22 22">
|
4
|
+
<svg x="-11" y="-11">
|
5
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path d="M18 10H12V4C12 3.73478 11.8946 3.48043 11.7071 3.29289C11.5196 3.10536 11.2652 3 11 3C10.7348 3 10.4804 3.10536 10.2929 3.29289C10.1054 3.48043 10 3.73478 10 4V10H4C3.73478 10 3.48043 10.1054 3.29289 10.2929C3.10536 10.4804 3 10.7348 3 11C3 11.2652 3.10536 11.5196 3.29289 11.7071C3.48043 11.8946 3.73478 12 4 12H10V18C10 18.2652 10.1054 18.5196 10.2929 18.7071C10.4804 18.8946 10.7348 19 11 19C11.2652 19 11.5196 18.8946 11.7071 18.7071C11.8946 18.5196 12 18.2652 12 18V12H18C18.2652 12 18.5196 11.8946 18.7071 11.7071C18.8946 11.5196 19 11.2652 19 11C19 10.7348 18.8946 10.4804 18.7071 10.2929C18.5196 10.1054 18.2652 10 18 10Z" fill="currentColor" />
|
7
|
+
</svg>
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</g>
|
11
|
+
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconPrice" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 22 22">
|
4
|
+
<svg x="-11" y="-11">
|
5
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path d="M6.00002 5.00002C5.80224 5.00002 5.6089 5.05867 5.44445 5.16855C5.28 5.27843 5.15182 5.43461 5.07614 5.61733C5.00045 5.80006 4.98065 6.00113 5.01923 6.19511C5.05782 6.38909 5.15306 6.56727 5.29291 6.70712C5.43276 6.84698 5.61095 6.94222 5.80493 6.9808C5.99891 7.01939 6.19997 6.99958 6.3827 6.9239C6.56543 6.84821 6.7216 6.72004 6.83149 6.55559C6.94137 6.39114 7.00002 6.1978 7.00002 6.00002C7.00002 5.7348 6.89466 5.48045 6.70712 5.29291C6.51959 5.10537 6.26523 5.00002 6.00002 5.00002ZM20.71 10.78L11.23 1.32002C11.1368 1.21948 11.0239 1.13919 10.8983 1.08414C10.7727 1.02909 10.6371 1.00046 10.5 1.00002H4.50002C4.36841 0.999256 4.23795 1.02448 4.11611 1.07425C3.99427 1.12401 3.88346 1.19734 3.79002 1.29002L1.29002 3.78002C1.19734 3.87346 1.12401 3.98427 1.07425 4.10611C1.02448 4.22795 0.999256 4.35841 1.00002 4.49002V10.49C1.0037 10.7548 1.10728 11.0084 1.29002 11.2L10.78 20.7C10.9717 20.8828 11.2253 20.9863 11.49 20.99C11.6216 20.9908 11.7521 20.9656 11.8739 20.9158C11.9958 20.866 12.1066 20.7927 12.2 20.7L20.71 12.19C20.8027 12.0966 20.876 11.9858 20.9258 11.8639C20.9756 11.7421 21.0008 11.6116 21 11.48C20.9938 11.2187 20.8904 10.9691 20.71 10.78ZM11.49 18.59L3.00002 10.09V4.90002L4.90002 3.00002H10.08L18.58 11.49L11.49 18.59Z" fill="currentColor" />
|
7
|
+
</svg>
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</g>
|
11
|
+
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconProfile" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 22 22">
|
4
|
+
<svg x="-11" y="-11">
|
5
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path d="M11 1C9.05679 1.00369 7.15658 1.5719 5.53084 2.63543C3.9051 3.69896 2.62399 5.21189 1.84355 6.98996C1.06311 8.76803 0.817034 10.7345 1.13529 12.6498C1.45354 14.5651 2.3224 16.3466 3.63601 17.7773C4.57422 18.7934 5.7129 19.6044 6.9803 20.159C8.24771 20.7137 9.61635 21 11 21C12.3836 21 13.7523 20.7137 15.0197 20.159C16.2871 19.6044 17.4258 18.7934 18.364 17.7773C19.6776 16.3466 20.5465 14.5651 20.8647 12.6498C21.183 10.7345 20.9369 8.76803 20.1565 6.98996C19.376 5.21189 18.0949 3.69896 16.4692 2.63543C14.8434 1.5719 12.9432 1.00369 11 1ZM11 19.0186C8.92452 19.0155 6.93119 18.2081 5.43944 16.7663C5.89234 15.6647 6.6628 14.7225 7.6529 14.0594C8.643 13.3963 9.80805 13.0422 11 13.0422C12.192 13.0422 13.357 13.3963 14.3471 14.0594C15.3372 14.7225 16.1077 15.6647 16.5606 16.7663C15.0688 18.2081 13.0755 19.0155 11 19.0186ZM8.99619 9.00828C8.99619 8.61231 9.11372 8.22523 9.3339 7.89599C9.55408 7.56675 9.86703 7.31014 10.2332 7.15861C10.5993 7.00707 11.0022 6.96743 11.3909 7.04468C11.7796 7.12193 12.1367 7.31261 12.4169 7.5926C12.6971 7.87259 12.888 8.22933 12.9653 8.61769C13.0426 9.00606 13.0029 9.4086 12.8513 9.77444C12.6996 10.1403 12.4428 10.4529 12.1133 10.6729C11.7837 10.8929 11.3963 11.0103 11 11.0103C10.4686 11.0103 9.95888 10.7994 9.5831 10.424C9.20731 10.0485 8.99619 9.53926 8.99619 9.00828ZM17.9232 15.0145C17.028 13.4847 15.6502 12.2947 14.0057 11.631C14.5158 11.053 14.8482 10.3403 14.963 9.5783C15.0778 8.8163 14.97 8.03739 14.6527 7.33504C14.3354 6.6327 13.8219 6.03676 13.174 5.61874C12.5261 5.20071 11.7713 4.97836 11 4.97836C10.2287 4.97836 9.47387 5.20071 8.82596 5.61874C8.17805 6.03676 7.66464 6.6327 7.34731 7.33504C7.02999 8.03739 6.92224 8.8163 7.037 9.5783C7.15176 10.3403 7.48415 11.053 7.99429 11.631C6.34977 12.2947 4.97202 13.4847 4.07685 15.0145C3.36344 13.8003 2.9865 12.4183 2.98478 11.0103C2.98478 8.88642 3.82924 6.84948 5.33238 5.34764C6.83553 3.8458 8.87423 3.00207 11 3.00207C13.1258 3.00207 15.1645 3.8458 16.6676 5.34764C18.1708 6.84948 19.0152 8.88642 19.0152 11.0103C19.0135 12.4183 18.6366 13.8003 17.9232 15.0145Z" fill="currentColor" />
|
7
|
+
</svg>
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</g>
|
11
|
+
</svg>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconQRCodeScan" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 22 22">
|
4
|
+
<svg x="-11" y="-11">
|
5
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<g clip-path="url(#clip0_4554_11767)">
|
7
|
+
<path d="M7.33341 19.2493H3.66675C3.42363 19.2493 3.19047 19.1528 3.01857 18.9809C2.84666 18.809 2.75008 18.5758 2.75008 18.3327V14.666C2.75008 14.4229 2.6535 14.1897 2.4816 14.0178C2.30969 13.8459 2.07653 13.7493 1.83341 13.7493C1.5903 13.7493 1.35714 13.8459 1.18523 14.0178C1.01333 14.1897 0.916748 14.4229 0.916748 14.666V18.3327C0.916748 19.062 1.20648 19.7615 1.7222 20.2772C2.23793 20.7929 2.9374 21.0827 3.66675 21.0827H7.33341C7.57653 21.0827 7.80969 20.9861 7.9816 20.8142C8.1535 20.6423 8.25008 20.4091 8.25008 20.166C8.25008 19.9229 8.1535 19.6897 7.9816 19.5178C7.80969 19.3459 7.57653 19.2493 7.33341 19.2493ZM20.1667 13.7493C19.9236 13.7493 19.6905 13.8459 19.5186 14.0178C19.3467 14.1897 19.2501 14.4229 19.2501 14.666V18.3327C19.2501 18.5758 19.1535 18.809 18.9816 18.9809C18.8097 19.1528 18.5765 19.2493 18.3334 19.2493H14.6667C14.4236 19.2493 14.1905 19.3459 14.0186 19.5178C13.8467 19.6897 13.7501 19.9229 13.7501 20.166C13.7501 20.4091 13.8467 20.6423 14.0186 20.8142C14.1905 20.9861 14.4236 21.0827 14.6667 21.0827H18.3334C19.0628 21.0827 19.7622 20.7929 20.278 20.2772C20.7937 19.7615 21.0834 19.062 21.0834 18.3327V14.666C21.0834 14.4229 20.9868 14.1897 20.8149 14.0178C20.643 13.8459 20.4099 13.7493 20.1667 13.7493ZM18.3334 0.916016H14.6667C14.4236 0.916016 14.1905 1.01259 14.0186 1.1845C13.8467 1.35641 13.7501 1.58957 13.7501 1.83268C13.7501 2.0758 13.8467 2.30896 14.0186 2.48086C14.1905 2.65277 14.4236 2.74935 14.6667 2.74935H18.3334C18.5765 2.74935 18.8097 2.84593 18.9816 3.01783C19.1535 3.18974 19.2501 3.4229 19.2501 3.66602V7.33268C19.2501 7.5758 19.3467 7.80895 19.5186 7.98086C19.6905 8.15277 19.9236 8.24935 20.1667 8.24935C20.4099 8.24935 20.643 8.15277 20.8149 7.98086C20.9868 7.80895 21.0834 7.5758 21.0834 7.33268V3.66602C21.0834 2.93667 20.7937 2.2372 20.278 1.72147C19.7622 1.20575 19.0628 0.916016 18.3334 0.916016ZM1.83341 8.24935C2.07653 8.24935 2.30969 8.15277 2.4816 7.98086C2.6535 7.80895 2.75008 7.5758 2.75008 7.33268V3.66602C2.75008 3.4229 2.84666 3.18974 3.01857 3.01783C3.19047 2.84593 3.42363 2.74935 3.66675 2.74935H7.33341C7.57653 2.74935 7.80969 2.65277 7.9816 2.48086C8.1535 2.30896 8.25008 2.0758 8.25008 1.83268C8.25008 1.58957 8.1535 1.35641 7.9816 1.1845C7.80969 1.01259 7.57653 0.916016 7.33341 0.916016H3.66675C2.9374 0.916016 2.23793 1.20575 1.7222 1.72147C1.20648 2.2372 0.916748 2.93667 0.916748 3.66602V7.33268C0.916748 7.5758 1.01333 7.80895 1.18523 7.98086C1.35714 8.15277 1.5903 8.24935 1.83341 8.24935ZM9.16675 4.58268H5.50008C5.25697 4.58268 5.02381 4.67926 4.8519 4.85117C4.67999 5.02308 4.58341 5.25623 4.58341 5.49935V9.16602C4.58341 9.40913 4.67999 9.64229 4.8519 9.8142C5.02381 9.9861 5.25697 10.0827 5.50008 10.0827H9.16675C9.40986 10.0827 9.64302 9.9861 9.81493 9.8142C9.98684 9.64229 10.0834 9.40913 10.0834 9.16602V5.49935C10.0834 5.25623 9.98684 5.02308 9.81493 4.85117C9.64302 4.67926 9.40986 4.58268 9.16675 4.58268ZM8.25008 8.24935H6.41675V6.41602H8.25008V8.24935ZM12.8334 10.0827H16.5001C16.7432 10.0827 16.9764 9.9861 17.1483 9.8142C17.3202 9.64229 17.4167 9.40913 17.4167 9.16602V5.49935C17.4167 5.25623 17.3202 5.02308 17.1483 4.85117C16.9764 4.67926 16.7432 4.58268 16.5001 4.58268H12.8334C12.5903 4.58268 12.3571 4.67926 12.1852 4.85117C12.0133 5.02308 11.9167 5.25623 11.9167 5.49935V9.16602C11.9167 9.40913 12.0133 9.64229 12.1852 9.8142C12.3571 9.9861 12.5903 10.0827 12.8334 10.0827ZM13.7501 6.41602H15.5834V8.24935H13.7501V6.41602ZM9.16675 11.916H5.50008C5.25697 11.916 5.02381 12.0126 4.8519 12.1845C4.67999 12.3564 4.58341 12.5896 4.58341 12.8327V16.4993C4.58341 16.7425 4.67999 16.9756 4.8519 17.1475C5.02381 17.3194 5.25697 17.416 5.50008 17.416H9.16675C9.40986 17.416 9.64302 17.3194 9.81493 17.1475C9.98684 16.9756 10.0834 16.7425 10.0834 16.4993V12.8327C10.0834 12.5896 9.98684 12.3564 9.81493 12.1845C9.64302 12.0126 9.40986 11.916 9.16675 11.916ZM8.25008 15.5827H6.41675V13.7493H8.25008V15.5827ZM12.8334 14.666C13.0765 14.666 13.3097 14.5694 13.4816 14.3975C13.6535 14.2256 13.7501 13.9925 13.7501 13.7493C13.9932 13.7493 14.2264 13.6528 14.3983 13.4809C14.5702 13.309 14.6667 13.0758 14.6667 12.8327C14.6667 12.5896 14.5702 12.3564 14.3983 12.1845C14.2264 12.0126 13.9932 11.916 13.7501 11.916H12.8334C12.5903 11.916 12.3571 12.0126 12.1852 12.1845C12.0133 12.3564 11.9167 12.5896 11.9167 12.8327V13.7493C11.9167 13.9925 12.0133 14.2256 12.1852 14.3975C12.3571 14.5694 12.5903 14.666 12.8334 14.666ZM16.5001 11.916C16.257 11.916 16.0238 12.0126 15.8519 12.1845C15.68 12.3564 15.5834 12.5896 15.5834 12.8327V15.5827C15.3403 15.5827 15.1071 15.6793 14.9352 15.8512C14.7633 16.0231 14.6667 16.2562 14.6667 16.4993C14.6667 16.7425 14.7633 16.9756 14.9352 17.1475C15.1071 17.3194 15.3403 17.416 15.5834 17.416H16.5001C16.7432 17.416 16.9764 17.3194 17.1483 17.1475C17.3202 16.9756 17.4167 16.7425 17.4167 16.4993V12.8327C17.4167 12.5896 17.3202 12.3564 17.1483 12.1845C16.9764 12.0126 16.7432 11.916 16.5001 11.916ZM12.8334 15.5827C12.6521 15.5827 12.4749 15.6364 12.3241 15.7372C12.1734 15.8379 12.0559 15.9811 11.9865 16.1486C11.9171 16.3161 11.899 16.5004 11.9344 16.6782C11.9697 16.856 12.057 17.0193 12.1852 17.1475C12.3134 17.2757 12.4768 17.363 12.6546 17.3984C12.8324 17.4338 13.0167 17.4156 13.1842 17.3462C13.3517 17.2769 13.4949 17.1594 13.5956 17.0086C13.6963 16.8579 13.7501 16.6806 13.7501 16.4993C13.7501 16.2562 13.6535 16.0231 13.4816 15.8512C13.3097 15.6793 13.0765 15.5827 12.8334 15.5827Z" fill="currentColor" />
|
8
|
+
</g>
|
9
|
+
<defs>
|
10
|
+
<clipPath id="clip0_4554_11767">
|
11
|
+
<rect width="22" height="22" fill="white" />
|
12
|
+
</clipPath>
|
13
|
+
</defs>
|
14
|
+
</svg>
|
15
|
+
</svg>
|
16
|
+
</svg>
|
17
|
+
</g>
|
18
|
+
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconQuestion" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 22 22">
|
4
|
+
<svg x="-11" y="-11">
|
5
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path d="M10.29 14.29C10.247 14.3375 10.2069 14.3876 10.17 14.44C10.1322 14.4957 10.1019 14.5563 10.08 14.62C10.0512 14.6767 10.031 14.7374 10.02 14.8C10.0151 14.8666 10.0151 14.9334 10.02 15C10.0166 15.1312 10.044 15.2613 10.1 15.38C10.1449 15.5041 10.2166 15.6168 10.3099 15.7101C10.4032 15.8034 10.5159 15.8751 10.64 15.92C10.7597 15.9729 10.8891 16.0002 11.02 16.0002C11.1509 16.0002 11.2803 15.9729 11.4 15.92C11.5241 15.8751 11.6368 15.8034 11.7301 15.7101C11.8234 15.6168 11.8951 15.5041 11.94 15.38C11.9844 15.2584 12.0048 15.1294 12 15C12.0008 14.8684 11.9755 14.7379 11.9258 14.6161C11.876 14.4943 11.8027 14.3834 11.71 14.29C11.617 14.1963 11.5064 14.1219 11.3846 14.0711C11.2627 14.0203 11.132 13.9942 11 13.9942C10.868 13.9942 10.7373 14.0203 10.6154 14.0711C10.4936 14.1219 10.383 14.1963 10.29 14.29ZM11 1C9.02219 1 7.08879 1.58649 5.4443 2.6853C3.79981 3.78412 2.51809 5.3459 1.76121 7.17317C1.00433 9.00043 0.806299 11.0111 1.19215 12.9509C1.578 14.8907 2.53041 16.6725 3.92894 18.0711C5.32746 19.4696 7.10929 20.422 9.0491 20.8079C10.9889 21.1937 12.9996 20.9957 14.8268 20.2388C16.6541 19.4819 18.2159 18.2002 19.3147 16.5557C20.4135 14.9112 21 12.9778 21 11C21 9.68678 20.7413 8.38642 20.2388 7.17317C19.7363 5.95991 18.9997 4.85752 18.0711 3.92893C17.1425 3.00035 16.0401 2.26375 14.8268 1.7612C13.6136 1.25866 12.3132 1 11 1ZM11 19C9.41775 19 7.87104 18.5308 6.55544 17.6518C5.23985 16.7727 4.21447 15.5233 3.60897 14.0615C3.00347 12.5997 2.84504 10.9911 3.15372 9.43928C3.4624 7.88743 4.22433 6.46197 5.34315 5.34315C6.46197 4.22433 7.88743 3.4624 9.43928 3.15372C10.9911 2.84504 12.5997 3.00346 14.0615 3.60896C15.5233 4.21447 16.7727 5.23984 17.6518 6.55544C18.5308 7.87103 19 9.41775 19 11C19 13.1217 18.1572 15.1566 16.6569 16.6569C15.1566 18.1571 13.1217 19 11 19ZM11 6C10.4731 5.99966 9.95534 6.13812 9.49891 6.40144C9.04249 6.66476 8.66347 7.04366 8.4 7.5C8.32765 7.61382 8.27907 7.7411 8.25718 7.87418C8.23529 8.00726 8.24055 8.14339 8.27263 8.27439C8.30472 8.40538 8.36297 8.52854 8.44389 8.63643C8.52481 8.74433 8.62671 8.83475 8.74348 8.90224C8.86024 8.96974 8.98945 9.01292 9.12334 9.02918C9.25722 9.04544 9.39301 9.03445 9.52254 8.99688C9.65207 8.9593 9.77266 8.89591 9.87705 8.81052C9.98145 8.72513 10.0675 8.6195 10.13 8.5C10.2181 8.3474 10.345 8.22078 10.4978 8.13298C10.6505 8.04518 10.8238 7.9993 11 8C11.2652 8 11.5196 8.10536 11.7071 8.29289C11.8946 8.48043 12 8.73478 12 9C12 9.26522 11.8946 9.51957 11.7071 9.70711C11.5196 9.89464 11.2652 10 11 10C10.7348 10 10.4804 10.1054 10.2929 10.2929C10.1054 10.4804 10 10.7348 10 11V12C10 12.2652 10.1054 12.5196 10.2929 12.7071C10.4804 12.8946 10.7348 13 11 13C11.2652 13 11.5196 12.8946 11.7071 12.7071C11.8946 12.5196 12 12.2652 12 12V11.82C12.6614 11.58 13.2174 11.1152 13.5708 10.5069C13.9242 9.89851 14.0525 9.18529 13.9334 8.49189C13.8143 7.79849 13.4552 7.16902 12.919 6.71352C12.3828 6.25801 11.7035 6.00546 11 6Z" fill="currentColor" />
|
7
|
+
</svg>
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</g>
|
11
|
+
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconReclamation" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 22 22">
|
4
|
+
<svg x="-11" y="-11">
|
5
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path d="M11.0141 9.9996C10.7492 9.9996 10.4952 10.105 10.308 10.2925C10.1207 10.48 10.0155 10.7344 10.0155 10.9996V13.9994C10.0155 14.2646 10.1207 14.519 10.308 14.7065C10.4952 14.894 10.7492 14.9994 11.0141 14.9994C11.2789 14.9994 11.5329 14.894 11.7202 14.7065C11.9075 14.519 12.0127 14.2646 12.0127 13.9994V10.9996C12.0127 10.7344 11.9075 10.48 11.7202 10.2925C11.5329 10.105 11.2789 9.9996 11.0141 9.9996ZM11.0141 6.99973C10.8166 6.99973 10.6235 7.05838 10.4593 7.16826C10.2951 7.27813 10.1671 7.43431 10.0915 7.61702C10.0159 7.79974 9.99614 8.0008 10.0347 8.19477C10.0732 8.38874 10.1683 8.56692 10.308 8.70677C10.4476 8.84661 10.6255 8.94185 10.8193 8.98043C11.013 9.01902 11.2137 8.99921 11.3962 8.92353C11.5787 8.84785 11.7346 8.71968 11.8444 8.55524C11.9541 8.39079 12.0127 8.19746 12.0127 7.99969C12.0127 7.73449 11.9075 7.48014 11.7202 7.29261C11.5329 7.10509 11.2789 6.99973 11.0141 6.99973ZM11.0141 1C9.7027 1 8.40417 1.25865 7.19262 1.76117C5.98108 2.2637 4.88024 3.00026 3.95296 3.9288C2.08023 5.80408 1.02815 8.34751 1.02815 10.9996C1.01942 13.3086 1.81783 15.5479 3.28497 17.3293L1.28778 19.3292C1.14922 19.4698 1.05535 19.6484 1.01803 19.8424C0.980711 20.0363 1.0016 20.237 1.07808 20.4191C1.16102 20.5991 1.29547 20.7502 1.46438 20.8535C1.63328 20.9568 1.82902 21.0075 2.02674 20.9991H11.0141C13.6625 20.9991 16.2025 19.9456 18.0752 18.0703C19.9479 16.195 21 13.6516 21 10.9996C21 8.34751 19.9479 5.80408 18.0752 3.9288C16.2025 2.05352 13.6625 1 11.0141 1ZM11.0141 18.9992H4.43335L5.36204 18.0692C5.45639 17.9766 5.53146 17.8662 5.58288 17.7443C5.63431 17.6225 5.66107 17.4916 5.66162 17.3593C5.65786 17.0955 5.55019 16.8439 5.36204 16.6593C4.05447 15.3514 3.2402 13.63 3.05798 11.7883C2.87575 9.94665 3.33684 8.09869 4.36267 6.55928C5.38851 5.01986 6.91564 3.88423 8.68387 3.34587C10.4521 2.80751 12.352 2.89972 14.06 3.6068C15.7679 4.31388 17.1782 5.59207 18.0506 7.22362C18.923 8.85516 19.2034 10.7391 18.8442 12.5545C18.4849 14.3699 17.5082 16.0044 16.0805 17.1795C14.6527 18.3547 12.8622 18.9977 11.0141 18.9992Z" fill="currentColor" />
|
7
|
+
</svg>
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</g>
|
11
|
+
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconRefresh" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 22 22">
|
4
|
+
<svg x="-11" y="-11">
|
5
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path d="M18.91 14.51H14.38C14.1148 14.51 13.8604 14.6154 13.6729 14.8029C13.4854 14.9904 13.38 15.2448 13.38 15.51C13.38 15.7752 13.4854 16.0296 13.6729 16.2171C13.8604 16.4046 14.1148 16.51 14.38 16.51H16.78C15.6769 17.6627 14.2544 18.4593 12.6952 18.7974C11.1359 19.1355 9.51121 18.9996 8.02978 18.4072C6.54834 17.8149 5.27787 16.7931 4.38159 15.4732C3.48531 14.1532 3.00418 12.5955 3 11C3 10.7348 2.89464 10.4804 2.70711 10.2929C2.51957 10.1054 2.26522 10 2 10C1.73478 10 1.48043 10.1054 1.29289 10.2929C1.10536 10.4804 1 10.7348 1 11C1.00529 12.9528 1.58222 14.8613 2.6596 16.49C3.73699 18.1187 5.26767 19.3964 7.06274 20.1652C8.85782 20.9341 10.8387 21.1605 12.761 20.8166C14.6833 20.4727 16.4628 19.5735 17.88 18.23V20C17.88 20.2652 17.9854 20.5196 18.1729 20.7071C18.3604 20.8946 18.6148 21 18.88 21C19.1452 21 19.3996 20.8946 19.5871 20.7071C19.7746 20.5196 19.88 20.2652 19.88 20V15.5C19.8775 15.2416 19.7752 14.9943 19.5943 14.8097C19.4135 14.6251 19.1683 14.5177 18.91 14.51ZM11 1C8.43639 1.00731 5.97349 1.99891 4.12 3.77V2C4.12 1.73478 4.01464 1.48043 3.82711 1.29289C3.63957 1.10536 3.38522 1 3.12 1C2.85478 1 2.60043 1.10536 2.41289 1.29289C2.22536 1.48043 2.12 1.73478 2.12 2V6.5C2.12 6.76522 2.22536 7.01957 2.41289 7.20711C2.60043 7.39464 2.85478 7.5 3.12 7.5H7.62C7.88522 7.5 8.13957 7.39464 8.32711 7.20711C8.51464 7.01957 8.62 6.76522 8.62 6.5C8.62 6.23478 8.51464 5.98043 8.32711 5.79289C8.13957 5.60536 7.88522 5.5 7.62 5.5H5.22C6.32247 4.34787 7.74409 3.5515 9.3024 3.21311C10.8607 2.87472 12.4846 3.00975 13.9656 3.60086C15.4466 4.19198 16.7172 5.21221 17.6142 6.5306C18.5113 7.849 18.9938 9.40539 19 11C19 11.2652 19.1054 11.5196 19.2929 11.7071C19.4804 11.8946 19.7348 12 20 12C20.2652 12 20.5196 11.8946 20.7071 11.7071C20.8946 11.5196 21 11.2652 21 11C21 9.68678 20.7413 8.38642 20.2388 7.17317C19.7362 5.95991 18.9997 4.85752 18.0711 3.92893C17.1425 3.00035 16.0401 2.26375 14.8268 1.7612C13.6136 1.25866 12.3132 1 11 1Z" fill="currentColor" />
|
7
|
+
</svg>
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</g>
|
11
|
+
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconRepeat" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 22 22">
|
4
|
+
<svg x="-11" y="-11">
|
5
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path d="M4.5 16.4997H3V5.50049H10.8L10 6.29043C9.8117 6.4774 9.70538 6.7315 9.70444 6.99685C9.70351 7.2622 9.80802 7.51705 9.995 7.70534C10.182 7.89363 10.4361 7.99994 10.7015 8.00087C10.9668 8.00181 11.2217 7.8973 11.41 7.71034L13.91 5.21051C14.0037 5.11755 14.0781 5.00696 14.1289 4.88511C14.1797 4.76326 14.2058 4.63256 14.2058 4.50056C14.2058 4.36855 14.1797 4.23786 14.1289 4.116C14.0781 3.99415 14.0037 3.88356 13.91 3.7906L11.41 1.29077C11.2226 1.10453 10.9692 1 10.705 1C10.4408 1 10.1874 1.10453 10 1.29077C9.90627 1.38373 9.83188 1.49432 9.78111 1.61617C9.73034 1.73803 9.7042 1.86872 9.7042 2.00072C9.7042 2.13273 9.73034 2.26342 9.78111 2.38528C9.83188 2.50713 9.90627 2.61772 10 2.71068L10.79 3.50062H2C1.73478 3.50062 1.48043 3.60597 1.29289 3.7935C1.10536 3.98102 1 4.23536 1 4.50056V17.4997C1 17.7649 1.10536 18.0192 1.29289 18.2067C1.48043 18.3943 1.73478 18.4996 2 18.4996H4.5C4.76522 18.4996 5.01957 18.3943 5.20711 18.2067C5.39464 18.0192 5.5 17.7649 5.5 17.4997C5.5 17.2345 5.39464 16.9801 5.20711 16.7926C5.01957 16.6051 4.76522 16.4997 4.5 16.4997ZM20 3.50062H17.5C17.2348 3.50062 16.9804 3.60597 16.7929 3.7935C16.6054 3.98102 16.5 4.23536 16.5 4.50056C16.5 4.76575 16.6054 5.02009 16.7929 5.20761C16.9804 5.39514 17.2348 5.50049 17.5 5.50049H19V16.4997H10.63L11.42 15.7098C11.5137 15.6168 11.5881 15.5062 11.6389 15.3844C11.6897 15.2625 11.7158 15.1318 11.7158 14.9998C11.7158 14.8678 11.6897 14.7371 11.6389 14.6153C11.5881 14.4934 11.5137 14.3828 11.42 14.2899C11.2326 14.1037 10.9792 13.9991 10.715 13.9991C10.4508 13.9991 10.1974 14.1037 10.01 14.2899L7.51 16.7897C7.41627 16.8827 7.34188 16.9933 7.29111 17.1151C7.24034 17.237 7.2142 17.3677 7.2142 17.4997C7.2142 17.6317 7.24034 17.7624 7.29111 17.8842C7.34188 18.0061 7.41627 18.1167 7.51 18.2096L10.01 20.7095C10.1983 20.8964 10.4532 21.0009 10.7185 21C10.9839 20.9991 11.238 20.8927 11.425 20.7045C11.612 20.5162 11.7165 20.2613 11.7156 19.996C11.7146 19.7306 11.6083 19.4765 11.42 19.2896L10.63 18.4996H20C20.2652 18.4996 20.5196 18.3943 20.7071 18.2067C20.8946 18.0192 21 17.7649 21 17.4997V4.50056C21 4.23536 20.8946 3.98102 20.7071 3.7935C20.5196 3.60597 20.2652 3.50062 20 3.50062Z" fill="currentColor" />
|
7
|
+
</svg>
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</g>
|
11
|
+
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconRequisites" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 22 22">
|
4
|
+
<svg x="-11" y="-11">
|
5
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path d="M20 5C19.7348 5 19.4804 5.10536 19.2929 5.29289C19.1054 5.48043 19 5.73478 19 6V16C19 16.7956 18.6839 17.5587 18.1213 18.1213C17.5587 18.6839 16.7956 19 16 19H6C5.73478 19 5.48043 19.1054 5.29289 19.2929C5.10536 19.4804 5 19.7348 5 20C5 20.2652 5.10536 20.5196 5.29289 20.7071C5.48043 20.8946 5.73478 21 6 21H16C17.3261 21 18.5979 20.4732 19.5355 19.5355C20.4732 18.5979 21 17.3261 21 16V6C21 5.73478 20.8946 5.48043 20.7071 5.29289C20.5196 5.10536 20.2652 5 20 5ZM17 14V4C17 3.20435 16.6839 2.44129 16.1213 1.87868C15.5587 1.31607 14.7956 1 14 1H4C3.20435 1 2.44129 1.31607 1.87868 1.87868C1.31607 2.44129 1 3.20435 1 4V14C1 14.7956 1.31607 15.5587 1.87868 16.1213C2.44129 16.6839 3.20435 17 4 17H14C14.7956 17 15.5587 16.6839 16.1213 16.1213C16.6839 15.5587 17 14.7956 17 14ZM9 3H11V7.86L10.64 7.56C10.4603 7.41033 10.2339 7.32837 10 7.32837C9.76615 7.32837 9.53969 7.41033 9.36 7.56L9 7.86V3ZM3 14V4C3 3.73478 3.10536 3.48043 3.29289 3.29289C3.48043 3.10536 3.73478 3 4 3H7V10C6.99999 10.1912 7.05477 10.3783 7.15785 10.5393C7.26094 10.7003 7.40801 10.8284 7.58164 10.9083C7.75527 10.9883 7.94819 11.0169 8.13754 10.9906C8.32688 10.9643 8.50473 10.8843 8.65 10.76L10 9.63L11.35 10.76C11.5311 10.9149 11.7617 11 12 11C12.1447 10.999 12.2876 10.9683 12.42 10.91C12.5936 10.8297 12.7405 10.7012 12.8433 10.5399C12.9461 10.3787 13.0005 10.1913 13 10V3H14C14.2652 3 14.5196 3.10536 14.7071 3.29289C14.8946 3.48043 15 3.73478 15 4V14C15 14.2652 14.8946 14.5196 14.7071 14.7071C14.5196 14.8946 14.2652 15 14 15H4C3.73478 15 3.48043 14.8946 3.29289 14.7071C3.10536 14.5196 3 14.2652 3 14Z" fill="currentColor" />
|
7
|
+
</svg>
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</g>
|
11
|
+
</svg>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconRocket" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 22 22">
|
4
|
+
<svg x="-11" y="-11">
|
5
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<g clip-path="url(#clip0_2791_5783)">
|
7
|
+
<path d="M21.5676 1.07425C21.5225 0.902975 21.4327 0.746738 21.3074 0.621494C21.1822 0.496249 21.026 0.406484 20.8547 0.361363C18.8033 -0.171448 16.6432 -0.114061 14.623 0.526916C12.6028 1.16789 10.8047 2.36639 9.43574 3.98442L8.32081 5.30825L5.71601 4.67977C5.08275 4.459 4.39099 4.47483 3.76849 4.72432C3.14599 4.97382 2.63479 5.44013 2.32929 6.03715L0.129101 9.93705C0.0520092 10.0737 0.00813609 10.2265 0.00102746 10.3832C-0.00608116 10.5399 0.0237741 10.696 0.0881804 10.8391C0.152587 10.9821 0.249737 11.1079 0.371781 11.2065C0.493824 11.305 0.637337 11.3734 0.790721 11.4063L3.86347 12.0649C3.60318 12.8573 3.41732 13.6722 3.3083 14.499C3.28854 14.6509 3.30393 14.8054 3.35328 14.9504C3.40263 15.0954 3.48464 15.2271 3.59296 15.3355L6.69306 18.4356C6.78588 18.5284 6.89609 18.6021 7.0174 18.6524C7.13872 18.7027 7.26874 18.7286 7.40006 18.7286C7.42887 18.7286 7.45768 18.7271 7.48698 18.7246C8.33232 18.6486 9.16739 18.4844 9.97855 18.2346L10.6222 21.2378C10.6551 21.3912 10.7236 21.5346 10.8222 21.6566C10.9207 21.7786 11.0466 21.8757 11.1896 21.9401C11.3326 22.0045 11.4887 22.0344 11.6454 22.0273C11.802 22.0203 11.9549 21.9765 12.0915 21.8994L15.9967 19.6968C16.5464 19.3628 16.9757 18.8629 17.2229 18.2691C17.47 17.6753 17.5221 17.0184 17.3717 16.3931L16.703 13.6341L17.9401 12.4966C19.5642 11.1315 20.7673 9.33329 21.4095 7.31121C22.0516 5.28913 22.1065 3.12627 21.5676 1.07425ZM2.53877 9.73539L4.09492 6.97563C4.19158 6.78828 4.35625 6.645 4.55517 6.57518C4.7541 6.50536 4.97219 6.51429 5.16474 6.60014L6.88215 7.01634L6.23215 7.78813C5.61591 8.52671 5.08292 9.33094 4.64283 10.1863L2.53877 9.73539ZM15.009 17.9576L12.2932 19.4893L11.8637 17.4846C12.7343 17.0504 13.5454 16.506 14.2771 15.8647L15.0206 15.1811L15.424 16.8457C15.4763 17.0512 15.4646 17.2679 15.3905 17.4666C15.3163 17.6653 15.1832 17.8366 15.009 17.9576ZM16.6232 10.9923L12.9387 14.3785C11.4802 15.6398 9.68129 16.4415 7.76826 16.6827L5.36396 14.2784C5.68688 12.3604 6.51567 10.5632 7.76484 9.07238L9.44318 7.0797C9.47115 7.05045 9.49724 7.01947 9.52131 6.98693L10.9563 5.28325C12.0172 4.03015 13.3917 3.08106 14.9395 2.5329C16.4872 1.98473 18.1527 1.85714 19.7658 2.16313C20.0792 3.78135 19.953 5.454 19.4003 7.00686C18.8476 8.55971 17.8886 9.93596 16.6232 10.9923ZM15.7002 4.82849C15.4036 4.82849 15.1136 4.91647 14.8669 5.08129C14.6202 5.24611 14.428 5.48038 14.3144 5.75447C14.2009 6.02856 14.1712 6.33016 14.2291 6.62113C14.2869 6.9121 14.4298 7.17937 14.6396 7.38915C14.8494 7.59893 15.1166 7.74179 15.4076 7.79967C15.6986 7.85755 16.0002 7.82784 16.2743 7.71431C16.5484 7.60078 16.7826 7.40852 16.9474 7.16185C17.1123 6.91517 17.2002 6.62516 17.2002 6.32849C17.2003 6.1315 17.1615 5.93644 17.0861 5.75444C17.0107 5.57244 16.9002 5.40708 16.7609 5.26778C16.6216 5.12849 16.4563 5.018 16.2743 4.94262C16.0923 4.86725 15.8972 4.82846 15.7002 4.82847L15.7002 4.82849Z" fill="currentColor" />
|
8
|
+
</g>
|
9
|
+
<defs>
|
10
|
+
<clipPath id="clip0_2791_5783">
|
11
|
+
<rect width="22" height="22" fill="white" />
|
12
|
+
</clipPath>
|
13
|
+
</defs>
|
14
|
+
</svg>
|
15
|
+
</svg>
|
16
|
+
</svg>
|
17
|
+
</g>
|
18
|
+
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconSave" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 22 22">
|
4
|
+
<svg x="-11" y="-11">
|
5
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path d="M19.71 8.29L13.71 2.29C13.6178 2.20005 13.5092 2.12874 13.39 2.08C13.266 2.02962 13.1338 2.0025 13 2H5C4.20435 2 3.44129 2.31607 2.87868 2.87868C2.31607 3.44129 2 4.20435 2 5V17C2 17.7956 2.31607 18.5587 2.87868 19.1213C3.44129 19.6839 4.20435 20 5 20H17C17.7956 20 18.5587 19.6839 19.1213 19.1213C19.6839 18.5587 20 17.7956 20 17V9C20.0008 8.86839 19.9755 8.73793 19.9258 8.61609C19.876 8.49426 19.8027 8.38344 19.71 8.29ZM8 4H12V6H8V4ZM14 18H8V15C8 14.7348 8.10536 14.4804 8.29289 14.2929C8.48043 14.1054 8.73478 14 9 14H13C13.2652 14 13.5196 14.1054 13.7071 14.2929C13.8946 14.4804 14 14.7348 14 15V18ZM18 17C18 17.2652 17.8946 17.5196 17.7071 17.7071C17.5196 17.8946 17.2652 18 17 18H16V15C16 14.2044 15.6839 13.4413 15.1213 12.8787C14.5587 12.3161 13.7956 12 13 12H9C8.20435 12 7.44129 12.3161 6.87868 12.8787C6.31607 13.4413 6 14.2044 6 15V18H5C4.73478 18 4.48043 17.8946 4.29289 17.7071C4.10536 17.5196 4 17.2652 4 17V5C4 4.73478 4.10536 4.48043 4.29289 4.29289C4.48043 4.10536 4.73478 4 5 4H6V7C6 7.26522 6.10536 7.51957 6.29289 7.70711C6.48043 7.89464 6.73478 8 7 8H13C13.2652 8 13.5196 7.89464 13.7071 7.70711C13.8946 7.51957 14 7.26522 14 7V5.41L18 9.41V17Z" fill="currentColor" />
|
7
|
+
</svg>
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</g>
|
11
|
+
</svg>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconSearch" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 22 22">
|
4
|
+
<svg x="-11" y="-11">
|
5
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 3C6.13401 3 3 6.13401 3 10C3 13.866 6.13401 17 10 17C13.866 17 17 13.866 17 10C17 6.13401 13.866 3 10 3ZM1 10C1 5.02944 5.02944 1 10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10Z" fill="currentColor" />
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.0319 15.6177L20.7071 19.2929C21.0977 19.6834 21.0977 20.3166 20.7071 20.7071C20.3166 21.0976 19.6834 21.0976 19.2929 20.7071L15.6177 17.0319L17.0319 15.6177Z" fill="currentColor" />
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</svg>
|
11
|
+
</g>
|
12
|
+
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconSend" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 22 22">
|
4
|
+
<svg x="-11" y="-11">
|
5
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path d="M20.149 1.86585C19.7669 1.47653 19.2824 1.20327 18.7514 1.07766C18.2205 0.952059 17.6649 0.979241 17.1488 1.15607L2.99797 5.88461C2.42725 6.07135 1.92859 6.43059 1.57084 6.91273C1.21308 7.39487 1.01387 7.97613 1.0007 8.57628C0.987527 9.17643 1.16105 9.76587 1.49731 10.2632C1.83357 10.7606 2.31598 11.1413 2.87796 11.3529L8.11826 13.3523C8.23759 13.3979 8.34623 13.4676 8.43742 13.5571C8.52862 13.6465 8.6004 13.7538 8.64829 13.8721L10.6484 19.1205C10.852 19.6744 11.2215 20.152 11.7064 20.4883C12.1914 20.8246 12.7683 21.0033 13.3586 21H13.4286C14.0296 20.989 14.6122 20.7904 15.0946 20.4318C15.577 20.0733 15.9351 19.5728 16.1187 19.0006L20.849 4.83493C21.021 4.32403 21.0466 3.7752 20.9229 3.25051C20.7992 2.72581 20.5311 2.24618 20.149 1.86585ZM18.9989 4.20513L14.2186 18.3808C14.1631 18.5602 14.0516 18.7171 13.9005 18.8286C13.7493 18.9402 13.5664 19.0004 13.3786 19.0006C13.1918 19.0036 13.0085 18.9498 12.8531 18.8462C12.6977 18.7427 12.5775 18.5943 12.5085 18.4207L10.5084 13.1724C10.3634 12.791 10.1398 12.4444 9.85204 12.1551C9.56432 11.8657 9.21893 11.6401 8.8383 11.4929L3.588 9.4935C3.41088 9.42862 3.25863 9.30975 3.15276 9.15369C3.04689 8.99763 2.99274 8.81226 2.99797 8.62377C2.99812 8.43597 3.05839 8.25315 3.16995 8.10205C3.28152 7.95095 3.43852 7.83951 3.618 7.78402L17.7988 3.05548C17.9616 2.98915 18.1402 2.97138 18.3129 3.00432C18.4856 3.03726 18.645 3.11951 18.772 3.24111C18.8989 3.36271 18.9879 3.51847 19.0282 3.68955C19.0684 3.86062 19.0583 4.0397 18.9989 4.20513Z" fill="currentColor" />
|
7
|
+
</svg>
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</g>
|
11
|
+
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconSettings" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 22 22">
|
4
|
+
<svg x="-11" y="-11">
|
5
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path d="M20.32 8.55L18.43 7.92L19.32 6.14C19.4102 5.95369 19.4404 5.74397 19.4064 5.53978C19.3723 5.33558 19.2758 5.14699 19.13 5L17 2.87C16.8522 2.72209 16.6618 2.62421 16.4555 2.59013C16.2493 2.55605 16.0375 2.58748 15.85 2.68L14.07 3.57L13.44 1.68C13.3735 1.483 13.2472 1.31163 13.0787 1.18975C12.9102 1.06787 12.7079 1.00155 12.5 1H9.5C9.29036 0.999462 9.08585 1.06482 8.91537 1.18685C8.7449 1.30887 8.61709 1.48138 8.55 1.68L7.92 3.57L6.14 2.68C5.95369 2.58978 5.74397 2.55961 5.53978 2.59364C5.33558 2.62767 5.14699 2.72423 5 2.87L2.87 5C2.72209 5.14777 2.62421 5.33818 2.59013 5.54446C2.55605 5.75074 2.58748 5.96251 2.68 6.15L3.57 7.93L1.68 8.56C1.483 8.62654 1.31163 8.75283 1.18975 8.92131C1.06787 9.08979 1.00155 9.29207 1 9.5V12.5C0.999462 12.7096 1.06482 12.9142 1.18685 13.0846C1.30887 13.2551 1.48138 13.3829 1.68 13.45L3.57 14.08L2.68 15.86C2.58978 16.0463 2.55961 16.256 2.59364 16.4602C2.62767 16.6644 2.72423 16.853 2.87 17L5 19.13C5.14777 19.2779 5.33818 19.3758 5.54446 19.4099C5.75074 19.444 5.96251 19.4125 6.15 19.32L7.93 18.43L8.56 20.32C8.62709 20.5186 8.7549 20.6911 8.92537 20.8132C9.09585 20.9352 9.30036 21.0005 9.51 21H12.51C12.7196 21.0005 12.9242 20.9352 13.0946 20.8132C13.2651 20.6911 13.3929 20.5186 13.46 20.32L14.09 18.43L15.87 19.32C16.0551 19.4079 16.2628 19.4369 16.4649 19.4029C16.667 19.3689 16.8538 19.2737 17 19.13L19.13 17C19.2779 16.8522 19.3758 16.6618 19.4099 16.4555C19.444 16.2493 19.4125 16.0375 19.32 15.85L18.43 14.07L20.32 13.44C20.517 13.3735 20.6884 13.2472 20.8103 13.0787C20.9321 12.9102 20.9985 12.7079 21 12.5V9.5C21.0005 9.29036 20.9352 9.08585 20.8132 8.91537C20.6911 8.7449 20.5186 8.61709 20.32 8.55ZM19 11.78L17.8 12.18C17.5241 12.2695 17.2709 12.418 17.0581 12.6151C16.8452 12.8122 16.6778 13.0533 16.5675 13.3216C16.4571 13.5899 16.4064 13.879 16.419 14.1688C16.4315 14.4586 16.5069 14.7422 16.64 15L17.21 16.14L16.11 17.24L15 16.64C14.7436 16.5122 14.4627 16.4411 14.1763 16.4313C13.89 16.4215 13.6049 16.4734 13.3403 16.5834C13.0758 16.6934 12.8379 16.8589 12.6429 17.0688C12.4479 17.2787 12.3003 17.5281 12.21 17.8L11.81 19H10.22L9.82 17.8C9.73049 17.5241 9.58203 17.2709 9.3849 17.0581C9.18778 16.8452 8.94671 16.6778 8.67842 16.5675C8.41014 16.4571 8.12105 16.4064 7.83123 16.419C7.5414 16.4315 7.25777 16.5069 7 16.64L5.86 17.21L4.76 16.11L5.36 15C5.4931 14.7422 5.56852 14.4586 5.58105 14.1688C5.59358 13.879 5.5429 13.5899 5.43254 13.3216C5.32218 13.0533 5.15478 12.8122 4.94195 12.6151C4.72912 12.418 4.47595 12.2695 4.2 12.18L3 11.78V10.22L4.2 9.82C4.47595 9.73049 4.72912 9.58203 4.94195 9.3849C5.15478 9.18778 5.32218 8.94671 5.43254 8.67842C5.5429 8.41014 5.59358 8.12105 5.58105 7.83123C5.56852 7.5414 5.4931 7.25777 5.36 7L4.79 5.89L5.89 4.79L7 5.36C7.25777 5.4931 7.5414 5.56852 7.83123 5.58105C8.12105 5.59358 8.41014 5.5429 8.67842 5.43254C8.94671 5.32218 9.18778 5.15478 9.3849 4.94195C9.58203 4.72912 9.73049 4.47595 9.82 4.2L10.22 3H11.78L12.18 4.2C12.2695 4.47595 12.418 4.72912 12.6151 4.94195C12.8122 5.15478 13.0533 5.32218 13.3216 5.43254C13.5899 5.5429 13.879 5.59358 14.1688 5.58105C14.4586 5.56852 14.7422 5.4931 15 5.36L16.14 4.79L17.24 5.89L16.64 7C16.5122 7.25645 16.4411 7.53735 16.4313 7.82369C16.4215 8.11003 16.4734 8.39513 16.5834 8.65969C16.6934 8.92424 16.8589 9.16207 17.0688 9.35708C17.2787 9.5521 17.5281 9.69973 17.8 9.79L19 10.19V11.78ZM11 7C10.2089 7 9.43552 7.2346 8.77772 7.67413C8.11993 8.11365 7.60724 8.73836 7.30448 9.46927C7.00173 10.2002 6.92252 11.0044 7.07686 11.7804C7.2312 12.5563 7.61217 13.269 8.17158 13.8284C8.73099 14.3878 9.44372 14.7688 10.2196 14.9231C10.9956 15.0775 11.7998 14.9983 12.5307 14.6955C13.2616 14.3928 13.8864 13.8801 14.3259 13.2223C14.7654 12.5645 15 11.7911 15 11C15 9.93914 14.5786 8.92172 13.8284 8.17158C13.0783 7.42143 12.0609 7 11 7ZM11 13C10.6044 13 10.2178 12.8827 9.88886 12.6629C9.55996 12.4432 9.30362 12.1308 9.15224 11.7654C9.00087 11.3999 8.96126 10.9978 9.03843 10.6098C9.1156 10.2219 9.30608 9.86549 9.58579 9.58579C9.86549 9.30608 10.2219 9.1156 10.6098 9.03843C10.9978 8.96126 11.3999 9.00087 11.7654 9.15224C12.1308 9.30362 12.4432 9.55996 12.6629 9.88886C12.8827 10.2178 13 10.6044 13 11C13 11.5304 12.7893 12.0391 12.4142 12.4142C12.0391 12.7893 11.5304 13 11 13Z" fill="currentColor" />
|
7
|
+
</svg>
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</g>
|
11
|
+
</svg>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconShare" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 22 22">
|
4
|
+
<svg x="-11" y="-11">
|
5
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.5 15.6673C15.5335 15.6673 14.75 16.4508 14.75 17.4173C14.75 18.3838 15.5335 19.1673 16.5 19.1673C17.4665 19.1673 18.25 18.3838 18.25 17.4173C18.25 16.4508 17.4665 15.6673 16.5 15.6673ZM12.75 17.4173C12.75 15.3462 14.4289 13.6673 16.5 13.6673C18.5711 13.6673 20.25 15.3462 20.25 17.4173C20.25 19.4884 18.5711 21.1673 16.5 21.1673C14.4289 21.1673 12.75 19.4884 12.75 17.4173Z" fill="currentColor" />
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.5 9.25065C4.5335 9.25065 3.75 10.0342 3.75 11.0007C3.75 11.9671 4.5335 12.7507 5.5 12.7507C6.4665 12.7507 7.25 11.9671 7.25 11.0007C7.25 10.0342 6.4665 9.25065 5.5 9.25065ZM1.75 11.0007C1.75 8.92958 3.42893 7.25065 5.5 7.25065C7.57107 7.25065 9.25 8.92958 9.25 11.0007C9.25 13.0717 7.57107 14.7507 5.5 14.7507C3.42893 14.7507 1.75 13.0717 1.75 11.0007Z" fill="currentColor" />
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.01016 11.8813C7.28822 11.4042 7.90047 11.2427 8.37764 11.5208L14.6385 15.1691C15.1157 15.4472 15.2771 16.0595 14.999 16.5366C14.7209 17.0138 14.1087 17.1752 13.6315 16.8972L7.37069 13.2488C6.89351 12.9708 6.7321 12.3585 7.01016 11.8813Z" fill="currentColor" />
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.5 2.83398C15.5335 2.83398 14.75 3.61749 14.75 4.58398C14.75 5.55048 15.5335 6.33398 16.5 6.33398C17.4665 6.33398 18.25 5.55048 18.25 4.58398C18.25 3.61749 17.4665 2.83398 16.5 2.83398ZM12.75 4.58398C12.75 2.51292 14.4289 0.833984 16.5 0.833984C18.5711 0.833984 20.25 2.51292 20.25 4.58398C20.25 6.65505 18.5711 8.33398 16.5 8.33398C14.4289 8.33398 12.75 6.65505 12.75 4.58398Z" fill="currentColor" />
|
10
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.9895 5.46412C15.2679 5.94112 15.1069 6.55347 14.6299 6.83184L8.37819 10.4802C7.90119 10.7585 7.28885 10.5975 7.01048 10.1205C6.73211 9.64351 6.89314 9.03116 7.37014 8.7528L13.6218 5.10446C14.0988 4.8261 14.7112 4.98712 14.9895 5.46412Z" fill="currentColor" />
|
11
|
+
</svg>
|
12
|
+
</svg>
|
13
|
+
</svg>
|
14
|
+
</g>
|
15
|
+
</svg>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconSocialCopy" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 32 32">
|
4
|
+
<svg x="-16" y="-16">
|
5
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<rect width="32" height="32" rx="10" fill="#F6F6F6"/>
|
7
|
+
<path d="M21.8333 19.3591L23.7779 17.4145C26.121 15.0714 26.121 11.2724 23.7779 8.92924L23.0708 8.22213C20.7276 5.87899 16.9286 5.87899 14.5855 8.22213L12.6409 10.1667M19.3585 21.8339L17.4139 23.7785C15.0708 26.1216 11.2718 26.1216 8.92863 23.7785L8.22152 23.0714C5.87838 20.7282 5.87838 16.9292 8.22152 14.5861L10.0777 12.7299" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
8
|
+
<path d="M18.1211 13.8789L13.8785 18.1215" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
9
|
+
</svg>
|
10
|
+
</svg>
|
11
|
+
</svg>
|
12
|
+
</g>
|
13
|
+
</svg>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconSocialEmail" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 32 32">
|
4
|
+
<svg x="-16" y="-16">
|
5
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<rect width="32" height="32" rx="10" fill="#4E7DF4"/>
|
7
|
+
<path d="M22 24H10C7.79086 24 6 22.2091 6 20V12C6 9.79086 7.79086 8 10 8H22C24.2091 8 26 9.79086 26 12V20C26 22.2091 24.2091 24 22 24Z" stroke="white" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
8
|
+
<path d="M7 10.5L14.7196 16.933C15.4613 17.5511 16.5387 17.5511 17.2804 16.933L25 10.5" stroke="white" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
9
|
+
</svg>
|
10
|
+
</svg>
|
11
|
+
</svg>
|
12
|
+
</g>
|
13
|
+
</svg>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconSocialFacebook" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 32 32">
|
4
|
+
<svg x="-16" y="-16">
|
5
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<rect width="32" height="32" rx="10" fill="#1877F2"/>
|
7
|
+
<path d="M22.2281 20.625L22.9375 16H18.5V12.9988C18.5 11.7334 19.12 10.5 21.1075 10.5H23.125V6.5625C23.125 6.5625 21.2941 6.25 19.5434 6.25C15.8888 6.25 13.5 8.465 13.5 12.475V16H9.4375V20.625H13.5V31.8056C14.3147 31.9334 15.1494 32 16 32C16.8506 32 17.6853 31.9334 18.5 31.8056V20.625H22.2281Z" fill="white"/>
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</svg>
|
11
|
+
</g>
|
12
|
+
</svg>
|
@@ -0,0 +1,33 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconSocialInstagram" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 32 32">
|
4
|
+
<svg x="-16" y="-16">
|
5
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<rect width="32" height="32" rx="10" fill="url(#paint0_linear_8922_47624)"/>
|
7
|
+
<path d="M15.999 7.04613C18.9142 7.04613 19.2598 7.05573 20.4118 7.11013C21.4774 7.15813 22.0566 7.33733 22.4406 7.48773C22.9494 7.68613 23.3142 7.92293 23.695 8.30373C24.0758 8.68453 24.3126 9.04933 24.511 9.55813C24.6614 9.94213 24.8374 10.5213 24.8886 11.5869C24.9398 12.7389 24.9526 13.0845 24.9526 15.9997C24.9526 18.9149 24.943 19.2605 24.8886 20.4125C24.8406 21.4781 24.6614 22.0573 24.511 22.4413C24.3126 22.9501 24.0758 23.3149 23.695 23.6957C23.3142 24.0765 22.9494 24.3133 22.4406 24.5117C22.0566 24.6621 21.4774 24.8381 20.4118 24.8893C19.2598 24.9405 18.9142 24.9533 15.999 24.9533C13.0838 24.9533 12.7382 24.9437 11.5862 24.8893C10.5206 24.8413 9.94142 24.6621 9.55742 24.5117C9.04862 24.3133 8.68382 24.0765 8.30302 23.6957C7.92222 23.3149 7.68542 22.9501 7.48702 22.4413C7.33662 22.0573 7.16062 21.4781 7.10942 20.4125C7.05822 19.2605 7.04542 18.9149 7.04542 15.9997C7.04542 13.0845 7.05502 12.7389 7.10942 11.5869C7.15742 10.5213 7.33662 9.94213 7.48702 9.55813C7.68542 9.04933 7.92222 8.68453 8.30302 8.30373C8.68382 7.92293 9.04862 7.68613 9.55742 7.48773C9.94142 7.33733 10.5206 7.16133 11.5862 7.11013C12.7382 7.05573 13.0838 7.04613 15.999 7.04613ZM15.999 5.07812C13.0326 5.07812 12.6614 5.09093 11.4966 5.14533C10.335 5.19973 9.54142 5.38213 8.84382 5.65413C8.12702 5.92933 7.51582 6.30373 6.91102 6.91173C6.30302 7.51973 5.93182 8.12773 5.65022 8.84773C5.38142 9.54213 5.19582 10.3357 5.14142 11.5005C5.08702 12.6653 5.07422 13.0365 5.07422 16.0029C5.07422 18.9693 5.08702 19.3405 5.14142 20.5053C5.19582 21.6669 5.37822 22.4605 5.65022 23.1581C5.92862 23.8717 6.30302 24.4829 6.91102 25.0877C7.51902 25.6957 8.12702 26.0669 8.84702 26.3485C9.54142 26.6173 10.335 26.8029 11.4998 26.8573C12.6646 26.9117 13.0358 26.9245 16.0022 26.9245C18.9686 26.9245 19.3398 26.9117 20.5046 26.8573C21.6662 26.8029 22.4598 26.6205 23.1574 26.3485C23.871 26.0701 24.4822 25.6957 25.087 25.0877C25.695 24.4797 26.0662 23.8717 26.3478 23.1517C26.6166 22.4573 26.8022 21.6637 26.8566 20.4989C26.911 19.3341 26.9238 18.9629 26.9238 15.9965C26.9238 13.0301 26.911 12.6589 26.8566 11.4941C26.8022 10.3325 26.6198 9.53892 26.3478 8.84132C26.0694 8.12772 25.695 7.51653 25.087 6.91173C24.479 6.30373 23.871 5.93253 23.151 5.65093C22.4566 5.38213 21.663 5.19653 20.4982 5.14213C19.3366 5.09092 18.9654 5.07812 15.999 5.07812Z" fill="white"/>
|
8
|
+
<path d="M16.0002 10.3906C12.9026 10.3906 10.3906 12.9026 10.3906 16.0002C10.3906 19.0978 12.9026 21.6098 16.0002 21.6098C19.0978 21.6098 21.6098 19.0978 21.6098 16.0002C21.6098 12.9026 19.0978 10.3906 16.0002 10.3906ZM16.0002 19.6418C13.9906 19.6418 12.3586 18.013 12.3586 16.0002C12.3586 13.9874 13.9906 12.3586 16.0002 12.3586C18.0098 12.3586 19.6418 13.9874 19.6418 16.0002C19.6418 18.013 18.0098 19.6418 16.0002 19.6418Z" fill="white"/>
|
9
|
+
<path d="M21.8296 11.4814C22.5542 11.4814 23.1416 10.894 23.1416 10.1694C23.1416 9.44482 22.5542 8.85742 21.8296 8.85742C21.105 8.85742 20.5176 9.44482 20.5176 10.1694C20.5176 10.894 21.105 11.4814 21.8296 11.4814Z" fill="white"/>
|
10
|
+
<defs>
|
11
|
+
<linearGradient id="paint0_linear_8922_47624" x1="4.68629" y1="27.3137" x2="27.3137" y2="4.68629" gradientUnits="userSpaceOnUse">
|
12
|
+
<stop stop-color="#FFD521"/>
|
13
|
+
<stop offset="0.0551048" stop-color="#FFD020"/>
|
14
|
+
<stop offset="0.1241" stop-color="#FEC01E"/>
|
15
|
+
<stop offset="0.2004" stop-color="#FCA71B"/>
|
16
|
+
<stop offset="0.2821" stop-color="#FA8316"/>
|
17
|
+
<stop offset="0.3681" stop-color="#F85510"/>
|
18
|
+
<stop offset="0.4563" stop-color="#F51E09"/>
|
19
|
+
<stop offset="0.5" stop-color="#F30005"/>
|
20
|
+
<stop offset="0.5035" stop-color="#F20007"/>
|
21
|
+
<stop offset="0.5966" stop-color="#E1003B"/>
|
22
|
+
<stop offset="0.6879" stop-color="#D30067"/>
|
23
|
+
<stop offset="0.7757" stop-color="#C70088"/>
|
24
|
+
<stop offset="0.8589" stop-color="#BF00A0"/>
|
25
|
+
<stop offset="0.9357" stop-color="#BB00AF"/>
|
26
|
+
<stop offset="1" stop-color="#B900B4"/>
|
27
|
+
</linearGradient>
|
28
|
+
</defs>
|
29
|
+
</svg>
|
30
|
+
</svg>
|
31
|
+
</svg>
|
32
|
+
</g>
|
33
|
+
</svg>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconSocialQR" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 32 32">
|
4
|
+
<svg x="-16" y="-16">
|
5
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<rect width="32" height="32" rx="10" fill="#F6F6F6"/>
|
7
|
+
<path d="M12.901 24.2503H9.23438C8.99126 24.2503 8.7581 24.1537 8.58619 23.9818C8.41429 23.8099 8.31771 23.5768 8.31771 23.3337V19.667C8.31771 19.4239 8.22113 19.1907 8.04922 19.0188C7.87731 18.8469 7.64416 18.7503 7.40104 18.7503C7.15793 18.7503 6.92477 18.8469 6.75286 19.0188C6.58095 19.1907 6.48438 19.4239 6.48438 19.667V23.3337C6.48438 24.063 6.77411 24.7625 7.28983 25.2782C7.80556 25.7939 8.50503 26.0837 9.23438 26.0837H12.901C13.1442 26.0837 13.3773 25.9871 13.5492 25.8152C13.7211 25.6433 13.8177 25.4101 13.8177 25.167C13.8177 24.9239 13.7211 24.6907 13.5492 24.5188C13.3773 24.3469 13.1442 24.2503 12.901 24.2503ZM25.7344 18.7503C25.4913 18.7503 25.2581 18.8469 25.0862 19.0188C24.9143 19.1907 24.8177 19.4239 24.8177 19.667V23.3337C24.8177 23.5768 24.7211 23.8099 24.5492 23.9818C24.3773 24.1537 24.1442 24.2503 23.901 24.2503H20.2344C19.9913 24.2503 19.7581 24.3469 19.5862 24.5188C19.4143 24.6907 19.3177 24.9239 19.3177 25.167C19.3177 25.4101 19.4143 25.6433 19.5862 25.8152C19.7581 25.9871 19.9913 26.0837 20.2344 26.0837H23.901C24.6304 26.0837 25.3299 25.7939 25.8456 25.2782C26.3613 24.7625 26.651 24.063 26.651 23.3337V19.667C26.651 19.4239 26.5545 19.1907 26.3826 19.0188C26.2106 18.8469 25.9775 18.7503 25.7344 18.7503ZM23.901 5.91699H20.2344C19.9913 5.91699 19.7581 6.01357 19.5862 6.18548C19.4143 6.35739 19.3177 6.59054 19.3177 6.83366C19.3177 7.07677 19.4143 7.30993 19.5862 7.48184C19.7581 7.65375 19.9913 7.75033 20.2344 7.75033H23.901C24.1442 7.75033 24.3773 7.8469 24.5492 8.01881C24.7211 8.19072 24.8177 8.42388 24.8177 8.66699V12.3337C24.8177 12.5768 24.9143 12.8099 25.0862 12.9818C25.2581 13.1537 25.4913 13.2503 25.7344 13.2503C25.9775 13.2503 26.2106 13.1537 26.3826 12.9818C26.5545 12.8099 26.651 12.5768 26.651 12.3337V8.66699C26.651 7.93765 26.3613 7.23817 25.8456 6.72245C25.3299 6.20672 24.6304 5.91699 23.901 5.91699ZM7.40104 13.2503C7.64416 13.2503 7.87731 13.1537 8.04922 12.9818C8.22113 12.8099 8.31771 12.5768 8.31771 12.3337V8.66699C8.31771 8.42388 8.41429 8.19072 8.58619 8.01881C8.7581 7.8469 8.99126 7.75033 9.23438 7.75033H12.901C13.1442 7.75033 13.3773 7.65375 13.5492 7.48184C13.7211 7.30993 13.8177 7.07677 13.8177 6.83366C13.8177 6.59054 13.7211 6.35739 13.5492 6.18548C13.3773 6.01357 13.1442 5.91699 12.901 5.91699H9.23438C8.50503 5.91699 7.80556 6.20672 7.28983 6.72245C6.77411 7.23817 6.48438 7.93765 6.48438 8.66699V12.3337C6.48438 12.5768 6.58095 12.8099 6.75286 12.9818C6.92477 13.1537 7.15793 13.2503 7.40104 13.2503ZM14.7344 9.58366H11.0677C10.8246 9.58366 10.5914 9.68024 10.4195 9.85214C10.2476 10.0241 10.151 10.2572 10.151 10.5003V14.167C10.151 14.4101 10.2476 14.6433 10.4195 14.8152C10.5914 14.9871 10.8246 15.0837 11.0677 15.0837H14.7344C14.9775 15.0837 15.2106 14.9871 15.3826 14.8152C15.5545 14.6433 15.651 14.4101 15.651 14.167V10.5003C15.651 10.2572 15.5545 10.0241 15.3826 9.85214C15.2106 9.68024 14.9775 9.58366 14.7344 9.58366ZM13.8177 13.2503H11.9844V11.417H13.8177V13.2503ZM18.401 15.0837H22.0677C22.3108 15.0837 22.544 14.9871 22.7159 14.8152C22.8878 14.6433 22.9844 14.4101 22.9844 14.167V10.5003C22.9844 10.2572 22.8878 10.0241 22.7159 9.85214C22.544 9.68024 22.3108 9.58366 22.0677 9.58366H18.401C18.1579 9.58366 17.9248 9.68024 17.7529 9.85214C17.581 10.0241 17.4844 10.2572 17.4844 10.5003V14.167C17.4844 14.4101 17.581 14.6433 17.7529 14.8152C17.9248 14.9871 18.1579 15.0837 18.401 15.0837ZM19.3177 11.417H21.151V13.2503H19.3177V11.417ZM14.7344 16.917H11.0677C10.8246 16.917 10.5914 17.0136 10.4195 17.1855C10.2476 17.3574 10.151 17.5905 10.151 17.8337V21.5003C10.151 21.7434 10.2476 21.9766 10.4195 22.1485C10.5914 22.3204 10.8246 22.417 11.0677 22.417H14.7344C14.9775 22.417 15.2106 22.3204 15.3826 22.1485C15.5545 21.9766 15.651 21.7434 15.651 21.5003V17.8337C15.651 17.5905 15.5545 17.3574 15.3826 17.1855C15.2106 17.0136 14.9775 16.917 14.7344 16.917ZM13.8177 20.5837H11.9844V18.7503H13.8177V20.5837ZM18.401 19.667C18.6442 19.667 18.8773 19.5704 19.0492 19.3985C19.2211 19.2266 19.3177 18.9934 19.3177 18.7503C19.5608 18.7503 19.794 18.6537 19.9659 18.4818C20.1378 18.3099 20.2344 18.0768 20.2344 17.8337C20.2344 17.5905 20.1378 17.3574 19.9659 17.1855C19.794 17.0136 19.5608 16.917 19.3177 16.917H18.401C18.1579 16.917 17.9248 17.0136 17.7529 17.1855C17.581 17.3574 17.4844 17.5905 17.4844 17.8337V18.7503C17.4844 18.9934 17.581 19.2266 17.7529 19.3985C17.9248 19.5704 18.1579 19.667 18.401 19.667ZM22.0677 16.917C21.8246 16.917 21.5914 17.0136 21.4195 17.1855C21.2476 17.3574 21.151 17.5905 21.151 17.8337V20.5837C20.9079 20.5837 20.6748 20.6802 20.5029 20.8521C20.331 21.0241 20.2344 21.2572 20.2344 21.5003C20.2344 21.7434 20.331 21.9766 20.5029 22.1485C20.6748 22.3204 20.9079 22.417 21.151 22.417H22.0677C22.3108 22.417 22.544 22.3204 22.7159 22.1485C22.8878 21.9766 22.9844 21.7434 22.9844 21.5003V17.8337C22.9844 17.5905 22.8878 17.3574 22.7159 17.1855C22.544 17.0136 22.3108 16.917 22.0677 16.917ZM18.401 20.5837C18.2197 20.5837 18.0425 20.6374 17.8918 20.7381C17.741 20.8389 17.6235 20.982 17.5542 21.1495C17.4848 21.317 17.4666 21.5013 17.502 21.6792C17.5374 21.857 17.6247 22.0203 17.7529 22.1485C17.8811 22.2767 18.0444 22.364 18.2222 22.3994C18.4 22.4347 18.5843 22.4166 18.7518 22.3472C18.9193 22.2778 19.0625 22.1603 19.1632 22.0096C19.2639 21.8589 19.3177 21.6816 19.3177 21.5003C19.3177 21.2572 19.2211 21.0241 19.0492 20.8521C18.8773 20.6802 18.6442 20.5837 18.401 20.5837Z" fill="currentColor"/>
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</svg>
|
11
|
+
</g>
|
12
|
+
</svg>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconSocialTelegram" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 32 32">
|
4
|
+
<svg x="-16" y="-16">
|
5
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<rect width="32" height="32" rx="10" fill="url(#paint0_linear_4583_10079)"/>
|
7
|
+
<path d="M22.449 10.3734L20.0837 22.3035C20.0837 22.3035 19.7524 23.1317 18.8415 22.7331L13.381 18.5459L11.3935 17.5884L8.04996 16.4653C8.04996 16.4653 7.53756 16.2841 7.4858 15.8856C7.43405 15.487 8.06549 15.2748 8.06549 15.2748L21.3569 10.0628C21.3569 10.0576 22.449 9.57629 22.449 10.3734Z" fill="white"/>
|
8
|
+
<path d="M12.9566 22.1691C12.9566 22.1691 12.7961 22.1536 12.5995 21.5273C12.4028 20.9011 11.3935 17.5886 11.3935 17.5886L19.4211 12.4904C19.4211 12.4904 19.887 12.2109 19.8662 12.4904C19.8662 12.4904 19.9491 12.5422 19.7006 12.7699C19.4522 13.0028 13.3965 18.4478 13.3965 18.4478" fill="#D2E4F0"/>
|
9
|
+
<path d="M15.472 20.1505L13.3137 22.1225C13.3137 22.1225 13.1429 22.2519 12.9618 22.169L13.3759 18.5098" fill="#B5CFE4"/>
|
10
|
+
<defs>
|
11
|
+
<linearGradient id="paint0_linear_4583_10079" x1="16" y1="0" x2="16" y2="32" gradientUnits="userSpaceOnUse">
|
12
|
+
<stop stop-color="#3BB9E6"/>
|
13
|
+
<stop offset="1" stop-color="#23A7DD"/>
|
14
|
+
</linearGradient>
|
15
|
+
</defs>
|
16
|
+
</svg>
|
17
|
+
</svg>
|
18
|
+
</svg>
|
19
|
+
</g>
|
20
|
+
</svg>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconSocialViber" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 32 32">
|
4
|
+
<svg x="-16" y="-16">
|
5
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<rect width="32" height="32" rx="10" fill="#834995"/>
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.4469 5.76645C21.6503 5.78909 23.9841 7.48275 24.5607 8.01391C26.4768 9.68028 27.5392 13.3671 26.8218 19.2062C26.1937 24.3558 22.6048 25.2695 21.3972 25.5769C21.2781 25.6072 21.1822 25.6316 21.1145 25.6536C20.7877 25.758 17.9225 26.4754 14.1903 26.1621C13.7771 26.6389 13.2323 27.2655 12.8373 27.6923C12.7177 27.8209 12.6056 27.9481 12.4986 28.0696C11.9594 28.6816 11.5455 29.1515 10.9167 28.9545C10.2901 28.7638 10.3264 27.8148 10.3264 27.8148L10.3309 25.472H10.3264C4.87333 23.9372 4.95051 18.28 5.0141 15.2605C5.07768 12.2411 5.66338 9.80285 7.3252 8.14113C10.3128 5.39869 16.4469 5.76645 16.4469 5.76645ZM20.7831 23.9372C21.8101 23.6976 24.6644 23.0314 25.1919 18.7794C25.7958 13.9075 24.9693 10.5838 23.3484 9.19444C22.8581 8.74946 20.7513 7.4237 16.3516 7.40556C16.3516 7.40556 11.1437 7.065 8.61467 9.35795C7.20713 10.7473 6.73035 12.8132 6.68042 15.3331C6.6787 15.4198 6.67672 15.5092 6.67468 15.6011C6.61753 18.1803 6.51706 22.7145 10.9803 23.9509C10.9803 23.9509 10.9621 27.5288 10.9621 27.842C10.9576 28.3188 11.2209 28.3415 11.4615 28.1009C12.1971 27.3607 14.5581 24.5139 14.5581 24.5139C17.7228 24.7182 20.2427 24.0916 20.5152 24.0054C20.5784 23.985 20.6696 23.9637 20.7831 23.9372Z" fill="white"/>
|
8
|
+
<path d="M18.8806 15.1105C18.8988 15.501 18.3131 15.5282 18.2949 15.1377C18.2449 14.1388 17.7773 13.653 16.8147 13.5986C16.4242 13.5758 16.4606 12.9901 16.8465 13.0129C18.1133 13.0809 18.8171 13.8074 18.8806 15.1105Z" fill="white"/>
|
9
|
+
<path d="M19.8024 15.6237C19.8477 13.6986 18.6446 12.1911 16.3606 12.0232C15.9747 11.996 16.0156 11.4102 16.4016 11.4374C19.0351 11.6282 20.438 13.4398 20.388 15.6374C20.3835 16.0278 19.7932 16.0097 19.8024 15.6237Z" fill="white"/>
|
10
|
+
<path d="M21.9364 16.2324C21.9409 16.6229 21.3506 16.6274 21.3506 16.2369C21.3234 12.5365 18.858 10.5205 15.8658 10.4978C15.4798 10.4933 15.4798 9.91211 15.8658 9.91211C19.2121 9.9348 21.9046 12.2459 21.9364 16.2324Z" fill="white"/>
|
11
|
+
<path d="M21.4233 20.6863V20.6954C20.9329 21.5581 20.0157 22.5116 19.0713 22.2074L19.0622 22.1937C18.1042 21.9259 15.8477 20.7636 14.4219 19.6284C13.6864 19.0472 13.0143 18.3616 12.4967 17.7032C12.0291 17.1175 11.5569 16.4228 11.0983 15.5874C10.1312 13.8393 9.91785 13.0584 9.91785 13.0584C9.61362 12.1139 10.5626 11.1967 11.4298 10.7064H11.4389C11.8566 10.4884 12.2561 10.5611 12.524 10.8834C12.524 10.8834 13.0871 11.5553 13.3277 11.8869C13.5547 12.1956 13.8589 12.6905 14.0178 12.9675C14.2948 13.4623 14.1222 13.9664 13.8498 14.1752L13.305 14.6111C13.028 14.8335 13.0643 15.2467 13.0643 15.2467C13.0643 15.2467 13.8725 18.3025 16.8919 19.0744C16.8919 19.0744 17.3052 19.1107 17.5276 18.8338L17.9635 18.2889C18.1723 18.0165 18.6764 17.844 19.1712 18.1209C19.8387 18.4977 20.6878 19.0835 21.2508 19.6147C21.5686 19.8735 21.6412 20.2686 21.4233 20.6863Z" fill="white"/>
|
12
|
+
</svg>
|
13
|
+
</svg>
|
14
|
+
</svg>
|
15
|
+
</g>
|
16
|
+
</svg>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconSocialVk" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 32 32">
|
4
|
+
<svg x="-16" y="-16">
|
5
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<rect width="32" height="32" rx="10" fill="#5181B8"/>
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.208 11.0241C26.3552 10.5281 26.208 10.1665 25.5008 10.1665H23.168C22.576 10.1665 22.3008 10.4801 22.1536 10.8257C22.1536 10.8257 20.9664 13.7185 19.2864 15.5969C18.7424 16.1409 18.496 16.3137 18.1984 16.3137C18.0512 16.3137 17.8368 16.1409 17.8368 15.6449V11.0241C17.8368 10.4321 17.664 10.1665 17.1712 10.1665H13.504C13.1328 10.1665 12.9088 10.4417 12.9088 10.7041C12.9088 11.2673 13.7504 11.3953 13.8368 12.9793V16.4161C13.8368 17.1681 13.6992 17.3057 13.4048 17.3057C12.6144 17.3057 10.6912 14.4001 9.5488 11.0753C9.3248 10.4289 9.1008 10.1697 8.5056 10.1697H6.1728C5.5072 10.1697 5.3728 10.4833 5.3728 10.8289C5.3728 11.4465 6.1632 14.5121 9.056 18.5665C10.9856 21.3345 13.6992 22.8353 16.1728 22.8353C17.6544 22.8353 17.84 22.5025 17.84 21.9265V19.8337C17.84 19.1681 17.9808 19.0337 18.4512 19.0337C18.7968 19.0337 19.392 19.2065 20.7744 20.5409C22.3552 22.1217 22.6176 22.8321 23.5072 22.8321H25.84C26.5056 22.8321 26.8384 22.4993 26.6464 21.8401C26.4352 21.1841 25.68 20.2337 24.6784 19.1041C24.1344 18.4609 23.3184 17.7697 23.072 17.4241C22.7264 16.9793 22.8256 16.7809 23.072 16.3873C23.0688 16.3873 25.9104 12.3841 26.208 11.0241Z" fill="white"/>
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</svg>
|
11
|
+
</g>
|
12
|
+
</svg>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconSocialWhatsapp" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 32 32">
|
4
|
+
<svg x="-16" y="-16">
|
5
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<rect width="32" height="32" rx="10" fill="#25D366"/>
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.2348 7.79964C22.2508 5.81244 19.6076 4.71804 16.7948 4.71484C10.9996 4.71484 6.27964 9.43164 6.27964 15.23C6.27964 17.0828 6.76284 18.894 7.68444 20.4876L6.19324 25.9372L11.7676 24.4748C13.3036 25.3132 15.0316 25.7548 16.7916 25.7548H16.7948C22.59 25.7548 27.3068 21.038 27.31 15.2396C27.3132 12.43 26.222 9.78684 24.2348 7.79964ZM16.798 23.9788H16.7948C15.2268 23.9788 13.6876 23.5564 12.3468 22.7596L12.0268 22.5708L8.71804 23.438L9.60124 20.2124L9.39324 19.8828C8.51964 18.4908 8.05564 16.8844 8.05564 15.23C8.05884 10.4108 11.9788 6.49084 16.8012 6.49084C19.1372 6.49084 21.3292 7.40284 22.9804 9.05404C24.6316 10.7052 25.5404 12.9036 25.5372 15.2364C25.5372 20.0588 21.614 23.9788 16.798 23.9788ZM21.5916 17.4316C21.3292 17.3004 20.0364 16.6636 19.7964 16.5772C19.5564 16.4908 19.3804 16.446 19.2044 16.7084C19.0284 16.9708 18.526 17.5628 18.3724 17.7388C18.2188 17.9148 18.0652 17.9372 17.8028 17.806C17.5404 17.6748 16.6924 17.3964 15.6908 16.5004C14.91 15.8028 14.382 14.942 14.2284 14.6796C14.0748 14.4172 14.2124 14.2732 14.3436 14.142C14.462 14.0236 14.606 13.8348 14.7372 13.6812C14.8684 13.5276 14.9132 13.4188 14.9996 13.2428C15.086 13.0668 15.0444 12.9132 14.9772 12.782C14.91 12.6508 14.3852 11.358 14.1676 10.83C13.9532 10.318 13.7388 10.3884 13.5756 10.3788C13.422 10.3724 13.246 10.3692 13.0732 10.3692C12.8972 10.3692 12.6124 10.4364 12.3724 10.6988C12.1324 10.9612 11.454 11.598 11.454 12.8908C11.454 14.1836 12.3948 15.4348 12.526 15.6076C12.6572 15.7836 14.3788 18.4364 17.0156 19.5756C17.6428 19.8476 18.1324 20.0076 18.5132 20.1292C19.1436 20.3308 19.7164 20.302 20.1676 20.2348C20.6732 20.158 21.7228 19.598 21.9404 18.9868C22.158 18.3724 22.158 17.8476 22.094 17.7388C22.03 17.63 21.854 17.566 21.5916 17.4316Z" fill="white"/>
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</svg>
|
11
|
+
</g>
|
12
|
+
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconStar" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 22 22">
|
4
|
+
<svg x="-11" y="-11">
|
5
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path d="M20.9665 8.56167C20.9034 8.37048 20.7887 8.20254 20.6362 8.07823C20.4838 7.95392 20.3002 7.87858 20.1076 7.86133L14.4254 6.99375L11.8788 1.58965C11.797 1.41293 11.6694 1.26388 11.5104 1.1596C11.3515 1.05531 11.1676 1 10.98 1C10.7924 1 10.6086 1.05531 10.4497 1.1596C10.2907 1.26388 10.163 1.41293 10.0813 1.58965L7.53474 6.9833L1.85247 7.86133C1.66764 7.88883 1.49388 7.97 1.3509 8.09564C1.20792 8.22128 1.10145 8.38635 1.04357 8.57212C0.990588 8.75366 0.985833 8.94688 1.02982 9.13103C1.0738 9.31518 1.16486 9.48332 1.29323 9.6174L5.41762 13.7985L4.41898 19.7357C4.37866 19.9327 4.39356 20.1376 4.4619 20.3259C4.53024 20.5142 4.6491 20.6778 4.80418 20.7971C4.95926 20.9164 5.14396 20.9862 5.33606 20.9981C5.52815 21.0101 5.71947 20.9638 5.88698 20.8646L10.98 18.0737L16.0731 20.8646C16.2133 20.9474 16.3716 20.9906 16.5325 20.9901C16.744 20.9908 16.9503 20.9213 17.1217 20.7915C17.2766 20.6753 17.3966 20.5151 17.4673 20.3299C17.5381 20.1447 17.5568 19.9421 17.5211 19.7462L16.5225 13.809L20.6469 9.62786C20.7911 9.5 20.8976 9.33194 20.9542 9.14321C21.0108 8.95448 21.015 8.75283 20.9665 8.56167ZM14.8248 12.7428C14.7092 12.8603 14.6225 13.0053 14.5721 13.1655C14.5217 13.3257 14.509 13.4962 14.5352 13.6626L15.2542 18.0528L11.4993 15.9623C11.3534 15.8867 11.1928 15.8474 11.03 15.8474C10.8672 15.8474 10.7065 15.8867 10.5606 15.9623L6.80573 18.0528L7.52475 13.6626C7.55095 13.4962 7.5383 13.3257 7.48787 13.1655C7.43744 13.0053 7.35073 12.8603 7.23514 12.7428L4.23922 9.60695L8.4435 8.96933C8.60528 8.94578 8.75907 8.88105 8.89139 8.78082C9.02371 8.68059 9.13052 8.54791 9.20247 8.39443L10.98 4.41191L12.8575 8.40488C12.9294 8.55837 13.0362 8.69104 13.1686 8.79127C13.3009 8.8915 13.4547 8.95623 13.6165 8.97978L17.8207 9.6174L14.8248 12.7428Z" fill="currentColor" />
|
7
|
+
</svg>
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</g>
|
11
|
+
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconSuitcase" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 22 22">
|
4
|
+
<svg x="-11" y="-11">
|
5
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path d="M20 5H16V4C16 3.20435 15.6839 2.44129 15.1213 1.87868C14.5587 1.31607 13.7956 1 13 1H9C8.20435 1 7.44129 1.31607 6.87868 1.87868C6.31607 2.44129 6 3.20435 6 4V5H2C1.73478 5 1.48043 5.10536 1.29289 5.29289C1.10536 5.48043 1 5.73478 1 6V10C1.00225 10.4194 1.09241 10.8336 1.26465 11.216C1.4369 11.5984 1.6874 11.9404 2 12.22V18C2 18.7956 2.31607 19.5587 2.87868 20.1213C3.44129 20.6839 4.20435 21 5 21H17C17.7956 21 18.5587 20.6839 19.1213 20.1213C19.6839 19.5587 20 18.7956 20 18V12.22C20.3126 11.9404 20.5631 11.5984 20.7353 11.216C20.9076 10.8336 20.9977 10.4194 21 10V6C21 5.73478 20.8946 5.48043 20.7071 5.29289C20.5196 5.10536 20.2652 5 20 5ZM8 4C8 3.73478 8.10536 3.48043 8.29289 3.29289C8.48043 3.10536 8.73478 3 9 3H13C13.2652 3 13.5196 3.10536 13.7071 3.29289C13.8946 3.48043 14 3.73478 14 4V5H8V4ZM18 18C18 18.2652 17.8946 18.5196 17.7071 18.7071C17.5196 18.8946 17.2652 19 17 19H5C4.73478 19 4.48043 18.8946 4.29289 18.7071C4.10536 18.5196 4 18.2652 4 18V13H6V14C6 14.2652 6.10536 14.5196 6.29289 14.7071C6.48043 14.8946 6.73478 15 7 15C7.26522 15 7.51957 14.8946 7.70711 14.7071C7.89464 14.5196 8 14.2652 8 14V13H14V14C14 14.2652 14.1054 14.5196 14.2929 14.7071C14.4804 14.8946 14.7348 15 15 15C15.2652 15 15.5196 14.8946 15.7071 14.7071C15.8946 14.5196 16 14.2652 16 14V13H18V18ZM19 10C19 10.2652 18.8946 10.5196 18.7071 10.7071C18.5196 10.8946 18.2652 11 18 11H16V10C16 9.73478 15.8946 9.48043 15.7071 9.29289C15.5196 9.10536 15.2652 9 15 9C14.7348 9 14.4804 9.10536 14.2929 9.29289C14.1054 9.48043 14 9.73478 14 10V11H8V10C8 9.73478 7.89464 9.48043 7.70711 9.29289C7.51957 9.10536 7.26522 9 7 9C6.73478 9 6.48043 9.10536 6.29289 9.29289C6.10536 9.48043 6 9.73478 6 10V11H4C3.73478 11 3.48043 10.8946 3.29289 10.7071C3.10536 10.5196 3 10.2652 3 10V7H19V10Z" fill="currentColor" />
|
7
|
+
</svg>
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</g>
|
11
|
+
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconTasks" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 22 22">
|
4
|
+
<svg x="-11" y="-11">
|
5
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path d="M12 13H8C7.73478 13 7.48043 13.1054 7.29289 13.2929C7.10536 13.4804 7 13.7348 7 14C7 14.2652 7.10536 14.5196 7.29289 14.7071C7.48043 14.8946 7.73478 15 8 15H12C12.2652 15 12.5196 14.8946 12.7071 14.7071C12.8946 14.5196 13 14.2652 13 14C13 13.7348 12.8946 13.4804 12.7071 13.2929C12.5196 13.1054 12.2652 13 12 13ZM16 3H14.82C14.6137 2.41645 14.2319 1.911 13.7271 1.55294C13.2222 1.19488 12.6189 1.00174 12 1H10C9.38106 1.00174 8.7778 1.19488 8.27293 1.55294C7.76807 1.911 7.38631 2.41645 7.18 3H6C5.20435 3 4.44129 3.31607 3.87868 3.87868C3.31607 4.44129 3 5.20435 3 6V18C3 18.7956 3.31607 19.5587 3.87868 20.1213C4.44129 20.6839 5.20435 21 6 21H16C16.7956 21 17.5587 20.6839 18.1213 20.1213C18.6839 19.5587 19 18.7956 19 18V6C19 5.20435 18.6839 4.44129 18.1213 3.87868C17.5587 3.31607 16.7956 3 16 3ZM9 4C9 3.73478 9.10536 3.48043 9.29289 3.29289C9.48043 3.10536 9.73478 3 10 3H12C12.2652 3 12.5196 3.10536 12.7071 3.29289C12.8946 3.48043 13 3.73478 13 4V5H9V4ZM17 18C17 18.2652 16.8946 18.5196 16.7071 18.7071C16.5196 18.8946 16.2652 19 16 19H6C5.73478 19 5.48043 18.8946 5.29289 18.7071C5.10536 18.5196 5 18.2652 5 18V6C5 5.73478 5.10536 5.48043 5.29289 5.29289C5.48043 5.10536 5.73478 5 6 5H7V6C7 6.26522 7.10536 6.51957 7.29289 6.70711C7.48043 6.89464 7.73478 7 8 7H14C14.2652 7 14.5196 6.89464 14.7071 6.70711C14.8946 6.51957 15 6.26522 15 6V5H16C16.2652 5 16.5196 5.10536 16.7071 5.29289C16.8946 5.48043 17 5.73478 17 6V18ZM14 9H8C7.73478 9 7.48043 9.10536 7.29289 9.29289C7.10536 9.48043 7 9.73478 7 10C7 10.2652 7.10536 10.5196 7.29289 10.7071C7.48043 10.8946 7.73478 11 8 11H14C14.2652 11 14.5196 10.8946 14.7071 10.7071C14.8946 10.5196 15 10.2652 15 10C15 9.73478 14.8946 9.48043 14.7071 9.29289C14.5196 9.10536 14.2652 9 14 9Z" fill="currentColor" />
|
7
|
+
</svg>
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</g>
|
11
|
+
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconTick" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 22 22">
|
4
|
+
<svg x="-11" y="-11">
|
5
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.7071 5.29289C20.0976 5.68342 20.0976 6.31658 19.7071 6.70711L8.70711 17.7071C8.31658 18.0976 7.68342 18.0976 7.29289 17.7071L2.29289 12.7071C1.90237 12.3166 1.90237 11.6834 2.29289 11.2929C2.68342 10.9024 3.31658 10.9024 3.70711 11.2929L8 15.5858L18.2929 5.29289C18.6834 4.90237 19.3166 4.90237 19.7071 5.29289Z" fill="currentColor" />
|
7
|
+
</svg>
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</g>
|
11
|
+
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" overflow="visible">
|
2
|
+
<g id="scIconTop" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<svg x="50%" y="50%" width="1.375em" height="1.375em" overflow="visible" viewBox="0 0 22 22">
|
4
|
+
<svg x="-11" y="-11">
|
5
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path d="M17 9H13V2C13 1.73478 12.8946 1.48043 12.7071 1.29289C12.5196 1.10536 12.2652 1 12 1H7C6.73478 1 6.48043 1.10536 6.29289 1.29289C6.10536 1.48043 6 1.73478 6 2V7H2C1.73478 7 1.48043 7.10536 1.29289 7.29289C1.10536 7.48043 1 7.73478 1 8V20C1 20.2652 1.10536 20.5196 1.29289 20.7071C1.48043 20.8946 1.73478 21 2 21H17C17.2652 21 17.5196 20.8946 17.7071 20.7071C17.8946 20.5196 18 20.2652 18 20V10C18 9.73478 17.8946 9.48043 17.7071 9.29289C17.5196 9.10536 17.2652 9 17 9ZM6 19H3V9H6V19ZM11 19H8V3H11V19ZM16 19H13V11H16V19ZM20 3H19V2C19 1.73478 18.8946 1.48043 18.7071 1.29289C18.5196 1.10536 18.2652 1 18 1C17.7348 1 17.4804 1.10536 17.2929 1.29289C17.1054 1.48043 17 1.73478 17 2V3H16C15.7348 3 15.4804 3.10536 15.2929 3.29289C15.1054 3.48043 15 3.73478 15 4C15 4.26522 15.1054 4.51957 15.2929 4.70711C15.4804 4.89464 15.7348 5 16 5H17V6C17 6.26522 17.1054 6.51957 17.2929 6.70711C17.4804 6.89464 17.7348 7 18 7C18.2652 7 18.5196 6.89464 18.7071 6.70711C18.8946 6.51957 19 6.26522 19 6V5H20C20.2652 5 20.5196 4.89464 20.7071 4.70711C20.8946 4.51957 21 4.26522 21 4C21 3.73478 20.8946 3.48043 20.7071 3.29289C20.5196 3.10536 20.2652 3 20 3Z" fill="currentColor" />
|
7
|
+
</svg>
|
8
|
+
</svg>
|
9
|
+
</svg>
|
10
|
+
</g>
|
11
|
+
</svg>
|