@mobileaction/action-kit 1.42.7-beta.2 → 1.42.7-beta.3
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.
- package/package.json +3 -2
- package/src/Configuration.mdx +36 -0
- package/src/Introduction.mdx +36 -0
- package/src/assets/fonts/EuclidCircularABold.ttf +0 -0
- package/src/assets/fonts/EuclidCircularABold.woff +0 -0
- package/src/assets/fonts/EuclidCircularABold.woff2 +0 -0
- package/src/assets/fonts/EuclidCircularABoldItalic.ttf +0 -0
- package/src/assets/fonts/EuclidCircularAItalic.ttf +0 -0
- package/src/assets/fonts/EuclidCircularAItalic.woff +0 -0
- package/src/assets/fonts/EuclidCircularAItalic.woff2 +0 -0
- package/src/assets/fonts/EuclidCircularALight.ttf +0 -0
- package/src/assets/fonts/EuclidCircularALightItalic.ttf +0 -0
- package/src/assets/fonts/EuclidCircularAMedium.ttf +0 -0
- package/src/assets/fonts/EuclidCircularAMedium.woff +0 -0
- package/src/assets/fonts/EuclidCircularAMedium.woff2 +0 -0
- package/src/assets/fonts/EuclidCircularAMediumItalic.ttf +0 -0
- package/src/assets/fonts/EuclidCircularARegular.ttf +0 -0
- package/src/assets/fonts/EuclidCircularARegular.woff +0 -0
- package/src/assets/fonts/EuclidCircularARegular.woff2 +0 -0
- package/src/assets/fonts/EuclidCircularASemiBold.ttf +0 -0
- package/src/assets/fonts/EuclidCircularASemiBold.woff +0 -0
- package/src/assets/fonts/EuclidCircularASemiBold.woff2 +0 -0
- package/src/assets/fonts/EuclidCircularASemiBoldItalic.ttf +0 -0
- package/src/assets/fonts.scss +84 -0
- package/src/assets/typography-classes.css +295 -0
- package/src/assets/typography.css +412 -0
- package/src/components/alert/alert.test.ts +36 -0
- package/src/components/alert/index.vue +72 -0
- package/src/components/alert/stories/blue.stories.ts +63 -0
- package/src/components/alert/stories/constants.ts +60 -0
- package/src/components/alert/stories/dark.stories.ts +71 -0
- package/src/components/alert/stories/green.stories.ts +41 -0
- package/src/components/alert/stories/orange.stories.ts +41 -0
- package/src/components/alert/stories/red.stories.ts +41 -0
- package/src/components/alert/styles.scss +125 -0
- package/src/components/alert/types.ts +15 -0
- package/src/components/animation/index.vue +93 -0
- package/src/components/animation/stories/animation.stories.ts +31 -0
- package/src/components/animation/stories/constants.ts +46 -0
- package/src/components/animation/types.ts +13 -0
- package/src/components/app-icon/assets/styles.scss +229 -0
- package/src/components/app-icon/index.vue +181 -0
- package/src/components/app-icon/stories/constants.ts +46 -0
- package/src/components/app-icon/stories/default.stories.ts +78 -0
- package/src/components/app-icon/types.ts +16 -0
- package/src/components/app-track-button/assets/styles.scss +76 -0
- package/src/components/app-track-button/index.vue +98 -0
- package/src/components/app-track-button/stories/constants.ts +47 -0
- package/src/components/app-track-button/stories/default.stories.ts +64 -0
- package/src/components/avatar/avatar.test.ts +47 -0
- package/src/components/avatar/index.vue +100 -0
- package/src/components/avatar/stories/constants.ts +45 -0
- package/src/components/avatar/stories/default.stories.ts +20 -0
- package/src/components/avatar/styles.scss +116 -0
- package/src/components/avatar/types.ts +24 -0
- package/src/components/badge/badge.test.ts +97 -0
- package/src/components/badge/index.vue +52 -0
- package/src/components/badge/stories/basic.stories.ts +54 -0
- package/src/components/badge/stories/blue.stories.ts +60 -0
- package/src/components/badge/stories/constants.ts +81 -0
- package/src/components/badge/stories/dark.stories.ts +54 -0
- package/src/components/badge/stories/green.stories.ts +59 -0
- package/src/components/badge/stories/orange.stories.ts +59 -0
- package/src/components/badge/stories/pink.stories.ts +59 -0
- package/src/components/badge/stories/purple.stories.ts +59 -0
- package/src/components/badge/stories/red.stories.ts +58 -0
- package/src/components/badge/stories/status-example.mdx +14 -0
- package/src/components/badge/stories/status.stories.ts +17 -0
- package/src/components/badge/stories/teal.stories.ts +58 -0
- package/src/components/badge/stories/yellow.stories.ts +59 -0
- package/src/components/badge/styles.scss +198 -0
- package/src/components/badge/types.ts +43 -0
- package/src/components/button/assets/link.scss +72 -0
- package/src/components/button/assets/mixins.scss +82 -0
- package/src/components/button/assets/regular.scss +188 -0
- package/src/components/button/assets/social.scss +98 -0
- package/src/components/button/assets/styles.scss +31 -0
- package/src/components/button/button.test.ts +126 -0
- package/src/components/button/index.vue +107 -0
- package/src/components/button/link-button/index.vue +92 -0
- package/src/components/button/link-button/stories/constants.ts +67 -0
- package/src/components/button/link-button/stories/link.stories.ts +74 -0
- package/src/components/button/link-button/types.ts +15 -0
- package/src/components/button/social-button/index.vue +88 -0
- package/src/components/button/social-button/stories/constants.ts +63 -0
- package/src/components/button/social-button/stories/social.stories.ts +109 -0
- package/src/components/button/social-button/types.ts +15 -0
- package/src/components/button/stories/constants.ts +89 -0
- package/src/components/button/stories/filled.stories.ts +113 -0
- package/src/components/button/stories/ghost.stories.ts +113 -0
- package/src/components/button/stories/lighter.stories.ts +113 -0
- package/src/components/button/stories/stroke.stories.ts +113 -0
- package/src/components/button/types.ts +52 -0
- package/src/components/button/utils.ts +28 -0
- package/src/components/card/assets/styles.scss +121 -0
- package/src/components/card/index.vue +240 -0
- package/src/components/card/stories/constants.ts +111 -0
- package/src/components/card/stories/default.stories.ts +130 -0
- package/src/components/card/stories/examples.mdx +37 -0
- package/src/components/card/stories/footer.stories.ts +122 -0
- package/src/components/card/stories/header.stories.ts +129 -0
- package/src/components/card/types.ts +21 -0
- package/src/components/cascader/assets/styles.scss +162 -0
- package/src/components/cascader/cascader.test.ts +163 -0
- package/src/components/cascader/components/option.vue +138 -0
- package/src/components/cascader/components/options.vue +97 -0
- package/src/components/cascader/composables/useCascaderOverflow.ts +35 -0
- package/src/components/cascader/composables/usePopoverAttributeWatcher.ts +50 -0
- package/src/components/cascader/index.vue +215 -0
- package/src/components/cascader/stories/constants.ts +82 -0
- package/src/components/cascader/stories/default.stories.ts +161 -0
- package/src/components/cascader/stories/options.json +80 -0
- package/src/components/cascader/types.ts +17 -0
- package/src/components/cascader/utils/index.test.ts +56 -0
- package/src/components/cascader/utils/index.ts +66 -0
- package/src/components/checkbox/group.vue +64 -0
- package/src/components/checkbox/index.vue +58 -0
- package/src/components/checkbox/stories/constants.ts +134 -0
- package/src/components/checkbox/stories/default.stories.ts +26 -0
- package/src/components/checkbox/stories/group.stories.ts +20 -0
- package/src/components/checkbox/stories/indeterminate.stories.ts +26 -0
- package/src/components/checkbox/styles.scss +221 -0
- package/src/components/checkbox/types.ts +6 -0
- package/src/components/collapse/assets/styles.scss +25 -0
- package/src/components/collapse/collapse.test.ts +86 -0
- package/src/components/collapse/components/CollapseContent.vue +11 -0
- package/src/components/collapse/components/CollapseHeader.vue +49 -0
- package/src/components/collapse/components/CollapseItem.vue +62 -0
- package/src/components/collapse/index.vue +119 -0
- package/src/components/collapse/stories/constants.ts +141 -0
- package/src/components/collapse/stories/default.stories.ts +42 -0
- package/src/components/collapse/types.ts +29 -0
- package/src/components/content-scroller/assets/styles.scss +111 -0
- package/src/components/content-scroller/index.vue +102 -0
- package/src/components/content-scroller/stories/constants.ts +47 -0
- package/src/components/content-scroller/stories/default.stories.ts +16 -0
- package/src/components/content-scroller/types.ts +13 -0
- package/src/components/country-radio/assets/styles.scss +30 -0
- package/src/components/country-radio/index.vue +66 -0
- package/src/components/country-radio/stories/constants.ts +51 -0
- package/src/components/country-radio/stories/default.stories.ts +26 -0
- package/src/components/country-radio/stories/examples.mdx +29 -0
- package/src/components/country-select/assets/styles.scss +48 -0
- package/src/components/country-select/components/multiCountrySelect.vue +135 -0
- package/src/components/country-select/components/singleCountrySelect.vue +96 -0
- package/src/components/country-select/index.vue +87 -0
- package/src/components/country-select/stories/constants.ts +46 -0
- package/src/components/country-select/stories/countries.json +342 -0
- package/src/components/country-select/stories/default.stories.ts +69 -0
- package/src/components/country-select/types.ts +5 -0
- package/src/components/date-picker/assets/animations.scss +107 -0
- package/src/components/date-picker/assets/styles.scss +872 -0
- package/src/components/date-picker/index.vue +340 -0
- package/src/components/date-picker/stories/constants.ts +95 -0
- package/src/components/date-picker/stories/default.stories.ts +108 -0
- package/src/components/date-picker/stories/range.stories.ts +137 -0
- package/src/components/date-picker/types.ts +19 -0
- package/src/components/date-picker-2/assets/calendar.scss +43 -0
- package/src/components/date-picker-2/assets/datepicker-menu.scss +242 -0
- package/src/components/date-picker-2/assets/input.scss +130 -0
- package/src/components/date-picker-2/assets/quarter-picker.scss +44 -0
- package/src/components/date-picker-2/assets/selection-overlay.scss +124 -0
- package/src/components/date-picker-2/assets/styles.scss +6 -0
- package/src/components/date-picker-2/assets/transitions.scss +61 -0
- package/src/components/date-picker-2/components/calendarSelect.vue +49 -0
- package/src/components/date-picker-2/composables/useDatePickerFormat.ts +80 -0
- package/src/components/date-picker-2/composables/utils.ts +49 -0
- package/src/components/date-picker-2/date-picker.test.ts +340 -0
- package/src/components/date-picker-2/index.vue +302 -0
- package/src/components/date-picker-2/stories/constants.ts +116 -0
- package/src/components/date-picker-2/stories/default.stories.ts +172 -0
- package/src/components/date-picker-2/stories/range.stories.ts +232 -0
- package/src/components/date-picker-2/types.ts +256 -0
- package/src/components/drawer/assets/styles.scss +163 -0
- package/src/components/drawer/drawer.test.ts +188 -0
- package/src/components/drawer/index.vue +312 -0
- package/src/components/drawer/stories/drawer.stories.ts +489 -0
- package/src/components/dropdown/assets/animations.scss +107 -0
- package/src/components/dropdown/assets/styles.scss +84 -0
- package/src/components/dropdown/index.vue +66 -0
- package/src/components/dropdown/stories/constants.ts +108 -0
- package/src/components/dropdown/stories/default.stories.ts +44 -0
- package/src/components/dropdown/types.ts +17 -0
- package/src/components/ellipsis/assets/styles.scss +7 -0
- package/src/components/ellipsis/index.vue +141 -0
- package/src/components/ellipsis/stories/constants.ts +34 -0
- package/src/components/ellipsis/stories/default.stories.ts +25 -0
- package/src/components/empty/assets/styles.scss +76 -0
- package/src/components/empty/index.vue +54 -0
- package/src/components/empty/stories/animation.stories.ts +35 -0
- package/src/components/empty/stories/constants.ts +40 -0
- package/src/components/empty/stories/default.stories.ts +19 -0
- package/src/components/empty/types.ts +24 -0
- package/src/components/form/assets/styles.scss +486 -0
- package/src/components/form/components/nonHSFormsIgnore.vue +15 -0
- package/src/components/form/index.vue +51 -0
- package/src/components/form/stories/constants.ts +20 -0
- package/src/components/form/stories/default.stories.ts +240 -0
- package/src/components/form/types.ts +7 -0
- package/src/components/form-item/index.vue +20 -0
- package/src/components/icon/components/flagIcon.vue +84 -0
- package/src/components/icon/components/maIcon.vue +47 -0
- package/src/components/icon/composables/useUniqueIds.ts +62 -0
- package/src/components/icon/flags.json +230 -0
- package/src/components/icon/icon.test.ts +89 -0
- package/src/components/icon/icons/403.svg +29 -0
- package/src/components/icon/icons/404.svg +28 -0
- package/src/components/icon/icons/500.svg +29 -0
- package/src/components/icon/icons/activity-bulk.svg +8 -0
- package/src/components/icon/icons/add-app.svg +81 -0
- package/src/components/icon/icons/add-bold.svg +3 -0
- package/src/components/icon/icons/add-bulk.svg +8 -0
- package/src/components/icon/icons/add-button.svg +5 -0
- package/src/components/icon/icons/add-circle-bold.svg +3 -0
- package/src/components/icon/icons/add-circle-bulk.svg +8 -0
- package/src/components/icon/icons/add-circle.svg +8 -0
- package/src/components/icon/icons/add-square-bold.svg +3 -0
- package/src/components/icon/icons/add-square.svg +5 -0
- package/src/components/icon/icons/add.svg +4 -0
- package/src/components/icon/icons/aim-outlined.svg +1 -0
- package/src/components/icon/icons/airplane-bulk.svg +4 -0
- package/src/components/icon/icons/align-left-bold.svg +11 -0
- package/src/components/icon/icons/align-left-bulk.svg +11 -0
- package/src/components/icon/icons/align-left.svg +10 -0
- package/src/components/icon/icons/android-storefront.svg +8 -0
- package/src/components/icon/icons/android.svg +6 -0
- package/src/components/icon/icons/angle-double-right.svg +5 -0
- package/src/components/icon/icons/app-store-colorful.svg +21 -0
- package/src/components/icon/icons/app-store.svg +3 -0
- package/src/components/icon/icons/app.svg +5 -0
- package/src/components/icon/icons/apple-bold.svg +5 -0
- package/src/components/icon/icons/apple-storefront.svg +5 -0
- package/src/components/icon/icons/apple-vision-pro.svg +16 -0
- package/src/components/icon/icons/apple.svg +3 -0
- package/src/components/icon/icons/arcade-bulk.svg +9 -0
- package/src/components/icon/icons/area-chart-outlined.svg +3 -0
- package/src/components/icon/icons/arrow-down-bold.svg +3 -0
- package/src/components/icon/icons/arrow-down-circle-bold.svg +3 -0
- package/src/components/icon/icons/arrow-down-circle.svg +4 -0
- package/src/components/icon/icons/arrow-down.svg +4 -0
- package/src/components/icon/icons/arrow-left-bold.svg +3 -0
- package/src/components/icon/icons/arrow-left-bulk.svg +7 -0
- package/src/components/icon/icons/arrow-left-circle-bold.svg +3 -0
- package/src/components/icon/icons/arrow-left-circle.svg +4 -0
- package/src/components/icon/icons/arrow-left-down-line.svg +3 -0
- package/src/components/icon/icons/arrow-left.svg +4 -0
- package/src/components/icon/icons/arrow-right-bold.svg +3 -0
- package/src/components/icon/icons/arrow-right-bulk.svg +7 -0
- package/src/components/icon/icons/arrow-right-circle-bold.svg +3 -0
- package/src/components/icon/icons/arrow-right-circle.svg +4 -0
- package/src/components/icon/icons/arrow-right-up-line.svg +3 -0
- package/src/components/icon/icons/arrow-right.svg +4 -0
- package/src/components/icon/icons/arrow-up-bold.svg +3 -0
- package/src/components/icon/icons/arrow-up-circle-bold.svg +3 -0
- package/src/components/icon/icons/arrow-up-circle.svg +4 -0
- package/src/components/icon/icons/arrow-up.svg +4 -0
- package/src/components/icon/icons/asterisk.svg +3 -0
- package/src/components/icon/icons/bag-bulk.svg +4 -0
- package/src/components/icon/icons/bahai.svg +3 -0
- package/src/components/icon/icons/book-bulk.svg +6 -0
- package/src/components/icon/icons/book-closed-bulk.svg +6 -0
- package/src/components/icon/icons/book-saved-bulk.svg +5 -0
- package/src/components/icon/icons/book-square-bulk.svg +5 -0
- package/src/components/icon/icons/bookmark-bold.svg +4 -0
- package/src/components/icon/icons/bookmark-bulk.svg +4 -0
- package/src/components/icon/icons/bookmark.svg +6 -0
- package/src/components/icon/icons/box-empty.svg +12 -0
- package/src/components/icon/icons/brain.svg +3 -0
- package/src/components/icon/icons/broom-bold.svg +4 -0
- package/src/components/icon/icons/broom.svg +8 -0
- package/src/components/icon/icons/brush-bulk.svg +5 -0
- package/src/components/icon/icons/bubble-bulk.svg +5 -0
- package/src/components/icon/icons/bucket-bulk.svg +6 -0
- package/src/components/icon/icons/bullhorn.svg +3 -0
- package/src/components/icon/icons/bus-bulk.svg +7 -0
- package/src/components/icon/icons/buy-crypto.svg +11 -0
- package/src/components/icon/icons/calendar-alt.svg +3 -0
- package/src/components/icon/icons/calendar-bold.svg +4 -0
- package/src/components/icon/icons/calendar-bulk.svg +10 -0
- package/src/components/icon/icons/calendar.svg +12 -0
- package/src/components/icon/icons/camera-bulk.svg +5 -0
- package/src/components/icon/icons/car-bulk.svg +6 -0
- package/src/components/icon/icons/card-bold.svg +4 -0
- package/src/components/icon/icons/card-bulk.svg +14 -0
- package/src/components/icon/icons/card.svg +6 -0
- package/src/components/icon/icons/caret-down-bold.svg +3 -0
- package/src/components/icon/icons/caret-down.svg +3 -0
- package/src/components/icon/icons/caret-left-bold.svg +3 -0
- package/src/components/icon/icons/caret-left.svg +3 -0
- package/src/components/icon/icons/caret-right-bold.svg +3 -0
- package/src/components/icon/icons/caret-right.svg +3 -0
- package/src/components/icon/icons/caret-up-bold.svg +3 -0
- package/src/components/icon/icons/caret-up.svg +3 -0
- package/src/components/icon/icons/casino-bulk.svg +4 -0
- package/src/components/icon/icons/category-bold.svg +14 -0
- package/src/components/icon/icons/category.svg +15 -0
- package/src/components/icon/icons/certificate.svg +3 -0
- package/src/components/icon/icons/chart-2-bulk.svg +11 -0
- package/src/components/icon/icons/chart-2.svg +5 -0
- package/src/components/icon/icons/chart-area.svg +3 -0
- package/src/components/icon/icons/chart-bar.svg +3 -0
- package/src/components/icon/icons/chart-bold.svg +6 -0
- package/src/components/icon/icons/chart-bulk.svg +12 -0
- package/src/components/icon/icons/chart.svg +6 -0
- package/src/components/icon/icons/check-line.svg +3 -0
- package/src/components/icon/icons/check.svg +3 -0
- package/src/components/icon/icons/checkered-flag.svg +3 -0
- package/src/components/icon/icons/chef-bulk.svg +4 -0
- package/src/components/icon/icons/chess-bulk.svg +8 -0
- package/src/components/icon/icons/chevron-down.svg +4 -0
- package/src/components/icon/icons/chevron-left.svg +4 -0
- package/src/components/icon/icons/chevron-right.svg +4 -0
- package/src/components/icon/icons/chevron-up.svg +4 -0
- package/src/components/icon/icons/chevrons-down.svg +4 -0
- package/src/components/icon/icons/chevrons-left.svg +4 -0
- package/src/components/icon/icons/chevrons-right.svg +4 -0
- package/src/components/icon/icons/chevrons-up.svg +4 -0
- package/src/components/icon/icons/circle-exclamation.svg +3 -0
- package/src/components/icon/icons/circle-notch.svg +3 -0
- package/src/components/icon/icons/circle.svg +3 -0
- package/src/components/icon/icons/clipboard-bold.svg +8 -0
- package/src/components/icon/icons/clipboard-bulk.svg +11 -0
- package/src/components/icon/icons/clipboard-close-bulk.svg +5 -0
- package/src/components/icon/icons/clipboard-close.svg +6 -0
- package/src/components/icon/icons/clipboard-tick-bulk.svg +5 -0
- package/src/components/icon/icons/clipboard-tick.svg +5 -0
- package/src/components/icon/icons/clipboard.svg +11 -0
- package/src/components/icon/icons/clock-bold.svg +3 -0
- package/src/components/icon/icons/clock-bulk.svg +4 -0
- package/src/components/icon/icons/clock.svg +4 -0
- package/src/components/icon/icons/clone.svg +3 -0
- package/src/components/icon/icons/close-circle-bold.svg +3 -0
- package/src/components/icon/icons/close-circle-bulk.svg +8 -0
- package/src/components/icon/icons/close-circle.svg +5 -0
- package/src/components/icon/icons/close-square-bold.svg +3 -0
- package/src/components/icon/icons/close-square.svg +5 -0
- package/src/components/icon/icons/close.svg +1 -0
- package/src/components/icon/icons/cloud-sunny-bulk.svg +4 -0
- package/src/components/icon/icons/cloud-upload.svg +3 -0
- package/src/components/icon/icons/coffee-bulk.svg +8 -0
- package/src/components/icon/icons/cogs.svg +3 -0
- package/src/components/icon/icons/color-filter.svg +11 -0
- package/src/components/icon/icons/columns-bold.svg +4 -0
- package/src/components/icon/icons/columns.svg +4 -0
- package/src/components/icon/icons/compass-bulk.svg +4 -0
- package/src/components/icon/icons/compress.svg +3 -0
- package/src/components/icon/icons/contains-linear.svg +7 -0
- package/src/components/icon/icons/control.svg +11 -0
- package/src/components/icon/icons/convert-shape-bold.svg +14 -0
- package/src/components/icon/icons/convert-shape-bulk.svg +14 -0
- package/src/components/icon/icons/convert-shape.svg +12 -0
- package/src/components/icon/icons/copy-bold.svg +4 -0
- package/src/components/icon/icons/copy-bulk.svg +8 -0
- package/src/components/icon/icons/copy.svg +4 -0
- package/src/components/icon/icons/crosshairs.svg +3 -0
- package/src/components/icon/icons/crown-bold.svg +3 -0
- package/src/components/icon/icons/crown.svg +4 -0
- package/src/components/icon/icons/cup-bold.svg +8 -0
- package/src/components/icon/icons/cup-bulk.svg +17 -0
- package/src/components/icon/icons/cup.svg +18 -0
- package/src/components/icon/icons/danger-bold.svg +3 -0
- package/src/components/icon/icons/danger-bulk.svg +5 -0
- package/src/components/icon/icons/danger.svg +5 -0
- package/src/components/icon/icons/dashboard.svg +3 -0
- package/src/components/icon/icons/data-bold.svg +17 -0
- package/src/components/icon/icons/data-bulk.svg +17 -0
- package/src/components/icon/icons/data.svg +18 -0
- package/src/components/icon/icons/devices.svg +11 -0
- package/src/components/icon/icons/diagram.svg +4 -0
- package/src/components/icon/icons/direct-inbox-bold.svg +10 -0
- package/src/components/icon/icons/direct-inbox-bulk.svg +11 -0
- package/src/components/icon/icons/direct-inbox.svg +12 -0
- package/src/components/icon/icons/direct-normal-bulk.svg +4 -0
- package/src/components/icon/icons/direct-normal.svg +4 -0
- package/src/components/icon/icons/dislike-bold.svg +4 -0
- package/src/components/icon/icons/dislike.svg +4 -0
- package/src/components/icon/icons/document-bold.svg +4 -0
- package/src/components/icon/icons/document-bulk.svg +14 -0
- package/src/components/icon/icons/document.svg +6 -0
- package/src/components/icon/icons/dollar-circle.svg +5 -0
- package/src/components/icon/icons/dot.svg +3 -0
- package/src/components/icon/icons/download-bold.svg +8 -0
- package/src/components/icon/icons/download-bulk.svg +11 -0
- package/src/components/icon/icons/download.svg +6 -0
- package/src/components/icon/icons/drag.svg +8 -0
- package/src/components/icon/icons/driving-bulk.svg +10 -0
- package/src/components/icon/icons/edit-2-bold.svg +11 -0
- package/src/components/icon/icons/edit-2-bulk.svg +5 -0
- package/src/components/icon/icons/edit-2.svg +5 -0
- package/src/components/icon/icons/edit-bold.svg +3 -0
- package/src/components/icon/icons/edit.svg +5 -0
- package/src/components/icon/icons/element-2-bulk.svg +6 -0
- package/src/components/icon/icons/element-3-bulk.svg +5 -0
- package/src/components/icon/icons/element-bulk.svg +6 -0
- package/src/components/icon/icons/element-plus-bold.svg +14 -0
- package/src/components/icon/icons/element-plus.svg +13 -0
- package/src/components/icon/icons/ellipsis-horizontal.svg +3 -0
- package/src/components/icon/icons/ellipsis-vertical.svg +3 -0
- package/src/components/icon/icons/empty-table.svg +31 -0
- package/src/components/icon/icons/equal.svg +4 -0
- package/src/components/icon/icons/expand-left-line.svg +5 -0
- package/src/components/icon/icons/expand-right-line.svg +5 -0
- package/src/components/icon/icons/expand.svg +6 -0
- package/src/components/icon/icons/export-2-bold.svg +8 -0
- package/src/components/icon/icons/export-2-bulk.svg +8 -0
- package/src/components/icon/icons/export-2.svg +9 -0
- package/src/components/icon/icons/export-bold.svg +3 -0
- package/src/components/icon/icons/export-bulk.svg +4 -0
- package/src/components/icon/icons/export.svg +5 -0
- package/src/components/icon/icons/eye-bold.svg +4 -0
- package/src/components/icon/icons/eye-bulk.svg +8 -0
- package/src/components/icon/icons/eye-slash-bold.svg +7 -0
- package/src/components/icon/icons/eye-slash.svg +8 -0
- package/src/components/icon/icons/eye.svg +4 -0
- package/src/components/icon/icons/facebook.svg +4 -0
- package/src/components/icon/icons/fatrows-bold.svg +8 -0
- package/src/components/icon/icons/fatrows-bulk.svg +8 -0
- package/src/components/icon/icons/fatrows.svg +8 -0
- package/src/components/icon/icons/favorite-chart-bold.svg +4 -0
- package/src/components/icon/icons/favorite-chart-bulk.svg +5 -0
- package/src/components/icon/icons/favorite-chart.svg +5 -0
- package/src/components/icon/icons/file-pdf.svg +3 -0
- package/src/components/icon/icons/filled-flag.svg +3 -0
- package/src/components/icon/icons/filter-bold.svg +4 -0
- package/src/components/icon/icons/filter-bulk.svg +8 -0
- package/src/components/icon/icons/filter.svg +4 -0
- package/src/components/icon/icons/flag.svg +4 -0
- package/src/components/icon/icons/flash-circle-bold.svg +5 -0
- package/src/components/icon/icons/flash-circle-bulk.svg +8 -0
- package/src/components/icon/icons/flash-circle.svg +10 -0
- package/src/components/icon/icons/flash.svg +5 -0
- package/src/components/icon/icons/folder-open-bold.svg +4 -0
- package/src/components/icon/icons/folder-open.svg +5 -0
- package/src/components/icon/icons/folder.svg +5 -0
- package/src/components/icon/icons/font.svg +3 -0
- package/src/components/icon/icons/gallery-bulk.svg +5 -0
- package/src/components/icon/icons/game-bulk.svg +9 -0
- package/src/components/icon/icons/glass-bold.svg +8 -0
- package/src/components/icon/icons/glass-bulk.svg +8 -0
- package/src/components/icon/icons/glass.svg +8 -0
- package/src/components/icon/icons/global.svg +7 -0
- package/src/components/icon/icons/google-colored.svg +12 -0
- package/src/components/icon/icons/google.svg +6 -0
- package/src/components/icon/icons/gps-linear.svg +8 -0
- package/src/components/icon/icons/graduation-cap-bold.svg +4 -0
- package/src/components/icon/icons/graduation-cap.svg +5 -0
- package/src/components/icon/icons/graph-bold.svg +4 -0
- package/src/components/icon/icons/graph.svg +4 -0
- package/src/components/icon/icons/grid-2.svg +6 -0
- package/src/components/icon/icons/grid-bold.svg +6 -0
- package/src/components/icon/icons/grid-bulk.svg +14 -0
- package/src/components/icon/icons/grid.svg +6 -0
- package/src/components/icon/icons/hamburger.svg +5 -0
- package/src/components/icon/icons/headset.svg +3 -0
- package/src/components/icon/icons/health-bulk.svg +5 -0
- package/src/components/icon/icons/history.svg +3 -0
- package/src/components/icon/icons/home-bold.svg +3 -0
- package/src/components/icon/icons/home-bulk.svg +8 -0
- package/src/components/icon/icons/home.svg +4 -0
- package/src/components/icon/icons/hospital-bulk.svg +6 -0
- package/src/components/icon/icons/house-bulk.svg +8 -0
- package/src/components/icon/icons/import-bold.svg +4 -0
- package/src/components/icon/icons/import.svg +11 -0
- package/src/components/icon/icons/in-range-bold.svg +5 -0
- package/src/components/icon/icons/in-range.svg +5 -0
- package/src/components/icon/icons/indent.svg +3 -0
- package/src/components/icon/icons/info-circle-2-bold.svg +5 -0
- package/src/components/icon/icons/info-circle-2-bulk.svg +11 -0
- package/src/components/icon/icons/info-circle-2.svg +9 -0
- package/src/components/icon/icons/info-circle-bold.svg +3 -0
- package/src/components/icon/icons/info-circle.svg +8 -0
- package/src/components/icon/icons/info.svg +3 -0
- package/src/components/icon/icons/ipad.svg +4 -0
- package/src/components/icon/icons/iphone.svg +3 -0
- package/src/components/icon/icons/judge-outline.svg +6 -0
- package/src/components/icon/icons/justify-right.svg +10 -0
- package/src/components/icon/icons/key.svg +5 -0
- package/src/components/icon/icons/lamp-charge-bulk.svg +5 -0
- package/src/components/icon/icons/lamp-charge.svg +5 -0
- package/src/components/icon/icons/layer-bold.svg +5 -0
- package/src/components/icon/icons/layer-bulk.svg +11 -0
- package/src/components/icon/icons/layer.svg +5 -0
- package/src/components/icon/icons/level-linear.svg +5 -0
- package/src/components/icon/icons/like-bold.svg +4 -0
- package/src/components/icon/icons/like.svg +4 -0
- package/src/components/icon/icons/link.svg +4 -0
- package/src/components/icon/icons/linkedin.svg +5 -0
- package/src/components/icon/icons/list.svg +3 -0
- package/src/components/icon/icons/loader.svg +10 -0
- package/src/components/icon/icons/loading.svg +3 -0
- package/src/components/icon/icons/location-bulk.svg +4 -0
- package/src/components/icon/icons/location.svg +8 -0
- package/src/components/icon/icons/lock-bold.svg +4 -0
- package/src/components/icon/icons/lock-bulk.svg +11 -0
- package/src/components/icon/icons/lock-slash-bulk.svg +7 -0
- package/src/components/icon/icons/lock-slash.svg +6 -0
- package/src/components/icon/icons/lock.svg +5 -0
- package/src/components/icon/icons/logout-bold.svg +4 -0
- package/src/components/icon/icons/logout.svg +5 -0
- package/src/components/icon/icons/lovely-bulk.svg +4 -0
- package/src/components/icon/icons/magic-pen-bold.svg +17 -0
- package/src/components/icon/icons/magic-pen.svg +13 -0
- package/src/components/icon/icons/map-bulk.svg +5 -0
- package/src/components/icon/icons/map-marker-bold.svg +3 -0
- package/src/components/icon/icons/map-marker.svg +4 -0
- package/src/components/icon/icons/maximize-linear.svg +6 -0
- package/src/components/icon/icons/med-kit.svg +3 -0
- package/src/components/icon/icons/medal-bold.svg +4 -0
- package/src/components/icon/icons/medal.svg +4 -0
- package/src/components/icon/icons/menu-bold.svg +3 -0
- package/src/components/icon/icons/menu.svg +5 -0
- package/src/components/icon/icons/message-bold.svg +5 -0
- package/src/components/icon/icons/message-bulk.svg +14 -0
- package/src/components/icon/icons/message-notif.svg +7 -0
- package/src/components/icon/icons/message-text.svg +5 -0
- package/src/components/icon/icons/message.svg +12 -0
- package/src/components/icon/icons/messages-2-bulk.svg +5 -0
- package/src/components/icon/icons/messages-bold.svg +8 -0
- package/src/components/icon/icons/messages-bulk.svg +8 -0
- package/src/components/icon/icons/messages.svg +8 -0
- package/src/components/icon/icons/microscope-bold.svg +14 -0
- package/src/components/icon/icons/microscope-bulk.svg +14 -0
- package/src/components/icon/icons/microscope.svg +14 -0
- package/src/components/icon/icons/milk-bulk.svg +5 -0
- package/src/components/icon/icons/minus-bold.svg +3 -0
- package/src/components/icon/icons/minus-square-bold.svg +3 -0
- package/src/components/icon/icons/minus-square.svg +4 -0
- package/src/components/icon/icons/minus.svg +3 -0
- package/src/components/icon/icons/mobile-action.svg +37 -0
- package/src/components/icon/icons/mobile-bold.svg +3 -0
- package/src/components/icon/icons/mobile-bulk.svg +11 -0
- package/src/components/icon/icons/mobile.svg +5 -0
- package/src/components/icon/icons/money-bill.svg +8 -0
- package/src/components/icon/icons/money-send.svg +11 -0
- package/src/components/icon/icons/moneys-bold.svg +8 -0
- package/src/components/icon/icons/moneys-bulk.svg +17 -0
- package/src/components/icon/icons/moneys.svg +18 -0
- package/src/components/icon/icons/more-bold.svg +3 -0
- package/src/components/icon/icons/more-bulk.svg +6 -0
- package/src/components/icon/icons/more-circle.svg +6 -0
- package/src/components/icon/icons/more-vertical.svg +3 -0
- package/src/components/icon/icons/more.svg +5 -0
- package/src/components/icon/icons/mouse-square-bold.svg +8 -0
- package/src/components/icon/icons/mouse-square-bulk.svg +8 -0
- package/src/components/icon/icons/mouse-square.svg +7 -0
- package/src/components/icon/icons/music-bulk.svg +5 -0
- package/src/components/icon/icons/musicnote-bulk.svg +4 -0
- package/src/components/icon/icons/not-contains-linear.svg +8 -0
- package/src/components/icon/icons/not-equal.svg +5 -0
- package/src/components/icon/icons/not-in-range.svg +6 -0
- package/src/components/icon/icons/notification-bold.svg +4 -0
- package/src/components/icon/icons/notification.svg +5 -0
- package/src/components/icon/icons/outdent.svg +3 -0
- package/src/components/icon/icons/outline-linear.svg +5 -0
- package/src/components/icon/icons/outline-lock-bulk.svg +5 -0
- package/src/components/icon/icons/outline-lock.svg +5 -0
- package/src/components/icon/icons/paper-plane.svg +3 -0
- package/src/components/icon/icons/parenting-bulk.svg +164 -0
- package/src/components/icon/icons/password-check.svg +7 -0
- package/src/components/icon/icons/pause-bold.svg +4 -0
- package/src/components/icon/icons/pause-circle-bold.svg +3 -0
- package/src/components/icon/icons/pause-circle-bulk.svg +5 -0
- package/src/components/icon/icons/pause-circle.svg +5 -0
- package/src/components/icon/icons/pause.svg +4 -0
- package/src/components/icon/icons/pay/affirm.svg +6 -0
- package/src/components/icon/icons/pay/alipay.svg +8 -0
- package/src/components/icon/icons/pay/amazon.svg +6 -0
- package/src/components/icon/icons/pay/amex-2.svg +7 -0
- package/src/components/icon/icons/pay/amex.svg +5 -0
- package/src/components/icon/icons/pay/applepay.svg +5 -0
- package/src/components/icon/icons/pay/bancontact.svg +7 -0
- package/src/components/icon/icons/pay/bitcoin.svg +5 -0
- package/src/components/icon/icons/pay/bitcoincash.svg +5 -0
- package/src/components/icon/icons/pay/bitpay.svg +5 -0
- package/src/components/icon/icons/pay/citadele.svg +5 -0
- package/src/components/icon/icons/pay/dinersclub.svg +5 -0
- package/src/components/icon/icons/pay/discover.svg +7 -0
- package/src/components/icon/icons/pay/elo.svg +8 -0
- package/src/components/icon/icons/pay/etherium.svg +11 -0
- package/src/components/icon/icons/pay/forbrugsforeningen.svg +5 -0
- package/src/components/icon/icons/pay/giropay.svg +7 -0
- package/src/components/icon/icons/pay/googlepay.svg +9 -0
- package/src/components/icon/icons/pay/ideal.svg +6 -0
- package/src/components/icon/icons/pay/interac.svg +7 -0
- package/src/components/icon/icons/pay/jcb.svg +21 -0
- package/src/components/icon/icons/pay/klarna.svg +5 -0
- package/src/components/icon/icons/pay/lightcoin.svg +5 -0
- package/src/components/icon/icons/pay/maestro-2.svg +5 -0
- package/src/components/icon/icons/pay/maestro.svg +7 -0
- package/src/components/icon/icons/pay/mastercard-2.svg +5 -0
- package/src/components/icon/icons/pay/mastercard.svg +7 -0
- package/src/components/icon/icons/pay/payoneer.svg +6 -0
- package/src/components/icon/icons/pay/paypal.svg +8 -0
- package/src/components/icon/icons/pay/paysafe.svg +7 -0
- package/src/components/icon/icons/pay/qiwi.svg +5 -0
- package/src/components/icon/icons/pay/quickbooks.svg +9 -0
- package/src/components/icon/icons/pay/sepa.svg +6 -0
- package/src/components/icon/icons/pay/shop-pay.svg +5 -0
- package/src/components/icon/icons/pay/skrill.svg +5 -0
- package/src/components/icon/icons/pay/sofort.svg +5 -0
- package/src/components/icon/icons/pay/stripe-2.svg +30 -0
- package/src/components/icon/icons/pay/stripe.svg +5 -0
- package/src/components/icon/icons/pay/unionpay.svg +8 -0
- package/src/components/icon/icons/pay/verifone.svg +6 -0
- package/src/components/icon/icons/pay/visa-2.svg +4 -0
- package/src/components/icon/icons/pay/visa.svg +5 -0
- package/src/components/icon/icons/pay/webmoney.svg +5 -0
- package/src/components/icon/icons/pay/wechat.svg +5 -0
- package/src/components/icon/icons/pay/yandex.svg +5 -0
- package/src/components/icon/icons/pen-square.svg +5 -0
- package/src/components/icon/icons/pencil.svg +3 -0
- package/src/components/icon/icons/people-bold.svg +8 -0
- package/src/components/icon/icons/people-bulk.svg +8 -0
- package/src/components/icon/icons/people.svg +8 -0
- package/src/components/icon/icons/percentage-square-bold.svg +3 -0
- package/src/components/icon/icons/percentage-square.svg +6 -0
- package/src/components/icon/icons/play-bold.svg +3 -0
- package/src/components/icon/icons/play-bulk.svg +4 -0
- package/src/components/icon/icons/play-circle-bold.svg +7 -0
- package/src/components/icon/icons/play-circle.svg +7 -0
- package/src/components/icon/icons/play-store-colorful.svg +14 -0
- package/src/components/icon/icons/play.svg +4 -0
- package/src/components/icon/icons/plug-bold.svg +5 -0
- package/src/components/icon/icons/plug.svg +11 -0
- package/src/components/icon/icons/poker-cards-bulk.svg +11 -0
- package/src/components/icon/icons/presentation-chart-bulk.svg +13 -0
- package/src/components/icon/icons/profile-2user-colored-bulk.svg +16 -0
- package/src/components/icon/icons/programming-arrows-bulk.svg +14 -0
- package/src/components/icon/icons/project-bold.svg +3 -0
- package/src/components/icon/icons/puzzle-bulk.svg +17 -0
- package/src/components/icon/icons/question-bold.svg +3 -0
- package/src/components/icon/icons/question.svg +5 -0
- package/src/components/icon/icons/radar-bold.svg +12 -0
- package/src/components/icon/icons/radar-bulk.svg +8 -0
- package/src/components/icon/icons/radar.svg +10 -0
- package/src/components/icon/icons/rank-bold.svg +14 -0
- package/src/components/icon/icons/rank-bulk.svg +11 -0
- package/src/components/icon/icons/rank.svg +14 -0
- package/src/components/icon/icons/ranking-bold.svg +14 -0
- package/src/components/icon/icons/ranking-bulk.svg +14 -0
- package/src/components/icon/icons/ranking.svg +11 -0
- package/src/components/icon/icons/record-circle.svg +3 -0
- package/src/components/icon/icons/redo-bold.svg +3 -0
- package/src/components/icon/icons/redo.svg +4 -0
- package/src/components/icon/icons/refresh-2.svg +3 -0
- package/src/components/icon/icons/refresh.svg +4 -0
- package/src/components/icon/icons/reply.svg +3 -0
- package/src/components/icon/icons/rocket-bulk.svg +11 -0
- package/src/components/icon/icons/rocket.svg +12 -0
- package/src/components/icon/icons/rotate-left.svg +5 -0
- package/src/components/icon/icons/rotate-right.svg +5 -0
- package/src/components/icon/icons/save-bold.svg +8 -0
- package/src/components/icon/icons/save.svg +11 -0
- package/src/components/icon/icons/scale-balanced.svg +3 -0
- package/src/components/icon/icons/search-2-line.svg +5 -0
- package/src/components/icon/icons/search-dollar.svg +3 -0
- package/src/components/icon/icons/search-normal-bold.svg +4 -0
- package/src/components/icon/icons/search-normal.svg +4 -0
- package/src/components/icon/icons/search-zoom-in-bold.svg +8 -0
- package/src/components/icon/icons/search-zoom-in-bulk.svg +11 -0
- package/src/components/icon/icons/search-zoom-in.svg +11 -0
- package/src/components/icon/icons/security-card-bold.svg +5 -0
- package/src/components/icon/icons/security-card.svg +7 -0
- package/src/components/icon/icons/selection.svg +48 -0
- package/src/components/icon/icons/send.svg +5 -0
- package/src/components/icon/icons/setting-2-linear.svg +8 -0
- package/src/components/icon/icons/setting-bulk.svg +8 -0
- package/src/components/icon/icons/settings-bold.svg +3 -0
- package/src/components/icon/icons/settings-bulk.svg +8 -0
- package/src/components/icon/icons/settings.svg +4 -0
- package/src/components/icon/icons/share-bold.svg +20 -0
- package/src/components/icon/icons/share-bulk.svg +20 -0
- package/src/components/icon/icons/share.svg +8 -0
- package/src/components/icon/icons/shopping-cart-bold.svg +6 -0
- package/src/components/icon/icons/shopping-cart.svg +6 -0
- package/src/components/icon/icons/sidebar-left-bold.svg +8 -0
- package/src/components/icon/icons/sidebar-left-bulk.svg +11 -0
- package/src/components/icon/icons/sidebar-left.svg +9 -0
- package/src/components/icon/icons/sidebar-right-bold.svg +8 -0
- package/src/components/icon/icons/sidebar-right-bulk.svg +11 -0
- package/src/components/icon/icons/sidebar-right.svg +9 -0
- package/src/components/icon/icons/slack.svg +8 -0
- package/src/components/icon/icons/slash-bold.svg +5 -0
- package/src/components/icon/icons/slash.svg +4 -0
- package/src/components/icon/icons/slider-horizontal-bold.svg +8 -0
- package/src/components/icon/icons/slider-horizontal.svg +8 -0
- package/src/components/icon/icons/smart-notification-bold.svg +8 -0
- package/src/components/icon/icons/smart-notification-bulk.svg +8 -0
- package/src/components/icon/icons/smart-notification.svg +8 -0
- package/src/components/icon/icons/sms-bold.svg +3 -0
- package/src/components/icon/icons/sms.svg +4 -0
- package/src/components/icon/icons/soccer-bulk.svg +9 -0
- package/src/components/icon/icons/social-facebook.svg +4 -0
- package/src/components/icon/icons/social-linkedin.svg +5 -0
- package/src/components/icon/icons/social-x.svg +4 -0
- package/src/components/icon/icons/sort-amount-down.svg +3 -0
- package/src/components/icon/icons/sort-bold.svg +5 -0
- package/src/components/icon/icons/sort-bulk.svg +14 -0
- package/src/components/icon/icons/sort.svg +5 -0
- package/src/components/icon/icons/speedometer.svg +5 -0
- package/src/components/icon/icons/spin-dots.svg +14 -0
- package/src/components/icon/icons/spin-round.svg +4 -0
- package/src/components/icon/icons/spin-three-circles.svg +11 -0
- package/src/components/icon/icons/spin-three-dots.svg +5 -0
- package/src/components/icon/icons/spinner.svg +3 -0
- package/src/components/icon/icons/square.svg +3 -0
- package/src/components/icon/icons/star-bold.svg +3 -0
- package/src/components/icon/icons/star-bulk.svg +14 -0
- package/src/components/icon/icons/star-half-colored.svg +4 -0
- package/src/components/icon/icons/star.svg +3 -0
- package/src/components/icon/icons/status-up.svg +17 -0
- package/src/components/icon/icons/steering-wheel-bulk.svg +4 -0
- package/src/components/icon/icons/stop-bold.svg +4 -0
- package/src/components/icon/icons/stop.svg +3 -0
- package/src/components/icon/icons/story.svg +14 -0
- package/src/components/icon/icons/stream.svg +7 -0
- package/src/components/icon/icons/swap-bold.svg +3 -0
- package/src/components/icon/icons/swap.svg +6 -0
- package/src/components/icon/icons/sword-bulk.svg +7 -0
- package/src/components/icon/icons/sync.svg +3 -0
- package/src/components/icon/icons/table-list.svg +3 -0
- package/src/components/icon/icons/tag-2-bold.svg +3 -0
- package/src/components/icon/icons/tag-2.svg +5 -0
- package/src/components/icon/icons/tag-bold.svg +3 -0
- package/src/components/icon/icons/tag-bulk.svg +8 -0
- package/src/components/icon/icons/tag-user.svg +5 -0
- package/src/components/icon/icons/tag.svg +4 -0
- package/src/components/icon/icons/teacher-bulk.svg +4 -0
- package/src/components/icon/icons/thumbtack.svg +3 -0
- package/src/components/icon/icons/tick-circle-bold.svg +5 -0
- package/src/components/icon/icons/tick-circle-bulk.svg +8 -0
- package/src/components/icon/icons/tick-circle.svg +4 -0
- package/src/components/icon/icons/tick-square-bold.svg +3 -0
- package/src/components/icon/icons/tick-square.svg +4 -0
- package/src/components/icon/icons/tick.svg +3 -0
- package/src/components/icon/icons/timer.svg +5 -0
- package/src/components/icon/icons/toggle-off-bold.svg +3 -0
- package/src/components/icon/icons/toggle-off.svg +4 -0
- package/src/components/icon/icons/toggle-on-bold.svg +3 -0
- package/src/components/icon/icons/toggle-on.svg +4 -0
- package/src/components/icon/icons/transgender.svg +3 -0
- package/src/components/icon/icons/translate-bold.svg +24 -0
- package/src/components/icon/icons/translate-bulk.svg +20 -0
- package/src/components/icon/icons/translate.svg +24 -0
- package/src/components/icon/icons/trash-bold.svg +4 -0
- package/src/components/icon/icons/trash-bulk.svg +14 -0
- package/src/components/icon/icons/trash.svg +7 -0
- package/src/components/icon/icons/trend-up-bold.svg +5 -0
- package/src/components/icon/icons/trend-up-bulk.svg +8 -0
- package/src/components/icon/icons/trend-up.svg +5 -0
- package/src/components/icon/icons/twitter.svg +3 -0
- package/src/components/icon/icons/undo-bold.svg +3 -0
- package/src/components/icon/icons/undo.svg +4 -0
- package/src/components/icon/icons/unlock-bold.svg +4 -0
- package/src/components/icon/icons/unlock.svg +5 -0
- package/src/components/icon/icons/upload-bulk.svg +11 -0
- package/src/components/icon/icons/upload.svg +6 -0
- package/src/components/icon/icons/user-avatar.svg +67 -0
- package/src/components/icon/icons/user-default.svg +3 -0
- package/src/components/icon/icons/user-outline.svg +4 -0
- package/src/components/icon/icons/user-settings.svg +3 -0
- package/src/components/icon/icons/user-square.svg +5 -0
- package/src/components/icon/icons/user.svg +5 -0
- package/src/components/icon/icons/video-bulk.svg +5 -0
- package/src/components/icon/icons/video-play-bulk.svg +5 -0
- package/src/components/icon/icons/video-remove.svg +7 -0
- package/src/components/icon/icons/video-square-bulk.svg +4 -0
- package/src/components/icon/icons/volume-low.svg +11 -0
- package/src/components/icon/icons/warning-2-bold.svg +3 -0
- package/src/components/icon/icons/warning-2-bulk.svg +5 -0
- package/src/components/icon/icons/warning-2.svg +5 -0
- package/src/components/icon/icons/warning.svg +3 -0
- package/src/components/icon/icons/watch-bulk.svg +6 -0
- package/src/components/icon/icons/wifi.svg +6 -0
- package/src/components/icon/icons/woman.svg +5 -0
- package/src/components/icon/icons/x.svg +5 -0
- package/src/components/icon/icons/zoom-in.svg +11 -0
- package/src/components/icon/icons/zoom-out.svg +9 -0
- package/src/components/icon/icons.json +524 -0
- package/src/components/icon/index.vue +48 -0
- package/src/components/icon/payment.json +47 -0
- package/src/components/icon/stories/icon.stories.ts +205 -0
- package/src/components/icon/styles.scss +18 -0
- package/src/components/icon/types.ts +17 -0
- package/src/components/icon-button/assets/styles.scss +143 -0
- package/src/components/icon-button/components/button.vue +87 -0
- package/src/components/icon-button/index.vue +95 -0
- package/src/components/icon-button/stories/constants.ts +47 -0
- package/src/components/icon-button/stories/primary.stories.ts +106 -0
- package/src/components/icon-button/stories/secondary.stories.ts +108 -0
- package/src/components/icon-button/types.ts +21 -0
- package/src/components/image/assets/styles.scss +153 -0
- package/src/components/image/group.vue +33 -0
- package/src/components/image/index.vue +51 -0
- package/src/components/image/stories/constants.ts +73 -0
- package/src/components/image/stories/default.stories.ts +27 -0
- package/src/components/image-2/assets/fallback.png +0 -0
- package/src/components/image-2/assets/styles.scss +57 -0
- package/src/components/image-2/group.vue +120 -0
- package/src/components/image-2/image2.test.ts +347 -0
- package/src/components/image-2/index.vue +103 -0
- package/src/components/image-2/preview.vue +244 -0
- package/src/components/image-2/stories/constants.ts +83 -0
- package/src/components/image-2/stories/default.stories.ts +91 -0
- package/src/components/input/index.vue +250 -0
- package/src/components/input/stories/amount.stories.ts +68 -0
- package/src/components/input/stories/constants.ts +81 -0
- package/src/components/input/stories/credit-card.stories.ts +76 -0
- package/src/components/input/stories/default.stories.ts +71 -0
- package/src/components/input/stories/email.stories.ts +76 -0
- package/src/components/input/stories/password.stories.ts +70 -0
- package/src/components/input/stories/textarea.stories.ts +70 -0
- package/src/components/input/stories/url.stories.ts +70 -0
- package/src/components/input/stories/user-info.stories.ts +76 -0
- package/src/components/input/styles.scss +282 -0
- package/src/components/input/types.ts +47 -0
- package/src/components/input-number/assets/styles.scss +622 -0
- package/src/components/input-number/index.vue +142 -0
- package/src/components/input-number/stories/constants.ts +145 -0
- package/src/components/input-number/stories/default.stories.ts +80 -0
- package/src/components/input-number/stories/formatter.mdx +13 -0
- package/src/components/input-number/stories/with-select.stories.ts +30 -0
- package/src/components/input-number/stories/withselect.mdx +23 -0
- package/src/components/input-number/types.ts +26 -0
- package/src/components/keyword-group-selection/assets/styles.scss +205 -0
- package/src/components/keyword-group-selection/components/kwGroupForm.vue +89 -0
- package/src/components/keyword-group-selection/components/kwGroupItem.vue +89 -0
- package/src/components/keyword-group-selection/composables/index.ts +19 -0
- package/src/components/keyword-group-selection/data/keywordGroups.json +136 -0
- package/src/components/keyword-group-selection/index.vue +326 -0
- package/src/components/keyword-group-selection/stories/constants.ts +178 -0
- package/src/components/keyword-group-selection/stories/default.stories.ts +97 -0
- package/src/components/keyword-group-selection/stories/example.mdx +110 -0
- package/src/components/keyword-group-selection/types.ts +43 -0
- package/src/components/menu/assets/styles.scss +3 -0
- package/src/components/menu/components/MenuItem.vue +45 -0
- package/src/components/menu/index.vue +28 -0
- package/src/components/menu/stories/constants.ts +67 -0
- package/src/components/menu/stories/default.stories1.ts +22 -0
- package/src/components/menu/stories/listData.stories1.mdx +33 -0
- package/src/components/modal/assets/effects.scss +602 -0
- package/src/components/modal/assets/styles.scss +131 -0
- package/src/components/modal/assets/with-tab.scss +8 -0
- package/src/components/modal/components/renderContent.vue +15 -0
- package/src/components/modal/index.ts +54 -0
- package/src/components/modal/index.vue +205 -0
- package/src/components/modal/stories/constants.ts +213 -0
- package/src/components/modal/stories/default.stories.ts +74 -0
- package/src/components/modal/stories/functions.stories.ts +82 -0
- package/src/components/modal/types.ts +43 -0
- package/src/components/notification/assets/styles.scss +251 -0
- package/src/components/notification/components/notification.vue +118 -0
- package/src/components/notification/components/notificationContainer.vue +72 -0
- package/src/components/notification/composables/useNotificationAnimation.ts +48 -0
- package/src/components/notification/index.ts +53 -0
- package/src/components/notification/notification.test.ts +120 -0
- package/src/components/notification/stories/commonStories.ts +126 -0
- package/src/components/notification/stories/constants.ts +67 -0
- package/src/components/notification/stories/docs.mdx +100 -0
- package/src/components/notification/stories/filled.stories.ts +23 -0
- package/src/components/notification/stories/light.stories.ts +23 -0
- package/src/components/notification/stories/stroke.stories.ts +23 -0
- package/src/components/notification/types.ts +56 -0
- package/src/components/numeric-input/assets/styles.scss +53 -0
- package/src/components/numeric-input/components/singleNumericInput.vue +46 -0
- package/src/components/numeric-input/index.vue +148 -0
- package/src/components/numeric-input/stories/constants.ts +40 -0
- package/src/components/numeric-input/stories/default.stories.ts +46 -0
- package/src/components/numeric-input/types.ts +7 -0
- package/src/components/pagination/assets/styles.scss +131 -0
- package/src/components/pagination/index.vue +379 -0
- package/src/components/pagination/pagination.test.ts +361 -0
- package/src/components/pagination/stories/constants.ts +50 -0
- package/src/components/pagination/stories/default.stories.ts +17 -0
- package/src/components/pagination/types.ts +31 -0
- package/src/components/popconfirm/assets/styles.scss +22 -0
- package/src/components/popconfirm/index.vue +129 -0
- package/src/components/popconfirm/stories/constants.ts +53 -0
- package/src/components/popconfirm/stories/default.stories.ts +19 -0
- package/src/components/popconfirm/types.ts +16 -0
- package/src/components/popover/assets/styles.scss +214 -0
- package/src/components/popover/index.vue +73 -0
- package/src/components/popover/stories/apps.json +47 -0
- package/src/components/popover/stories/constants.ts +120 -0
- package/src/components/popover/stories/default.stories.ts +33 -0
- package/src/components/popover/types.ts +30 -0
- package/src/components/popover-2/assets/styles.scss +171 -0
- package/src/components/popover-2/index.vue +103 -0
- package/src/components/popover-2/popover2.test.ts +96 -0
- package/src/components/popover-2/stories/constants.ts +142 -0
- package/src/components/popover-2/stories/default.stories.ts +32 -0
- package/src/components/popover-2/types.ts +26 -0
- package/src/components/progress/assets/styles.scss +241 -0
- package/src/components/progress/components/circle.vue +94 -0
- package/src/components/progress/components/halfCircle.vue +92 -0
- package/src/components/progress/components/line.vue +49 -0
- package/src/components/progress/components/stepLine.vue +48 -0
- package/src/components/progress/index.vue +90 -0
- package/src/components/progress/stories/circle.stories.ts +77 -0
- package/src/components/progress/stories/constants.ts +57 -0
- package/src/components/progress/stories/half-circle.stories.ts +67 -0
- package/src/components/progress/stories/line-step.stories.ts +73 -0
- package/src/components/progress/stories/line.stories.ts +90 -0
- package/src/components/progress/types.ts +42 -0
- package/src/components/radio/assets/checked-disabled.svg +11 -0
- package/src/components/radio/assets/checked.svg +11 -0
- package/src/components/radio/group.vue +26 -0
- package/src/components/radio/index.vue +67 -0
- package/src/components/radio/stories/constants.ts +54 -0
- package/src/components/radio/stories/default.stories.ts +38 -0
- package/src/components/radio/styles.scss +454 -0
- package/src/components/radio/types.ts +5 -0
- package/src/components/radio-card/assets/styles.scss +57 -0
- package/src/components/radio-card/index.vue +56 -0
- package/src/components/radio-card/stories/assets/iphone-half.svg +61 -0
- package/src/components/radio-card/stories/constants.ts +98 -0
- package/src/components/radio-card/stories/default.stories.ts +33 -0
- package/src/components/radio-card/stories/example.mdx +17 -0
- package/src/components/rate/assets/styles.scss +43 -0
- package/src/components/rate/components/star.vue +39 -0
- package/src/components/rate/index.vue +124 -0
- package/src/components/rate/stories/constants.ts +40 -0
- package/src/components/rate/stories/default.stories.ts +55 -0
- package/src/components/rate/types.ts +14 -0
- package/src/components/result/assets/styles.scss +53 -0
- package/src/components/result/index.vue +71 -0
- package/src/components/result/stories/constants.ts +70 -0
- package/src/components/result/stories/default.stories.ts +27 -0
- package/src/components/result/types.ts +11 -0
- package/src/components/select/assets/styles.scss +601 -0
- package/src/components/select/components/dropdownRender.vue +70 -0
- package/src/components/select/components/option.vue +19 -0
- package/src/components/select/components/optionCheckbox.vue +31 -0
- package/src/components/select/index.vue +506 -0
- package/src/components/select/stories/constants.ts +85 -0
- package/src/components/select/stories/countries.json +342 -0
- package/src/components/select/stories/countriesWithDescription.json +57 -0
- package/src/components/select/stories/countryGroups.json +47 -0
- package/src/components/select/stories/default.stories.ts +190 -0
- package/src/components/select/stories/group.stories.ts +55 -0
- package/src/components/select/stories/multi-select.stories.ts +158 -0
- package/src/components/select/stories/options.json +204 -0
- package/src/components/select/stories/single.stories.ts +42 -0
- package/src/components/select/types.ts +35 -0
- package/src/components/select-2/assets/borderless.scss +30 -0
- package/src/components/select-2/assets/compact.scss +5 -0
- package/src/components/select-2/assets/default.scss +139 -0
- package/src/components/select-2/assets/dropdown.scss +56 -0
- package/src/components/select-2/assets/inline.scss +49 -0
- package/src/components/select-2/assets/option-group.scss +6 -0
- package/src/components/select-2/assets/option.scss +50 -0
- package/src/components/select-2/assets/styles.scss +8 -0
- package/src/components/select-2/components/selectOption.vue +108 -0
- package/src/components/select-2/components/selectOptionGroup.vue +17 -0
- package/src/components/select-2/composables/use-keyboard-navigation.ts +81 -0
- package/src/components/select-2/composables/use-options-registry.ts +23 -0
- package/src/components/select-2/index.vue +449 -0
- package/src/components/select-2/select.test.ts +322 -0
- package/src/components/select-2/stories/borderless.stories.ts +38 -0
- package/src/components/select-2/stories/constants.ts +184 -0
- package/src/components/select-2/stories/data/countries.json +342 -0
- package/src/components/select-2/stories/data/users.json +204 -0
- package/src/components/select-2/stories/inline.stories.ts +38 -0
- package/src/components/select-2/stories/multiple.stories.ts +71 -0
- package/src/components/select-2/stories/select-option-group.stories.ts +70 -0
- package/src/components/select-2/stories/select-option.stories.ts +64 -0
- package/src/components/select-2/stories/single.stories.ts +169 -0
- package/src/components/select-2/types.ts +231 -0
- package/src/components/side-menu/add-new-app-button/assets/styles.scss +18 -0
- package/src/components/side-menu/add-new-app-button/index.vue +35 -0
- package/src/components/side-menu/add-new-app-button/stories/constants.ts +39 -0
- package/src/components/side-menu/add-new-app-button/stories/default.stories.ts +23 -0
- package/src/components/side-menu/app-button/assets/styles.scss +51 -0
- package/src/components/side-menu/app-button/index.vue +42 -0
- package/src/components/side-menu/app-button/stories/constants.ts +34 -0
- package/src/components/side-menu/app-button/stories/default.stories.ts +28 -0
- package/src/components/side-menu/button/assets/styles.scss +42 -0
- package/src/components/side-menu/button/index.vue +70 -0
- package/src/components/side-menu/button/stories/constants.ts +58 -0
- package/src/components/side-menu/button/stories/default.stories.ts +44 -0
- package/src/components/side-menu/icon-button/assets/styles.scss +49 -0
- package/src/components/side-menu/icon-button/index.vue +78 -0
- package/src/components/side-menu/icon-button/stories/constants.ts +48 -0
- package/src/components/side-menu/icon-button/stories/default.stories.ts +33 -0
- package/src/components/side-menu/menu-item/assets/styles.scss +66 -0
- package/src/components/side-menu/menu-item/index.vue +90 -0
- package/src/components/side-menu/menu-item/stories/constants.ts +59 -0
- package/src/components/side-menu/menu-item/stories/default.stories.ts +191 -0
- package/src/components/side-menu/menu-item/types.ts +12 -0
- package/src/components/side-menu/round-icon-button/assets/styles.scss +29 -0
- package/src/components/side-menu/round-icon-button/index.vue +27 -0
- package/src/components/side-menu/round-icon-button/stories/constants.ts +39 -0
- package/src/components/side-menu/round-icon-button/stories/default.stories.ts +18 -0
- package/src/components/side-menu-2/menu-button/assets/styles.scss +36 -0
- package/src/components/side-menu-2/menu-button/index.vue +77 -0
- package/src/components/side-menu-2/menu-button/stories/constants.ts +55 -0
- package/src/components/side-menu-2/menu-button/stories/default.stories.ts +49 -0
- package/src/components/side-menu-2/menu-button/types.ts +6 -0
- package/src/components/side-menu-2/menu-item/assets/styles.scss +43 -0
- package/src/components/side-menu-2/menu-item/index.vue +54 -0
- package/src/components/side-menu-2/menu-item/stories/constants.ts +39 -0
- package/src/components/side-menu-2/menu-item/stories/default.stories.ts +83 -0
- package/src/components/side-menu-2/side-menu-2.test.ts +64 -0
- package/src/components/slider/assets/styles.scss +222 -0
- package/src/components/slider/index.vue +100 -0
- package/src/components/slider/stories/constants.ts +104 -0
- package/src/components/slider/stories/default.stories.ts +22 -0
- package/src/components/slider/stories/example.mdx +69 -0
- package/src/components/slider/types.ts +12 -0
- package/src/components/spin/assets/styles.scss +127 -0
- package/src/components/spin/index.vue +55 -0
- package/src/components/spin/stories/constants.ts +70 -0
- package/src/components/spin/stories/container.stories.ts +30 -0
- package/src/components/spin/stories/default.stories.ts +26 -0
- package/src/components/spin/types.ts +17 -0
- package/src/components/step-items/assets/styles.scss +57 -0
- package/src/components/step-items/components/index.vue +81 -0
- package/src/components/step-items/index.vue +68 -0
- package/src/components/step-items/stories/constants.ts +77 -0
- package/src/components/step-items/stories/default.stories.ts +18 -0
- package/src/components/step-items/stories/examples.mdx +25 -0
- package/src/components/step-items/stories/step-item.stories.ts +19 -0
- package/src/components/steps/assets/styles.scss +79 -0
- package/src/components/steps/components/index.vue +78 -0
- package/src/components/steps/index.vue +72 -0
- package/src/components/steps/stories/constants.ts +132 -0
- package/src/components/steps/stories/default.stories.ts +56 -0
- package/src/components/steps/stories/examples.mdx +27 -0
- package/src/components/steps/stories/step.stories.ts +19 -0
- package/src/components/steps/types.ts +6 -0
- package/src/components/switch/assets/styles.scss +107 -0
- package/src/components/switch/index.vue +142 -0
- package/src/components/switch/stories/constants.ts +43 -0
- package/src/components/switch/stories/default.stories.ts +133 -0
- package/src/components/switch/switch.test.ts +90 -0
- package/src/components/switch/types.ts +12 -0
- package/src/components/table/assets/table.scss +167 -0
- package/src/components/table/preview.vue +140 -0
- package/src/components/table/row-detail.vue +19 -0
- package/src/components/table/stories/data/data.json +1089 -0
- package/src/components/table/stories/data/fields.ts +110 -0
- package/src/components/table/stories/default.stories.ts +25 -0
- package/src/components/table/stories/table.mdx +51 -0
- package/src/components/tabs/assets/styles.scss +435 -0
- package/src/components/tabs/components/tabPane.vue +11 -0
- package/src/components/tabs/index.vue +65 -0
- package/src/components/tabs/stories/card.stories.ts +85 -0
- package/src/components/tabs/stories/constants.ts +124 -0
- package/src/components/tabs/stories/default.mdx +72 -0
- package/src/components/tabs/stories/line.stories.ts +85 -0
- package/src/components/tabs/types.ts +20 -0
- package/src/components/tabs-2/assets/styles.scss +40 -0
- package/src/components/tabs-2/assets/tab-button.scss +89 -0
- package/src/components/tabs-2/components/tabButton.vue +70 -0
- package/src/components/tabs-2/components/tabPane.vue +33 -0
- package/src/components/tabs-2/index.vue +110 -0
- package/src/components/tabs-2/stories/default.stories.ts +147 -0
- package/src/components/tabs-2/stories/tab-button.stories.ts +71 -0
- package/src/components/tabs-2/stories/tab-pane.stories.ts +62 -0
- package/src/components/tabs-2/tabButton.test.ts +84 -0
- package/src/components/tabs-2/tabs.test.ts +178 -0
- package/src/components/tabs-2/types.ts +106 -0
- package/src/components/tag-input/assets/styles.scss +99 -0
- package/src/components/tag-input/index.vue +185 -0
- package/src/components/tag-input/stories/constants.ts +50 -0
- package/src/components/tag-input/stories/default.stories.ts +76 -0
- package/src/components/tag-input/types.ts +3 -0
- package/src/components/toggle/assets/styles.scss +122 -0
- package/src/components/toggle/index.vue +80 -0
- package/src/components/toggle/stories/constants.ts +73 -0
- package/src/components/toggle/stories/default.stories.ts +32 -0
- package/src/components/toggle/types.ts +7 -0
- package/src/components/tooltip/assets/styles.scss +207 -0
- package/src/components/tooltip/index.vue +101 -0
- package/src/components/tooltip/stories/constants.ts +67 -0
- package/src/components/tooltip/stories/default.stories.ts +143 -0
- package/src/components/tooltip/tooltip.test.ts +157 -0
- package/src/components/tooltip/types.ts +30 -0
- package/src/components/track-button/assets/style.scss +94 -0
- package/src/components/track-button/index.vue +77 -0
- package/src/components/track-button/stories/constants.ts +63 -0
- package/src/components/track-button/stories/default.stories.ts +123 -0
- package/src/components/track-button/track-button.test.ts +91 -0
- package/src/components/track-button/types.ts +8 -0
- package/src/components/tree/assets/styles.scss +35 -0
- package/src/components/tree/components/treeNode.vue +238 -0
- package/src/components/tree/index.vue +257 -0
- package/src/components/tree/stories/constants.ts +93 -0
- package/src/components/tree/stories/default.stories.ts +173 -0
- package/src/components/tree/stories/useTreeData.ts +41 -0
- package/src/components/tree/tree.test.ts +104 -0
- package/src/components/tree/types.ts +19 -0
- package/src/components/typography/assets/styles.scss +0 -0
- package/src/components/typography/index.vue +40 -0
- package/src/components/typography/stories/constants.ts +115 -0
- package/src/components/typography/stories/default.stories.ts +114 -0
- package/src/components/typography/types.ts +39 -0
- package/src/components/typography/typography.test.ts +56 -0
- package/src/components/upload/assets/styles.scss +120 -0
- package/src/components/upload/composables/file.ts +114 -0
- package/src/components/upload/index.vue +386 -0
- package/src/components/upload/singleFile.vue +62 -0
- package/src/components/upload/stories/box.stories.ts +76 -0
- package/src/components/upload/stories/button.stories.ts +20 -0
- package/src/components/upload/stories/constants.ts +159 -0
- package/src/components/upload/stories/small-box.stories.ts +21 -0
- package/src/components/upload/types.ts +31 -0
- package/src/components/watchlist-button/assets/styles.scss +116 -0
- package/src/components/watchlist-button/components/button.vue +105 -0
- package/src/components/watchlist-button/index.vue +88 -0
- package/src/components/watchlist-button/stories/constants.ts +54 -0
- package/src/components/watchlist-button/stories/dashed.stories.ts +30 -0
- package/src/components/watchlist-button/stories/default.stories.ts +55 -0
- package/src/components/watchlist-button/types.ts +13 -0
- package/src/composables/config.ts +6 -0
- package/src/composables/ssr.ts +10 -0
- package/src/index.ts +172 -0
- package/src/services/config.ts +32 -0
- package/src/shims-vue-virtual-scroller.d.ts +77 -0
- package/src/tailwind.scss +6 -0
- package/src/utils/breakpoints.test.ts +21 -0
- package/src/utils/breakpoints.ts +31 -0
- package/src/utils/slots.ts +21 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#060809" fill-rule="evenodd" d="M14.634 11.97h-1.109v-.436c0-.566.324-.728.603-.728.308 0 .547.137.547.137l.378-.863s-.383-.25-1.079-.25c-.782 0-1.672.44-1.672 1.824v.315h-1.856v-.435c0-.566.323-.728.602-.728.158 0 .371.037.548.137l.377-.863c-.225-.133-.587-.25-1.078-.25-.782 0-1.672.44-1.672 1.824v.315h-.71v.944h.71v3.336h1.223v-3.336h1.856v3.336h1.223v-3.336h1.11v-.944Zm-8.93 3.51c-.32 0-.48-.157-.48-.418 0-.483.54-.649 1.526-.753 0 .646-.436 1.172-1.045 1.172Zm.426-3.637c-.705 0-1.516.333-1.957.684l.403.847c.353-.324.924-.6 1.44-.6.489 0 .76.164.76.493 0 .222-.18.334-.519.378C4.993 13.81 4 14.159 4 15.134c0 .773.55 1.24 1.41 1.24.614 0 1.16-.34 1.42-.79v.665h1.143v-2.787c0-1.151-.8-1.619-1.843-1.619Zm11.484.126v4.28h1.224v-2.062c0-.98.593-1.268 1.007-1.268a.94.94 0 0 1 .523.154l.224-1.131a1.398 1.398 0 0 0-.55-.099c-.629 0-1.024.28-1.285.845v-.719h-1.143Zm7.27.626c.251-.369.735-.752 1.382-.752.782 0 1.43.486 1.43 1.448v2.958h-1.224v-2.571c0-.567-.34-.802-.664-.802-.405 0-.81.37-.81 1.17v2.203h-1.223v-2.563c0-.584-.321-.81-.671-.81-.387 0-.8.379-.8 1.17v2.203h-1.225v-4.28h1.18v.647c.206-.413.654-.772 1.302-.772.593 0 1.088.274 1.322.751Zm-8.297 3.654h-1.222v-4.28h1.222v4.28Z" clip-rule="evenodd"/>
|
|
4
|
+
<path fill="#0FA0EA" fill-rule="evenodd" d="M22.493 6c-3.303 0-6.248 2.293-7.084 5.242h1.198c.698-2.196 3.067-4.123 5.886-4.123 3.427 0 6.388 2.608 6.388 6.67 0 .911-.118 1.733-.341 2.46h1.16l.012-.04c.19-.75.287-1.563.287-2.42C30 9.259 26.7 6 22.493 6Z" clip-rule="evenodd"/>
|
|
5
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#1677FF" d="M8.88 8.798H4.122C3.502 8.798 3 9.305 3 9.93v4.798c0 .625.502 1.131 1.122 1.131H8.88c.62 0 1.12-.506 1.12-1.13V9.928c.001-.625-.5-1.13-1.12-1.13Z"/>
|
|
4
|
+
<path fill="#fff" d="M8.764 13.232c-.28-.095-.656-.24-1.075-.392.251-.441.453-.943.585-1.489h-1.38v-.501h1.69v-.28h-1.69v-.836h-.69c-.121 0-.121.12-.121.12v.715h-1.71v.28h1.71v.501H4.67v.28h2.738a4.95 4.95 0 0 1-.394.972c-.888-.295-1.837-.535-2.432-.387-.38.094-.626.263-.77.44-.662.812-.187 2.044 1.21 2.044.825 0 1.62-.464 2.237-1.23.92.447 2.74 1.212 2.74 1.212v-1.09c.001 0-.228-.02-1.236-.36Zm-3.872.996c-1.09 0-1.411-.865-.873-1.339.18-.16.508-.238.682-.255.647-.064 1.246.184 1.953.532-.496.654-1.13 1.062-1.762 1.062Z"/>
|
|
5
|
+
<path fill="#1677FF" d="M18.201 9.832c0 .365.267.611.64.611.372 0 .64-.246.64-.611 0-.358-.268-.611-.64-.611-.373 0-.64.253-.64.611Z"/>
|
|
6
|
+
<path fill="#000" d="M17.527 9.375h-1.11v5.128h1.11V9.375Zm-3.055.175h-1.49l-1.664 4.953h1.026l.28-.97h1.764l.267.97h1.313l-1.496-4.952Zm-1.616 3.176.66-2.283h.028l.625 2.283h-1.313Zm6.539-1.988h-1.11v3.765h1.11v-3.765Zm11.598.007.007-.007h-1.046l-.66 2.29h-.036l-.758-2.29h-1.244l1.496 3.78-.625 1.151v.028h.976l1.89-4.952Zm-8.837-.085c-.407 0-.723.155-1.081.45v-.372h-1.11v4.959h1.11v-1.23c.21.057.407.085.646.085.99 0 1.882-.73 1.882-2.03 0-1.166-.646-1.861-1.447-1.861Zm-.703 3.197a1.21 1.21 0 0 1-.38-.057v-2.036c.233-.162.422-.24.66-.24.415 0 .745.33.745 1.034.001.899-.484 1.299-1.025 1.299Zm5.585-.295v-1.574c0-.857-.506-1.327-1.398-1.327-.57 0-.962.098-1.679.316l.197.864c.653-.295.94-.421 1.243-.421.365 0 .527.26.527.66v.028c-1.272.239-1.665.372-1.91.618-.183.183-.26.443-.26.745 0 .723.562 1.11 1.088 1.11.393 0 .71-.148 1.138-.471l.077.393h1.11l-.133-.941Zm-1.11.028c-.294.161-.463.225-.66.225-.267 0-.435-.176-.435-.456 0-.105.021-.211.105-.295.134-.134.393-.232.99-.373v.9Z"/>
|
|
7
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#000" fill-rule="evenodd" d="M27.293 13.948h.839a.164.164 0 0 0 .164-.163v-2.443c0-.307.016-.584.134-.862a.555.555 0 0 1 .487-.363c.536 0 .531.618.527 1.104v2.585c.01.079.072.139.148.142h.846c.08.002.15-.059.162-.142v-2.857c0-.44 0-1.051-.22-1.414-.237-.392-.605-.535-.982-.535-.581 0-.911.296-1.146.917h-.017v-.695a.16.16 0 0 0-.149-.126h-.78a.162.162 0 0 0-.162.148v4.541a.162.162 0 0 0 .15.163Zm-.79-2.382c0-1.432-.675-2.56-1.924-2.56-1.217 0-1.892 1.109-1.892 2.513 0 1.403.667 2.53 1.892 2.53 1.18 0 1.925-1.098 1.925-2.483Zm-2.575-.19c0-.555.04-1.443.66-1.443.266 0 .454.126.55.44.11.362.125.82.125 1.203 0 .582-.025 1.537-.684 1.537-.652 0-.652-1.158-.651-1.72v-.018ZM8.19 13.957h.842a.154.154 0 0 0 .113-.047.17.17 0 0 0 .049-.117V11.35c0-.523 0-1.215.58-1.215.539 0 .53.608.524 1.1l-.002.153v2.407a.163.163 0 0 0 .15.162h.842a.155.155 0 0 0 .113-.046.17.17 0 0 0 .049-.117V11.33c0-.255-.002-.6.079-.813a.56.56 0 0 1 .502-.372c.244 0 .432.086.495.392.032.147.028.487.025.713l-.001.137v2.407a.162.162 0 0 0 .149.162h.84a.155.155 0 0 0 .114-.046.171.171 0 0 0 .049-.117v-2.865l.002-.213c.007-.428.014-.883-.214-1.21a1.213 1.213 0 0 0-1.167-.484c-.444.073-.815.39-.973.832-.236-.574-.574-.84-1.092-.84-.518 0-.903.266-1.107.84h-.016V9.26a.162.162 0 0 0-.149-.156h-.784a.163.163 0 0 0-.161.162v4.54a.16.16 0 0 0 .149.15Zm-1.464.034a.167.167 0 0 1-.198.021c-.239-.208-.31-.321-.42-.494l-.062-.095c-.463.494-.79.642-1.388.642-.708 0-1.26-.46-1.26-1.378 0-.718.373-1.206.895-1.446.385-.177.898-.232 1.342-.28l.24-.027v-.18c.001-.195.003-.412-.103-.576-.102-.163-.297-.23-.472-.23-.32 0-.607.174-.677.531a.182.182 0 0 1-.149.163l-.808-.093a.148.148 0 0 1-.1-.064.163.163 0 0 1-.026-.12c.187-1.04 1.081-1.354 1.882-1.354.41 0 .944.114 1.266.44.377.371.375.858.373 1.39v1.51c0 .37.13.555.268.75l.05.07c.053.078.065.176 0 .234-.173.151-.478.43-.646.587l-.007-.001Zm-.848-2.156v.043c0 .325 0 .601-.157.896-.134.25-.346.403-.583.403-.323 0-.511-.259-.511-.642 0-.753.643-.89 1.251-.89v.19Zm12.478 1.262.049.07c.057.082.069.177-.004.231-.172.151-.477.43-.645.588a.168.168 0 0 1-.199.02 1.87 1.87 0 0 1-.422-.496 9.946 9.946 0 0 0-.06-.094c-.462.495-.791.643-1.387.643-.708 0-1.26-.46-1.26-1.378 0-.719.37-1.206.898-1.446.386-.178.903-.233 1.348-.28l.234-.026v-.178c.002-.195.004-.412-.103-.575-.1-.163-.298-.23-.472-.23-.32 0-.605.173-.676.53a.182.182 0 0 1-.15.163l-.815-.092a.147.147 0 0 1-.1-.064.163.163 0 0 1-.025-.122c.187-1.04 1.08-1.353 1.882-1.353.408 0 .943.114 1.266.44.378.37.375.852.372 1.381v1.519c0 .37.13.555.269.75Zm-2.187.075c.236 0 .45-.153.583-.402.158-.296.158-.574.158-.903v-.226c-.609 0-1.252.136-1.252.89 0 .383.189.641.511.641Zm2.948-3.922v.647c0 .044.016.087.047.118a.15.15 0 0 0 .113.046h1.448l-1.66 2.505a.815.815 0 0 0-.103.445v.662c0 .096.1.204.197.15a3.047 3.047 0 0 1 2.921-.005c.105.057.204-.053.204-.149v-.695a.298.298 0 0 0-.148-.253c-.484-.286-1.046-.37-1.578-.356l1.433-2.15c.133-.193.208-.315.208-.408V9.25a.167.167 0 0 0-.047-.117.15.15 0 0 0-.113-.046h-2.765a.145.145 0 0 0-.113.045.16.16 0 0 0-.044.118Z" clip-rule="evenodd"/>
|
|
4
|
+
<path fill="#F90" fill-rule="evenodd" d="M20.5 16.845c.192-.5.618-1.621.416-1.893h.001c-.202-.272-1.334-.13-1.843-.065-.156.02-.18-.122-.04-.225.904-.668 2.385-.477 2.557-.251.172.225-.047 1.787-.893 2.532-.13.114-.255.053-.197-.098Zm-6.083.772c1.97 0 4.262-.654 5.842-1.879v.002c.261-.206.037-.51-.23-.391a13.62 13.62 0 0 1-5.446 1.174c-2.596 0-5.107-.748-7.14-1.99-.177-.11-.31.082-.16.222 1.955 1.856 4.5 2.876 7.134 2.862Z" clip-rule="evenodd"/>
|
|
5
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="2" y="2" width="28" height="28" fill="#1271CD"/>
|
|
3
|
+
<path d="M8.52393 16.5598L13.0025 6.5498H17.2695L18.7859 9.94481V6.5498H24.1108L24.9924 9.1748L25.9093 6.5498H30V7.73987H26.7558L25.0278 12.4999L23.2293 7.73987H19.9144V15.4049L16.5291 7.73987H13.7432L10.3225 15.4049H12.6852L13.2847 13.8999H16.8817L17.5165 15.4049H19.9144H22.0303V10.0849L24.0051 15.4049H25.9094L27.9548 10.0849V15.4049H30V16.5599H27.2495L24.9573 19.0099L22.7003 16.5599H19.9497H13.32V24.2599H19.9497H22.7003L24.9573 21.8099L27.2495 24.2599H30V25.4148H26.6851L24.9924 23.5248L23.194 25.4148H12.0856V16.5598H8.52393Z" fill="white"/>
|
|
4
|
+
<path d="M30 24.2599V22.6832L27.9194 20.4448L30 18.2651V16.5599L26.3326 20.4449L30 24.2599Z" fill="white"/>
|
|
5
|
+
<path d="M19.9497 24.2599V22.5449H15.4006V21.3199H19.8087V19.6049H15.4006V18.3799H19.9497V16.5599L23.6172 20.4449L19.9497 24.2599Z" fill="white"/>
|
|
6
|
+
<path d="M15.1185 9.62987L14.0253 12.1849H16.1764L15.1185 9.62987Z" fill="white"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#1F72CD" rx="3.5"/>
|
|
3
|
+
<path fill="#fff" fill-rule="evenodd" d="m6.095 8.5-3.18 7.247h3.808l.472-1.156h1.079l.472 1.156h4.192v-.882l.373.882h2.168l.374-.9v.9h8.718l1.06-1.126.992 1.126 4.478.01-3.191-3.613L31.101 8.5h-4.408L25.66 9.605 24.7 8.5h-9.484l-.814 1.87-.834-1.87h-3.8v.852L9.345 8.5h-3.25Zm.737 1.029H8.69l2.11 4.914V9.53h2.033l1.63 3.523 1.502-3.523h2.023v5.2h-1.23l-.011-4.075-1.795 4.075H13.85l-1.805-4.075v4.075H9.512l-.48-1.166H6.438l-.48 1.165H4.602L6.833 9.53Zm17.288 0h-5.006v5.197h4.928l1.589-1.722 1.531 1.722h1.6l-2.326-2.583 2.327-2.614H27.23l-1.58 1.703-1.531-1.703Zm-16.385.88-.854 2.077h1.708l-.854-2.077Zm12.615 1.146v-.95h3.124l1.363 1.518-1.424 1.526H20.35v-1.036h2.731v-1.058H20.35Z" clip-rule="evenodd"/>
|
|
4
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#000" fill-rule="evenodd" d="M9.45 8.343c-.286.352-.743.63-1.2.59-.056-.476.167-.981.429-1.294.285-.361.784-.62 1.189-.639.047.496-.138.981-.419 1.343Zm.413.684c-.402-.024-.77.126-1.066.248-.19.078-.352.144-.475.144-.138 0-.306-.07-.495-.148-.248-.103-.53-.22-.827-.214-.68.01-1.313.411-1.66 1.05-.714 1.28-.186 3.173.504 4.213.338.516.742 1.08 1.275 1.061.234-.01.402-.084.577-.16.2-.09.41-.182.735-.182.315 0 .514.09.706.176.182.082.357.161.617.156.551-.01.899-.515 1.236-1.03.365-.554.525-1.094.55-1.176l.002-.01-.013-.006a1.853 1.853 0 0 1-1.062-1.693c-.009-1 .739-1.507.856-1.586l.014-.01c-.475-.734-1.217-.813-1.474-.833Zm3.82 6.29V7.59h2.782c1.436 0 2.44 1.03 2.44 2.537s-1.023 2.548-2.478 2.548h-1.594v2.642h-1.15Zm1.15-6.716h1.327c1 0 1.57.555 1.57 1.531 0 .977-.57 1.537-1.574 1.537h-1.323V8.6Zm7.872 5.789c-.304.604-.975.986-1.698.986-1.07 0-1.817-.664-1.817-1.665 0-.991.723-1.561 2.06-1.646l1.436-.089v-.426c0-.63-.395-.972-1.099-.972-.58 0-1.003.313-1.089.789h-1.037c.034-1.002.937-1.73 2.16-1.73 1.317 0 2.174.718 2.174 1.834v3.846h-1.066v-.927h-.024Zm-1.389.07c-.613 0-1.003-.308-1.003-.779 0-.486.376-.768 1.094-.813l1.28-.084v.436c0 .724-.59 1.24-1.37 1.24Zm6.012 1.159c-.461 1.353-.989 1.8-2.111 1.8-.086 0-.371-.01-.438-.03v-.927c.071.01.247.02.338.02.509 0 .794-.224.97-.803l.105-.343-1.95-5.625h1.203l1.355 4.565h.024L28.18 9.71h1.17l-2.022 5.908Z" clip-rule="evenodd"/>
|
|
4
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#005697" d="M25.491 7.438H18.72l-.688.8-2.235 2.592-.689.8H8.425l.678-.81.32-.383.679-.809h-3.08c-.562 0-1.022.486-1.022 1.08v2.281c0 .595.46 1.081 1.023 1.081H18.81c.562 0 1.33-.36 1.707-.802l1.783-2.09 3.19-3.74Z"/>
|
|
4
|
+
<path fill="#FBD500" d="M26.852 5c.562 0 1.023.486 1.023 1.081v2.28c0 .595-.46 1.082-1.023 1.082h-3.07l.685-.804.34-.398.684-.803H18.72l-3.612 4.195H8.383l4.822-5.62.183-.212c.378-.44 1.147-.801 1.71-.801h11.754Z"/>
|
|
5
|
+
<path fill="#005697" fill-rule="evenodd" d="M8.305 17.948a.68.68 0 0 0-.371-.636.605.605 0 0 0 .258-.254.774.774 0 0 0 .092-.378v-.077a.873.873 0 0 0-.096-.43.73.73 0 0 0-.269-.275 1.255 1.255 0 0 0-.414-.148 2.95 2.95 0 0 0-.538-.045 5.196 5.196 0 0 0-.419.015 4.923 4.923 0 0 0-.327.032c-.08.015-.138.04-.171.078-.033.037-.05.104-.05.202v2.611c0 .098.017.165.052.202.035.038.094.063.177.078.042.008.092.015.15.021a5.56 5.56 0 0 0 .4.026c.073.003.143.004.213.004.18 0 .35-.014.51-.043.16-.028.3-.08.417-.152a.8.8 0 0 0 .282-.297.958.958 0 0 0 .104-.47v-.064Zm-.709-1.233c0 .045-.006.09-.02.13a.26.26 0 0 1-.07.108.355.355 0 0 1-.128.073.645.645 0 0 1-.207.028h-.466v-.743c.013 0 .035 0 .064-.002.03-.002.06-.003.092-.003h.16c.214 0 .364.028.448.084.085.056.127.143.127.26v.065Zm-.106 1.559a.338.338 0 0 0 .123-.28v-.046a.404.404 0 0 0-.096-.269c-.064-.076-.179-.114-.346-.114h-.466v.803h.072l.1.003.1.002h.07c.213 0 .361-.033.443-.099Zm3.1-.958c0-.157-.024-.291-.07-.402a.695.695 0 0 0-.194-.27.79.79 0 0 0-.306-.155 1.542 1.542 0 0 0-.406-.05 3.31 3.31 0 0 0-.721.09c-.053.015-.08.047-.08.095v.348c0 .029.007.05.021.06a.082.082 0 0 0 .055.018h.02l.125-.011a4.762 4.762 0 0 1 .365-.017c.068-.002.136-.002.202-.002.098 0 .174.018.23.055.055.038.083.118.083.241v.155h-.225c-.359 0-.62.058-.782.174-.162.116-.244.3-.244.552v.038a.9.9 0 0 0 .06.352.62.62 0 0 0 .161.228.597.597 0 0 0 .228.123.952.952 0 0 0 .264.036.907.907 0 0 0 .58-.193v.069c0 .022.008.043.025.06a.079.079 0 0 0 .058.026h.467a.079.079 0 0 0 .058-.026.083.083 0 0 0 .025-.06v-1.534Zm-.824 1.106a.994.994 0 0 0 .16-.066v-.473H9.69a.7.7 0 0 0-.18.02.265.265 0 0 0-.112.057.206.206 0 0 0-.058.1.514.514 0 0 0-.017.137v.038c0 .092.021.15.065.176a.393.393 0 0 0 .198.039.59.59 0 0 0 .18-.028Zm3.374.423v-1.43c0-.135-.01-.261-.031-.38a.866.866 0 0 0-.113-.31.584.584 0 0 0-.225-.208.775.775 0 0 0-.369-.077 1.13 1.13 0 0 0-.354.05 1.163 1.163 0 0 0-.325.175v-.104a.085.085 0 0 0-.025-.061.079.079 0 0 0-.059-.026h-.466a.078.078 0 0 0-.059.026.084.084 0 0 0-.025.06v2.285c0 .023.01.044.027.063a.083.083 0 0 0 .06.027h.505a.08.08 0 0 0 .059-.027.09.09 0 0 0 .025-.063v-1.688c.072-.04.14-.073.204-.099a.524.524 0 0 1 .344-.02c.04.014.071.036.093.067a.292.292 0 0 1 .046.125c.009.051.013.114.013.188v1.428a.09.09 0 0 0 .025.062.076.076 0 0 0 .058.027h.505a.083.083 0 0 0 .06-.027.088.088 0 0 0 .027-.063Zm2.05-.416v.382c0 .031-.006.054-.02.067a.165.165 0 0 1-.067.032 2.196 2.196 0 0 1-.554.064c-.295 0-.53-.093-.707-.28-.176-.185-.264-.454-.264-.807v-.36c0-.353.088-.622.264-.808.177-.186.412-.28.707-.28a2.182 2.182 0 0 1 .554.065.19.19 0 0 1 .067.032c.014.013.02.035.02.067v.382a.067.067 0 0 1-.022.054.084.084 0 0 1-.056.02h-.009a3.784 3.784 0 0 0-.508-.03.375.375 0 0 0-.134.023.251.251 0 0 0-.108.081.437.437 0 0 0-.073.155.895.895 0 0 0-.027.238v.361c0 .095.009.174.027.239a.437.437 0 0 0 .073.154.25.25 0 0 0 .108.082.373.373 0 0 0 .134.024 3.748 3.748 0 0 0 .508-.03h.008c.023 0 .041.006.057.019.015.013.023.03.023.054Zm2.314-.872c0-.172-.023-.327-.069-.464a.893.893 0 0 0-.526-.573 1.18 1.18 0 0 0-.449-.08c-.17 0-.32.026-.449.08a.912.912 0 0 0-.328.223.948.948 0 0 0-.202.35 1.458 1.458 0 0 0-.07.464v.3c0 .172.024.327.07.464a.948.948 0 0 0 .202.35c.09.096.199.17.328.224.13.053.28.08.449.08.17 0 .32-.027.45-.08a.892.892 0 0 0 .525-.574c.046-.137.07-.292.07-.464v-.3Zm-1.044.829c.246 0 .369-.177.369-.529v-.3c0-.35-.123-.525-.369-.525a.322.322 0 0 0-.278.131c-.063.088-.095.219-.095.394v.3c0 .175.032.307.095.396a.32.32 0 0 0 .278.133Zm3.524.46v-1.431c0-.135-.01-.261-.031-.38a.863.863 0 0 0-.113-.31.583.583 0 0 0-.225-.208.775.775 0 0 0-.369-.077 1.13 1.13 0 0 0-.354.05 1.161 1.161 0 0 0-.325.175v-.104a.084.084 0 0 0-.025-.061.078.078 0 0 0-.059-.026h-.466a.079.079 0 0 0-.059.026.084.084 0 0 0-.025.06v2.285c0 .023.01.044.027.063a.083.083 0 0 0 .06.027h.505a.08.08 0 0 0 .059-.027.091.091 0 0 0 .025-.063v-1.688c.072-.04.14-.073.204-.099a.523.523 0 0 1 .344-.02c.04.014.071.036.093.067a.295.295 0 0 1 .046.125c.009.051.013.114.013.188v1.428a.09.09 0 0 0 .025.062.076.076 0 0 0 .058.027h.505a.083.083 0 0 0 .06-.027.088.088 0 0 0 .027-.063Zm1.817-.323v.332c0 .048-.026.077-.079.085-.064.011-.12.02-.166.026a1.454 1.454 0 0 1-.463-.02.448.448 0 0 1-.218-.11.516.516 0 0 1-.133-.225 1.259 1.259 0 0 1-.045-.371v-1.246l-.334-.056a.146.146 0 0 1-.06-.032.074.074 0 0 1-.027-.058v-.284c0-.023.009-.044.027-.062a.083.083 0 0 1 .06-.028h.334v-.352a.07.07 0 0 1 .025-.056.142.142 0 0 1 .058-.03l.505-.09h.013c.022 0 .04.006.054.019a.07.07 0 0 1 .02.054v.455h.342c.022 0 .042.009.058.026a.085.085 0 0 1 .025.06v.351a.085.085 0 0 1-.025.061.079.079 0 0 1-.058.026h-.342v1.25c0 .086.007.141.021.165.014.025.053.037.117.037h.204c.058 0 .088.024.088.073Zm2.226-1.207a1.05 1.05 0 0 0-.069-.402.695.695 0 0 0-.193-.27.791.791 0 0 0-.307-.155 1.543 1.543 0 0 0-.406-.05 3.307 3.307 0 0 0-.721.09c-.053.015-.08.047-.08.095v.348c0 .029.008.05.021.06a.083.083 0 0 0 .055.018h.02l.126-.011a4.758 4.758 0 0 1 .364-.017c.068-.002.136-.002.202-.002.098 0 .174.018.23.055.055.038.083.118.083.241v.155h-.225c-.359 0-.619.058-.782.174-.162.116-.243.3-.243.552v.038a.9.9 0 0 0 .06.352c.04.095.094.171.16.228a.597.597 0 0 0 .228.123.951.951 0 0 0 .264.036.908.908 0 0 0 .58-.193v.069c0 .022.008.043.025.06a.078.078 0 0 0 .058.026h.467a.079.079 0 0 0 .058-.026.084.084 0 0 0 .025-.06v-1.534Zm-.823 1.106a.994.994 0 0 0 .16-.066v-.473h-.237a.7.7 0 0 0-.18.02.266.266 0 0 0-.112.057.205.205 0 0 0-.058.1.513.513 0 0 0-.017.137v.038c0 .092.022.15.065.176a.393.393 0 0 0 .198.039c.064 0 .124-.01.181-.028Zm2.874.389v-.382a.067.067 0 0 0-.023-.054.084.084 0 0 0-.056-.02h-.008a3.744 3.744 0 0 1-.509.03.372.372 0 0 1-.133-.023.249.249 0 0 1-.109-.082.437.437 0 0 1-.073-.154.892.892 0 0 1-.027-.239v-.36a.89.89 0 0 1 .027-.239.437.437 0 0 1 .073-.155.25.25 0 0 1 .109-.081.374.374 0 0 1 .133-.024 3.779 3.779 0 0 1 .509.03h.008a.08.08 0 0 0 .056-.02.066.066 0 0 0 .023-.053v-.382c0-.032-.007-.054-.02-.067a.164.164 0 0 0-.067-.032 2.183 2.183 0 0 0-.554-.064c-.296 0-.53.093-.707.279-.177.186-.265.455-.265.807v.361c0 .353.088.622.265.808.176.186.411.28.706.28a2.197 2.197 0 0 0 .555-.065.164.164 0 0 0 .066-.032c.014-.013.021-.036.021-.067Zm1.796-.288v.332c0 .048-.026.077-.079.085a4.07 4.07 0 0 1-.167.026 1.453 1.453 0 0 1-.463-.02.448.448 0 0 1-.217-.11.516.516 0 0 1-.133-.225 1.263 1.263 0 0 1-.045-.371v-1.246l-.334-.056a.146.146 0 0 1-.06-.032.074.074 0 0 1-.027-.058v-.284c0-.023.009-.044.027-.062a.083.083 0 0 1 .06-.028h.334v-.352a.07.07 0 0 1 .025-.056.141.141 0 0 1 .058-.03l.505-.09h.012c.023 0 .04.006.054.019a.07.07 0 0 1 .021.054v.455h.342a.08.08 0 0 1 .058.026.085.085 0 0 1 .025.06v.351a.085.085 0 0 1-.025.061.079.079 0 0 1-.058.026h-.342v1.25c0 .086.007.141.021.165.014.025.053.037.117.037h.204c.058 0 .087.024.087.073Z" clip-rule="evenodd"/>
|
|
6
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#F7931A" fill-rule="evenodd" d="M24.87 11.935a7.935 7.935 0 1 1-15.87 0 7.935 7.935 0 0 1 15.87 0Zm-6.029-2.948c1.104.379 1.912.946 1.753 2.003-.115.773-.545 1.147-1.117 1.278.784.407 1.052 1.18.803 2.113-.471 1.343-1.593 1.456-3.084 1.175l-.362 1.445-.874-.218.357-1.424a36.959 36.959 0 0 1-.697-.18l-.358 1.431-.874-.217.362-1.447-1.76-.443.434-.997s.644.17.635.158c.248.06.358-.1.401-.207l.981-3.92c.011-.184-.053-.418-.407-.506.013-.01-.635-.157-.635-.157l.232-.93 1.764.435.358-1.431.874.217-.351 1.403c.235.053.471.107.7.164l.35-1.394.873.218-.358 1.43Zm-2.091 2.387c.595.157 1.89.501 2.117-.4.23-.921-1.029-1.2-1.645-1.336l-.182-.041-.435 1.739.145.038Zm-.675 2.8c.713.188 2.273.599 2.521-.394.254-1.014-1.258-1.352-1.996-1.517-.083-.019-.155-.035-.215-.05l-.48 1.917.17.044Z" clip-rule="evenodd"/>
|
|
4
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#8FC258" fill-rule="evenodd" d="M24.2 7.787a8.15 8.15 0 1 1-11.103-3.091A8.15 8.15 0 0 1 24.2 7.786Zm-6.88.407c1.178-.219 2.187-.119 2.578.906.288.75.092 1.302-.354 1.708.907-.033 1.536.523 1.786 1.483.256 1.44-.69 2.107-2.165 2.61l.405 1.474-.891.247-.4-1.455c-.231.064-.469.127-.715.19l.403 1.462-.891.247-.407-1.477-1.798.493-.115-1.111s.662-.173.648-.18c.252-.07.27-.27.254-.387l-1.101-4.001c-.084-.171-.26-.347-.62-.248.007-.015-.648.18-.648.18l-.262-.95 1.797-.5-.402-1.46.891-.248.395 1.432c.237-.071.475-.142.71-.207l-.392-1.422.891-.247.402 1.46Zm-.666 3.19c.612-.159 1.944-.506 1.692-1.426-.26-.94-1.526-.554-2.146-.364-.07.021-.132.04-.184.054l.49 1.776.148-.04Zm.81 2.846c.733-.192 2.335-.612 2.056-1.625-.285-1.036-1.808-.575-2.551-.35l-.217.064.538 1.957.174-.046Z" clip-rule="evenodd"/>
|
|
4
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#002855" fill-rule="evenodd" d="M6.936 13.767a1.18 1.18 0 0 1-.594.159H6.18c-.042 0-.102-.004-.276-.035l.587-2.57a.777.777 0 0 1 .36-.196c.134-.031.221-.04.305-.04.258 0 .457.078.554.246.095.169.143.403.143.703a2.17 2.17 0 0 1-.436 1.307c-.135.177-.295.32-.481.426Zm1.322-3.69a1.637 1.637 0 0 0-.746-.16c-.139 0-.267.015-.387.047a2.01 2.01 0 0 0-.353.128l.55-2.414-1.394.225-1.557 6.81c.174.087.359.156.554.206.195.05.379.087.553.112.174.025.328.04.463.042.135.004.23.005.284.005.42 0 .81-.083 1.17-.248.36-.165.671-.39.935-.675a3.273 3.273 0 0 0 .855-2.225c0-.28-.033-.543-.099-.786a1.83 1.83 0 0 0-.306-.637 1.494 1.494 0 0 0-.522-.43Zm3.69-.761.204-.898h-1.336l-.205.898h1.336Zm1.932 4.573a.886.886 0 0 1-.405-.077.433.433 0 0 1-.208-.216.703.703 0 0 1-.046-.331c.01-.128.032-.266.07-.413l.405-1.766h1.522l.276-1.172h-1.53l.35-1.488-1.43.23-.903 3.975a5.218 5.218 0 0 0-.13.931 1.76 1.76 0 0 0 .13.783c.098.227.264.406.498.537.233.132.562.197.987.197.295 0 .55-.025.765-.077l.078-.019.278-1.212a2.095 2.095 0 0 1-.278.075 2.098 2.098 0 0 1-.428.043Zm16.234-3.973h-1.336l-.777 3.404h.002l-.107.468a2.105 2.105 0 0 1-.651.1.886.886 0 0 1-.406-.077.434.434 0 0 1-.208-.216.703.703 0 0 1-.046-.331c.01-.128.032-.266.07-.413l.405-1.767.267-1.17v-.001h-1.364l-.618 2.717a5.217 5.217 0 0 0-.13.931 1.76 1.76 0 0 0 .13.783c.098.227.264.406.498.537.233.131.562.197.986.197a3.3 3.3 0 0 0 .766-.077l.025-.006v.003c-.06.28-.181.507-.376.685-.194.177-.483.266-.866.266-.163 0-.312-.01-.446-.03l-.263 1.152c.178.024.375.037.593.037.407 0 .763-.049 1.068-.145a2.11 2.11 0 0 0 .785-.44c.218-.196.4-.442.548-.737.146-.296.264-.647.354-1.052l.925-4.046-.004-.001.176-.771Zm-6.553 1.17c-.623 0-.742 0-.997.137a1.486 1.486 0 0 0-.463.417c-.132.171-.235.37-.31.594a2.2 2.2 0 0 0-.112.702c0 .299.048.536.144.71.095.175.272.263.53.263a.813.813 0 0 0 .373-.085c.11-.056.229-.15.355-.28a6.265 6.265 0 0 1 .141-.928l.008-.038.331-1.492Zm.949 1.737a3.224 3.224 0 0 0-.072 1.072c.036.358.168.908.296 1.183h-1.293c-.117-.207-.143-.332-.162-.419-.006-.03-.01-.054-.018-.077a2.383 2.383 0 0 1-.558.356c-.203.093-.431.14-.683.14-.3 0-.556-.054-.768-.163a1.46 1.46 0 0 1-.521-.44 1.793 1.793 0 0 1-.293-.646 3.33 3.33 0 0 1-.09-.79c0-.43.074-.836.22-1.217.147-.38.351-.712.612-.996.26-.284.89-.91 1.922-.91h2.072l-.664 2.907Zm-7.437 1.106c-.151 0-.278-.013-.38-.038l.647-2.805h.527c.284.002.484.102.6.29a1.3 1.3 0 0 1 .171.688c0 .276-.038.529-.113.758-.076.23-.181.425-.317.589-.135.163-.3.29-.493.381a1.487 1.487 0 0 1-.642.137Zm2.687-.712a3.5 3.5 0 0 0 .217-1.257c0-.283-.038-.548-.113-.796a1.81 1.81 0 0 0-.348-.65 1.629 1.629 0 0 0-.602-.438 2.171 2.171 0 0 0-.873-.16h-1.785l-1.554 6.81h1.34l.406-1.705c.205.038.41.057.616.057.422 0 .812-.077 1.171-.23.36-.155.667-.37.923-.646.257-.276.457-.604.602-.985ZM9.293 15.08l1.18-5.166h1.336l-1.18 5.166H9.293Z" clip-rule="evenodd"/>
|
|
4
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#EE293D" d="M4.379 10.808c-.235 0-.258-.076-.258-.632v-.095c0-.558.023-.633.258-.633h5.37c.235 0 .258.075.258.632v.095c0 .557-.023.632-.259.632H4.38Zm0-2.447c-.235 0-.258-.076-.258-.633v-.094c0-.559.023-.634.258-.634h5.37c.235 0 .258.076.258.634v.094c0 .557-.023.633-.259.633H4.38Zm.804 7.267c0-.92.481-1.427 1.204-1.427.273 0 .492.074.765.201.1.047.181.028.311-.26l.095-.195c.093-.236.1-.334-.013-.386-.335-.183-.854-.3-1.302-.3-1.277 0-2.243.946-2.243 2.367 0 1.422.966 2.366 2.242 2.366.449 0 .98-.115 1.316-.3.112-.05.105-.15.012-.385l-.093-.207c-.13-.288-.213-.305-.313-.26-.273.128-.503.202-.777.202-.723 0-1.202-.495-1.202-1.416h-.001Zm15.215 2.149c0 .125-.05.159-.43.159h-.038c-.4 0-.455-.017-.486-.109a1.47 1.47 0 0 1-.05-.189c-.211.236-.466.362-.854.362-.94 0-1.506-.645-1.506-1.682 0-1.121.629-1.785 1.562-1.785.263 0 .505.076.692.214V13.29c0-.097.012-.138.536-.138h.038c.485 0 .535.04.535.138v4.487Zm-1.11-2.212a.684.684 0 0 0-.229-.153.726.726 0 0 0-.275-.054c-.418 0-.616.339-.616.96 0 .357.08.584.198.702.106.123.268.163.425.163.193 0 .342-.045.41-.127.062-.063.087-.16.087-.385v-1.106Zm6.763 2.234c0 .097-.05.137-.536.137h-.038c-.523 0-.534-.04-.534-.137V13.29c0-.097.011-.138.534-.138h.037c.486 0 .536.04.536.138v4.51Zm-3.902-1.198c.062.408.336.605.766.605.331 0 .641-.069 1.003-.213.076-.029.144 0 .224.229l.057.128c.08.236.073.288-.013.333-.43.224-.879.316-1.377.316-1.102 0-1.793-.626-1.793-1.697 0-1.042.635-1.769 1.725-1.769 1.078 0 1.631.715 1.631 1.705 0 .328-.03.363-.155.363h-2.068Zm1.114-.639c-.017-.344-.166-.645-.534-.645-.319 0-.55.224-.593.645h1.127Zm4.514.639c.06.408.335.605.766.605a2.62 2.62 0 0 0 1.002-.213c.074-.029.144 0 .224.229l.057.128c.08.236.073.288-.012.333-.431.224-.88.316-1.379.316-1.102 0-1.792-.626-1.792-1.697 0-1.042.633-1.769 1.724-1.769 1.079 0 1.633.715 1.633 1.705 0 .328-.031.363-.156.363h-2.068Zm1.115-.639c-.02-.344-.169-.645-.537-.645-.317 0-.549.224-.592.645h1.129Zm-13.631-.374a.596.596 0 0 0-.212-.164.64.64 0 0 0-.268-.06c-.417 0-.616.34-.616.943 0 .513.148.893.603.893.17 0 .293-.04.38-.122.081-.08.113-.19.113-.43v-1.06Zm1.121 2.189c0 .125-.05.159-.429.159h-.051c-.398 0-.454-.017-.485-.109a1.326 1.326 0 0 1-.05-.189c-.211.236-.467.362-.854.362-.903 0-1.483-.634-1.483-1.67 0-1.15.717-1.797 1.564-1.797.343 0 .641.134.804.323l.019-.144c.005-.068.025-.114.434-.114h.045c.424 0 .485.028.485.133v3.046h.001Zm-5.2-4.152c.417 0 .442.005.442.132v.84h.717c.1 0 .13.018.13.334v.047c0 .315-.03.334-.13.334h-.716v1.508c0 .253.049.386.298.386.13 0 .243-.023.356-.057.117-.042.162.01.242.275l.02.063c.086.29.06.312-.05.363-.225.098-.524.15-.804.15-.885 0-1.134-.414-1.134-1.135v-1.553h-.417c-.106 0-.132-.02-.132-.334v-.047c0-.316.026-.333.132-.333h.467c.05-.27.137-.651.193-.841.031-.11.05-.132.386-.132Zm-2.317.973c.487 0 .53.04.53.138V17.8c0 .103-.043.137-.53.137h-.031c-.535 0-.548-.034-.548-.137v-3.063c0-.099.013-.138.548-.138h.031Zm-.031-1.497c.35 0 .605.253.605.54a.514.514 0 0 1-.182.385.62.62 0 0 1-.423.151c-.347 0-.605-.253-.605-.535 0-.289.258-.54.605-.54Z"/>
|
|
4
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#0079BE" fill-rule="evenodd" d="M15.838 19.3h2.597c4.052 0 7.281-3.215 7.408-7.187v-.063c-.063-4.034-3.356-7.312-7.408-7.25h-2.913c-3.863.127-6.902 3.405-6.775 7.314 0 3.908 3.166 7.123 7.091 7.186Zm-5.825-7.25c0-3.278 2.723-5.988 6.015-5.988 3.293 0 6.016 2.71 6.016 5.988 0 3.278-2.723 5.99-6.016 5.99-3.292 0-6.015-2.711-6.015-5.99Zm6.965 4.035V8.079c2.216.567 3.61 2.774 3.04 4.98a4.114 4.114 0 0 1-3.04 3.026Zm-4.875-5.043a4.142 4.142 0 0 0 2.976 5.043V8.079a4.155 4.155 0 0 0-2.976 2.963Z" clip-rule="evenodd"/>
|
|
4
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#FD6020" d="m14 23 19-5.75V20a3 3 0 0 1-3 3H14Z"/>
|
|
4
|
+
<path fill="#000" fill-rule="evenodd" d="M29.394 9.11c1.045 0 1.62.484 1.62 1.398.052.698-.418 1.29-1.045 1.397l1.41 1.988h-1.097l-1.202-1.935h-.104v1.934h-.889V9.111h1.307Zm-.418 2.204h.26c.576 0 .837-.269.837-.752 0-.43-.261-.699-.836-.699h-.261v1.45Zm-3.973 2.579h2.51v-.806h-1.621v-1.29h1.568v-.806h-1.568V9.917h1.62V9.11h-2.509v4.781Zm-2.613-1.559-1.202-3.223h-.94L22.18 14h.47l1.934-4.89h-.94l-1.255 3.225Zm-10.61-.805c0 1.343 1.046 2.471 2.352 2.471.418 0 .784-.107 1.15-.269v-1.074c-.261.322-.627.537-1.045.537-.836 0-1.516-.645-1.516-1.504v-.108a1.591 1.591 0 0 1 1.464-1.665c.418 0 .836.215 1.097.537V9.379c-.313-.214-.732-.268-1.097-.268-1.36-.108-2.405 1.02-2.405 2.418Zm-1.62-.591c-.522-.215-.68-.323-.68-.591.053-.323.314-.591.628-.538.261 0 .523.161.732.376l.47-.644c-.366-.323-.836-.538-1.306-.538-.732-.053-1.36.538-1.412 1.29v.054c0 .644.262 1.02 1.098 1.289.209.054.418.161.627.269a.568.568 0 0 1 .261.483c0 .376-.313.699-.627.699H9.9c-.418 0-.784-.269-.94-.645l-.576.59c.314.592.941.914 1.568.914.836.054 1.516-.59 1.568-1.45v-.162c-.052-.644-.313-.967-1.359-1.396Zm-3.03 2.954h.888V9.111H7.13v4.781ZM3 9.111h1.567c1.255.054 2.248 1.128 2.196 2.418 0 .698-.314 1.343-.836 1.826-.47.376-1.045.591-1.62.538H3V9.11Zm1.15 3.976c.418.053.888-.108 1.202-.377.313-.322.47-.752.47-1.235 0-.43-.157-.86-.47-1.182-.314-.269-.784-.43-1.202-.376h-.262v3.17h.262Z" clip-rule="evenodd"/>
|
|
5
|
+
<path fill="#FD6020" fill-rule="evenodd" d="M17.948 9c-1.307 0-2.404 1.075-2.404 2.471 0 1.344 1.045 2.472 2.404 2.526 1.359.053 2.404-1.075 2.456-2.472C20.352 10.128 19.307 9 17.948 9Z" clip-rule="evenodd"/>
|
|
6
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#FECA2F" d="M7.824 9.496a2.92 2.92 0 0 1 .916-.146c1.397 0 2.563.974 2.83 2.268l1.98-.396c-.454-2.2-2.435-3.854-4.81-3.854a4.99 4.99 0 0 0-1.556.247l.64 1.88Z"/>
|
|
4
|
+
<path fill="#1BA7DE" d="m5.467 15.868 1.186-1.531c-.53-.536-.863-1.317-.863-2.189 0-.87.333-1.652.863-2.187l-1.187-1.53C4.566 9.34 4 10.668 4 12.147c0 1.481.568 2.81 1.467 3.72Z"/>
|
|
5
|
+
<path fill="#EC412A" d="M11.571 12.68c-.268 1.294-1.433 2.266-2.83 2.266a2.93 2.93 0 0 1-.916-.146l-.641 1.882a4.98 4.98 0 0 0 1.557.248c2.374 0 4.354-1.654 4.81-3.852l-1.98-.398Z"/>
|
|
6
|
+
<path fill="#000" fill-rule="evenodd" d="M23.08 8.43v5.442l.976.391-.462 1.073-.966-.388a1.085 1.085 0 0 1-.475-.386 1.186 1.186 0 0 1-.187-.675V8.43h1.114Zm-7.406 4.044c.024-1.556 1.35-2.798 2.957-2.774 1.365.02 2.496.945 2.793 2.175l-5.279 2.181a2.735 2.735 0 0 1-.471-1.582Zm1.208.219a1.436 1.436 0 0 1-.01-.2c.014-.917.795-1.649 1.742-1.633a1.73 1.73 0 0 1 1.283.588l-3.015 1.245Zm2.904 1.01a1.747 1.747 0 0 1-2.112.218l-.638.982c.437.267.952.425 1.507.433a2.955 2.955 0 0 0 2.08-.802l-.837-.831Zm7.357-2.843c-.19 0-.373.03-.543.085l-.38-1.101c.29-.094.6-.145.924-.145 1.41 0 2.586.97 2.856 2.256l-1.176.232c-.159-.758-.85-1.327-1.68-1.327Zm-1.93 3.769.794-.869a1.631 1.631 0 0 1-.578-1.242c0-.495.223-.938.578-1.242l-.796-.869a2.773 2.773 0 0 0-.982 2.11c0 .841.38 1.596.983 2.112Zm1.93-.453c.83 0 1.521-.569 1.68-1.325l1.177.233c-.271 1.285-1.448 2.252-2.857 2.252a3 3 0 0 1-.925-.145l.381-1.1c.171.055.354.085.544.085Z" clip-rule="evenodd"/>
|
|
7
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<circle cx="16.935" cy="11.935" r="7.935" fill="#6481E7"/>
|
|
4
|
+
<path fill="#fff" fill-rule="evenodd" d="m13.468 12.258 3.56 2.104v-8.01l-3.56 5.906Z" clip-rule="evenodd"/>
|
|
5
|
+
<path fill="#C1CCF5" fill-rule="evenodd" d="M17.028 6.352v8.01l3.56-2.104-3.56-5.906Z" clip-rule="evenodd"/>
|
|
6
|
+
<path fill="#8299EC" fill-rule="evenodd" d="m17.028 10.64-3.56 1.618 3.56 2.104 3.56-2.104-3.56-1.618Z" clip-rule="evenodd"/>
|
|
7
|
+
<path fill="#C1CCF5" fill-rule="evenodd" d="m17.028 10.64-3.56 1.618 3.56 2.104V10.64Z" clip-rule="evenodd"/>
|
|
8
|
+
<path fill="#fff" fill-rule="evenodd" d="m13.469 12.933 3.559 5.016v-2.913l-3.56-2.103Z" clip-rule="evenodd"/>
|
|
9
|
+
<path fill="#C1CCF5" fill-rule="evenodd" d="M17.028 15.036v2.913l3.562-5.016-3.562 2.103Z" clip-rule="evenodd"/>
|
|
10
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#659AD2" fill-rule="evenodd" d="M14.507 10.656h-4.453C10.39 6.354 12.136 5.053 16.688 5h.538c.577.007 1.108.034 1.598.084a1.428 1.428 0 0 0-.111.007 3.782 3.782 0 0 1-.137.01c-.538.031-1.897.112-3.14 1.613-.734.889-.807 3.942-.807 3.942h-.122Zm-.324 5.235a1.6 1.6 0 0 1-1.263.598v2.61c-1.83-.738-2.654-2.277-2.869-5.117a24.158 24.158 0 0 1-.051-.891l4.63-.002-.004.275c-.005.476-.016 1.402-.015 1.433.004.135-.03.597-.428 1.094Zm6.106-10.55c2.326.62 3.334 2.169 3.574 5.35.075.987.066 1.645.066 1.645s.01.659-.066 1.646c-.327 4.33-2.073 5.638-6.637 5.69h-.538a15.801 15.801 0 0 1-2.125-.15h.008c.02 0 .038 0 .058-.002.826-.048 1.976-.684 2.66-2.166.299-.648.379-1.805.379-1.805v-2.46h2.621v-2.433h-2.621l-.002-.008v-.003a.109.109 0 0 1-.002-.006l-.003-.01v-.005l-.001-.003a.177.177 0 0 1-.005-.023l-.002-.012v-.002a.509.509 0 0 1-.005-.03l-.002-.014v-.003l-.004-.036v-.008a.163.163 0 0 0-.002-.021.625.625 0 0 1-.002-.035v-.089l.001-.01.003-.06.002-.01v-.011l.009-.073.001-.007.001-.008.016-.088v-.003a2.3 2.3 0 0 1 .33-.77c.511-.796 1.963-.759 2.242-.744l.042.002h.004V5.343Zm-5.818 14.165h.005-.005Z" clip-rule="evenodd"/>
|
|
4
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#0F3365" fill-rule="evenodd" d="M6.181 7.743c-.603 0-1.09.445-1.092.995v6.605a.916.916 0 0 0 .109.431c.176.333.55.563.983.564h11.36V7.743H6.18Zm0-.743h21.74c1.053 0 1.906.778 1.907 1.738v6.605c0 .96-.854 1.737-1.907 1.737H6.18c-1.053 0-1.906-.778-1.907-1.737V8.738C4.273 7.778 5.127 7 6.18 7Z" clip-rule="evenodd"/>
|
|
4
|
+
<path fill="#FFFFFE" fill-rule="evenodd" d="M19.4 14.262h-.954v-3.53h.88v.454h.01c.19-.352.594-.512 1.028-.512.763 0 1.181.662 1.181 1.27 0 .744-.44 1.362-1.26 1.362-.334 0-.695-.11-.875-.41h-.01v1.366Zm.583-1.622c.36 0 .577-.276.577-.676 0-.334-.207-.623-.577-.623-.35 0-.584.28-.584.656 0 .367.266.643.584.643Zm5.217 1.622c.196.039.392.058.594.058.824 0 1.055-.546 1.305-1.138l.046-.107 1.012-2.343h-.954l-.567 1.642h-.01l-.594-1.642h-1.028l1.118 2.574a.477.477 0 0 1-.482.348c-.133 0-.25-.014-.376-.053l-.064.661Zm-.355-.932a2.821 2.821 0 0 1-.054-.594v-.937c0-.768-.609-1.043-1.314-1.043a3.09 3.09 0 0 0-1.102.179l.016.589a1.94 1.94 0 0 1 .88-.188c.344 0 .625.091.63.434a3.028 3.028 0 0 0-.445-.034c-.508 0-1.425.092-1.425.86 0 .546.487.792 1.033.792.392 0 .657-.14.874-.454h.01c0 .077.006.153.012.23.004.055.008.11.01.166h.875Zm-1.924-.797c0-.241.254-.333.577-.333.102 0 .2.005.293.01l.11.005a.59.59 0 0 1-.588.594c-.223 0-.392-.102-.392-.276Z" clip-rule="evenodd"/>
|
|
5
|
+
<path fill="#D8232A" fill-rule="evenodd" d="M10.157 13.248h.953v-2.516h-.953v2.516Zm0-2.926h.953v-.638h-.953v.638Zm3.286.352c.111 0 .228.015.323.029l-.048.724c-.105-.028-.211-.028-.323-.028-.445 0-.694.294-.694.787v1.062h-.954v-2.516h.87v.464h.01c.164-.319.403-.522.816-.522Zm3.57 1.319c0 .83-.694 1.313-1.605 1.313-.91 0-1.605-.483-1.605-1.313 0-.836.694-1.319 1.605-1.319.912 0 1.606.483 1.606 1.319Zm-2.225 0c0 .371.18.705.62.705s.62-.334.62-.705c0-.377-.18-.71-.62-.71s-.62.333-.62.71Zm-6.153-1.26h.864v2.22c0 1.034-.552 1.367-1.664 1.367-.456 0-.832-.087-1.055-.159l.048-.686c.291.13.535.208.933.208.55 0 .847-.237.847-.73v-.135h-.01c-.228.295-.546.43-.927.43-.758 0-1.23-.521-1.23-1.265 0-.749.387-1.309 1.245-1.309.408 0 .737.203.938.512h.01v-.454Zm-.668.608c-.355 0-.54.285-.54.627 0 .391.254.614.54.614.34 0 .61-.261.61-.648 0-.28-.18-.593-.61-.593Z" clip-rule="evenodd"/>
|
|
6
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#3C4043" fill-rule="evenodd" d="M16.058 15.528v-2.935h1.515c.62 0 1.144-.208 1.571-.618l.103-.104c.78-.85.728-2.172-.103-2.958a2.162 2.162 0 0 0-1.571-.63H15.14v7.245h.917Zm0-3.825v-2.53h1.538c.33 0 .643.127.877.358.495.486.507 1.294.028 1.797a1.19 1.19 0 0 1-.905.376h-1.538Zm7.465-.745c-.393-.364-.928-.549-1.606-.549-.871 0-1.526.324-1.959.965l.809.514c.296-.439.7-.658 1.213-.658.324 0 .637.121.882.34.24.209.376.509.376.827v.213c-.353-.196-.797-.3-1.344-.3-.637 0-1.15.15-1.531.457-.382.306-.575.71-.575 1.224-.012.468.187.913.54 1.213.36.324.815.486 1.35.486.632 0 1.133-.284 1.515-.85h.04v.688h.876v-3.056c0-.641-.193-1.15-.586-1.514Zm-2.488 3.657a.753.753 0 0 1-.302-.607c0-.271.125-.496.37-.675.25-.18.564-.272.934-.272.512-.006.911.11 1.196.34 0 .394-.154.735-.456 1.023a1.446 1.446 0 0 1-1.03.434 1.11 1.11 0 0 1-.712-.243Zm5.044 3.09 3.064-7.134h-.997L26.73 14.13h-.017l-1.453-3.559h-.996l2.01 4.64-1.139 2.495h.945Z" clip-rule="evenodd"/>
|
|
4
|
+
<path fill="#4285F4" d="M12.893 11.958c0-.283-.023-.566-.069-.844H8.959v1.6h2.215a1.928 1.928 0 0 1-.82 1.266v1.04h1.321c.775-.722 1.219-1.791 1.219-3.062Z"/>
|
|
5
|
+
<path fill="#34A853" d="M8.958 16.025c1.105 0 2.039-.37 2.716-1.005l-1.32-1.04c-.37.254-.843.398-1.396.398-1.07 0-1.975-.733-2.3-1.715h-1.36v1.074a4.09 4.09 0 0 0 3.66 2.288Z"/>
|
|
6
|
+
<path fill="#FBBC04" d="M6.658 12.663a2.544 2.544 0 0 1 0-1.595V10h-1.36a4.177 4.177 0 0 0 0 3.731l1.36-1.068Z"/>
|
|
7
|
+
<path fill="#EA4335" d="M8.958 9.352a2.19 2.19 0 0 1 1.572.624l1.173-1.19a3.926 3.926 0 0 0-2.745-1.08c-1.548 0-2.966.89-3.66 2.293l1.36 1.075c.325-.988 1.23-1.722 2.3-1.722Z"/>
|
|
8
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#000" fill-rule="evenodd" d="M9.241 4.956h8.091c5.498 0 7.61 3.093 7.61 7.002 0 4.677-2.952 7.027-7.61 7.027h-8.09V4.955Zm.769.841v12.397h7.322c4.418 0 6.818-2.128 6.818-6.21 0-4.207-2.592-6.187-6.818-6.187H10.01Zm2.16 6.409c.81 0 1.465-.676 1.465-1.51 0-.833-.656-1.509-1.465-1.509-.808 0-1.464.676-1.464 1.51 0 .833.656 1.509 1.464 1.509Zm-1.176.643h2.353v4.305h-2.353V12.85Z" clip-rule="evenodd"/>
|
|
4
|
+
<path fill="#D50072" fill-rule="evenodd" d="M21.485 9.31h.673v2.08h.984c-.264-3.787-3.169-4.628-5.81-4.628h-2.809v2.549h.408c.769 0 1.225.52 1.225 1.385 0 .867-.456 1.386-1.2 1.386h-.433v5.072h2.81c4.297 0 5.761-2.053 5.833-5.072h-1.68V9.311Zm-3.24 2.08v.692h-1.681V9.311h1.632v.693h-.96v.321h.912v.693h-.888v.371h.984Zm.287.692.817-2.771h.96l.816 2.771h-.696l-.144-.52h-.888l-.144.52h-.72Zm1.064-1.237h-.007v.025l.007-.025Zm0 0h.473l-.216-.767h-.024l-.233.767Zm-5.073.544v-1.385h.408c.264 0 .553.074.553.692 0 .619-.265.693-.553.693h-.408Z" clip-rule="evenodd"/>
|
|
5
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#EDAA00" fill-rule="evenodd" d="M24.951 18.62a1.328 1.328 0 0 1-1.328 1.329H10.329A1.327 1.327 0 0 1 9 18.62V5.328A1.328 1.328 0 0 1 10.33 4h13.292a1.328 1.328 0 0 1 1.328 1.328l.001 13.293Z" clip-rule="evenodd"/>
|
|
4
|
+
<path fill="#231F20" d="M17.906 12.147V9.29l.746-.177v.374s.193-.492.64-.607c.139-.034.208-.014.208-.014v.729c-.134.002-.267.03-.39.081-.277.11-.416.348-.416.71v1.577l-.788.183Zm-3.93.928s-.12-.18-.12-.824v-1.422l-.384.09v-.585l.384-.09v-.639l.793-.187v.637l.56-.133v.586l-.56.133v1.449c0 .658.175.784.175.784l-.848.201Zm1.316-1.699c0-.508.072-.878.227-1.162.185-.338.488-.557.93-.658.869-.198 1.182.317 1.17 1.007-.004.247-.003.367-.003.367l-1.532.36v.025c0 .483.101.712.407.646.264-.055.337-.22.358-.425.003-.033.005-.117.005-.117l.718-.172v.125c-.007.274-.087.954-1.084 1.19-.945.224-1.197-.353-1.197-1.186Zm1.187-1.288c-.254.058-.387.307-.392.72l.77-.184c.002-.02.002-.06.002-.125-.002-.31-.098-.475-.38-.411Zm5.703-.382c-.03-.87.196-1.56 1.166-1.78.62-.141.854.02.973.175.114.148.158.348.158.629v.052l-.76.18v-.105c0-.332-.09-.459-.332-.399-.287.073-.403.345-.403.887v.252c0 .551.076.804.406.734.288-.06.327-.311.332-.532l.002-.146.76-.179v.118c-.003.722-.384 1.177-1.097 1.343-.982.231-1.174-.337-1.205-1.229Zm-2.625 1.218c0-.662.388-.871.972-1.112.524-.217.535-.325.538-.513.002-.159-.071-.295-.332-.228-.24.06-.304.235-.317.373a1.282 1.282 0 0 0-.005.147l-.735.174a1.462 1.462 0 0 1 .05-.435c.118-.396.468-.662 1.07-.801.782-.181 1.043.163 1.044.697v1.265c0 .612.114.701.114.701l-.723.171a1.58 1.58 0 0 1-.097-.26s-.158.399-.703.527c-.573.135-.875-.22-.875-.706Zm1.505-.903c-.121.085-.25.16-.384.224-.242.119-.35.263-.35.487 0 .193.12.32.338.266.234-.058.396-.277.396-.58v-.397Zm-11.23 5.056a.458.458 0 0 1-.384-.708l.005-.006.009-.002 1.077-.255v.82l-.017.003c-.244.059-.536.126-.597.138a.426.426 0 0 1-.094.01Zm0 1.048a.458.458 0 0 1-.384-.705l.005-.008.009-.002 1.077-.254v.819l-.017.004c-.244.059-.536.127-.597.138a.488.488 0 0 1-.094.01v-.002Zm0 1.05a.458.458 0 0 1-.384-.707l.005-.009 1.087-.256v.82l-.017.003c-.258.063-.545.127-.597.14a.513.513 0 0 1-.094.008m-.127-3.1V9.492l.835-.197v4.581l-.835.198Zm2.081-.39a.515.515 0 0 0-1.031 0v4.282a1.398 1.398 0 0 0 1.395 1.395l1.458-.001v-3.78a.674.674 0 0 0-.3-.561l-1.3-.883v2.005a.11.11 0 0 1-.19.082.111.111 0 0 1-.031-.082l-.003-2.458h.002Zm.696-3.195a1.127 1.127 0 0 0-.744.574v-.321l-.752.178v2.056a.77.77 0 0 1 .791.139v-1.328c0-.318.16-.572.385-.622.17-.037.312.024.312.326v1.938l.792-.186v-2.05c0-.496-.19-.844-.785-.704Zm11.51-2.932a.49.49 0 1 1-.001-.978.49.49 0 0 1 0 .977v.001Zm0-.919a.428.428 0 1 0 0 .857.428.428 0 0 0 0-.857Z"/>
|
|
5
|
+
<path fill="#231F20" d="M23.813 6.776h.211c.084 0 .15.042.15.153 0 .078-.034.137-.099.148.06.006.09.038.094.123 0 .037.001.084.003.12a.061.061 0 0 0 .029.052h-.108a.09.09 0 0 1-.016-.053c-.004-.036-.003-.07-.004-.113 0-.065-.022-.094-.088-.094h-.075v.26h-.096l-.001-.596Zm.172.266a.088.088 0 0 0 .095-.097c0-.064-.027-.097-.09-.097h-.08v.194h.075Z"/>
|
|
6
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="url(#a)" d="M21.982 11.954c.531.012 1.065-.023 1.595.018.535.1.664.912.188 1.177-.324.175-.71.066-1.063.096h-.72v-1.29Zm1.902-1.461c.118.416-.284.79-.685.733h-1.217c.008-.393-.017-.82.012-1.191.488.013.98-.028 1.465.021a.58.58 0 0 1 .425.437Zm2.929-6.179c.022.796.003 1.634.01 2.446-.002 3.3.003 6.6-.003 9.9-.022 1.238-1.118 2.313-2.346 2.337-1.23.005-2.46.001-3.69.002v-4.99c1.34-.006 2.681.015 4.02-.01.622-.039 1.302-.449 1.331-1.132.073-.687-.574-1.162-1.189-1.237-.236-.006-.229-.069 0-.096.587-.127 1.047-.734.874-1.341-.146-.64-.853-.887-1.44-.885-1.198-.009-2.397-.002-3.595-.004.008-.931-.016-1.864.013-2.795.095-1.214 1.219-2.216 2.43-2.194h3.585Z"/>
|
|
4
|
+
<path fill="url(#b)" d="M7.246 6.635c.031-1.235 1.132-2.3 2.359-2.319 1.225-.004 2.45 0 3.675-.001-.003 4.131.007 8.264-.005 12.395-.047 1.22-1.136 2.266-2.35 2.288-1.227.004-2.454 0-3.682.001v-5.157c1.192.281 2.443.401 3.659.214.727-.116 1.522-.474 1.768-1.228.181-.645.08-1.324.106-1.986V9.304h-2.104c-.01 1.017.019 2.036-.016 3.052-.056.624-.675 1.02-1.264 1-.73.008-2.177-.53-2.177-.53-.004-1.905.021-4.291.031-6.19Z"/>
|
|
5
|
+
<path fill="url(#c)" d="M14.065 9.924c-.111.024-.022-.377-.05-.53.007-.96-.017-1.923.012-2.884.095-1.22 1.227-2.224 2.443-2.195h3.581c-.003 4.132.007 8.264-.005 12.396-.047 1.22-1.136 2.265-2.35 2.287-1.227.004-2.455 0-3.682.002v-5.651c.838.687 1.978.794 3.022.796.787 0 1.57-.121 2.335-.303v-1.035c-.862.43-1.875.702-2.83.455-.666-.165-1.15-.81-1.14-1.497-.076-.715.343-1.47 1.046-1.683.872-.273 1.823-.064 2.64.291.176.092.354.206.284-.087v-.814c-1.368-.325-2.824-.445-4.198-.091-.398.112-.785.282-1.108.543Z"/>
|
|
6
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
7
|
+
<defs>
|
|
8
|
+
<linearGradient id="a" x1="20.744" x2="26.784" y1="11.343" y2="11.343" gradientUnits="userSpaceOnUse">
|
|
9
|
+
<stop stop-color="#58B03A"/>
|
|
10
|
+
<stop offset="1" stop-color="#55B330"/>
|
|
11
|
+
</linearGradient>
|
|
12
|
+
<linearGradient id="b" x1="7.115" x2="13.181" y1="11.798" y2="11.798" gradientUnits="userSpaceOnUse">
|
|
13
|
+
<stop stop-color="#0F6EB6"/>
|
|
14
|
+
<stop offset="1" stop-color="#006DBA"/>
|
|
15
|
+
</linearGradient>
|
|
16
|
+
<linearGradient id="c" x1="14.005" x2="20.05" y1="11.485" y2="11.485" gradientUnits="userSpaceOnUse">
|
|
17
|
+
<stop stop-color="#DE0D3D"/>
|
|
18
|
+
<stop offset="1" stop-color="#E30138"/>
|
|
19
|
+
</linearGradient>
|
|
20
|
+
</defs>
|
|
21
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#FEB4C7" rx="3.5"/>
|
|
3
|
+
<path fill="#17120F" fill-rule="evenodd" d="M5.27 15.38H3.885V9h1.383v6.38ZM8.722 9H7.37c0 1.174-.51 2.252-1.4 2.957l-.536.425 2.078 2.998H9.22l-1.912-2.76c.907-.954 1.415-2.239 1.415-3.62Zm2.207 6.378H9.623V9h1.307v6.377Zm3.947-4.411v.282a2.104 2.104 0 0 0-1.237-.404c-1.214 0-2.199 1.042-2.199 2.327 0 1.286.985 2.328 2.2 2.328.458 0 .884-.15 1.236-.404v.282h1.248v-4.411h-1.248Zm-.004 2.205c0 .627-.506 1.135-1.13 1.135a1.133 1.133 0 0 1-1.131-1.135c0-.626.506-1.134 1.13-1.134.625 0 1.131.508 1.131 1.134Zm13.17-1.923v-.282h1.247v4.41h-1.248v-.281a2.105 2.105 0 0 1-1.237.404c-1.214 0-2.199-1.042-2.199-2.328 0-1.285.985-2.327 2.2-2.327.458 0 .884.15 1.236.404Zm-1.135 3.058c.624 0 1.13-.508 1.13-1.135 0-.626-.506-1.134-1.13-1.134-.625 0-1.13.508-1.13 1.134 0 .627.505 1.135 1.13 1.135Zm2.924.335c0-.458.35-.829.783-.829.432 0 .783.371.783.83 0 .457-.35.828-.783.828-.433 0-.783-.371-.783-.829Zm-7.444-3.794c-.498 0-.97.164-1.285.616v-.497H19.86v4.41h1.258V13.06c0-.67.425-1 .937-1 .548 0 .864.347.864.99v2.328h1.246v-2.805c0-1.027-.771-1.725-1.776-1.725Zm-4.332.119v.574c.25-.344.716-.574 1.223-.574v1.284h-.015c-.494 0-1.206.373-1.206 1.068v2.059h-1.28v-4.411h1.278Z" clip-rule="evenodd"/>
|
|
4
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#A5A8A9" fill-rule="evenodd" d="M25 12a8 8 0 1 1-16 0 8 8 0 0 1 16 0Zm-10.172.594 1.128-4.23H18.4l-.846 3.29 1.129-.47-.283 1.034-1.128.376-.564 2.068h4.043l-.376 1.504h-6.487l.658-2.538-.94.376.282-1.034.94-.376Z" clip-rule="evenodd"/>
|
|
4
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 37 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M22.096 11.5096C22.096 17.6821 17.1497 22.6859 11.048 22.6859C4.94636 22.6859 0 17.6821 0 11.5096C0 5.33716 4.94636 0.333374 11.048 0.333374C17.1497 0.333374 22.096 5.33716 22.096 11.5096Z" fill="#ED0006"/>
|
|
3
|
+
<path d="M36.4285 11.5096C36.4285 17.6821 31.4822 22.6859 25.3805 22.6859C19.2789 22.6859 14.3325 17.6821 14.3325 11.5096C14.3325 5.33716 19.2789 0.333374 25.3805 0.333374C31.4822 0.333374 36.4285 5.33716 36.4285 11.5096Z" fill="#0099DF"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.2142 20.016C20.5896 17.9661 22.0959 14.9158 22.0959 11.5097C22.0959 8.1035 20.5896 5.05323 18.2142 3.0033C15.8388 5.05323 14.3325 8.1035 14.3325 11.5097C14.3325 14.9158 15.8388 17.9661 18.2142 20.016Z" fill="#6C6BBD"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#ED0006" d="M19.258 11.706c0 3.703-2.968 6.706-6.63 6.706-3.66 0-6.628-3.003-6.628-6.706C6 8.002 8.968 5 12.629 5c3.66 0 6.629 3.002 6.629 6.706Z"/>
|
|
4
|
+
<path fill="#0099DF" d="M27.857 11.706c0 3.703-2.968 6.706-6.629 6.706-3.66 0-6.628-3.003-6.628-6.706C14.6 8.002 17.567 5 21.228 5s6.63 3.002 6.63 6.706Z"/>
|
|
5
|
+
<path fill="#6C6BBD" fill-rule="evenodd" d="M16.929 6.602a6.723 6.723 0 0 1 2.329 5.104 6.723 6.723 0 0 1-2.33 5.104 6.723 6.723 0 0 1-2.328-5.104 6.72 6.72 0 0 1 2.329-5.104Z" clip-rule="evenodd"/>
|
|
6
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle cx="10.4" cy="16.0003" r="8.4" fill="#E80B26"/>
|
|
3
|
+
<circle cx="21.6002" cy="16.0003" r="8.4" fill="#F59D31"/>
|
|
4
|
+
<path d="M16.0002 22.2621C17.7188 20.724 18.8002 18.4889 18.8002 16.001C18.8002 13.5132 17.7188 11.2781 16.0002 9.73999C14.2816 11.2781 13.2002 13.5132 13.2002 16.001C13.2002 18.4889 14.2816 20.724 16.0002 22.2621Z" fill="#FC6020"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#ED0006" fill-rule="evenodd" d="M17.179 16.83a6.803 6.803 0 0 1-4.398 1.6c-3.745 0-6.781-3-6.781-6.7s3.036-6.7 6.78-6.7c1.679 0 3.215.603 4.399 1.6a6.802 6.802 0 0 1 4.398-1.6c3.745 0 6.781 3 6.781 6.7s-3.036 6.7-6.78 6.7a6.802 6.802 0 0 1-4.399-1.6Z" clip-rule="evenodd"/>
|
|
4
|
+
<path fill="#F9A000" fill-rule="evenodd" d="M17.179 16.83a6.653 6.653 0 0 0 2.382-5.1c0-2.042-.924-3.87-2.382-5.1a6.802 6.802 0 0 1 4.398-1.6c3.745 0 6.78 3 6.78 6.7s-3.035 6.7-6.78 6.7a6.802 6.802 0 0 1-4.398-1.6Z" clip-rule="evenodd"/>
|
|
5
|
+
<path fill="#FF5E00" fill-rule="evenodd" d="M17.179 16.83a6.653 6.653 0 0 0 2.382-5.1c0-2.042-.924-3.87-2.382-5.1a6.653 6.653 0 0 0-2.382 5.1c0 2.042.924 3.87 2.382 5.1Z" clip-rule="evenodd"/>
|
|
6
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#000" fill-rule="evenodd" d="m4 14.406.049-.271c.024-.137.047-.269.074-.401l.341-1.794.342-1.793c.016-.076.038-.126.113-.139.589-.088 1.18-.151 1.77-.003.512.126.871.49.93.916.124.849-.37 1.528-1.104 1.77-.387.127-.78.159-1.18.12-.095-.009-.123.017-.139.108a98.18 98.18 0 0 1-.264 1.386c-.007.038-.041.098-.063.098-.214.005-.425.004-.643.004H4Zm1.354-2.346c.061 0 .12.002.179.004.123.003.24.006.352-.007.328-.034.59-.183.737-.495.167-.354.047-.73-.268-.84-.223-.08-.453-.063-.683-.032-.028.003-.066.048-.072.076l-.134.704v.001l-.111.59ZM9.58 13.8c-.05.052-.097.104-.142.155-.099.11-.192.216-.302.3-.33.255-.708.312-1.09.135-.377-.173-.531-.511-.547-.909-.034-.836.258-1.528.96-2.008.441-.303.948-.395 1.473-.366.174.01.347.04.52.07.093.017.186.034.28.047.107.015.123.075.104.167l-.076.396c-.096.492-.191.983-.27 1.476a8.889 8.889 0 0 0-.082.858l-.01.15c-.006.1-.031.142-.135.138a9.07 9.07 0 0 0-.586 0c-.1.004-.135-.034-.125-.132.009-.108.014-.22.02-.335l.008-.142Zm.22-1.951c-.305-.085-.56-.025-.774.155a1.505 1.505 0 0 0-.551 1.31c.01.16.072.316.242.385.17.07.325.019.457-.095a1.16 1.16 0 0 0 .21-.236c.223-.34.283-.724.345-1.113.021-.135.043-.271.071-.406Zm4.46 1.768c.174.556.649.865 1.483.865.573-.016 1.143-.341 1.498-1.01.19-.36.258-.745.233-1.15-.022-.388-.176-.716-.49-.95-.331-.246-.709-.297-1.112-.252-1.347.151-1.898 1.581-1.611 2.497Zm.897-.464v-.048c.01-.363.098-.7.315-1a.66.66 0 0 1 .384-.272c.334-.076.608.117.64.48a1.67 1.67 0 0 1-.35 1.212.597.597 0 0 1-.415.24c-.312.029-.548-.183-.573-.514a1.127 1.127 0 0 1-.001-.098Zm3.066-1.967h.8c-.013.17-.025.335-.04.502a8.72 8.72 0 0 0 .084-.08 4.15 4.15 0 0 1 .173-.16c.312-.272.668-.392 1.08-.325.34.057.576.306.614.656.04.365-.027.719-.095 1.072l-.015.078-.082.428v.002c-.06.314-.12.628-.183.94-.01.04-.057.1-.088.104-.27.006-.542.003-.812 0-.01 0-.018-.005-.032-.012a.549.549 0 0 0-.018-.01 59.911 59.911 0 0 0 .352-2.011.682.682 0 0 0-.003-.212c-.025-.243-.205-.353-.438-.28-.226.072-.362.249-.472.444-.163.288-.22.607-.277.926l-.042.236c-.048.27-.096.54-.15.812-.01.04-.056.104-.088.107-.22.008-.443.007-.68.007h-.186c.208-1.087.403-2.15.598-3.224Zm4.54 2.56c-.334-.04-.558-.274-.536-.603a13 13 0 0 1 .208.002c.137.003.272.005.406-.002.324-.019.642-.072.938-.22.378-.19.554-.503.526-.91-.029-.414-.252-.713-.652-.833-.598-.18-1.149-.054-1.618.347-.57.486-.783 1.13-.702 1.866.057.52.34.893.857 1.026.554.142 1.098.066 1.624-.149.038-.015.082-.075.078-.113-.007-.154-.023-.308-.038-.462l-.012-.116h-.024c-.008-.002-.013-.002-.017 0-.034.013-.07.025-.1.038a1.942 1.942 0 0 1-.939.13Zm.487-1.398c-.192.1-.689.16-.931.11.05-.42.494-.748.868-.656.126.031.218.097.24.233.022.133-.044.243-.177.313Zm2.122.808c-.028.31.192.546.529.59a1.956 1.956 0 0 0 .995-.148l.081-.032.02.197c.014.134.027.264.034.394.003.038-.041.098-.076.114-.535.22-1.086.296-1.65.142-.506-.14-.77-.509-.833-1.014-.079-.647.088-1.231.538-1.711.485-.515 1.08-.698 1.766-.508.418.116.642.42.667.846.025.417-.164.729-.557.912-.397.183-.818.212-1.247.221-.085-.003-.173-.003-.267-.003Zm.26-.682a5.29 5.29 0 0 0 .407-.031c.126-.016.252-.054.365-.108.123-.054.183-.167.164-.306-.019-.133-.107-.196-.23-.227-.371-.101-.834.24-.875.681l.17-.009Zm1.984 1.272c-.04.215-.079.427-.12.66h.187c.242.001.473.002.704-.006.022 0 .057-.06.063-.098.032-.158.062-.316.092-.474.055-.292.11-.584.179-.87.154-.639.415-.86 1.036-.942.025-.003.066-.031.072-.053.04-.182.075-.365.112-.554L30 11.11c-.598-.063-.932.284-1.221.71l.004-.061.046-.583h-.193c-.186 0-.365-.001-.543.004-.026.003-.073.06-.076.094-.067.812-.226 1.605-.385 2.399l-.015.073Z" clip-rule="evenodd"/>
|
|
4
|
+
<path fill="#FC461E" fill-rule="evenodd" d="m19.283 7.377-.095-.024c-.098 0-.195 0-.3.003l-.106.023-.133.028a5.178 5.178 0 0 0-1.372.48 10.528 10.528 0 0 0-2.56 1.837c-.506.486-.997.995-1.472 1.515a14.054 14.054 0 0 0-2.119 3.028c-.292.572-.557 1.156-.676 1.79-.022.117.015.253.053.37.016.047.104.082.164.1.016.007.063-.072.085-.116l.024-.053c.136-.299.321-.704.482-.972.34-.568.608-1.008.989-1.548.61-.868 1.324-1.72 2.073-2.472.708-.71 1.418-1.345 2.309-1.825.409-.218.827-.433 1.255-.61a9.703 9.703 0 0 1 2.305-.63c.085-.014.198-.08.226-.15.025-.062-.034-.182-.094-.242-.243-.25-.526-.44-.878-.496a1.533 1.533 0 0 1-.16-.036Zm-7.206 4.308c.151-.41.227-.837.236-1.279l-.011-.142a4.877 4.877 0 0 0-.027-.284c-.085-.733-.4-1.355-.9-1.888a.6.6 0 0 0-.223-.136c-.082-.032-.136.016-.13.11l.001.006c.006.08.013.164.028.244l.066.379c.078.449.156.9.242 1.348.085.451.18.9.28 1.345.035.142.092.284.161.417.053.1.13.091.198 0a.416.416 0 0 0 .079-.12Z" clip-rule="evenodd"/>
|
|
5
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#28356A" fill-rule="evenodd" d="M14.614 18.448 14.835 17l-.492-.012h-2.348l1.632-10.693a.143.143 0 0 1 .046-.084.13.13 0 0 1 .087-.033h3.959c1.314 0 2.221.282 2.694.84.223.262.364.536.432.837.072.316.073.693.003 1.153l-.005.034v.295l.222.13c.187.102.336.22.45.354.19.224.313.508.364.845.054.347.036.76-.052 1.227a4.383 4.383 0 0 1-.486 1.389 2.821 2.821 0 0 1-.77.872 3.06 3.06 0 0 1-1.037.484 5.018 5.018 0 0 1-1.297.155h-.308a.916.916 0 0 0-.602.229.972.972 0 0 0-.314.579l-.024.13-.39 2.555-.017.093c-.005.03-.013.045-.025.055a.063.063 0 0 1-.04.015h-1.903Z" clip-rule="evenodd"/>
|
|
4
|
+
<path fill="#298FC2" fill-rule="evenodd" d="M21.276 9.075a7.29 7.29 0 0 1-.04.24c-.523 2.77-2.31 3.727-4.59 3.727h-1.162a.57.57 0 0 0-.557.494l-.764 5.003a.304.304 0 0 0 .294.355h2.06a.501.501 0 0 0 .49-.431l.02-.109.388-2.544.025-.14a.5.5 0 0 1 .49-.432h.307c1.996 0 3.559-.838 4.016-3.261.19-1.013.091-1.859-.413-2.453a1.977 1.977 0 0 0-.564-.45Z" clip-rule="evenodd"/>
|
|
5
|
+
<path fill="#22284F" fill-rule="evenodd" d="M20.73 8.85a3.991 3.991 0 0 0-.509-.117 6.25 6.25 0 0 0-1.023-.077h-3.103a.48.48 0 0 0-.214.05.51.51 0 0 0-.276.383l-.66 4.321-.019.126a.57.57 0 0 1 .558-.494h1.161c2.282 0 4.068-.957 4.59-3.727.016-.082.029-.162.04-.24a2.729 2.729 0 0 0-.546-.225Z" clip-rule="evenodd"/>
|
|
6
|
+
<path fill="#28356A" fill-rule="evenodd" d="M15.605 9.089a.508.508 0 0 1 .276-.382.48.48 0 0 1 .214-.05h3.103c.367 0 .71.024 1.024.077a4.544 4.544 0 0 1 .508.116l.117.037c.154.053.297.116.429.188.155-1.024-.001-1.721-.537-2.353-.59-.695-1.656-.992-3.02-.992H13.76a.572.572 0 0 0-.56.494l-1.648 10.804a.348.348 0 0 0 .335.406h2.445l1.273-8.345Z" clip-rule="evenodd"/>
|
|
7
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#7887E6" d="M29.256 10.474a.745.745 0 1 0 0-1.489.745.745 0 0 0 0 1.49Z"/>
|
|
4
|
+
<path fill="#FF5073" d="M29.256 12.805a.745.745 0 1 0 0-1.489.745.745 0 0 0 0 1.49Z"/>
|
|
5
|
+
<path fill="#2D2341" fill-rule="evenodd" d="M5.896 10.916h-.723v1.804H4V7.783h1.896c1.13 0 1.667.658 1.667 1.531 0 1.008-.716 1.602-1.667 1.602ZM5.72 8.642h-.547v1.415h.594c.41 0 .68-.271.656-.76a.7.7 0 0 0-.703-.655Zm5.08 4.077H9.653v-.162a1.586 1.586 0 0 1-.803.248c-.698 0-1.228-.526-1.228-1.152 0-.642.454-1.336 2.031-1.223v-.244c0-.279-.236-.372-.5-.372-.372 0-.809.165-1.016.258l-.315-.651a3.068 3.068 0 0 1 1.61-.436c.844 0 1.366.372 1.366 1.195v2.54Zm-2.033-1.087c0 .264.193.43.48.43a.783.783 0 0 0 .45-.144v-.765c-.694-.115-.93.178-.93.479Zm13.42-2.561v-.15c0-.866.486-1.431 1.41-1.431.207 0 .386.029.543.072v.815a1.28 1.28 0 0 0-.336-.05c-.35 0-.48.229-.48.55v.194h.787v.78h-.787v2.868h-1.137V9.851h-.608v-.78h.608Zm-3.912.35a3.068 3.068 0 0 1 1.61-.436c.844 0 1.366.372 1.365 1.195v2.54h-1.145v-.162a1.587 1.587 0 0 1-.802.247c-.698 0-1.228-.526-1.228-1.152 0-.641.453-1.335 2.031-1.223v-.243c0-.28-.236-.372-.5-.372-.373 0-.809.164-1.016.257l-.315-.65Zm1.38 2.64a.786.786 0 0 0 .451-.143v-.765c-.694-.115-.93.178-.93.479 0 .264.193.43.48.43Zm-4.786-2.99-1.849 4.672h-1.089l.482-1.195L10.87 9.07h1.171l.904 2.18.787-2.18h1.137Zm12.898 1.768v.286h-2.372c.018.188.066.34.138.462v.001a.88.88 0 0 0 .061.086l.005.006.011.013a.66.66 0 0 0 .045.048l.001.001c.038.037.081.07.128.098h.002v.001a.8.8 0 0 0 .067.036l.007.003.006.004a.523.523 0 0 0 .084.032l.03.01.058.015.01.002.01.002.058.01.016.003.074.007h.018c.026.002.052.004.08.004.31 0 .657-.088 1-.282l.318.71c-.504.349-1.16.409-1.49.409-1.188 0-1.932-.738-1.932-1.89 0-1.122.787-1.93 1.803-1.93s1.764.783 1.764 1.853Zm-1.156-.316c-.043-.486-.293-.737-.608-.737s-.565.25-.608.737h1.216ZM16.09 11.975c.336 0 .536-.1.536-.3 0-.214-.273-.307-.601-.42-.495-.169-1.116-.38-1.115-1.112 0-.772.686-1.159 1.538-1.159.465 0 .923.143 1.223.293l-.322.752c-.229-.1-.544-.208-.844-.208-.286 0-.458.107-.458.28 0 .188.255.274.567.378.49.164 1.121.375 1.121 1.11 0 .787-.715 1.216-1.545 1.216-.465 0-.966-.107-1.395-.336l.365-.737c.257.129.586.243.93.243Zm4.1 3.188v-.48h-.207v-.135h.57l.022.135h-.195v.48h-.19Zm1.041 0-.023-.445-.016.06c-.034.128-.068.256-.104.385h-.168l-.12-.445-.023.445h-.17c.018-.204.035-.41.05-.615h.24l.109.437.001-.005.105-.432h.24l.049.615h-.17ZM4.005 14.73v2.746h.653v-1.003h.401c.53 0 .928-.33.928-.891 0-.486-.299-.852-.928-.852H4.005Zm1.35.875c0 .25-.148.39-.367.39h-.33v-.787h.33c.235 0 .366.163.366.397Zm1.877 1.668.036.203h.581v-1.412c0-.458-.29-.665-.76-.665a1.7 1.7 0 0 0-.895.243l.175.362c.115-.052.358-.144.565-.144.147 0 .278.052.278.207v.136c-.847-.016-1.13.274-1.13.712 0 .406.319.608.633.608.255 0 .406-.127.517-.25Zm-.162-.68c.033 0 .061.002.09.006h.001l.052.005v.425a.438.438 0 0 1-.25.08c-.16 0-.267-.091-.267-.239 0-.166.119-.278.374-.278Zm1.396 1.746.335-.863H8.61l-.221-.698c-.14-.444-.28-.888-.424-1.332h.645l.382 1.504.43-1.504h.632c-.183.53-.364 1.06-.545 1.59-.148.436-.297.87-.446 1.303h-.597Zm2.738-3.609v2.746h1.699V17h-1.047v-2.27h-.652Zm3.064 2.746-.036-.203c-.112.123-.262.25-.517.25-.314 0-.633-.202-.633-.608 0-.438.283-.728 1.13-.712v-.136c0-.155-.131-.207-.278-.207-.207 0-.45.092-.565.144l-.175-.362c.19-.12.5-.243.895-.243.47 0 .76.207.76.665v1.412h-.58Zm-.107-.877a.768.768 0 0 0-.091-.007c-.255 0-.375.112-.375.278 0 .148.108.24.267.24.1 0 .19-.037.25-.08v-.426l-.051-.005Zm1.213.323c0 .53.378.553.57.553v.002h.453v-.427h-.175c-.14 0-.215-.063-.215-.27v-.9h.39v-.433h-.39v-.605l-.633.218v.386h-.31v.434h.31v1.042Zm3.044.402c-.127.096-.458.2-.784.2-.66 0-1.074-.41-1.074-1.051 0-.625.438-1.075 1.003-1.075.433 0 .863.235.863.951v.239h-1.201c.031.334.234.47.505.47.203 0 .434-.084.51-.131l.178.397Zm-.576-1.07c0-.275-.12-.41-.287-.41-.175 0-.306.14-.33.41h.616Zm.843-.808v2.03h.636V16.16a.672.672 0 0 1 .458-.179c.04 0 .123 0 .16.008v-.593a.742.742 0 0 0-.65.418v-.37h-.604Z" clip-rule="evenodd"/>
|
|
6
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24">
|
|
2
|
+
<rect width="33" height="23" x=".5" y=".5" fill="#fff" rx="3.5"/>
|
|
3
|
+
<path fill="#F28A1A" fill-rule="evenodd" d="M9.714 11.567c0 3.872 3.068 7.03 6.866 7.03.466 0 .932-.042 1.468-.09.597-.054 1.28-.116 2.147-.136 1.315 0 2.739.49 4.31 1.918.145.15.364-.038.218-.226-1.57-1.992-2.994-2.368-4.418-2.706-1.753-.414-2.666-1.391-3.287-2.52-.11-.225-.183-.187-.183.114-.036.45 0 .864.073 1.278h-.219c-2.483 0-4.528-2.105-4.528-4.662 0-2.556 2.045-4.661 4.528-4.661 2.484 0 4.529 2.105 4.529 4.661 0 .15 0 .339-.037.527-.365-.076-.986-.076-1.46-.038-.183 0-.183.075-.037.113 1.46.3 2.483 1.24 2.739 2.97 0 .075.036.075.073.037a7.46 7.46 0 0 0 .95-3.609c0-3.91-3.068-7.067-6.866-7.067-3.798 0-6.866 3.195-6.866 7.067Zm11.832 2.895c.256.113.365.489.365.677.037.3-.036.45-.146.45-.11 0-.255-.112-.401-.375-.146-.263-.22-.527-.146-.677.11-.075.219-.113.328-.075Zm-1.497 1.165c.146 0 .329.075.511.226.292.263.402.564.256.79-.073.112-.256.187-.402.187a.683.683 0 0 1-.475-.188c-.292-.263-.365-.639-.182-.864.036-.075.146-.15.292-.15Z" clip-rule="evenodd"/>
|
|
4
|
+
<rect width="33" height="23" x=".5" y=".5" stroke="#F2F4F7" rx="3.5"/>
|
|
5
|
+
</svg>
|