@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,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M14.12 15.6H17.4V19C17.4 20.3186 16.3186 21.4 15 21.4H9C7.68137 21.4 6.6 20.3186 6.6 19V14.5831L9.88693 14.6L9.88693 14.6H9.89001C10.5263 14.6 11.1545 14.7481 11.7317 15.0366C12.4751 15.4083 13.287 15.6 14.12 15.6Z" fill="currentColor" stroke="currentColor" stroke-width="1.2"/>
|
|
3
|
+
<path opacity="0.4" d="M17.4 10.83V14.4H14.12C13.473 14.4 12.8449 14.2516 12.2683 13.9633C11.5259 13.5921 10.7146 13.4002 9.89147 13.4C9.89098 13.4 9.8905 13.4 9.89001 13.4L6.6 13.3831V10.83C6.6 10.7006 6.63985 10.5076 6.7255 10.3011C6.81106 10.0947 6.92009 9.92847 7.01429 9.83427L9.13429 7.71426C9.42555 7.423 9.6 7.0109 9.6 6.59V5.6H14.4V6.59C14.4 7.0109 14.5744 7.423 14.8657 7.71427L16.9857 9.83427C17.0799 9.92847 17.1889 10.0947 17.2745 10.3011C17.3601 10.5076 17.4 10.7006 17.4 10.83Z" fill="currentColor" stroke="currentColor" stroke-width="1.2"/>
|
|
4
|
+
<path d="M14.5 2H9.5C8.67 2 8 2.67 8 3.5C8 4.15 8.42 4.71 9 4.91C9.16 4.97 9.32 5 9.5 5H14.5C14.68 5 14.84 4.97 15 4.91C15.58 4.71 16 4.15 16 3.5C16 2.67 15.33 2 14.5 2Z" fill="currentColor"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M16.19 2H7.81C4.17 2 2 4.17 2 7.81V16.18C2 19.83 4.17 22 7.81 22H16.18C19.82 22 21.99 19.83 21.99 16.19V7.81C22 4.17 19.83 2 16.19 2ZM18 12.75H6C5.59 12.75 5.25 12.41 5.25 12C5.25 11.59 5.59 11.25 6 11.25H18C18.41 11.25 18.75 11.59 18.75 12C18.75 12.41 18.41 12.75 18 12.75Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M16.19 2H7.81C4.17 2 2 4.17 2 7.81V16.18C2 19.83 4.17 22 7.81 22H16.18C19.82 22 21.99 19.83 21.99 16.19V7.81C22 4.17 19.83 2 16.19 2ZM16 12.75H8C7.59 12.75 7.25 12.41 7.25 12C7.25 11.59 7.59 11.25 8 11.25H16C16.41 11.25 16.75 11.59 16.75 12C16.75 12.41 16.41 12.75 16 12.75Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8 12H16" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M9 22H15C20 22 22 20 22 15V9C22 4 20 2 15 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 271 38">
|
|
2
|
+
<g filter="url(#a)">
|
|
3
|
+
<g clip-path="url(#b)">
|
|
4
|
+
<path
|
|
5
|
+
d="M86.303 15.425a9.95 9.95 0 0 1 5.429 1.46 9.39 9.39 0 0 1 3.655 4.125 8.95 8.95 0 0 1 .635 5.384 9.165 9.165 0 0 1-2.6 4.807 9.776 9.776 0 0 1-4.95 2.592 10.02 10.02 0 0 1-5.614-.506 9.585 9.585 0 0 1-4.362-3.432 9.025 9.025 0 0 1-1.625-5.188c-.003-2.422.983-4.748 2.748-6.477 1.764-1.729 4.165-2.722 6.684-2.765Zm0 13.796a4.666 4.666 0 0 0 3.188-1.4 4.308 4.308 0 0 0 1.227-3.156 4.158 4.158 0 0 0-.894-2.277 4.421 4.421 0 0 0-2.047-1.434 4.597 4.597 0 0 0-2.53-.12 4.469 4.469 0 0 0-2.184 1.232 4.194 4.194 0 0 0-1.124 2.181 4.103 4.103 0 0 0 .304 2.417c.344.76.912 1.407 1.633 1.86a4.557 4.557 0 0 0 2.427.697ZM97.957 3.443a.852.852 0 0 1 .26-.583.923.923 0 0 1 .604-.258h3.911a.923.923 0 0 1 .609.254.852.852 0 0 1 .265.586V16.22a11.45 11.45 0 0 1 4.096-.8c5.474 0 9.108 4.112 9.108 9.28a8.543 8.543 0 0 1-.534 3.437 8.793 8.793 0 0 1-1.87 2.974 9.193 9.193 0 0 1-2.916 2.053 9.516 9.516 0 0 1-3.514.817 8.351 8.351 0 0 1-3.309-.703 8.053 8.053 0 0 1-2.717-1.947l-.46 1.37c-.138.48-.461.84-.874.84h-1.795a.922.922 0 0 1-.61-.254.853.853 0 0 1-.264-.586V3.443h.01Zm9.338 25.778a4.536 4.536 0 0 0 1.688-.405 4.372 4.372 0 0 0 1.391-1.004c.39-.42.688-.911.877-1.444a4.068 4.068 0 0 0 .223-1.658 4.194 4.194 0 0 0-.288-1.7 4.317 4.317 0 0 0-.953-1.459 4.527 4.527 0 0 0-1.468-.988 4.675 4.675 0 0 0-1.753-.362 6.13 6.13 0 0 0-3.589 1.014v5.13a3.843 3.843 0 0 0 1.426 2.071c.7.52 1.56.803 2.445.805h.001Zm11.738-19.212a2.907 2.907 0 0 1 .228-1.163c.155-.369.385-.705.676-.989.29-.283.636-.509 1.018-.663a3.254 3.254 0 0 1 1.206-.237c.423-.01.844.063 1.237.212.394.15.752.372 1.055.656.303.285.543.624.707.999a2.952 2.952 0 0 1 0 2.367 3.041 3.041 0 0 1-.707.999 3.192 3.192 0 0 1-1.055.656c-.393.15-.814.222-1.237.212a3.252 3.252 0 0 1-1.206-.236 3.137 3.137 0 0 1-1.018-.664 3.009 3.009 0 0 1-.676-.989 2.907 2.907 0 0 1-.228-1.162v.002Zm.414 6.7c0-.224.093-.437.256-.595a.894.894 0 0 1 .618-.246h3.82a.89.89 0 0 1 .618.246.823.823 0 0 1 .256.594V32.71a.858.858 0 0 1-.264.587.926.926 0 0 1-.61.255h-3.821a.922.922 0 0 1-.61-.255.854.854 0 0 1-.264-.587v-16h.001Zm9.216-13.266a.851.851 0 0 1 .264-.585.925.925 0 0 1 .61-.255h3.864a.923.923 0 0 1 .609.255.857.857 0 0 1 .265.585v29.27a.858.858 0 0 1-.265.585.924.924 0 0 1-.609.256h-3.864a.925.925 0 0 1-.61-.256.853.853 0 0 1-.264-.586V3.443Zm17.98 11.982a8.735 8.735 0 0 1 3.308.581 8.478 8.478 0 0 1 2.81 1.777 8.089 8.089 0 0 1 1.864 2.69 7.825 7.825 0 0 1 .622 3.176c-.006.4-.037.798-.091 1.194a.839.839 0 0 1-.289.534.905.905 0 0 1-.585.216h-11.774a4.16 4.16 0 0 0 1.424 2.756 4.493 4.493 0 0 0 2.993 1.093 6.57 6.57 0 0 0 3.589-1.108c.46-.265.878-.353 1.197 0l1.888 2.08a.708.708 0 0 1 .181.904.744.744 0 0 1-.226.248c-1.879 1.622-4.331 2.491-6.856 2.431a9.709 9.709 0 0 1-3.67-.696 9.412 9.412 0 0 1-3.096-2.02 8.988 8.988 0 0 1-2.028-3.021 8.703 8.703 0 0 1-.637-3.544 8.727 8.727 0 0 1 .644-3.525 9.019 9.019 0 0 1 2.016-3.01 9.434 9.434 0 0 1 3.072-2.024 9.748 9.748 0 0 1 3.648-.721l-.004-.011Zm3.222 7.077a3.26 3.26 0 0 0-1.081-2.122 3.518 3.518 0 0 0-2.279-.888 3.72 3.72 0 0 0-2.38.86 3.454 3.454 0 0 0-1.209 2.15h6.949Zm45.794-7.077a8.714 8.714 0 0 1 3.796.792 8.376 8.376 0 0 1 3.022 2.344.821.821 0 0 1 .174.669.821.821 0 0 1-.139.326.856.856 0 0 1-.267.242l-2.117 1.946c-.417.353-.833.134-1.152-.135a4.323 4.323 0 0 0-1.432-1.029 4.471 4.471 0 0 0-1.742-.385 4.707 4.707 0 0 0-3.222 1.361 4.348 4.348 0 0 0-1.288 3.148 4.218 4.218 0 0 0 .296 1.697c.215.54.539 1.035.954 1.455.416.42.914.756 1.465.99a4.705 4.705 0 0 0 1.749.368 4.939 4.939 0 0 0 2.036-.444 4.757 4.757 0 0 0 1.645-1.237.893.893 0 0 1 1.15-.136l1.978 1.637c.46.353.646.8.321 1.236a8.065 8.065 0 0 1-3.114 2.8 8.463 8.463 0 0 1-4.156.916c-2.574.012-5.047-.96-6.877-2.7-1.829-1.74-2.864-4.107-2.878-6.58.049-2.471 1.102-4.826 2.933-6.56 1.832-1.735 4.297-2.711 6.868-2.721h-.003Zm11.04 5.085h-1.562a.883.883 0 0 1-.595-.259.817.817 0 0 1-.237-.584v-2.964a.77.77 0 0 1 .228-.591.86.86 0 0 1 .604-.248h1.562v-4.908a.858.858 0 0 1 .267-.586.93.93 0 0 1 .61-.254l3.771-.045a.88.88 0 0 1 .594.258.818.818 0 0 1 .239.582v4.952h4.047a.877.877 0 0 1 .627.238.792.792 0 0 1 .247.602v2.962a.813.813 0 0 1-.255.596.88.88 0 0 1-.619.247h-4.047v7.073c0 1.238.689 1.414 1.425 1.414a7.663 7.663 0 0 0 2.256-.48.736.736 0 0 1 .878.198c.066.083.112.18.134.282l.919 2.787a.775.775 0 0 1-.21.896.83.83 0 0 1-.289.165 17.822 17.822 0 0 1-5.475 1.15c-3.537 0-5.107-2.12-5.107-5.7V20.51h-.012Zm13.704-10.502a2.926 2.926 0 0 1 .229-1.162 3.02 3.02 0 0 1 .676-.989 3.156 3.156 0 0 1 1.02-.663 3.255 3.255 0 0 1 1.206-.237c.423-.01.844.063 1.237.212.394.15.753.372 1.055.656.303.285.543.624.707.999a2.952 2.952 0 0 1 0 2.367 3.041 3.041 0 0 1-.707.999 3.182 3.182 0 0 1-1.055.656c-.393.15-.814.222-1.237.212a3.252 3.252 0 0 1-1.205-.237 3.161 3.161 0 0 1-1.018-.663c-.29-.283-.52-.62-.675-.988a2.903 2.903 0 0 1-.228-1.162h-.005Zm.412 6.7a.813.813 0 0 1 .257-.595.876.876 0 0 1 .619-.245h3.828a.904.904 0 0 1 .619.245.813.813 0 0 1 .257.595V32.71a.86.86 0 0 1-.265.587.924.924 0 0 1-.611.255h-3.829a.927.927 0 0 1-.611-.255.859.859 0 0 1-.265-.587v-16h.001Zm17.585-1.28a9.949 9.949 0 0 1 5.428 1.461 9.39 9.39 0 0 1 3.655 4.126 8.943 8.943 0 0 1 .634 5.383 9.157 9.157 0 0 1-2.601 4.807 9.773 9.773 0 0 1-4.95 2.592 10.023 10.023 0 0 1-5.613-.507 9.588 9.588 0 0 1-4.362-3.432 9.023 9.023 0 0 1-1.624-5.188c-.005-2.423.982-4.751 2.748-6.48 1.766-1.73 4.169-2.724 6.69-2.765l-.005.003Zm0 13.796a4.663 4.663 0 0 0 3.188-1.4 4.305 4.305 0 0 0 1.227-3.155 4.151 4.151 0 0 0-.894-2.28 4.421 4.421 0 0 0-2.047-1.434 4.6 4.6 0 0 0-2.531-.121 4.47 4.47 0 0 0-2.186 1.233 4.19 4.19 0 0 0-1.124 2.182 4.105 4.105 0 0 0 .304 2.418 4.31 4.31 0 0 0 1.634 1.861 4.56 4.56 0 0 0 2.429.696Zm12.372-12.513a.81.81 0 0 1 .256-.594.905.905 0 0 1 .618-.246h1.748a.823.823 0 0 1 .482.141.77.77 0 0 1 .299.39l.644 1.636a9.09 9.09 0 0 1 2.972-1.935 9.374 9.374 0 0 1 3.521-.673c5.844 0 8.188 4.198 8.188 8.8v8.49a.857.857 0 0 1-.265.586.925.925 0 0 1-.611.254h-3.769a.904.904 0 0 1-.62-.245.813.813 0 0 1-.257-.595v-8.752c0-2.301-1.242-3.759-3.45-3.759a4.757 4.757 0 0 0-2.611.751 4.482 4.482 0 0 0-1.718 2.035v9.725c0 .62-.276.84-1.153.84h-3.405a.925.925 0 0 1-.61-.254.855.855 0 0 1-.264-.586v-16l.005-.009ZM16.842 7.03S3.902 7.264 3.5 20.283a9.174 9.174 0 0 1 3.053-2.81 9.593 9.593 0 0 1 4.03-1.224l.217-.575.092-.233a21.296 21.296 0 0 1 5.95-8.412ZM31.56 20.444a22.116 22.116 0 0 1-8.54 6.013l-.287.135-.543.193a8.716 8.716 0 0 1-1.138 3.908 9.11 9.11 0 0 1-2.811 3.027c13.524-.835 13.319-13.28 13.319-13.28v.004ZM9.635 23.137s-3.608 1.493-3.07 7.905c6.68.403 8.166-3.09 8.166-3.09l-2.549-2.4-2.547-2.4v-.015ZM36.178 2.016a45.228 45.228 0 0 0-6.243.266 28.244 28.244 0 0 0-3.887.864 22.164 22.164 0 0 0-8.262 4.445 20.555 20.555 0 0 0-5.66 8.192s-.047.117-.12.32l-.07.19a28.025 28.025 0 0 0-1.187 4.36 32.491 32.491 0 0 0-.285 1.78l2.463 2.322 2.46 2.325a37.23 37.23 0 0 0 1.848-.307 30.807 30.807 0 0 0 4.52-1.218c.072-.027.139-.048.197-.075l.333-.122a21.481 21.481 0 0 0 8.42-5.58 20.83 20.83 0 0 0 4.478-8.02c.371-1.23.65-2.483.832-3.751a40.44 40.44 0 0 0 .167-5.997l-.004.006ZM26.09 15.894c-.835 0-1.65-.238-2.345-.684a4.096 4.096 0 0 1-1.554-1.82 3.91 3.91 0 0 1-.24-2.344 4.01 4.01 0 0 1 1.155-2.077 4.276 4.276 0 0 1 2.16-1.11 4.38 4.38 0 0 1 2.44.23c.77.308 1.43.828 1.893 1.495.464.667.712 1.451.712 2.253a3.978 3.978 0 0 1-1.236 2.869 4.309 4.309 0 0 1-2.985 1.188ZM44.88 2.678a.741.741 0 0 1 .276-.495.8.8 0 0 1 .556-.172h1.715a.868.868 0 0 1 .461.11c.14.08.252.195.325.333l9.195 20.962h.138l9.19-20.962a.779.779 0 0 1 .321-.34.824.824 0 0 1 .465-.103h1.72a.8.8 0 0 1 .557.172.741.741 0 0 1 .276.495l5.454 29.853a.741.741 0 0 1-.127.729.797.797 0 0 1-.314.232.829.829 0 0 1-.392.059h-4.207a1.023 1.023 0 0 1-.545-.206.96.96 0 0 1-.332-.463l-2.957-16.835h-.14l-7.86 17.459a.763.763 0 0 1-.309.37.812.812 0 0 1-.477.12h-.832a.858.858 0 0 1-.471-.13.809.809 0 0 1-.315-.36l-7.991-17.64h-.139l-2.87 17.019a.857.857 0 0 1-.299.468.916.916 0 0 1-.533.2h-4.162a.878.878 0 0 1-.393-.064.845.845 0 0 1-.32-.23.783.783 0 0 1-.167-.727L44.88 2.679ZM155.351 32.84l13.868-29.896a.81.81 0 0 1 .315-.36.857.857 0 0 1 .471-.128h1.433a.806.806 0 0 1 .477.12.75.75 0 0 1 .309.368l13.772 29.896a.761.761 0 0 1-.034.803.81.81 0 0 1-.325.276.847.847 0 0 1-.427.076h-4.022a1.373 1.373 0 0 1-.829-.223 1.285 1.285 0 0 1-.513-.665l-2.263-4.8h-13.818l-2.266 4.8c-.098.263-.279.49-.518.65a1.434 1.434 0 0 1-.814.238h-4.032a.847.847 0 0 1-.427-.076.81.81 0 0 1-.325-.276.761.761 0 0 1-.034-.803h.002Zm19.967-9.46-4.622-10.323h-.142l-4.528 10.323h9.292Z" />
|
|
6
|
+
</g>
|
|
7
|
+
</g>
|
|
8
|
+
<g clip-path="url(#c)">
|
|
9
|
+
<path
|
|
10
|
+
d="M87.803 15.425a9.95 9.95 0 0 1 5.429 1.46 9.39 9.39 0 0 1 3.655 4.125 8.95 8.95 0 0 1 .635 5.384 9.165 9.165 0 0 1-2.6 4.807 9.776 9.776 0 0 1-4.95 2.592 10.02 10.02 0 0 1-5.614-.506 9.585 9.585 0 0 1-4.362-3.432 9.025 9.025 0 0 1-1.625-5.188c-.003-2.422.983-4.748 2.748-6.477 1.764-1.729 4.165-2.722 6.684-2.765Zm0 13.796a4.666 4.666 0 0 0 3.188-1.4 4.308 4.308 0 0 0 1.227-3.156 4.158 4.158 0 0 0-.894-2.277 4.421 4.421 0 0 0-2.047-1.434 4.597 4.597 0 0 0-2.53-.12 4.469 4.469 0 0 0-2.184 1.232 4.194 4.194 0 0 0-1.124 2.181 4.103 4.103 0 0 0 .304 2.417c.344.76.912 1.407 1.633 1.86a4.557 4.557 0 0 0 2.427.697ZM99.457 3.443a.852.852 0 0 1 .26-.583.922.922 0 0 1 .604-.258h3.911a.923.923 0 0 1 .609.254.852.852 0 0 1 .265.586V16.22a11.45 11.45 0 0 1 4.096-.8c5.474 0 9.108 4.112 9.108 9.28a8.543 8.543 0 0 1-.534 3.437 8.793 8.793 0 0 1-1.87 2.974 9.193 9.193 0 0 1-2.916 2.053 9.516 9.516 0 0 1-3.514.817 8.351 8.351 0 0 1-3.309-.703 8.053 8.053 0 0 1-2.717-1.947l-.46 1.37c-.138.48-.461.84-.874.84h-1.795a.923.923 0 0 1-.61-.254.853.853 0 0 1-.264-.586V3.443h.01Zm9.338 25.778a4.536 4.536 0 0 0 1.688-.405 4.372 4.372 0 0 0 1.391-1.004c.39-.42.688-.911.877-1.444a4.068 4.068 0 0 0 .223-1.658 4.194 4.194 0 0 0-.288-1.7 4.317 4.317 0 0 0-.953-1.459 4.527 4.527 0 0 0-1.468-.988 4.675 4.675 0 0 0-1.753-.362 6.13 6.13 0 0 0-3.589 1.014v5.13a3.843 3.843 0 0 0 1.426 2.071c.7.52 1.56.803 2.445.805h.001Zm11.738-19.212a2.907 2.907 0 0 1 .228-1.163c.155-.369.385-.705.676-.989.29-.283.636-.509 1.018-.663a3.254 3.254 0 0 1 1.206-.237c.423-.01.844.063 1.237.212.394.15.752.372 1.055.656.303.285.543.624.707.999a2.952 2.952 0 0 1 0 2.367 3.041 3.041 0 0 1-.707.999 3.192 3.192 0 0 1-1.055.656c-.393.15-.814.222-1.237.212a3.252 3.252 0 0 1-1.206-.236 3.137 3.137 0 0 1-1.018-.664 3.009 3.009 0 0 1-.676-.989 2.907 2.907 0 0 1-.228-1.162v.002Zm.414 6.7c0-.224.093-.437.256-.595a.894.894 0 0 1 .618-.246h3.82a.89.89 0 0 1 .618.246.823.823 0 0 1 .256.594V32.71a.858.858 0 0 1-.264.587.926.926 0 0 1-.61.255h-3.821a.922.922 0 0 1-.61-.255.854.854 0 0 1-.264-.587v-16h.001Zm9.216-13.266a.851.851 0 0 1 .264-.585.925.925 0 0 1 .61-.255h3.864a.923.923 0 0 1 .609.255.857.857 0 0 1 .265.585v29.27a.858.858 0 0 1-.265.585.924.924 0 0 1-.609.256h-3.864a.925.925 0 0 1-.61-.256.853.853 0 0 1-.264-.586V3.443Zm17.98 11.982a8.735 8.735 0 0 1 3.308.581 8.478 8.478 0 0 1 2.81 1.777 8.089 8.089 0 0 1 1.864 2.69 7.825 7.825 0 0 1 .622 3.176c-.006.4-.037.798-.091 1.194a.839.839 0 0 1-.289.534.905.905 0 0 1-.585.216h-11.774a4.16 4.16 0 0 0 1.424 2.756 4.493 4.493 0 0 0 2.993 1.093 6.57 6.57 0 0 0 3.589-1.108c.46-.265.878-.353 1.197 0l1.888 2.08a.708.708 0 0 1 .181.904.744.744 0 0 1-.226.248c-1.879 1.622-4.331 2.491-6.856 2.431a9.709 9.709 0 0 1-3.67-.696 9.412 9.412 0 0 1-3.096-2.02 8.988 8.988 0 0 1-2.028-3.021 8.703 8.703 0 0 1-.637-3.544 8.727 8.727 0 0 1 .644-3.525 9.019 9.019 0 0 1 2.016-3.01 9.434 9.434 0 0 1 3.072-2.024 9.748 9.748 0 0 1 3.648-.721l-.004-.011Zm3.222 7.077a3.26 3.26 0 0 0-1.081-2.122 3.518 3.518 0 0 0-2.279-.888 3.72 3.72 0 0 0-2.38.86 3.454 3.454 0 0 0-1.209 2.15h6.949Zm45.794-7.077a8.714 8.714 0 0 1 3.796.792 8.376 8.376 0 0 1 3.022 2.344.821.821 0 0 1 .174.669.821.821 0 0 1-.139.326.856.856 0 0 1-.267.242l-2.117 1.946c-.417.353-.833.134-1.152-.135a4.323 4.323 0 0 0-1.432-1.029 4.471 4.471 0 0 0-1.742-.385 4.707 4.707 0 0 0-3.222 1.361 4.348 4.348 0 0 0-1.288 3.148 4.218 4.218 0 0 0 .296 1.697c.215.54.539 1.035.954 1.455.416.42.914.756 1.465.99a4.705 4.705 0 0 0 1.749.368 4.939 4.939 0 0 0 2.036-.444 4.757 4.757 0 0 0 1.645-1.237.893.893 0 0 1 1.15-.136l1.978 1.637c.46.353.646.8.321 1.236a8.065 8.065 0 0 1-3.114 2.8 8.463 8.463 0 0 1-4.156.916c-2.574.012-5.047-.96-6.877-2.7-1.829-1.74-2.864-4.107-2.878-6.58.049-2.471 1.102-4.826 2.933-6.56 1.832-1.735 4.297-2.711 6.868-2.721h-.003Zm11.04 5.085h-1.562a.883.883 0 0 1-.595-.259.817.817 0 0 1-.237-.584v-2.964a.77.77 0 0 1 .228-.591.86.86 0 0 1 .604-.248h1.562v-4.908a.858.858 0 0 1 .267-.586.93.93 0 0 1 .61-.254l3.771-.045a.88.88 0 0 1 .594.258.818.818 0 0 1 .239.582v4.952h4.047a.877.877 0 0 1 .627.238.792.792 0 0 1 .247.602v2.962a.813.813 0 0 1-.255.596.88.88 0 0 1-.619.247h-4.047v7.073c0 1.238.689 1.414 1.425 1.414a7.663 7.663 0 0 0 2.256-.48.736.736 0 0 1 .878.198c.066.083.112.18.134.282l.919 2.787a.775.775 0 0 1-.21.896.83.83 0 0 1-.289.165 17.822 17.822 0 0 1-5.475 1.15c-3.537 0-5.107-2.12-5.107-5.7V20.51h-.012Zm13.704-10.502a2.926 2.926 0 0 1 .229-1.162 3.02 3.02 0 0 1 .676-.989 3.156 3.156 0 0 1 1.02-.663 3.255 3.255 0 0 1 1.206-.237c.423-.01.844.063 1.237.212.394.15.753.372 1.055.656.303.285.543.624.707.999a2.952 2.952 0 0 1 0 2.367 3.041 3.041 0 0 1-.707.999 3.182 3.182 0 0 1-1.055.656c-.393.15-.814.222-1.237.212a3.252 3.252 0 0 1-1.205-.237 3.161 3.161 0 0 1-1.018-.663c-.29-.283-.52-.62-.675-.988a2.903 2.903 0 0 1-.228-1.162h-.005Zm.412 6.7a.813.813 0 0 1 .257-.595.876.876 0 0 1 .619-.245h3.828a.904.904 0 0 1 .619.245.813.813 0 0 1 .257.595V32.71a.86.86 0 0 1-.265.587.924.924 0 0 1-.611.255h-3.829a.927.927 0 0 1-.611-.255.859.859 0 0 1-.265-.587v-16h.001Zm17.585-1.28a9.949 9.949 0 0 1 5.428 1.461 9.39 9.39 0 0 1 3.655 4.126 8.943 8.943 0 0 1 .634 5.383 9.157 9.157 0 0 1-2.601 4.807 9.773 9.773 0 0 1-4.95 2.592 10.023 10.023 0 0 1-5.613-.507 9.588 9.588 0 0 1-4.362-3.432 9.023 9.023 0 0 1-1.624-5.188c-.005-2.423.982-4.751 2.748-6.48 1.766-1.73 4.169-2.724 6.69-2.765l-.005.003Zm0 13.796a4.663 4.663 0 0 0 3.188-1.4 4.305 4.305 0 0 0 1.227-3.155 4.151 4.151 0 0 0-.894-2.28 4.421 4.421 0 0 0-2.047-1.434 4.6 4.6 0 0 0-2.531-.121 4.47 4.47 0 0 0-2.186 1.233 4.19 4.19 0 0 0-1.124 2.182 4.105 4.105 0 0 0 .304 2.418 4.31 4.31 0 0 0 1.634 1.861 4.56 4.56 0 0 0 2.429.696Zm12.372-12.513a.81.81 0 0 1 .256-.594.905.905 0 0 1 .618-.246h1.748a.823.823 0 0 1 .482.141.77.77 0 0 1 .299.39l.644 1.636a9.09 9.09 0 0 1 2.972-1.935 9.374 9.374 0 0 1 3.521-.673c5.844 0 8.188 4.198 8.188 8.8v8.49a.857.857 0 0 1-.265.586.925.925 0 0 1-.611.254h-3.769a.904.904 0 0 1-.62-.245.813.813 0 0 1-.257-.595v-8.752c0-2.301-1.242-3.759-3.45-3.759a4.757 4.757 0 0 0-2.611.751 4.482 4.482 0 0 0-1.718 2.035v9.725c0 .62-.276.84-1.153.84h-3.405a.925.925 0 0 1-.61-.254.855.855 0 0 1-.264-.586v-16l.005-.009ZM18.342 7.03S5.402 7.264 5 20.283a9.174 9.174 0 0 1 3.053-2.81 9.594 9.594 0 0 1 4.03-1.224l.217-.575.092-.233a21.296 21.296 0 0 1 5.95-8.412ZM33.06 20.444a22.116 22.116 0 0 1-8.54 6.013l-.287.135-.543.193a8.716 8.716 0 0 1-1.138 3.908 9.11 9.11 0 0 1-2.811 3.027c13.524-.835 13.319-13.28 13.319-13.28v.004Zm-21.925 2.693s-3.608 1.493-3.07 7.905c6.68.403 8.166-3.09 8.166-3.09l-2.549-2.4-2.547-2.4v-.015ZM37.678 2.016a45.228 45.228 0 0 0-6.243.266 28.244 28.244 0 0 0-3.887.864 22.164 22.164 0 0 0-8.262 4.445 20.555 20.555 0 0 0-5.66 8.192s-.047.117-.12.32l-.07.19a28.025 28.025 0 0 0-1.187 4.36 32.491 32.491 0 0 0-.285 1.78l2.463 2.322 2.46 2.325a37.23 37.23 0 0 0 1.848-.307 30.807 30.807 0 0 0 4.52-1.218c.072-.027.139-.048.197-.075l.333-.122a21.481 21.481 0 0 0 8.42-5.58 20.83 20.83 0 0 0 4.478-8.02c.371-1.23.65-2.483.832-3.751a40.44 40.44 0 0 0 .167-5.997l-.004.006ZM27.59 15.894c-.835 0-1.65-.238-2.345-.684a4.096 4.096 0 0 1-1.554-1.82 3.91 3.91 0 0 1-.24-2.344 4.01 4.01 0 0 1 1.155-2.077 4.276 4.276 0 0 1 2.16-1.11 4.38 4.38 0 0 1 2.44.23c.77.308 1.43.828 1.893 1.495.464.667.712 1.451.712 2.253a3.978 3.978 0 0 1-1.236 2.869 4.309 4.309 0 0 1-2.985 1.188ZM46.38 2.678a.741.741 0 0 1 .276-.495.8.8 0 0 1 .556-.172h1.715a.868.868 0 0 1 .461.11c.14.08.252.195.325.333l9.195 20.962h.138l9.19-20.962a.779.779 0 0 1 .321-.34.824.824 0 0 1 .465-.103h1.72a.8.8 0 0 1 .557.172.741.741 0 0 1 .276.495l5.454 29.853a.741.741 0 0 1-.127.729.797.797 0 0 1-.314.232.829.829 0 0 1-.392.059h-4.207a1.023 1.023 0 0 1-.545-.206.96.96 0 0 1-.332-.463l-2.957-16.835h-.14l-7.86 17.459a.763.763 0 0 1-.309.37.812.812 0 0 1-.477.12h-.832a.858.858 0 0 1-.471-.13.809.809 0 0 1-.315-.36l-7.991-17.64h-.139l-2.87 17.019a.857.857 0 0 1-.299.468.916.916 0 0 1-.533.2h-4.162a.878.878 0 0 1-.393-.064.845.845 0 0 1-.32-.23.783.783 0 0 1-.167-.727L46.38 2.679ZM156.851 32.84l13.868-29.896a.81.81 0 0 1 .315-.36.857.857 0 0 1 .471-.128h1.433a.806.806 0 0 1 .477.12.75.75 0 0 1 .309.368l13.772 29.896a.761.761 0 0 1-.034.803.81.81 0 0 1-.325.276.847.847 0 0 1-.427.076h-4.022a1.373 1.373 0 0 1-.829-.223 1.285 1.285 0 0 1-.513-.665l-2.263-4.8h-13.818l-2.266 4.8c-.098.263-.279.49-.518.65a1.434 1.434 0 0 1-.814.238h-4.032a.847.847 0 0 1-.427-.076.81.81 0 0 1-.325-.276.761.761 0 0 1-.034-.803h.002Zm19.967-9.46-4.622-10.323h-.142l-4.528 10.323h9.292Z" />
|
|
11
|
+
</g>
|
|
12
|
+
<defs>
|
|
13
|
+
<clipPath id="b">
|
|
14
|
+
<path d="M3.5 2h33v32h-33z" />
|
|
15
|
+
</clipPath>
|
|
16
|
+
<clipPath id="c">
|
|
17
|
+
<path d="M41 2h230v32H41z" />
|
|
18
|
+
</clipPath>
|
|
19
|
+
<filter id="a" width="39" height="38" x=".5" y="0" color-interpolation-filters="sRGB"
|
|
20
|
+
filterUnits="userSpaceOnUse">
|
|
21
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix" />
|
|
22
|
+
<feColorMatrix in="SourceAlpha" result="hardAlpha"
|
|
23
|
+
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" />
|
|
24
|
+
<feOffset dy="1" />
|
|
25
|
+
<feGaussianBlur stdDeviation="1" />
|
|
26
|
+
<feColorMatrix values="0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.06 0" />
|
|
27
|
+
<feBlend in2="BackgroundImageFix" result="effect1_dropShadow_66_263" />
|
|
28
|
+
<feColorMatrix in="SourceAlpha" result="hardAlpha"
|
|
29
|
+
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" />
|
|
30
|
+
<feOffset dy="1" />
|
|
31
|
+
<feGaussianBlur stdDeviation="1.5" />
|
|
32
|
+
<feColorMatrix values="0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.1 0" />
|
|
33
|
+
<feBlend in2="effect1_dropShadow_66_263" result="effect2_dropShadow_66_263" />
|
|
34
|
+
<feBlend in="SourceGraphic" in2="effect2_dropShadow_66_263" result="shape" />
|
|
35
|
+
</filter>
|
|
36
|
+
</defs>
|
|
37
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M16.24 2H7.76C5 2 4 3 4 5.81V18.19C4 21 5 22 7.76 22H16.23C19 22 20 21 20 18.19V5.81C20 3 19 2 16.24 2ZM12 19.3C11.04 19.3 10.25 18.51 10.25 17.55C10.25 16.59 11.04 15.8 12 15.8C12.96 15.8 13.75 16.59 13.75 17.55C13.75 18.51 12.96 19.3 12 19.3ZM14 6.25H10C9.59 6.25 9.25 5.91 9.25 5.5C9.25 5.09 9.59 4.75 10 4.75H14C14.41 4.75 14.75 5.09 14.75 5.5C14.75 5.91 14.41 6.25 14 6.25Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.4"
|
|
3
|
+
d="M16.24 2H7.76C5 2 4 3 4 5.81V18.19C4 21 5 22 7.76 22H16.23C19 22 20 21 20 18.19V5.81C20 3 19 2 16.24 2Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path
|
|
6
|
+
d="M14 6.25H10C9.59 6.25 9.25 5.91 9.25 5.5C9.25 5.09 9.59 4.75 10 4.75H14C14.41 4.75 14.75 5.09 14.75 5.5C14.75 5.91 14.41 6.25 14 6.25Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
<path
|
|
9
|
+
d="M12 19.3C12.9665 19.3 13.75 18.5165 13.75 17.55C13.75 16.5835 12.9665 15.8 12 15.8C11.0335 15.8 10.25 16.5835 10.25 17.55C10.25 18.5165 11.0335 19.3 12 19.3Z"
|
|
10
|
+
fill="currentColor" />
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M15 22.75H9C4.59 22.75 3.25 21.41 3.25 17V7C3.25 2.59 4.59 1.25 9 1.25H15C19.41 1.25 20.75 2.59 20.75 7V17C20.75 21.41 19.41 22.75 15 22.75ZM9 2.75C5.42 2.75 4.75 3.43 4.75 7V17C4.75 20.57 5.42 21.25 9 21.25H15C18.58 21.25 19.25 20.57 19.25 17V7C19.25 3.43 18.58 2.75 15 2.75H9Z" fill="currentColor"/>
|
|
3
|
+
<path d="M14 6.25H10C9.59 6.25 9.25 5.91 9.25 5.5C9.25 5.09 9.59 4.75 10 4.75H14C14.41 4.75 14.75 5.09 14.75 5.5C14.75 5.91 14.41 6.25 14 6.25Z" fill="currentColor"/>
|
|
4
|
+
<path d="M12 19.86C10.73 19.86 9.7 18.83 9.7 17.56C9.7 16.29 10.73 15.26 12 15.26C13.27 15.26 14.3 16.29 14.3 17.56C14.3 18.83 13.27 19.86 12 19.86ZM12 16.75C11.56 16.75 11.2 17.11 11.2 17.55C11.2 17.99 11.56 18.35 12 18.35C12.44 18.35 12.8 17.99 12.8 17.55C12.8 17.11 12.44 16.75 12 16.75Z" fill="currentColor"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.002 20.5H7.00195C4.00195 20.5 2.00195 19 2.00195 15.5V8.5C2.00195 5 4.00195 3.5 7.00195 3.5H17.002C20.002 3.5 22.002 5 22.002 8.5V15.5C22.002 19 20.002 20.5 17.002 20.5Z" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M12.002 15C13.6588 15 15.002 13.6569 15.002 12C15.002 10.3431 13.6588 9 12.002 9C10.3451 9 9.00195 10.3431 9.00195 12C9.00195 13.6569 10.3451 15 12.002 15Z" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M2.00195 9H3.00195C6.00195 9 7.00195 8 7.00195 5V4" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M22.002 9H21.002C18.002 9 17.002 8 17.002 5V4" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M2.00195 15H3.00195C6.00195 15 7.00195 16 7.00195 19V20" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
<path d="M22.002 15H21.002C18.002 15 17.002 16 17.002 19V20" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.4"
|
|
3
|
+
d="M13.3713 6.62851C13.595 6.85222 13.8827 6.95829 14.1665 6.95829C14.4503 6.95829 14.738 6.85222 14.9617 6.62851L16.2743 5.31591C17.25 6.62908 17.8332 8.24533 17.8332 9.99996C17.8332 14.3238 14.3237 17.8333 9.99984 17.8333C5.67598 17.8333 2.1665 14.3238 2.1665 9.99996C2.1665 5.6761 5.67598 2.16663 9.99984 2.16663C11.7545 2.16663 13.3707 2.74982 14.6839 3.72547L13.3713 5.03807C12.9344 5.475 12.9344 6.19158 13.3713 6.62851Z"
|
|
4
|
+
fill="currentColor" stroke="currentColor" />
|
|
5
|
+
<path
|
|
6
|
+
d="M11.293 10.3219L11.293 10.322L11.2979 10.3236C11.5337 10.4034 11.752 10.5118 11.9135 10.6925C12.0649 10.862 12.2082 11.1421 12.2082 11.65C12.2082 12.44 11.5912 13.05 10.8748 13.05H10.6248H10.1248V13.55V13.7583C10.1248 13.7885 10.1126 13.8198 10.0869 13.8454C10.0613 13.8711 10.03 13.8833 9.99984 13.8833C9.96969 13.8833 9.93841 13.8711 9.91277 13.8454C9.88712 13.8198 9.87484 13.7885 9.87484 13.7583V13.55V13.05H9.37484H9.30818C8.48341 13.05 7.7915 12.3565 7.7915 11.4667C7.7915 11.4365 7.80379 11.4052 7.82943 11.3796C7.85508 11.354 7.88636 11.3417 7.9165 11.3417C7.94665 11.3417 7.97793 11.354 8.00358 11.3796C8.02922 11.4052 8.0415 11.4365 8.0415 11.4667C8.0415 12.1596 8.56727 12.8 9.30818 12.8H9.37484H9.87484V12.3V10.45V10.0953L9.54001 9.97807L8.70829 9.68697C8.70802 9.68688 8.70775 9.68678 8.70747 9.68668C8.46842 9.60202 8.24874 9.49144 8.08622 9.30956C7.93408 9.13929 7.7915 8.86094 7.7915 8.35833C7.7915 7.56837 8.40849 6.95833 9.12485 6.95833H9.37484H9.87484V6.45833V6.25C9.87484 6.21985 9.88712 6.18857 9.91277 6.16293C9.93841 6.13728 9.96969 6.125 9.99984 6.125C10.03 6.125 10.0613 6.13728 10.0869 6.16293C10.1126 6.18857 10.1248 6.21985 10.1248 6.25V6.45833V6.95833H10.6248H10.6915C11.5163 6.95833 12.2082 7.65179 12.2082 8.54167C12.2082 8.57181 12.1959 8.60309 12.1702 8.62874C12.1446 8.65438 12.1133 8.66667 12.0832 8.66667C12.053 8.66667 12.0217 8.65438 11.9961 8.62874C11.9705 8.60309 11.9582 8.57181 11.9582 8.54167C11.9582 7.84872 11.4324 7.20833 10.6915 7.20833H10.6248H10.1248V7.70833V9.55833V9.91308L10.4597 10.0303L11.293 10.3219ZM8.78342 9.43816L8.78339 9.43824L8.79172 9.44101L9.21673 9.58268L9.87484 9.80204V9.10833V7.7V7.2H9.37484H9.12485C8.48511 7.2 8.0415 7.76491 8.0415 8.35C8.0415 8.59986 8.06962 8.87805 8.24709 9.10268C8.4091 9.30773 8.64204 9.38888 8.76358 9.43122C8.77057 9.43366 8.7772 9.43597 8.78342 9.43816ZM10.1248 12.2917V12.7917H10.6248H10.8748C11.5106 12.7917 11.9582 12.2311 11.9582 11.65C11.9582 11.4001 11.9301 11.1219 11.7526 10.8973C11.5906 10.6923 11.3576 10.6111 11.2361 10.5688C11.2291 10.5663 11.2225 10.564 11.2163 10.5618L11.1028 10.8833L11.2163 10.5618L10.7912 10.4118L10.1248 10.1766V10.8833V12.2917Z"
|
|
7
|
+
fill="currentColor" stroke="currentColor" />
|
|
8
|
+
<path
|
|
9
|
+
d="M18.9079 1.42499C18.8412 1.27499 18.7246 1.15 18.5662 1.08333C18.4912 1.05 18.4079 1.03333 18.3245 1.03333H14.9912C14.6495 1.03333 14.3662 1.31666 14.3662 1.65833C14.3662 1.99999 14.6495 2.28333 14.9912 2.28333H16.8162L15.4246 3.675C15.7412 3.95 16.0329 4.24166 16.3079 4.55833L17.6995 3.16666V4.99999C17.6995 5.34166 17.9829 5.62499 18.3245 5.62499C18.6662 5.62499 18.9495 5.34166 18.9495 4.99999V1.66666C18.9579 1.58333 18.9412 1.50833 18.9079 1.42499Z"
|
|
10
|
+
fill="currentColor" />
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M19.1714 6.64002C18.7414 4.47002 17.1314 3.52002 14.8914 3.52002H6.11143C3.47143 3.52002 1.71143 4.84002 1.71143 7.92002V13.07C1.71143 15.29 2.62143 16.59 4.12143 17.15C4.34143 17.23 4.58143 17.3 4.83143 17.34C5.23143 17.43 5.66143 17.47 6.11143 17.47H14.9014C17.5414 17.47 19.3014 16.15 19.3014 13.07V7.92002C19.3014 7.45002 19.2614 7.03002 19.1714 6.64002ZM5.53143 12C5.53143 12.41 5.19143 12.75 4.78143 12.75C4.37143 12.75 4.03143 12.41 4.03143 12V9.00002C4.03143 8.59002 4.37143 8.25002 4.78143 8.25002C5.19143 8.25002 5.53143 8.59002 5.53143 9.00002V12ZM10.5014 13.14C9.04143 13.14 7.86143 11.96 7.86143 10.5C7.86143 9.04002 9.04143 7.86002 10.5014 7.86002C11.9614 7.86002 13.1414 9.04002 13.1414 10.5C13.1414 11.96 11.9614 13.14 10.5014 13.14ZM16.9614 12C16.9614 12.41 16.6214 12.75 16.2114 12.75C15.8014 12.75 15.4614 12.41 15.4614 12V9.00002C15.4614 8.59002 15.8014 8.25002 16.2114 8.25002C16.6214 8.25002 16.9614 8.59002 16.9614 9.00002V12Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path
|
|
6
|
+
d="M22.3015 10.92V16.07C22.3015 19.15 20.5415 20.48 17.8915 20.48H9.11148C8.36148 20.48 7.69148 20.37 7.11148 20.15C6.64148 19.98 6.23148 19.73 5.90148 19.41C5.72148 19.24 5.86148 18.97 6.11148 18.97H14.8915C18.5915 18.97 20.7915 16.77 20.7915 13.08V7.92003C20.7915 7.68003 21.0615 7.53003 21.2315 7.71003C21.9115 8.43003 22.3015 9.48003 22.3015 10.92Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.4"
|
|
3
|
+
d="M19.2997 7.91998V13.07C19.2997 16.15 17.5397 17.47 14.8997 17.47H6.10971C5.65971 17.47 5.22971 17.43 4.82971 17.34C4.57971 17.3 4.33972 17.23 4.11972 17.15C2.61972 16.59 1.70972 15.29 1.70972 13.07V7.91998C1.70972 4.83998 3.46971 3.52002 6.10971 3.52002H14.8997C17.1397 3.52002 18.7497 4.47001 19.1797 6.64001C19.2497 7.04001 19.2997 7.44998 19.2997 7.91998Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path
|
|
6
|
+
d="M22.2998 10.92V16.07C22.2998 19.15 20.5398 20.47 17.8998 20.47H9.10983C8.36983 20.47 7.69984 20.37 7.11984 20.15C5.92984 19.71 5.11983 18.8 4.82983 17.34C5.22983 17.43 5.65983 17.47 6.10983 17.47H14.8998C17.5398 17.47 19.2998 16.15 19.2998 13.07V7.91998C19.2998 7.44998 19.2598 7.03001 19.1798 6.64001C21.0798 7.04001 22.2998 8.37998 22.2998 10.92Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
<path
|
|
9
|
+
d="M10.4999 13.14C11.9579 13.14 13.1399 11.958 13.1399 10.5C13.1399 9.04197 11.9579 7.85999 10.4999 7.85999C9.04185 7.85999 7.85986 9.04197 7.85986 10.5C7.85986 11.958 9.04185 13.14 10.4999 13.14Z"
|
|
10
|
+
fill="currentColor" />
|
|
11
|
+
<path
|
|
12
|
+
d="M4.77979 8.25C4.36979 8.25 4.02979 8.59 4.02979 9V12C4.02979 12.41 4.36979 12.75 4.77979 12.75C5.18979 12.75 5.52979 12.41 5.52979 12V9C5.52979 8.59 5.19979 8.25 4.77979 8.25Z"
|
|
13
|
+
fill="currentColor" />
|
|
14
|
+
<path
|
|
15
|
+
d="M16.2097 8.25C15.7997 8.25 15.4597 8.59 15.4597 9V12C15.4597 12.41 15.7997 12.75 16.2097 12.75C16.6197 12.75 16.9597 12.41 16.9597 12V9C16.9597 8.59 16.6297 8.25 16.2097 8.25Z"
|
|
16
|
+
fill="currentColor" />
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M19.3 7.91998V13.07C19.3 16.15 17.54 17.47 14.9 17.47H6.10995C5.65995 17.47 5.22996 17.43 4.82996 17.34C4.57996 17.3 4.33996 17.23 4.11996 17.15C2.61996 16.59 1.70996 15.29 1.70996 13.07V7.91998C1.70996 4.83998 3.46995 3.52002 6.10995 3.52002H14.9C17.14 3.52002 18.75 4.47001 19.18 6.64001C19.25 7.04001 19.3 7.44998 19.3 7.91998Z"
|
|
4
|
+
stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"
|
|
5
|
+
stroke-linejoin="round" />
|
|
6
|
+
<path
|
|
7
|
+
d="M22.3011 10.9201V16.0701C22.3011 19.1501 20.5411 20.4701 17.9011 20.4701H9.11105C8.37105 20.4701 7.70106 20.3701 7.12106 20.1501C5.93106 19.7101 5.12105 18.8001 4.83105 17.3401C5.23105 17.4301 5.66105 17.4701 6.11105 17.4701H14.9011C17.5411 17.4701 19.3011 16.1501 19.3011 13.0701V7.9201C19.3011 7.4501 19.2611 7.03014 19.1811 6.64014C21.0811 7.04014 22.3011 8.38011 22.3011 10.9201Z"
|
|
8
|
+
stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"
|
|
9
|
+
stroke-linejoin="round" />
|
|
10
|
+
<path
|
|
11
|
+
d="M10.4984 13.1399C11.9564 13.1399 13.1384 11.9579 13.1384 10.4999C13.1384 9.04185 11.9564 7.85986 10.4984 7.85986C9.04038 7.85986 7.8584 9.04185 7.8584 10.4999C7.8584 11.9579 9.04038 13.1399 10.4984 13.1399Z"
|
|
12
|
+
stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"
|
|
13
|
+
stroke-linejoin="round" />
|
|
14
|
+
<path d="M4.78003 8.30005V12.7001" stroke="currentColor" stroke-width="1.5"
|
|
15
|
+
stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
|
|
16
|
+
<path d="M16.2217 8.30029V12.7003" stroke="currentColor" stroke-width="1.5"
|
|
17
|
+
stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M16.19 2H7.81C4.17 2 2 4.17 2 7.81V16.18C2 19.83 4.17 22 7.81 22H16.18C19.82 22 21.99 19.83 21.99 16.19V7.81C22 4.17 19.83 2 16.19 2ZM7 13.31C6.28 13.31 5.69 12.72 5.69 12C5.69 11.28 6.28 10.69 7 10.69C7.72 10.69 8.31 11.28 8.31 12C8.31 12.72 7.72 13.31 7 13.31ZM12 13.31C11.28 13.31 10.69 12.72 10.69 12C10.69 11.28 11.28 10.69 12 10.69C12.72 10.69 13.31 11.28 13.31 12C13.31 12.72 12.72 13.31 12 13.31ZM17 13.31C16.28 13.31 15.69 12.72 15.69 12C15.69 11.28 16.28 10.69 17 10.69C17.72 10.69 18.31 11.28 18.31 12C18.31 12.72 17.72 13.31 17 13.31Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.4" d="M16.19 2H7.81C4.17 2 2 4.17 2 7.81V16.18C2 19.83 4.17 22 7.81 22H16.18C19.82 22 21.99 19.83 21.99 16.19V7.81C22 4.17 19.83 2 16.19 2Z" fill="currentColor"/>
|
|
3
|
+
<path d="M11.9999 10.6899C11.2799 10.6899 10.6899 11.2799 10.6899 11.9999C10.6899 12.7199 11.2799 13.3099 11.9999 13.3099C12.7199 13.3099 13.3099 12.7199 13.3099 11.9999C13.3099 11.2799 12.7199 10.6899 11.9999 10.6899Z" fill="currentColor"/>
|
|
4
|
+
<path d="M6.99994 10.6899C6.27994 10.6899 5.68994 11.2799 5.68994 11.9999C5.68994 12.7199 6.27994 13.3099 6.99994 13.3099C7.71994 13.3099 8.30994 12.7199 8.30994 11.9999C8.30994 11.2799 7.71994 10.6899 6.99994 10.6899Z" fill="currentColor"/>
|
|
5
|
+
<path d="M16.9999 10.6899C16.2799 10.6899 15.6899 11.2799 15.6899 11.9999C15.6899 12.7199 16.2799 13.3099 16.9999 13.3099C17.7199 13.3099 18.3099 12.7199 18.3099 11.9999C18.3099 11.2799 17.7199 10.6899 16.9999 10.6899Z" fill="currentColor"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12 22C17.5 22 22 17.5 22 12C22 6.5 17.5 2 12 2C6.5 2 2 6.5 2 12C2 17.5 6.5 22 12 22Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M15.9965 12H16.0054" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M11.9955 12H12.0045" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M7.99451 12H8.00349" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12.5 3.8999C11.7575 3.8999 11.15 4.5074 11.15 5.2499C11.15 5.9924 11.7575 6.5999 12.5 6.5999C13.2425 6.5999 13.85 5.9924 13.85 5.2499C13.85 4.5074 13.2425 3.8999 12.5 3.8999ZM12.5 17.3999C11.7575 17.3999 11.15 18.0074 11.15 18.7499C11.15 19.4924 11.7575 20.0999 12.5 20.0999C13.2425 20.0999 13.85 19.4924 13.85 18.7499C13.85 18.0074 13.2425 17.3999 12.5 17.3999ZM12.5 10.6499C11.7575 10.6499 11.15 11.2574 11.15 11.9999C11.15 12.7424 11.7575 13.3499 12.5 13.3499C13.2425 13.3499 13.85 12.7424 13.85 11.9999C13.85 11.2574 13.2425 10.6499 12.5 10.6499Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M5 10C3.9 10 3 10.9 3 12C3 13.1 3.9 14 5 14C6.1 14 7 13.1 7 12C7 10.9 6.1 10 5 10Z" stroke="currentColor" stroke-width="1.5"/>
|
|
3
|
+
<path d="M19 10C17.9 10 17 10.9 17 12C17 13.1 17.9 14 19 14C20.1 14 21 13.1 21 12C21 10.9 20.1 10 19 10Z" stroke="currentColor" stroke-width="1.5"/>
|
|
4
|
+
<path d="M12 10C10.9 10 10 10.9 10 12C10 13.1 10.9 14 12 14C13.1 14 14 13.1 14 12C14 10.9 13.1 10 12 10Z" stroke="currentColor" stroke-width="1.5"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M21 7.52V13.4C21 13.74 20.67 13.98 20.35 13.88L16.42 12.66C15.34 12.33 14.18 12.61 13.39 13.4C12.59 14.2 12.3 15.37 12.64 16.45L13.85 20.35C13.95 20.67 13.71 21 13.37 21H7.52C4.07 21 2 18.94 2 15.48V7.52C2 4.06 4.07 2 7.52 2H15.48C18.93 2 21 4.06 21 7.52Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path
|
|
6
|
+
d="M21.9602 18.84L20.3302 19.39C19.8802 19.54 19.5202 19.89 19.3702 20.35L18.8202 21.98C18.3502 23.39 16.3702 23.36 15.9302 21.95L14.0802 16C13.7202 14.82 14.8102 13.72 15.9802 14.09L21.9402 15.94C23.3402 16.38 23.3602 18.37 21.9602 18.84Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.4"
|
|
3
|
+
d="M15.4798 2H7.52977C4.06977 2 2.00977 4.05999 2.00977 7.51999V15.47C2.00977 18.93 4.07977 20.99 7.52977 20.99H15.4798C18.9398 20.99 20.9998 18.93 20.9998 15.47V7.51999C20.9998 4.05999 18.9298 2 15.4798 2Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path
|
|
6
|
+
d="M21.9602 18.84L20.3302 19.39C19.8802 19.54 19.5202 19.89 19.3702 20.35L18.8202 21.98C18.3502 23.39 16.3702 23.36 15.9302 21.95L14.0802 16C13.7202 14.82 14.8102 13.72 15.9802 14.09L21.9402 15.94C23.3402 16.38 23.3602 18.37 21.9602 18.84Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M22 12V9C22 4 20 2 15 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22H12" stroke="currentColor"
|
|
3
|
+
stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
4
|
+
<path
|
|
5
|
+
d="M20.9602 17.84L19.3302 18.39C18.8802 18.54 18.5202 18.89 18.3702 19.35L17.8202 20.98C17.3502 22.39 15.3702 22.36 14.9302 20.95L13.0802 15C12.7202 13.82 13.8102 12.72 14.9802 13.09L20.9402 14.94C22.3402 15.38 22.3602 17.37 20.9602 17.84Z"
|
|
6
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.29 10.34V18.41C10.29 20.39 8.67 22 6.7 22C4.72 22 3.11 20.39 3.11 18.41C3.11 16.44 4.72 14.83 6.7 14.83C7.53 14.83 8.28 15.12 8.89 15.59V10.74L10.29 10.34Z" fill="currentColor"/>
|
|
3
|
+
<path d="M20.89 7.31995V16.4799C20.89 18.4599 19.28 20.0699 17.3 20.0699C15.33 20.0699 13.71 18.4599 13.71 16.4799C13.71 14.5099 15.33 12.8999 17.3 12.8999C18.14 12.8999 18.89 13.1899 19.5 13.6699V7.71995L20.89 7.31995Z" fill="currentColor"/>
|
|
4
|
+
<path opacity="0.4" d="M20.89 5.17995V7.31995L8.89 10.7399V6.74995C8.89 5.27995 9.78 4.13995 11.19 3.75995L16.97 2.17995C18.14 1.85995 19.13 1.96995 19.83 2.50995C20.54 3.03995 20.89 3.93995 20.89 5.17995Z" fill="currentColor"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.4" d="M19.26 2.86995L14.84 1.39995C13.92 1.08995 12.99 1.19995 12.31 1.69995C11.62 2.19995 11.23 3.03995 11.23 4.00995V7.77995L18.11 10.07C18.45 10.19 18.8 10.24 19.13 10.24C19.69 10.24 20.21 10.08 20.64 9.76995C21.33 9.26995 21.72 8.42995 21.72 7.45995V6.27995C21.72 4.84995 20.62 3.31995 19.26 2.86995Z" fill="currentColor"/>
|
|
3
|
+
<path d="M12.72 8.27002V18C12.72 20.62 10.59 22.75 7.97 22.75C5.35 22.75 3.22 20.62 3.22 18C3.22 15.38 5.35 13.25 7.97 13.25C9.23 13.25 10.37 13.75 11.22 14.55V7.77002L12.72 8.27002Z" fill="currentColor"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M2 9V6.5C2 4.01 4.01 2 6.5 2H9" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M15 2H17.5C19.99 2 22 4.01 22 6.5V9" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M22 16V17.5C22 19.99 19.99 22 17.5 22H16" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M9 22H6.5C4.01 22 2 19.99 2 17.5V15" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M17 9.5V14.5C17 16.5 16 17.5 14 17.5H10C8 17.5 7 16.5 7 14.5V9.5C7 7.5 8 6.5 10 6.5H14C16 6.5 17 7.5 17 9.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
<path d="M19 12H5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M6 10H18" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M6 14H18" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M18 6L6 18" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12 16.5C14.4853 16.5 16.5 14.4853 16.5 12C16.5 9.51472 14.4853 7.5 12 7.5C9.51472 7.5 7.5 9.51472 7.5 12C7.5 14.4853 9.51472 16.5 12 16.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M2 12H7" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M17 12H22" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M14.5 9L10.0187 14.3775" stroke="#292D32" stroke-width="1.5" stroke-linecap="round"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M19.3399 14.49L18.3399 12.83C18.1299 12.46 17.9399 11.76 17.9399 11.35V8.82C17.9399 6.47 16.5599 4.44 14.5699 3.49C14.0499 2.57 13.0899 2 11.9899 2C10.8999 2 9.91994 2.59 9.39994 3.52C7.44994 4.49 6.09994 6.5 6.09994 8.82V11.35C6.09994 11.76 5.90994 12.46 5.69994 12.82L4.68994 14.49C4.28994 15.16 4.19994 15.9 4.44994 16.58C4.68994 17.25 5.25994 17.77 5.99994 18.02C7.93994 18.68 9.97994 19 12.0199 19C14.0599 19 16.0999 18.68 18.0399 18.03C18.7399 17.8 19.2799 17.27 19.5399 16.58C19.7999 15.89 19.7299 15.13 19.3399 14.49Z" fill="currentColor"/>
|
|
3
|
+
<path d="M14.8299 20.01C14.4099 21.17 13.2999 22 11.9999 22C11.2099 22 10.4299 21.68 9.87993 21.11C9.55993 20.81 9.31993 20.41 9.17993 20C9.30993 20.02 9.43993 20.03 9.57993 20.05C9.80993 20.08 10.0499 20.11 10.2899 20.13C10.8599 20.18 11.4399 20.21 12.0199 20.21C12.5899 20.21 13.1599 20.18 13.7199 20.13C13.9299 20.11 14.1399 20.1 14.3399 20.07C14.4999 20.05 14.6599 20.03 14.8299 20.01Z" fill="currentColor"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12.0201 2.91003C8.71009 2.91003 6.02009 5.60003 6.02009 8.91003V11.8C6.02009 12.41 5.76009 13.34 5.45009 13.86L4.30009 15.77C3.59009 16.95 4.08009 18.26 5.38009 18.7C9.69009 20.14 14.3401 20.14 18.6501 18.7C19.8601 18.3 20.3901 16.87 19.7301 15.77L18.5801 13.86C18.2801 13.34 18.0201 12.41 18.0201 11.8V8.91003C18.0201 5.61003 15.3201 2.91003 12.0201 2.91003Z" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/>
|
|
3
|
+
<path d="M13.8699 3.19994C13.5599 3.10994 13.2399 3.03994 12.9099 2.99994C11.9499 2.87994 11.0299 2.94994 10.1699 3.19994C10.4599 2.45994 11.1799 1.93994 12.0199 1.93994C12.8599 1.93994 13.5799 2.45994 13.8699 3.19994Z" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M15.02 19.0601C15.02 20.7101 13.67 22.0601 12.02 22.0601C11.2 22.0601 10.44 21.7201 9.90002 21.1801C9.36002 20.6401 9.02002 19.8801 9.02002 19.0601" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 448 512">
|
|
2
|
+
<path d="M0 64C0 46.3 14.3 32 32 32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64zM192 192c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32zm32 96H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zM0 448c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM.2 268.6c-8.2-6.4-8.2-18.9 0-25.3l101.9-79.3c10.5-8.2 25.8-.7 25.8 12.6V335.3c0 13.3-15.3 20.8-25.8 12.6L.2 268.6z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M2.19995 14.02C3.12995 18.58 7.15995 22 12 22C16.82 22 20.8399 18.59 21.7899 14.05" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M21.81 10.06C20.91 5.46 16.86 2 12 2C7.16995 2 3.13995 5.43001 2.19995 9.98001" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M12 13.5C12.8284 13.5 13.5 12.8284 13.5 12C13.5 11.1716 12.8284 10.5 12 10.5C11.1716 10.5 10.5 11.1716 10.5 12C10.5 12.8284 11.1716 13.5 12 13.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.4" d="M12.0001 17.3501C12.9003 17.3501 13.6301 16.6203 13.6301 15.7201C13.6301 14.8199 12.9003 14.0901 12.0001 14.0901C11.0999 14.0901 10.3701 14.8199 10.3701 15.7201C10.3701 16.6203 11.0999 17.3501 12.0001 17.3501Z" fill="currentColor"/>
|
|
3
|
+
<path d="M16.65 9.43994H7.35C3.25 9.43994 2 10.6899 2 14.7899V16.6499C2 20.7499 3.25 21.9999 7.35 21.9999H16.65C20.75 21.9999 22 20.7499 22 16.6499V14.7899C22 10.6899 20.75 9.43994 16.65 9.43994ZM12 18.7399C10.33 18.7399 8.98 17.3799 8.98 15.7199C8.98 14.0599 10.33 12.6999 12 12.6999C13.67 12.6999 15.02 14.0599 15.02 15.7199C15.02 17.3799 13.67 18.7399 12 18.7399Z" fill="currentColor"/>
|
|
4
|
+
<path opacity="0.4" d="M7.11997 9.45V8.28C7.11997 5.35 7.94997 3.4 12 3.4C16.05 3.4 16.88 5.35 16.88 8.28V9.45C17.39 9.46 17.85 9.48 18.28 9.54V8.28C18.28 5.58 17.63 2 12 2C6.36997 2 5.71997 5.58 5.71997 8.28V9.53C6.13997 9.48 6.60997 9.45 7.11997 9.45Z" fill="currentColor"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M6 10V8C6 4.69 7 2 12 2C17 2 18 4.69 18 8V10" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M12 18.5C13.3807 18.5 14.5 17.3807 14.5 16C14.5 14.6193 13.3807 13.5 12 13.5C10.6193 13.5 9.5 14.6193 9.5 16C9.5 17.3807 10.6193 18.5 12 18.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M17 22H7C3 22 2 21 2 17V15C2 11 3 10 7 10H17C21 10 22 11 22 15V17C22 21 21 22 17 22Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512">
|
|
2
|
+
<path d="M498.1 5.6c10.1 7 15.4 19.1 13.5 31.2l-64 416c-1.5 9.7-7.4 18.2-16 23s-18.9 5.4-28 1.6L284 427.7l-68.5 74.1c-8.9 9.7-22.9 12.9-35.2 8.1S160 493.2 160 480V396.4c0-4 1.5-7.8 4.2-10.7L331.8 202.8c5.8-6.3 5.6-16-.4-22s-15.7-6.4-22-.7L106 360.8 17.7 316.6C7.1 311.3 .3 300.7 0 288.9s5.9-22.8 16.1-28.7l448-256c10.7-6.1 23.9-5.5 34 1.4z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
<svg viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill="none" opacity="1.000000" stroke="none"
|
|
3
|
+
d="
|
|
4
|
+
M513.000000,237.000000
|
|
5
|
+
C513.000000,328.889923 513.000000,420.779816 513.000000,513.000000
|
|
6
|
+
C483.313263,513.000000 453.625275,513.000000 423.278198,512.652954
|
|
7
|
+
C428.180511,508.936371 434.459106,506.354340 439.176544,502.058044
|
|
8
|
+
C457.447052,485.418732 457.879181,456.313110 440.335541,438.935242
|
|
9
|
+
C430.771179,429.461243 418.945679,426.083679 405.499115,426.881348
|
|
10
|
+
C394.657806,427.524445 385.487091,431.890656 378.493286,439.409607
|
|
11
|
+
C368.289551,450.379547 363.515228,463.728271 367.058563,478.938904
|
|
12
|
+
C370.419189,493.365051 378.654816,503.994904 392.445557,510.050751
|
|
13
|
+
C393.800720,510.645874 394.823120,511.998810 396.000000,513.000000
|
|
14
|
+
C330.312439,513.000000 264.624878,513.000000 198.278503,512.652954
|
|
15
|
+
C198.269882,511.868011 198.863907,511.277740 199.578430,511.014282
|
|
16
|
+
C221.723602,502.849457 232.080383,480.686401 226.878357,459.339447
|
|
17
|
+
C219.291992,428.208099 183.829834,418.277496 160.985931,433.620789
|
|
18
|
+
C145.857513,443.781921 139.043411,458.270966 141.949814,476.793518
|
|
19
|
+
C144.460052,492.791412 153.429031,503.582855 167.995010,510.130432
|
|
20
|
+
C169.185989,510.665802 170.007065,512.024109 171.000000,513.000000
|
|
21
|
+
C114.377396,513.000000 57.754787,513.000000 1.000000,513.000000
|
|
22
|
+
C1.000000,382.312469 1.000000,251.624893 1.301869,120.216431
|
|
23
|
+
C6.113314,126.038315 12.256198,128.823837 20.223547,128.088120
|
|
24
|
+
C22.777517,127.852287 25.429497,128.636475 28.032793,128.982849
|
|
25
|
+
C44.897171,131.226700 59.363888,138.634171 71.573013,150.199142
|
|
26
|
+
C83.808090,161.788712 91.804314,175.947296 95.074158,192.636902
|
|
27
|
+
C95.742256,196.046936 95.770599,200.847366 97.941162,202.365280
|
|
28
|
+
C100.435379,204.109528 104.983101,202.966431 108.639404,202.988937
|
|
29
|
+
C115.028961,203.028259 121.418938,202.999908 128.010544,202.999908
|
|
30
|
+
C127.577026,200.334839 127.373276,198.551804 126.988922,196.808578
|
|
31
|
+
C125.020767,187.882141 123.546654,178.800308 120.876633,170.086319
|
|
32
|
+
C117.186279,158.042328 110.343117,147.643509 102.508064,137.757065
|
|
33
|
+
C93.184982,125.992981 82.215530,116.541039 68.978897,109.407318
|
|
34
|
+
C55.314304,102.042953 40.816002,97.664398 25.504944,96.220261
|
|
35
|
+
C16.854034,95.404312 7.625307,94.451683 2.194047,104.028252
|
|
36
|
+
C2.101227,104.191925 1.411301,104.016945 1.000000,104.000000
|
|
37
|
+
C1.000000,69.704247 1.000000,35.408497 1.000000,1.000000
|
|
38
|
+
C99.687531,1.000000 198.375107,1.000000 297.474091,1.356076
|
|
39
|
+
C292.188080,5.099496 289.924744,10.078858 289.936615,16.713799
|
|
40
|
+
C290.044312,76.841675 289.999725,136.969818 289.999725,197.097885
|
|
41
|
+
C289.999725,198.801086 289.999725,200.504303 289.999725,202.834534
|
|
42
|
+
C291.260498,201.962631 291.712433,201.740952 292.049316,201.404205
|
|
43
|
+
C341.054077,152.420273 390.028076,103.405571 439.099609,54.488697
|
|
44
|
+
C442.238647,51.359535 440.569885,49.599304 438.190094,47.714165
|
|
45
|
+
C422.936523,35.631256 406.771118,25.076145 388.798004,17.353016
|
|
46
|
+
C373.375427,10.725865 357.560516,5.605047 340.973877,2.902187
|
|
47
|
+
C340.232269,2.781343 339.654236,1.656953 339.000000,1.000000
|
|
48
|
+
C396.928040,1.000000 454.856079,1.000000 513.000000,1.000000
|
|
49
|
+
C513.000000,60.354053 513.000000,119.708366 512.594727,179.636200
|
|
50
|
+
C511.470123,177.598526 510.448669,175.029221 510.079742,172.369415
|
|
51
|
+
C507.439117,153.331573 501.313904,135.270493 492.817932,118.262772
|
|
52
|
+
C486.215942,105.046432 477.607361,92.815025 469.612061,80.324173
|
|
53
|
+
C467.576630,77.144318 464.481995,74.642456 461.654755,71.592529
|
|
54
|
+
C418.229950,115.550430 375.395111,158.911133 332.249420,202.586472
|
|
55
|
+
C333.371399,202.827530 333.692017,202.956680 334.012726,202.956787
|
|
56
|
+
C393.675140,202.977188 453.337585,202.988434 513.000000,203.000000
|
|
57
|
+
C513.000000,212.354233 513.000000,221.708450 512.547852,231.666595
|
|
58
|
+
C510.604248,232.180389 509.112854,232.011459 507.621460,232.011337
|
|
59
|
+
C372.846191,231.999191 238.070923,231.998871 103.295654,232.012650
|
|
60
|
+
C101.583237,232.012833 99.870842,232.203888 97.992073,232.315750
|
|
61
|
+
C99.195114,239.574677 100.018829,246.247971 101.437157,252.792404
|
|
62
|
+
C106.232910,274.920837 114.472679,295.751801 126.077423,315.180359
|
|
63
|
+
C141.379608,340.799225 161.067947,362.376923 185.712662,379.395477
|
|
64
|
+
C204.086273,392.083527 223.779297,401.801147 245.225311,408.197754
|
|
65
|
+
C262.985229,413.494904 281.039062,416.525848 299.507141,416.915344
|
|
66
|
+
C307.602570,417.086060 315.760742,416.744690 323.812683,415.897430
|
|
67
|
+
C333.913757,414.834595 344.108887,413.735352 353.953613,411.365051
|
|
68
|
+
C372.814148,406.824036 390.809021,399.870239 407.749878,390.158081
|
|
69
|
+
C421.800079,382.103058 434.892029,372.786591 446.594177,361.700806
|
|
70
|
+
C454.378998,354.326080 461.565063,346.239349 468.403839,337.962921
|
|
71
|
+
C481.569244,322.029785 491.525574,304.161194 499.122253,284.925598
|
|
72
|
+
C505.052155,269.910370 509.252747,254.500946 511.139893,238.457596
|
|
73
|
+
C511.204712,237.906418 512.355408,237.482986 513.000000,237.000000
|
|
74
|
+
z" />
|
|
75
|
+
<path fill="currentColor" opacity="1.000000" stroke="none"
|
|
76
|
+
d="
|
|
77
|
+
M513.000000,236.583344
|
|
78
|
+
C512.355408,237.482986 511.204712,237.906418 511.139893,238.457596
|
|
79
|
+
C509.252747,254.500946 505.052155,269.910370 499.122253,284.925598
|
|
80
|
+
C491.525574,304.161194 481.569244,322.029785 468.403839,337.962921
|
|
81
|
+
C461.565063,346.239349 454.378998,354.326080 446.594177,361.700806
|
|
82
|
+
C434.892029,372.786591 421.800079,382.103058 407.749878,390.158081
|
|
83
|
+
C390.809021,399.870239 372.814148,406.824036 353.953613,411.365051
|
|
84
|
+
C344.108887,413.735352 333.913757,414.834595 323.812683,415.897430
|
|
85
|
+
C315.760742,416.744690 307.602570,417.086060 299.507141,416.915344
|
|
86
|
+
C281.039062,416.525848 262.985229,413.494904 245.225311,408.197754
|
|
87
|
+
C223.779297,401.801147 204.086273,392.083527 185.712662,379.395477
|
|
88
|
+
C161.067947,362.376923 141.379608,340.799225 126.077423,315.180359
|
|
89
|
+
C114.472679,295.751801 106.232910,274.920837 101.437157,252.792404
|
|
90
|
+
C100.018829,246.247971 99.195114,239.574677 97.992073,232.315750
|
|
91
|
+
C99.870842,232.203888 101.583237,232.012833 103.295654,232.012650
|
|
92
|
+
C238.070923,231.998871 372.846191,231.999191 507.621460,232.011337
|
|
93
|
+
C509.112854,232.011459 510.604248,232.180389 512.547852,232.135254
|
|
94
|
+
C513.000000,233.388885 513.000000,234.777786 513.000000,236.583344
|
|
95
|
+
z" />
|
|
96
|
+
<path fill="currentColor" opacity="0.4" stroke="none"
|
|
97
|
+
d="
|
|
98
|
+
M338.531342,1.000000
|
|
99
|
+
C339.654236,1.656953 340.232269,2.781343 340.973877,2.902187
|
|
100
|
+
C357.560516,5.605047 373.375427,10.725865 388.798004,17.353016
|
|
101
|
+
C406.771118,25.076145 422.936523,35.631256 438.190094,47.714165
|
|
102
|
+
C440.569885,49.599304 442.238647,51.359535 439.099609,54.488697
|
|
103
|
+
C390.028076,103.405571 341.054077,152.420273 292.049316,201.404205
|
|
104
|
+
C291.712433,201.740952 291.260498,201.962631 289.999725,202.834534
|
|
105
|
+
C289.999725,200.504303 289.999725,198.801086 289.999725,197.097885
|
|
106
|
+
C289.999725,136.969818 290.044312,76.841675 289.936615,16.713799
|
|
107
|
+
C289.924744,10.078858 292.188080,5.099496 297.942749,1.356076
|
|
108
|
+
C311.354218,1.000000 324.708466,1.000000 338.531342,1.000000
|
|
109
|
+
z" />
|
|
110
|
+
<path fill="currentColor" opacity="0.4" stroke="none"
|
|
111
|
+
d="
|
|
112
|
+
M513.000000,202.531372
|
|
113
|
+
C453.337585,202.988434 393.675140,202.977188 334.012726,202.956787
|
|
114
|
+
C333.692017,202.956680 333.371399,202.827530 332.249420,202.586472
|
|
115
|
+
C375.395111,158.911133 418.229950,115.550430 461.654755,71.592529
|
|
116
|
+
C464.481995,74.642456 467.576630,77.144318 469.612061,80.324173
|
|
117
|
+
C477.607361,92.815025 486.215942,105.046432 492.817932,118.262772
|
|
118
|
+
C501.313904,135.270493 507.439117,153.331573 510.079742,172.369415
|
|
119
|
+
C510.448669,175.029221 511.470123,177.598526 512.594727,180.104858
|
|
120
|
+
C513.000000,187.354248 513.000000,194.708496 513.000000,202.531372
|
|
121
|
+
z" />
|
|
122
|
+
<path fill="currentColor" opacity="1.000000" stroke="none"
|
|
123
|
+
d="
|
|
124
|
+
M171.468658,513.000000
|
|
125
|
+
C170.007065,512.024109 169.185989,510.665802 167.995010,510.130432
|
|
126
|
+
C153.429031,503.582855 144.460052,492.791412 141.949814,476.793518
|
|
127
|
+
C139.043411,458.270966 145.857513,443.781921 160.985931,433.620789
|
|
128
|
+
C183.829834,418.277496 219.291992,428.208099 226.878357,459.339447
|
|
129
|
+
C232.080383,480.686401 221.723602,502.849457 199.578430,511.014282
|
|
130
|
+
C198.863907,511.277740 198.269882,511.868011 197.809845,512.652954
|
|
131
|
+
C189.312439,513.000000 180.624863,513.000000 171.468658,513.000000
|
|
132
|
+
z" />
|
|
133
|
+
<path fill="currentColor" opacity="1.000000" stroke="none"
|
|
134
|
+
d="
|
|
135
|
+
M396.468658,513.000000
|
|
136
|
+
C394.823120,511.998810 393.800720,510.645874 392.445557,510.050751
|
|
137
|
+
C378.654816,503.994904 370.419189,493.365051 367.058563,478.938904
|
|
138
|
+
C363.515228,463.728271 368.289551,450.379547 378.493286,439.409607
|
|
139
|
+
C385.487091,431.890656 394.657806,427.524445 405.499115,426.881348
|
|
140
|
+
C418.945679,426.083679 430.771179,429.461243 440.335541,438.935242
|
|
141
|
+
C457.879181,456.313110 457.447052,485.418732 439.176544,502.058044
|
|
142
|
+
C434.459106,506.354340 428.180511,508.936371 422.809509,512.652954
|
|
143
|
+
C414.312439,513.000000 405.624878,513.000000 396.468658,513.000000
|
|
144
|
+
z" />
|
|
145
|
+
<path fill="currentColor" opacity="1.000000" stroke="none"
|
|
146
|
+
d="
|
|
147
|
+
M1.000000,104.466858
|
|
148
|
+
C1.411301,104.016945 2.101227,104.191925 2.194047,104.028252
|
|
149
|
+
C7.625307,94.451683 16.854034,95.404312 25.504944,96.220261
|
|
150
|
+
C40.816002,97.664398 55.314304,102.042953 68.978897,109.407318
|
|
151
|
+
C82.215530,116.541039 93.184982,125.992981 102.508064,137.757065
|
|
152
|
+
C110.343117,147.643509 117.186279,158.042328 120.876633,170.086319
|
|
153
|
+
C123.546654,178.800308 125.020767,187.882141 126.988922,196.808578
|
|
154
|
+
C127.373276,198.551804 127.577026,200.334839 128.010544,202.999908
|
|
155
|
+
C121.418938,202.999908 115.028961,203.028259 108.639404,202.988937
|
|
156
|
+
C104.983101,202.966431 100.435379,204.109528 97.941162,202.365280
|
|
157
|
+
C95.770599,200.847366 95.742256,196.046936 95.074158,192.636902
|
|
158
|
+
C91.804314,175.947296 83.808090,161.788712 71.573013,150.199142
|
|
159
|
+
C59.363888,138.634171 44.897171,131.226700 28.032793,128.982849
|
|
160
|
+
C25.429497,128.636475 22.777517,127.852287 20.223547,128.088120
|
|
161
|
+
C12.256198,128.823837 6.113314,126.038315 1.301869,119.747772
|
|
162
|
+
C1.000000,114.977905 1.000000,109.955818 1.000000,104.466858
|
|
163
|
+
z" />
|
|
164
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M40 58.6668C38.9067 58.6668 38 57.7602 38 56.6668V7.3335C38 6.24016 38.9067 5.3335 40 5.3335C41.0933 5.3335 42 6.24016 42 7.3335V56.6668C42 57.7602 41.0933 58.6668 40 58.6668Z" fill="currentColor"/>
|
|
3
|
+
<path opacity="0.4" d="M17.3337 53.3332H33.3337V10.6665H17.3337C11.4403 10.6665 6.66699 15.4398 6.66699 21.3332V42.6665C6.66699 48.5598 11.4403 53.3332 17.3337 53.3332Z" fill="currentColor"/>
|
|
4
|
+
<path opacity="0.4" d="M48 53.3332H40V10.6665H48C53.8933 10.6665 58.6667 15.4398 58.6667 21.3332V42.6665C58.6667 48.5598 53.8933 53.3332 48 53.3332Z" fill="currentColor"/>
|
|
5
|
+
<path d="M15.3337 34.6667C14.987 34.6667 14.6403 34.5867 14.3203 34.4534C14.0003 34.3201 13.707 34.1334 13.4403 33.8934C13.2003 33.6267 13.0137 33.3334 12.8537 33.0134C12.7203 32.6934 12.667 32.3467 12.667 32.0001C12.667 31.3067 12.9603 30.6134 13.4403 30.1067C13.5737 30.0001 13.707 29.8934 13.8403 29.7867C14.0003 29.6801 14.1603 29.6001 14.3203 29.5467C14.4803 29.4667 14.6403 29.4134 14.8003 29.3867C15.707 29.2001 16.6137 29.4934 17.227 30.1067C17.707 30.6134 18.0003 31.3067 18.0003 32.0001C18.0003 32.3467 17.9203 32.6934 17.787 33.0134C17.6537 33.3334 17.467 33.6267 17.227 33.8934C16.9603 34.1334 16.667 34.3201 16.347 34.4534C16.027 34.5867 15.6803 34.6667 15.3337 34.6667Z" fill="currentColor"/>
|
|
6
|
+
<path d="M24.6667 34.6667C24.32 34.6667 23.9733 34.5867 23.6533 34.4534C23.3333 34.32 23.04 34.1334 22.7733 33.8934C22.2667 33.3867 22 32.72 22 32C22 31.6534 22.08 31.3067 22.2133 30.9867C22.3467 30.64 22.5333 30.3734 22.7733 30.1067C23.76 29.12 25.5467 29.12 26.56 30.1067C27.04 30.6134 27.3333 31.3067 27.3333 32C27.3333 32.3467 27.2533 32.6934 27.12 33.0134C26.9867 33.3334 26.8 33.6267 26.56 33.8934C26.2933 34.1334 26 34.32 25.68 34.4534C25.36 34.5867 25.0133 34.6667 24.6667 34.6667Z" fill="currentColor"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.65 19.11V4.89C10.65 3.54 10.08 3 8.64 3H5.01C3.57 3 3 3.54 3 4.89V19.11C3 20.46 3.57 21 5.01 21H8.64C10.08 21 10.65 20.46 10.65 19.11Z" fill="currentColor"/>
|
|
3
|
+
<path d="M21 19.11V4.89C21 3.54 20.43 3 18.99 3H15.36C13.93 3 13.35 3.54 13.35 4.89V19.11C13.35 20.46 13.92 21 15.36 21H18.99C20.43 21 21 20.46 21 19.11Z" fill="currentColor"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M11.97 2C6.44997 2 1.96997 6.48 1.96997 12C1.96997 17.52 6.44997 22 11.97 22C17.49 22 21.97 17.52 21.97 12C21.97 6.48 17.5 2 11.97 2ZM10.72 15.03C10.72 15.51 10.52 15.7 10.01 15.7H8.70997C8.19997 15.7 7.99997 15.51 7.99997 15.03V8.97C7.99997 8.49 8.19997 8.3 8.70997 8.3H9.99997C10.51 8.3 10.71 8.49 10.71 8.97V15.03H10.72ZM16 15.03C16 15.51 15.8 15.7 15.29 15.7H14C13.49 15.7 13.29 15.51 13.29 15.03V8.97C13.29 8.49 13.49 8.3 14 8.3H15.29C15.8 8.3 16 8.49 16 8.97V15.03Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.4" d="M11.97 22C17.4928 22 21.97 17.5228 21.97 12C21.97 6.47715 17.4928 2 11.97 2C6.44712 2 1.96997 6.47715 1.96997 12C1.96997 17.5228 6.44712 22 11.97 22Z" fill="currentColor"/>
|
|
3
|
+
<path d="M10.72 15.03V8.97005C10.72 8.49005 10.52 8.30005 10.01 8.30005H8.71C8.2 8.30005 8 8.49005 8 8.97005V15.03C8 15.51 8.2 15.7 8.71 15.7H10C10.52 15.7 10.72 15.51 10.72 15.03Z" fill="currentColor"/>
|
|
4
|
+
<path d="M16 15.03V8.97005C16 8.49005 15.8 8.30005 15.29 8.30005H14C13.49 8.30005 13.29 8.49005 13.29 8.97005V15.03C13.29 15.51 13.49 15.7 14 15.7H15.29C15.8 15.7 16 15.51 16 15.03Z" fill="currentColor"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M11.97 22C17.4928 22 21.97 17.5228 21.97 12C21.97 6.47715 17.4928 2 11.97 2C6.44712 2 1.96997 6.47715 1.96997 12C1.96997 17.5228 6.44712 22 11.97 22Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M10.72 14.53V9.47005C10.72 8.99005 10.52 8.80005 10.01 8.80005H8.71C8.2 8.80005 8 8.99005 8 9.47005V14.53C8 15.01 8.2 15.2 8.71 15.2H10C10.52 15.2 10.72 15.01 10.72 14.53Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M16 14.53V9.47005C16 8.99005 15.8 8.80005 15.29 8.80005H14C13.49 8.80005 13.29 8.99005 13.29 9.47005V14.53C13.29 15.01 13.49 15.2 14 15.2H15.29C15.8 15.2 16 15.01 16 14.53Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="#FFA500" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.65 19.11V4.89C10.65 3.54 10.08 3 8.64 3H5.01C3.57 3 3 3.54 3 4.89V19.11C3 20.46 3.57 21 5.01 21H8.64C10.08 21 10.65 20.46 10.65 19.11Z" stroke="#FFA500" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M21 19.11V4.89C21 3.54 20.43 3 18.99 3H15.36C13.93 3 13.35 3.54 13.35 4.89V19.11C13.35 20.46 13.92 21 15.36 21H18.99C20.43 21 21 20.46 21 19.11Z" stroke="#FFA500" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</svg>
|