@sdata/web-vue 1.19.0 → 2.1.0
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/README.md +3 -7
- package/dist/sd.css +4083 -2512
- package/dist/sd.min.css +1 -1
- package/es/_components/feedback-icon.js +1 -1
- package/es/_components/icon-hover.js +1 -1
- package/es/_components/icon-hover.vue.d.ts +1 -1
- package/es/_components/input-label/input-label.d.ts +1 -1
- package/es/_components/input-label/style/index.css +27 -27
- package/es/_components/picker/input-range.js +1 -1
- package/es/_components/picker/input-range.vue.d.ts +2 -2
- package/es/_components/picker/input.js +1 -1
- package/es/_components/picker/input.vue.d.ts +2 -2
- package/es/_components/resize-trigger.js +1 -1
- package/es/_components/select-view/select-view.d.ts +3 -3
- package/es/_components/select-view/style/index.css +199 -199
- package/es/_components/transition/expand-transition.js +1 -1
- package/es/_components/virtual-list/virtual-list.js +1 -1
- package/es/_components/virtual-list/virtual-list.vue.d.ts +8 -5
- package/es/_components/virtual-list/virtual-list.vue_vue_type_script_lang.js +9 -16
- package/es/_hooks/use-form-item.d.ts +1 -1
- package/es/_hooks/use-scrollbar.d.ts +2 -3
- package/es/_hooks/use-scrollbar.js +4 -8
- package/es/_hooks/use-size.d.ts +1 -1
- package/es/_utils/color.d.ts +9 -0
- package/es/_utils/color.js +38 -2
- package/es/_utils/date.d.ts +1 -2
- package/es/_utils/date.js +74 -25
- package/es/_utils/global-config.d.ts +4 -0
- package/es/_utils/global-config.js +10 -2
- package/es/_utils/omit.js +1 -1
- package/es/_utils/responsive-observe.js +1 -1
- package/es/_utils/virtual-dropdown.js +1 -1
- package/es/_virtual/{_@oxc-project_runtime@0.130.0/helpers → _@oxc-project_runtime@0.133.0/helpers/esm}/asyncToGenerator.js +1 -1
- package/es/_virtual/{_@oxc-project_runtime@0.130.0/helpers → _@oxc-project_runtime@0.133.0/helpers/esm}/defineProperty.js +1 -1
- package/es/_virtual/{_@oxc-project_runtime@0.130.0/helpers → _@oxc-project_runtime@0.133.0/helpers/esm}/extends.js +1 -1
- package/es/_virtual/{_@oxc-project_runtime@0.130.0/helpers → _@oxc-project_runtime@0.133.0/helpers/esm}/objectDestructuringEmpty.js +1 -1
- package/es/_virtual/{_@oxc-project_runtime@0.130.0/helpers → _@oxc-project_runtime@0.133.0/helpers/esm}/objectSpread2.js +1 -1
- package/es/_virtual/{_@oxc-project_runtime@0.130.0/helpers → _@oxc-project_runtime@0.133.0/helpers/esm}/objectWithoutProperties.js +1 -1
- package/es/_virtual/{_@oxc-project_runtime@0.130.0/helpers → _@oxc-project_runtime@0.133.0/helpers/esm}/objectWithoutPropertiesLoose.js +1 -1
- package/es/_virtual/{_@oxc-project_runtime@0.130.0/helpers → _@oxc-project_runtime@0.133.0/helpers/esm}/toPrimitive.js +1 -1
- package/es/_virtual/{_@oxc-project_runtime@0.130.0/helpers → _@oxc-project_runtime@0.133.0/helpers/esm}/toPropertyKey.js +1 -1
- package/es/_virtual/{_@oxc-project_runtime@0.130.0/helpers → _@oxc-project_runtime@0.133.0/helpers/esm}/typeof.js +1 -1
- package/es/affix/affix.js +1 -1
- package/es/affix/affix.vue_vue_type_script_lang.js +1 -1
- package/es/alert/alert.js +1 -1
- package/es/alert/alert.vue.d.ts +1 -1
- package/es/alert/index.d.ts +2 -2
- package/es/alert/style/index.css +28 -28
- package/es/anchor/anchor-link.js +1 -1
- package/es/anchor/anchor.js +1 -1
- package/es/anchor/style/index.css +9 -9
- package/es/auto-complete/auto-complete.d.ts +3 -3
- package/es/auto-complete/auto-complete.js +23 -9
- package/es/auto-complete/index.d.ts +9 -9
- package/es/auto-complete/style/index.css +3 -3
- package/es/avatar/avatar.js +1 -1
- package/es/avatar/avatar.vue_vue_type_script_lang.js +1 -1
- package/es/avatar/style/index.css +15 -15
- package/es/back-top/back-top.js +1 -1
- package/es/back-top/style/index.css +4 -4
- package/es/badge/badge.d.ts +1 -1
- package/es/badge/badge.js +1 -1
- package/es/badge/index.d.ts +3 -3
- package/es/badge/style/index.css +25 -25
- package/es/breadcrumb/style/index.css +12 -12
- package/es/button/button-group.js +1 -1
- package/es/button/button.js +1 -1
- package/es/button/button.vue.d.ts +2 -2
- package/es/button/index.d.ts +6 -6
- package/es/button/style/index.css +37 -37
- package/es/calendar/components/body.js +5 -0
- package/es/calendar/components/body.vue.d.ts +100 -0
- package/es/calendar/components/body.vue_vue_type_script_setup_true_lang.js +158 -0
- package/es/calendar/components/cell.js +5 -0
- package/es/calendar/components/cell.vue.d.ts +220 -0
- package/es/calendar/components/cell.vue_vue_type_script_setup_true_lang.js +813 -0
- package/es/calendar/components/event.js +5 -0
- package/es/calendar/components/event.vue.d.ts +73 -0
- package/es/calendar/components/event.vue_vue_type_script_setup_true_lang.js +290 -0
- package/es/calendar/components/header.js +5 -0
- package/es/calendar/components/header.vue.d.ts +34 -0
- package/es/calendar/components/header.vue_vue_type_script_setup_true_lang.js +84 -0
- package/es/calendar/components/headings-bar.js +5 -0
- package/es/calendar/components/headings-bar.vue.d.ts +40 -0
- package/es/calendar/components/headings-bar.vue_vue_type_script_setup_true_lang.js +201 -0
- package/es/calendar/components/index.js +5 -0
- package/es/calendar/components/index.vue.d.ts +616 -0
- package/es/calendar/components/index.vue_vue_type_script_setup_true_lang.js +314 -0
- package/es/calendar/components/time-column.js +5 -0
- package/es/calendar/components/time-column.vue.d.ts +27 -0
- package/es/calendar/components/time-column.vue_vue_type_script_setup_true_lang.js +66 -0
- package/es/calendar/context.d.ts +16 -0
- package/es/calendar/context.js +5 -0
- package/es/calendar/core/config.d.ts +126 -0
- package/es/calendar/core/config.js +522 -0
- package/es/calendar/core/events.d.ts +1 -0
- package/es/calendar/core/events.js +921 -0
- package/es/calendar/core/i18n.d.ts +1 -0
- package/es/calendar/core/i18n.js +72 -0
- package/es/calendar/core/index.d.ts +112 -0
- package/es/calendar/core/index.js +66 -0
- package/es/calendar/core/props-definitions.d.ts +263 -0
- package/es/calendar/core/props-definitions.js +70 -0
- package/es/calendar/core/view.d.ts +60 -0
- package/es/calendar/core/view.js +761 -0
- package/es/calendar/default-theme.scss +1012 -0
- package/es/calendar/hooks/use-calendar-theme.d.ts +4 -0
- package/es/calendar/hooks/use-calendar-theme.js +32 -0
- package/es/calendar/index.d.ts +836 -98
- package/es/calendar/index.js +3 -3
- package/es/calendar/index.scss +331 -0
- package/es/calendar/modules/drag-and-drop.d.ts +8 -0
- package/es/calendar/modules/drag-and-drop.js +442 -0
- package/es/calendar/style/body.scss +51 -0
- package/es/calendar/style/cell.scss +153 -0
- package/es/calendar/style/css.js +0 -1
- package/es/calendar/style/event.scss +69 -0
- package/es/calendar/style/header.scss +104 -0
- package/es/calendar/style/headings-bar.scss +94 -0
- package/es/calendar/style/index.css +1514 -264
- package/es/calendar/style/index.d.ts +1 -3
- package/es/calendar/style/index.js +0 -1
- package/es/calendar/style/index.scss +9 -496
- package/es/calendar/style/time-column.scss +109 -0
- package/es/calendar/style/token.scss +64 -60
- package/es/calendar/utils/conversions.d.ts +3 -0
- package/es/calendar/utils/conversions.js +31 -0
- package/es/calendar/utils/date.d.ts +26 -0
- package/es/calendar/utils/date.js +253 -0
- package/es/calendar/utils/special-hours-allow-events.d.ts +28 -0
- package/es/calendar/utils/special-hours-allow-events.js +230 -0
- package/es/card/card-grid.js +1 -1
- package/es/card/style/index.css +16 -16
- package/es/carousel/carousel-arrow.js +1 -1
- package/es/carousel/carousel-indicator.js +1 -1
- package/es/carousel/carousel-indicator.vue.d.ts +1 -1
- package/es/carousel/carousel-item.js +1 -1
- package/es/carousel/carousel.js +1 -1
- package/es/carousel/style/index.css +11 -11
- package/es/cascader/cascader-option.d.ts +1 -1
- package/es/cascader/cascader-option.js +1 -1
- package/es/cascader/cascader-panel.vue.d.ts +1 -1
- package/es/cascader/cascader-panel.vue_vue_type_script_setup_true_lang.js +2 -2
- package/es/cascader/cascader.vue.d.ts +5 -5
- package/es/cascader/cascader.vue_vue_type_script_setup_true_lang.js +5 -5
- package/es/cascader/style/index.css +36 -36
- package/es/checkbox/checkbox.d.ts +1 -1
- package/es/checkbox/index.d.ts +2 -2
- package/es/checkbox/style/index.css +18 -18
- package/es/collapse/collapse-item.d.ts +1 -1
- package/es/collapse/collapse.js +1 -1
- package/es/collapse/index.d.ts +1 -1
- package/es/collapse/style/index.css +15 -15
- package/es/color-picker/color-picker.d.ts +1 -1
- package/es/color-picker/color-picker.js +1 -1
- package/es/color-picker/index.d.ts +3 -3
- package/es/color-picker/palette.js +1 -1
- package/es/color-picker/panel.d.ts +1 -1
- package/es/color-picker/panel.js +2 -2
- package/es/color-picker/style/index.css +13 -13
- package/es/color-picker/utils.js +1 -1
- package/es/comment/comment.js +2 -2
- package/es/comment/style/index.css +5 -5
- package/es/components.d.ts +2 -2
- package/es/config-provider/config-provider.js +1 -1
- package/es/config-provider/config-provider.vue.d.ts +1 -1
- package/es/config-provider/context.d.ts +3 -0
- package/es/config-provider/index.d.ts +3 -3
- package/es/config-provider/theme-provider.vue_vue_type_script_setup_true_lang.js +2 -2
- package/es/config-provider/theme.js +1 -1
- package/es/copy/copy.vue_vue_type_script_setup_true_lang.js +3 -3
- package/es/cropper/cropper.vue_vue_type_script_setup_true_lang.js +3 -3
- package/es/cropper/style/index.css +3 -3
- package/es/date-picker/hooks/use-range-time-picker-value.js +1 -1
- package/es/date-picker/index.d.ts +48 -48
- package/es/date-picker/panels/body.js +1 -1
- package/es/date-picker/panels/date/index.js +2 -2
- package/es/date-picker/panels/date/index.vue.d.ts +6 -6
- package/es/date-picker/panels/date/index.vue_vue_type_script_lang.js +1 -1
- package/es/date-picker/panels/footer.js +1 -1
- package/es/date-picker/panels/footer.vue.d.ts +9 -9
- package/es/date-picker/panels/header.js +1 -1
- package/es/date-picker/panels/month/index.js +2 -2
- package/es/date-picker/panels/quarter/index.js +2 -2
- package/es/date-picker/panels/shortcuts.js +1 -1
- package/es/date-picker/panels/shortcuts.vue.d.ts +6 -6
- package/es/date-picker/panels/week/index.js +1 -1
- package/es/date-picker/panels/week/index.vue.d.ts +6 -6
- package/es/date-picker/panels/week-list.js +1 -1
- package/es/date-picker/panels/year/index.js +2 -2
- package/es/date-picker/picker-panel.js +1 -1
- package/es/date-picker/picker-panel.vue.d.ts +28 -28
- package/es/date-picker/picker.js +2 -2
- package/es/date-picker/picker.vue.d.ts +46 -46
- package/es/date-picker/picker.vue_vue_type_script_lang.js +1 -1
- package/es/date-picker/range-picker-panel.js +1 -1
- package/es/date-picker/range-picker-panel.vue.d.ts +29 -29
- package/es/date-picker/range-picker-panel.vue_vue_type_script_lang.js +1 -1
- package/es/date-picker/range-picker.js +2 -2
- package/es/date-picker/range-picker.vue.d.ts +48 -48
- package/es/date-picker/range-picker.vue_vue_type_script_lang.js +1 -1
- package/es/date-picker/style/index.css +72 -72
- package/es/descriptions/descriptions-item.js +1 -1
- package/es/descriptions/descriptions.d.ts +2 -2
- package/es/descriptions/descriptions.js +1 -1
- package/es/descriptions/index.d.ts +6 -6
- package/es/descriptions/style/index.css +10 -10
- package/es/divider/divider.d.ts +1 -1
- package/es/divider/index.d.ts +3 -3
- package/es/divider/style/index.css +4 -4
- package/es/drawer/drawer.js +9 -2
- package/es/drawer/drawer.vue.d.ts +2905 -10
- package/es/drawer/drawer.vue_vue_type_script_lang.js +26 -7
- package/es/drawer/index.d.ts +6550 -764
- package/es/drawer/index.js +2 -2
- package/es/drawer/style/index.css +12 -7
- package/es/drawer/style/index.scss +6 -0
- package/es/dropdown/dropdown-button.js +1 -1
- package/es/dropdown/dropdown-button.vue.d.ts +24 -21
- package/es/dropdown/dropdown-group.js +1 -1
- package/es/dropdown/dropdown-option.js +1 -1
- package/es/dropdown/dropdown-option.vue.d.ts +1 -1
- package/es/dropdown/dropdown-panel.js +1 -1
- package/es/dropdown/dropdown-panel.vue.d.ts +6 -3
- package/es/dropdown/dropdown-submenu.js +1 -1
- package/es/dropdown/dropdown-submenu.vue.d.ts +18 -15
- package/es/dropdown/dropdown.js +1 -1
- package/es/dropdown/dropdown.vue.d.ts +16 -13
- package/es/dropdown/index.d.ts +78 -66
- package/es/dropdown/style/index.css +1 -1
- package/es/ellipsis/ellipsis.js +1 -1
- package/es/ellipsis/ellipsis.vue.d.ts +24 -24
- package/es/ellipsis/ellipsis.vue_vue_type_script_lang.js +2 -2
- package/es/ellipsis/index.d.ts +96 -96
- package/es/ellipsis/performant-ellipsis.js +1 -1
- package/es/ellipsis/performant-ellipsis.vue.d.ts +24 -24
- package/es/ellipsis/performant-ellipsis.vue_vue_type_script_lang.js +1 -1
- package/es/empty/style/index.css +2 -2
- package/es/form/form-item-label.js +1 -1
- package/es/form/form-item-label.vue.d.ts +24 -24
- package/es/form/form-item-message.js +1 -1
- package/es/form/form-item.js +1 -1
- package/es/form/form-item.vue.d.ts +29 -29
- package/es/form/form-item.vue_vue_type_script_lang.js +3 -3
- package/es/form/form.js +1 -1
- package/es/form/form.vue.d.ts +1 -1
- package/es/form/index.d.ts +35 -35
- package/es/form/style/index.css +6 -6
- package/es/grid/grid-col.js +1 -1
- package/es/grid/grid-col.vue_vue_type_script_lang.js +1 -1
- package/es/grid/grid-item.js +1 -1
- package/es/grid/grid-item.vue_vue_type_script_lang.js +1 -1
- package/es/grid/grid-row.js +1 -1
- package/es/grid/grid-row.vue.d.ts +4 -4
- package/es/grid/grid.js +1 -1
- package/es/grid/index.d.ts +4 -4
- package/es/icon/icon-calendar/icon-calendar.js +1 -1
- package/es/icon/icon-caret-down/icon-caret-down.js +1 -1
- package/es/icon/icon-caret-left/icon-caret-left.js +1 -1
- package/es/icon/icon-caret-right/icon-caret-right.js +1 -1
- package/es/icon/icon-caret-up/icon-caret-up.js +1 -1
- package/es/icon/icon-check/icon-check.js +1 -1
- package/es/icon/icon-check-circle-fill/icon-check-circle-fill.js +1 -1
- package/es/icon/icon-clock-circle/icon-clock-circle.js +1 -1
- package/es/icon/icon-close/icon-close.js +1 -1
- package/es/icon/icon-close-circle-fill/icon-close-circle-fill.js +1 -1
- package/es/icon/icon-copy/icon-copy.js +1 -1
- package/es/icon/icon-delete/icon-delete.js +1 -1
- package/es/icon/icon-double-left/icon-double-left.js +1 -1
- package/es/icon/icon-double-right/icon-double-right.js +1 -1
- package/es/icon/icon-down/icon-down.js +1 -1
- package/es/icon/icon-drag-dot/icon-drag-dot.js +1 -1
- package/es/icon/icon-drag-dot-vertical/icon-drag-dot-vertical.js +1 -1
- package/es/icon/icon-edit/icon-edit.js +1 -1
- package/es/icon/icon-empty/icon-empty.js +1 -1
- package/es/icon/icon-exclamation/icon-exclamation.js +1 -1
- package/es/icon/icon-exclamation-circle-fill/icon-exclamation-circle-fill.js +1 -1
- package/es/icon/icon-eye/icon-eye.js +1 -1
- package/es/icon/icon-eye-invisible/icon-eye-invisible.js +1 -1
- package/es/icon/icon-face-frown-fill/icon-face-frown-fill.js +1 -1
- package/es/icon/icon-face-meh-fill/icon-face-meh-fill.js +1 -1
- package/es/icon/icon-face-smile-fill/icon-face-smile-fill.js +1 -1
- package/es/icon/icon-file/icon-file.js +1 -1
- package/es/icon/icon-file-audio/icon-file-audio.js +1 -1
- package/es/icon/icon-file-image/icon-file-image.js +1 -1
- package/es/icon/icon-file-pdf/icon-file-pdf.js +1 -1
- package/es/icon/icon-file-video/icon-file-video.js +1 -1
- package/es/icon/icon-filter/icon-filter.js +1 -1
- package/es/icon/icon-fullscreen/icon-fullscreen.js +1 -1
- package/es/icon/icon-image-close/icon-image-close.js +1 -1
- package/es/icon/icon-info/icon-info.js +1 -1
- package/es/icon/icon-info-circle-fill/icon-info-circle-fill.js +1 -1
- package/es/icon/icon-left/icon-left.js +1 -1
- package/es/icon/icon-link/icon-link.js +1 -1
- package/es/icon/icon-loading/icon-loading.js +1 -1
- package/es/icon/icon-menu-fold/icon-menu-fold.js +1 -1
- package/es/icon/icon-menu-unfold/icon-menu-unfold.js +1 -1
- package/es/icon/icon-minus/icon-minus.js +1 -1
- package/es/icon/icon-more/icon-more.js +1 -1
- package/es/icon/icon-oblique-line/icon-oblique-line.js +1 -1
- package/es/icon/icon-original-size/icon-original-size.js +1 -1
- package/es/icon/icon-pause/icon-pause.js +1 -1
- package/es/icon/icon-play-arrow-fill/icon-play-arrow-fill.js +1 -1
- package/es/icon/icon-plus/icon-plus.js +1 -1
- package/es/icon/icon-question-circle/icon-question-circle.js +1 -1
- package/es/icon/icon-right/icon-right.js +1 -1
- package/es/icon/icon-rotate-left/icon-rotate-left.js +1 -1
- package/es/icon/icon-rotate-right/icon-rotate-right.js +1 -1
- package/es/icon/icon-search/icon-search.js +1 -1
- package/es/icon/icon-star-fill/icon-star-fill.js +1 -1
- package/es/icon/icon-to-top/icon-to-top.js +1 -1
- package/es/icon/icon-up/icon-up.js +1 -1
- package/es/icon/icon-upload/icon-upload.js +1 -1
- package/es/icon/icon-zoom-in/icon-zoom-in.js +1 -1
- package/es/icon/icon-zoom-out/icon-zoom-out.js +1 -1
- package/es/icon-component/icon.js +1 -1
- package/es/icon.js +292 -292
- package/es/image/image-footer.js +1 -1
- package/es/image/image.js +2 -2
- package/es/image/image.vue.d.ts +24 -24
- package/es/image/preview-action.d.ts +24 -24
- package/es/image/preview-arrow.js +1 -1
- package/es/image/preview-group.js +2 -2
- package/es/image/preview-group.vue.d.ts +25 -25
- package/es/image/preview-toolbar.js +1 -1
- package/es/image/preview-toolbar.vue.d.ts +24 -24
- package/es/image/preview.js +1 -1
- package/es/image/preview.vue.d.ts +24 -24
- package/es/image/preview.vue_vue_type_script_lang.js +1 -1
- package/es/image/style/index.css +32 -32
- package/es/index.css +4083 -2512
- package/es/index.d.ts +8 -2
- package/es/index.js +11 -10
- package/es/index.scss +3 -1
- package/es/input/index.d.ts +9 -9
- package/es/input/input-group.js +1 -1
- package/es/input/input-password.js +1 -1
- package/es/input/input-password.vue.d.ts +3 -3
- package/es/input/input.d.ts +2 -2
- package/es/input/input.js +1 -1
- package/es/input/style/index.css +50 -50
- package/es/input-number/index.d.ts +6 -6
- package/es/input-number/input-number.d.ts +2 -2
- package/es/input-number/input-number.js +1 -1
- package/es/input-number/style/index.css +16 -16
- package/es/input-tag/index.d.ts +6 -6
- package/es/input-tag/input-tag.d.ts +2 -2
- package/es/input-tag/input-tag.js +1 -1
- package/es/input-tag/style/index.css +172 -172
- package/es/input-tag/utils.js +1 -1
- package/es/json-form/json-form-component.vue_vue_type_script_setup_true_lang.js +3 -3
- package/es/json-form/json-form-item.vue_vue_type_script_setup_true_lang.js +3 -3
- package/es/json-form/json-form.vue_vue_type_script_setup_true_lang.js +3 -3
- package/es/json-form/utils.js +3 -3
- package/es/layout/content.js +1 -1
- package/es/layout/footer.js +1 -1
- package/es/layout/header.vue.d.ts +1 -1
- package/es/layout/header.vue_vue_type_script_setup_true_lang.js +2 -2
- package/es/layout/index.d.ts +21 -21
- package/es/layout/layout.js +1 -1
- package/es/layout/sider.js +1 -1
- package/es/layout/sider.vue.d.ts +16 -16
- package/es/layout/sider.vue_vue_type_script_lang.js +1 -1
- package/es/layout/style/index.css +12 -12
- package/es/link/index.d.ts +3 -3
- package/es/link/link.vue.d.ts +1 -1
- package/es/link/link.vue_vue_type_script_setup_true_lang.js +2 -2
- package/es/link/style/index.css +23 -23
- package/es/list/index.d.ts +9 -9
- package/es/list/list-item-meta.js +1 -1
- package/es/list/list.d.ts +3 -3
- package/es/list/list.js +4 -4
- package/es/list/style/index.css +9 -9
- package/es/locale/interface.d.ts +6 -0
- package/es/locale/lang/ar-eg.js +7 -1
- package/es/locale/lang/de-de.js +7 -1
- package/es/locale/lang/en-us.js +7 -1
- package/es/locale/lang/es-es.js +7 -1
- package/es/locale/lang/fr-fr.js +7 -1
- package/es/locale/lang/id-id.js +7 -1
- package/es/locale/lang/it-it.js +7 -1
- package/es/locale/lang/ja-jp.js +7 -1
- package/es/locale/lang/km-kh.js +7 -1
- package/es/locale/lang/ko-kr.js +7 -1
- package/es/locale/lang/ms-my.js +7 -1
- package/es/locale/lang/nl-nl.js +7 -1
- package/es/locale/lang/pt-pt.js +7 -1
- package/es/locale/lang/ru-ru.js +7 -1
- package/es/locale/lang/th-th.js +7 -1
- package/es/locale/lang/vi-vn.js +7 -1
- package/es/locale/lang/zh-cn.js +7 -1
- package/es/locale/lang/zh-tw.js +7 -1
- package/es/mention/index.d.ts +9 -9
- package/es/mention/mention.d.ts +3 -3
- package/es/mention/mention.js +24 -10
- package/es/menu/base-menu.js +1 -1
- package/es/menu/indent.js +1 -1
- package/es/menu/item-group.js +1 -1
- package/es/menu/item-group.vue.d.ts +48 -48
- package/es/menu/item.js +1 -1
- package/es/menu/menu.js +1 -1
- package/es/menu/style/index.css +62 -62
- package/es/menu/sub-menu-inline.js +1 -1
- package/es/menu/sub-menu-inline.vue.d.ts +48 -48
- package/es/menu/sub-menu-pop.js +1 -1
- package/es/menu/sub-menu-pop.vue.d.ts +57 -57
- package/es/menu/sub-menu.js +1 -1
- package/es/message/index.js +1 -1
- package/es/message/message-list.d.ts +1 -1
- package/es/message/message.js +1 -1
- package/es/message/message.vue.d.ts +1 -1
- package/es/message/style/index.css +26 -26
- package/es/modal/index.d.ts +6368 -570
- package/es/modal/index.js +2 -2
- package/es/modal/modal.js +15 -4
- package/es/modal/modal.vue.d.ts +2907 -8
- package/es/modal/modal.vue_vue_type_script_lang.js +28 -5
- package/es/modal/style/index.css +28 -12
- package/es/modal/style/index.scss +23 -0
- package/es/notification/index.js +1 -1
- package/es/notification/notification.js +1 -1
- package/es/notification/notification.vue.d.ts +1 -1
- package/es/notification/style/index.css +26 -26
- package/es/page-header/index.d.ts +2 -2
- package/es/page-header/page-header.js +1 -1
- package/es/page-header/page-header.vue.d.ts +1 -1
- package/es/page-header/style/index.css +6 -6
- package/es/pagination/page-item-ellipsis.js +1 -1
- package/es/pagination/page-item-step.js +1 -1
- package/es/pagination/page-item.js +1 -1
- package/es/pagination/page-jumper.js +1 -1
- package/es/pagination/page-jumper.vue.d.ts +6 -6
- package/es/pagination/page-options.js +1 -1
- package/es/pagination/page-options.vue.d.ts +647 -469
- package/es/pagination/style/index.css +21 -21
- package/es/popconfirm/index.d.ts +33 -33
- package/es/popconfirm/popconfirm.js +1 -1
- package/es/popconfirm/popconfirm.vue.d.ts +16 -16
- package/es/popconfirm/popconfirm.vue_vue_type_script_lang.js +1 -1
- package/es/popconfirm/style/index.css +11 -11
- package/es/popover/index.d.ts +899 -21
- package/es/popover/popover.js +7 -3
- package/es/popover/popover.vue.d.ts +451 -10
- package/es/popover/popover.vue_vue_type_script_lang.js +15 -3
- package/es/popover/style/index.css +7 -7
- package/es/popover/style/index.d.ts +1 -0
- package/es/progress/circle.js +1 -1
- package/es/progress/circle.vue.d.ts +1 -1
- package/es/progress/index.d.ts +7 -7
- package/es/progress/line.js +1 -1
- package/es/progress/line.vue.d.ts +1 -1
- package/es/progress/line.vue_vue_type_script_lang.js +1 -1
- package/es/progress/progress.js +1 -1
- package/es/progress/progress.vue.d.ts +3 -3
- package/es/progress/steps.js +1 -1
- package/es/progress/style/index.css +32 -32
- package/es/qr-code/index.d.ts +294 -0
- package/es/qr-code/index.js +10 -0
- package/es/qr-code/qr-code-status.js +5 -0
- package/es/qr-code/qr-code-status.vue.d.ts +8 -0
- package/es/qr-code/qr-code-status.vue_vue_type_script_setup_true_lang.js +30 -0
- package/es/qr-code/qr-code.js +5 -0
- package/es/qr-code/qr-code.vue.d.ts +167 -0
- package/es/qr-code/qr-code.vue_vue_type_script_setup_true_lang.js +313 -0
- package/es/qr-code/style/css.js +2 -0
- package/es/qr-code/style/index.css +106 -0
- package/es/qr-code/style/index.d.ts +2 -0
- package/es/qr-code/style/index.js +2 -0
- package/es/qr-code/style/index.scss +111 -0
- package/es/qr-code/style/token.scss +36 -0
- package/es/qr-code/types.d.ts +19 -0
- package/es/radio/index.d.ts +5 -5
- package/es/radio/radio.d.ts +2 -2
- package/es/radio/style/index.css +33 -33
- package/es/rate/index.d.ts +3 -3
- package/es/rate/rate.d.ts +1 -1
- package/es/rate/style/index.css +3 -3
- package/es/resize-box/index.d.ts +6 -6
- package/es/resize-box/resize-box.js +1 -1
- package/es/resize-box/resize-box.vue.d.ts +2 -2
- package/es/resize-box/resize-box.vue_vue_type_script_lang.js +1 -1
- package/es/resize-box/style/index.css +2 -2
- package/es/result/result.js +1 -1
- package/es/result/style/index.css +2 -2
- package/es/scrollbar/index.d.ts +6 -3
- package/es/scrollbar/scrollbar.js +2 -1
- package/es/scrollbar/scrollbar.vue.d.ts +2 -1
- package/es/scrollbar/scrollbar.vue_vue_type_script_lang.js +52 -2
- package/es/scrollbar/style/index.css +13 -13
- package/es/sd-vue.js +13 -12
- package/es/secret/secret.vue_vue_type_script_setup_true_lang.js +3 -3
- package/es/secret/style/index.css +4 -4
- package/es/select/context.d.ts +1 -4
- package/es/select/hooks/use-options.d.ts +1 -4
- package/es/select/hooks/use-options.js +2 -23
- package/es/select/hooks/use-select.d.ts +1 -3
- package/es/select/hooks/use-select.js +2 -7
- package/es/select/index.d.ts +647 -474
- package/es/select/index.js +5 -13
- package/es/select/interface.d.ts +1 -1
- package/es/select/select-dropdown.js +3 -2
- package/es/select/select-dropdown.vue.d.ts +56 -54
- package/es/select/select-dropdown.vue_vue_type_script_lang.js +2 -3
- package/es/select/select.d.ts +260 -18
- package/es/select/select.js +44 -23
- package/es/select/style/index.css +14 -14
- package/es/select/utils.d.ts +1 -1
- package/es/select/utils.js +1 -1
- package/es/skeleton/line.js +1 -1
- package/es/skeleton/shape.js +1 -1
- package/es/skeleton/skeleton.js +1 -1
- package/es/skeleton/style/index.css +4 -4
- package/es/slider/index.d.ts +67 -67
- package/es/slider/slider-button.js +1 -1
- package/es/slider/slider-button.vue.d.ts +25 -25
- package/es/slider/slider-dots.js +1 -1
- package/es/slider/slider-input.js +1 -1
- package/es/slider/slider-input.vue.d.ts +7 -7
- package/es/slider/slider-marks.js +1 -1
- package/es/slider/slider-ticks.js +1 -1
- package/es/slider/slider.js +1 -1
- package/es/slider/slider.vue.d.ts +33 -33
- package/es/slider/style/index.css +18 -18
- package/es/space/index.d.ts +9 -9
- package/es/space/space.d.ts +2 -2
- package/es/spin/index.d.ts +1 -0
- package/es/spin/style/index.css +9 -9
- package/es/split/split.js +1 -1
- package/es/split/split.vue_vue_type_script_lang.js +1 -1
- package/es/split/style/index.css +2 -2
- package/es/statistic/countdown.js +1 -1
- package/es/statistic/countdown.vue.d.ts +1 -1
- package/es/statistic/countdown.vue_vue_type_script_lang.js +5 -5
- package/es/statistic/index.d.ts +1 -1
- package/es/statistic/statistic.js +1 -1
- package/es/statistic/statistic.vue_vue_type_script_lang.js +2 -2
- package/es/statistic/style/index.css +4 -4
- package/es/steps/index.d.ts +4 -4
- package/es/steps/step.js +1 -1
- package/es/steps/step.vue.d.ts +1 -1
- package/es/steps/steps.js +1 -1
- package/es/steps/steps.vue.d.ts +1 -1
- package/es/steps/style/index.css +79 -79
- package/es/style/color/colors.scss +1 -1
- package/es/style/theme/global.scss +8 -8
- package/es/style/theme/index.scss +4 -12
- package/es/style/theme/z-index.js +1 -2
- package/es/switch/style/index.css +30 -30
- package/es/switch/switch.js +1 -1
- package/es/switch/switch.vue_vue_type_script_lang.js +1 -1
- package/es/table/index.d.ts +14 -14
- package/es/table/style/index.css +65 -65
- package/es/table/table-operation-td.d.ts +7 -7
- package/es/table/table-operation-td.js +1 -1
- package/es/table/table-operation-th.js +1 -1
- package/es/table/table-td.d.ts +1 -1
- package/es/table/table-td.js +1 -1
- package/es/table/table-th.d.ts +1 -1
- package/es/table/table-th.js +2 -2
- package/es/table/table.d.ts +5 -5
- package/es/table/table.js +12 -14
- package/es/table/utils.js +1 -1
- package/es/tabs/index.d.ts +9 -9
- package/es/tabs/style/index.css +56 -56
- package/es/tabs/tab-pane.js +1 -1
- package/es/tabs/tab-pane.vue_vue_type_script_lang.js +1 -1
- package/es/tabs/tabs-nav-ink.js +1 -1
- package/es/tabs/tabs-nav.d.ts +1 -1
- package/es/tabs/tabs-tab.js +1 -1
- package/es/tabs/tabs-tab.vue.d.ts +1 -1
- package/es/tabs/tabs.d.ts +3 -3
- package/es/tag/index.d.ts +66 -29688
- package/es/tag/interface.d.ts +2 -0
- package/es/tag/style/index.css +134 -134
- package/es/tag/style/index.scss +33 -13
- package/es/tag/tag.js +2 -64
- package/es/tag/tag.vue.d.ts +53 -11936
- package/es/tag/tag.vue_vue_type_script_setup_true_lang.js +368 -0
- package/es/tag-group/tag-group.vue_vue_type_script_setup_true_lang.js +4 -4
- package/es/textarea/index.d.ts +8 -8
- package/es/textarea/style/index.css +28 -28
- package/es/textarea/textarea.js +1 -1
- package/es/textarea/textarea.vue.d.ts +3 -3
- package/es/textarea/textarea.vue_vue_type_script_lang.js +1 -1
- package/es/time-picker/hooks/use-time-list.js +1 -1
- package/es/time-picker/index.d.ts +56 -56
- package/es/time-picker/panel.js +1 -1
- package/es/time-picker/panel.vue.d.ts +6 -6
- package/es/time-picker/range-panel.d.ts +6 -6
- package/es/time-picker/range-panel.js +1 -1
- package/es/time-picker/style/index.css +11 -11
- package/es/time-picker/time-column.js +1 -1
- package/es/time-picker/time-picker.js +2 -2
- package/es/time-picker/time-picker.vue.d.ts +27 -27
- package/es/timeline/item.js +1 -1
- package/es/timeline/item.vue_vue_type_script_lang.js +1 -1
- package/es/timeline/style/index.css +11 -11
- package/es/tooltip/index.d.ts +24 -24
- package/es/tooltip/style/index.css +3 -3
- package/es/tooltip/tooltip.js +1 -1
- package/es/tooltip/tooltip.vue.d.ts +11 -11
- package/es/tooltip/tooltip.vue_vue_type_script_lang.js +1 -1
- package/es/tour/index.d.ts +664 -0
- package/es/tour/index.js +10 -0
- package/es/tour/style/css.js +1 -0
- package/es/tour/style/index.css +226 -0
- package/es/tour/style/index.d.ts +1 -0
- package/es/tour/style/index.js +1 -0
- package/es/tour/style/index.scss +218 -0
- package/es/tour/style/token.scss +27 -0
- package/es/tour/tour.js +5 -0
- package/es/tour/tour.vue.d.ts +411 -0
- package/es/tour/tour.vue_vue_type_script_setup_true_lang.js +1219 -0
- package/es/tour/types.d.ts +143 -0
- package/es/transfer/index.d.ts +51 -45
- package/es/transfer/style/index.css +20 -20
- package/es/transfer/transfer-view.js +2 -3
- package/es/transfer/transfer-view.vue.d.ts +18 -15
- package/es/transfer/transfer-view.vue_vue_type_script_lang.js +1 -1
- package/es/transfer/transfer.js +1 -1
- package/es/transfer/transfer.vue.d.ts +25 -22
- package/es/tree/base-node.js +1 -1
- package/es/tree/base-node.vue.d.ts +2 -2
- package/es/tree/expand-transition.js +1 -1
- package/es/tree/node.js +1 -1
- package/es/tree/style/index.css +25 -25
- package/es/tree/transition-node-list.js +1 -1
- package/es/tree/transition-node-list.vue.d.ts +2 -2
- package/es/tree/tree.js +1 -1
- package/es/tree/tree.vue.d.ts +12 -9
- package/es/tree/tree.vue_vue_type_script_lang.js +2 -2
- package/es/tree/utils/tree-data.js +1 -1
- package/es/tree-select/hooks/use-selected-state.js +1 -1
- package/es/tree-select/panel.js +4 -7
- package/es/tree-select/style/index.css +5 -5
- package/es/tree-select/tree-select.js +2 -2
- package/es/tree-select/tree-select.vue.d.ts +21 -21
- package/es/tree-select/tree-select.vue_vue_type_script_lang.js +1 -1
- package/es/trigger/index.d.ts +9 -9
- package/es/trigger/style/index.css +5 -5
- package/es/trigger/trigger.d.ts +3 -3
- package/es/trigger/trigger.js +1 -1
- package/es/trigger/utils.js +1 -1
- package/es/typography/base.d.ts +4 -4
- package/es/typography/base.js +1 -1
- package/es/typography/edit-content.js +1 -1
- package/es/typography/edit-content.vue.d.ts +28 -28
- package/es/typography/operations.js +1 -1
- package/es/typography/operations.vue.d.ts +24 -24
- package/es/typography/style/index.css +22 -22
- package/es/typography/typography.js +1 -1
- package/es/upload/index.d.ts +6 -6
- package/es/upload/style/index.css +51 -51
- package/es/upload/upload-button.d.ts +1 -1
- package/es/upload/upload.d.ts +2 -2
- package/es/upload/upload.js +2 -2
- package/es/verification-code/index.d.ts +3 -3
- package/es/verification-code/verification-code.d.ts +1 -1
- package/es/watermark/hooks/use-mutation-observer.js +1 -1
- package/es/watermark/watermark.js +1 -1
- package/json/vetur-attributes.json +125 -107
- package/json/vetur-tags.json +39 -36
- package/json/web-types.json +181 -162
- package/package.json +19 -15
- package/es/calendar/calendar.d.ts +0 -104
- package/es/calendar/calendar.js +0 -207
- package/es/calendar/header.d.ts +0 -104
- package/es/calendar/header.js +0 -131
- package/es/calendar/hooks/useCellClassName.d.ts +0 -19
- package/es/calendar/hooks/useCellClassName.js +0 -43
- package/es/calendar/month.d.ts +0 -83
- package/es/calendar/month.js +0 -149
- package/es/calendar/week.d.ts +0 -61
- package/es/calendar/week.js +0 -45
- package/es/calendar/year.d.ts +0 -69
- package/es/calendar/year.js +0 -101
- package/es/select/optgroup.js +0 -10
- package/es/select/optgroup.vue.d.ts +0 -13
- package/es/select/optgroup.vue_vue_type_script_lang.js +0 -23
- package/es/select/option.js +0 -51
- package/es/select/option.vue.d.ts +0 -299
- package/es/select/option.vue_vue_type_script_lang.js +0 -149
- package/es/tag/tag.vue_vue_type_script_lang.js +0 -264
package/es/icon.js
CHANGED
|
@@ -2,7 +2,7 @@ import { computed, createElementBlock, createElementVNode, createStaticVNode, de
|
|
|
2
2
|
//#region components/config-provider/context.ts
|
|
3
3
|
var configProviderInjectionKey = Symbol("SDConfigProvider");
|
|
4
4
|
//#endregion
|
|
5
|
-
//#region \0@oxc-project+runtime@0.
|
|
5
|
+
//#region \0@oxc-project+runtime@0.133.0/helpers/esm/typeof.js
|
|
6
6
|
function _typeof(o) {
|
|
7
7
|
"@babel/helpers - typeof";
|
|
8
8
|
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o) {
|
|
@@ -12,7 +12,7 @@ function _typeof(o) {
|
|
|
12
12
|
}, _typeof(o);
|
|
13
13
|
}
|
|
14
14
|
//#endregion
|
|
15
|
-
//#region \0@oxc-project+runtime@0.
|
|
15
|
+
//#region \0@oxc-project+runtime@0.133.0/helpers/esm/toPrimitive.js
|
|
16
16
|
function toPrimitive(t, r) {
|
|
17
17
|
if ("object" != _typeof(t) || !t) return t;
|
|
18
18
|
var e = t[Symbol.toPrimitive];
|
|
@@ -24,13 +24,13 @@ function toPrimitive(t, r) {
|
|
|
24
24
|
return ("string" === r ? String : Number)(t);
|
|
25
25
|
}
|
|
26
26
|
//#endregion
|
|
27
|
-
//#region \0@oxc-project+runtime@0.
|
|
27
|
+
//#region \0@oxc-project+runtime@0.133.0/helpers/esm/toPropertyKey.js
|
|
28
28
|
function toPropertyKey(t) {
|
|
29
29
|
var i = toPrimitive(t, "string");
|
|
30
30
|
return "symbol" == _typeof(i) ? i : i + "";
|
|
31
31
|
}
|
|
32
32
|
//#endregion
|
|
33
|
-
//#region \0@oxc-project+runtime@0.
|
|
33
|
+
//#region \0@oxc-project+runtime@0.133.0/helpers/esm/defineProperty.js
|
|
34
34
|
function _defineProperty(e, r, t) {
|
|
35
35
|
return (r = toPropertyKey(r)) in e ? Object.defineProperty(e, r, {
|
|
36
36
|
value: t,
|
|
@@ -40,7 +40,7 @@ function _defineProperty(e, r, t) {
|
|
|
40
40
|
}) : e[r] = t, e;
|
|
41
41
|
}
|
|
42
42
|
//#endregion
|
|
43
|
-
//#region \0@oxc-project+runtime@0.
|
|
43
|
+
//#region \0@oxc-project+runtime@0.133.0/helpers/esm/objectSpread2.js
|
|
44
44
|
function ownKeys(e, r) {
|
|
45
45
|
var t = Object.keys(e);
|
|
46
46
|
if (Object.getOwnPropertySymbols) {
|
|
@@ -166,7 +166,7 @@ function _sfc_render$286(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
166
166
|
style: _ctx.innerStyle
|
|
167
167
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M39.6 30.557 24.043 15 8.487 30.557" }, null, -1)])], 16);
|
|
168
168
|
}
|
|
169
|
-
var icon_up_default =
|
|
169
|
+
var icon_up_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_up_vue_vue_type_script_lang_default, [["render", _sfc_render$286]]);
|
|
170
170
|
//#endregion
|
|
171
171
|
//#region components/icon/icon-up/index.ts
|
|
172
172
|
var IconUp = Object.assign(icon_up_default, { install: (app, options) => {
|
|
@@ -257,7 +257,7 @@ function _sfc_render$285(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
257
257
|
r: "18"
|
|
258
258
|
}, null, -1), createElementVNode("path", { d: "M15.516 28.485 24 20l8.485 8.485" }, null, -1)])], 16);
|
|
259
259
|
}
|
|
260
|
-
var icon_up_circle_default =
|
|
260
|
+
var icon_up_circle_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_up_circle_vue_vue_type_script_lang_default, [["render", _sfc_render$285]]);
|
|
261
261
|
//#endregion
|
|
262
262
|
//#region components/icon/icon-up-circle/index.ts
|
|
263
263
|
var IconUpCircle = Object.assign(icon_up_circle_default, { install: (app, options) => {
|
|
@@ -348,7 +348,7 @@ function _sfc_render$284(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
348
348
|
d: "m24 14-6 7h12z"
|
|
349
349
|
}, null, -1)])], 16);
|
|
350
350
|
}
|
|
351
|
-
var icon_to_top_default =
|
|
351
|
+
var icon_to_top_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_to_top_vue_vue_type_script_lang_default, [["render", _sfc_render$284]]);
|
|
352
352
|
//#endregion
|
|
353
353
|
//#region components/icon/icon-to-top/index.ts
|
|
354
354
|
var IconToTop = Object.assign(icon_to_top_default, { install: (app, options) => {
|
|
@@ -439,7 +439,7 @@ function _sfc_render$283(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
439
439
|
d: "m34 24-7-6v12z"
|
|
440
440
|
}, null, -1)])], 16);
|
|
441
441
|
}
|
|
442
|
-
var icon_to_right_default =
|
|
442
|
+
var icon_to_right_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_to_right_vue_vue_type_script_lang_default, [["render", _sfc_render$283]]);
|
|
443
443
|
//#endregion
|
|
444
444
|
//#region components/icon/icon-to-right/index.ts
|
|
445
445
|
var IconToRight = Object.assign(icon_to_right_default, { install: (app, options) => {
|
|
@@ -530,7 +530,7 @@ function _sfc_render$282(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
530
530
|
d: "m14 24 7 6V18z"
|
|
531
531
|
}, null, -1)])], 16);
|
|
532
532
|
}
|
|
533
|
-
var icon_to_left_default =
|
|
533
|
+
var icon_to_left_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_to_left_vue_vue_type_script_lang_default, [["render", _sfc_render$282]]);
|
|
534
534
|
//#endregion
|
|
535
535
|
//#region components/icon/icon-to-left/index.ts
|
|
536
536
|
var IconToLeft = Object.assign(icon_to_left_default, { install: (app, options) => {
|
|
@@ -621,7 +621,7 @@ function _sfc_render$281(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
621
621
|
d: "m24 34 6-7H18z"
|
|
622
622
|
}, null, -1)])], 16);
|
|
623
623
|
}
|
|
624
|
-
var icon_to_bottom_default =
|
|
624
|
+
var icon_to_bottom_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_to_bottom_vue_vue_type_script_lang_default, [["render", _sfc_render$281]]);
|
|
625
625
|
//#endregion
|
|
626
626
|
//#region components/icon/icon-to-bottom/index.ts
|
|
627
627
|
var IconToBottom = Object.assign(icon_to_bottom_default, { install: (app, options) => {
|
|
@@ -708,7 +708,7 @@ function _sfc_render$280(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
708
708
|
style: _ctx.innerStyle
|
|
709
709
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M5 17h35.586c.89 0 1.337-1.077.707-1.707L33 7M43 31H7.414c-.89 0-1.337 1.077-.707 1.707L15 41" }, null, -1)])], 16);
|
|
710
710
|
}
|
|
711
|
-
var icon_swap_default =
|
|
711
|
+
var icon_swap_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_swap_vue_vue_type_script_lang_default, [["render", _sfc_render$280]]);
|
|
712
712
|
//#endregion
|
|
713
713
|
//#region components/icon/icon-swap/index.ts
|
|
714
714
|
var IconSwap = Object.assign(icon_swap_default, { install: (app, options) => {
|
|
@@ -795,7 +795,7 @@ function _sfc_render$279(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
795
795
|
style: _ctx.innerStyle
|
|
796
796
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M20 44V29c0-.552-.444-1-.996-1H4M28 4v15c0 .552.444 1 .996 1H44" }, null, -1)])], 16);
|
|
797
797
|
}
|
|
798
|
-
var icon_shrink_default =
|
|
798
|
+
var icon_shrink_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_shrink_vue_vue_type_script_lang_default, [["render", _sfc_render$279]]);
|
|
799
799
|
//#endregion
|
|
800
800
|
//#region components/icon/icon-shrink/index.ts
|
|
801
801
|
var IconShrink = Object.assign(icon_shrink_default, { install: (app, options) => {
|
|
@@ -882,7 +882,7 @@ function _sfc_render$278(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
882
882
|
style: _ctx.innerStyle
|
|
883
883
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M38 22a1 1 0 0 0-1-1H17a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h20a1 1 0 0 0 1-1zM25 11H14a6 6 0 0 0-6 6v6M25.5 12.893 28.413 11 25.5 9.107z" }, null, -1)])], 16);
|
|
884
884
|
}
|
|
885
|
-
var icon_rotate_right_default =
|
|
885
|
+
var icon_rotate_right_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_rotate_right_vue_vue_type_script_lang_default, [["render", _sfc_render$278]]);
|
|
886
886
|
//#endregion
|
|
887
887
|
//#region components/icon/icon-rotate-right/index.ts
|
|
888
888
|
var IconRotateRight = Object.assign(icon_rotate_right_default, { install: (app, options) => {
|
|
@@ -969,7 +969,7 @@ function _sfc_render$277(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
969
969
|
style: _ctx.innerStyle
|
|
970
970
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M10 22a1 1 0 0 1 1-1h20a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H11a1 1 0 0 1-1-1zM23 11h11a6 6 0 0 1 6 6v6M22.5 12.893 19.587 11 22.5 9.107z" }, null, -1)])], 16);
|
|
971
971
|
}
|
|
972
|
-
var icon_rotate_left_default =
|
|
972
|
+
var icon_rotate_left_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_rotate_left_vue_vue_type_script_lang_default, [["render", _sfc_render$277]]);
|
|
973
973
|
//#endregion
|
|
974
974
|
//#region components/icon/icon-rotate-left/index.ts
|
|
975
975
|
var IconRotateLeft = Object.assign(icon_rotate_left_default, { install: (app, options) => {
|
|
@@ -1056,7 +1056,7 @@ function _sfc_render$276(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1056
1056
|
style: _ctx.innerStyle
|
|
1057
1057
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m16 39.513 15.556-15.557L16 8.4" }, null, -1)])], 16);
|
|
1058
1058
|
}
|
|
1059
|
-
var icon_right_default =
|
|
1059
|
+
var icon_right_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_right_vue_vue_type_script_lang_default, [["render", _sfc_render$276]]);
|
|
1060
1060
|
//#endregion
|
|
1061
1061
|
//#region components/icon/icon-right/index.ts
|
|
1062
1062
|
var IconRight = Object.assign(icon_right_default, { install: (app, options) => {
|
|
@@ -1147,7 +1147,7 @@ function _sfc_render$275(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1147
1147
|
r: "18"
|
|
1148
1148
|
}, null, -1), createElementVNode("path", { d: "M19.485 15.515 27.971 24l-8.486 8.485" }, null, -1)])], 16);
|
|
1149
1149
|
}
|
|
1150
|
-
var icon_right_circle_default =
|
|
1150
|
+
var icon_right_circle_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_right_circle_vue_vue_type_script_lang_default, [["render", _sfc_render$275]]);
|
|
1151
1151
|
//#endregion
|
|
1152
1152
|
//#region components/icon/icon-right-circle/index.ts
|
|
1153
1153
|
var IconRightCircle = Object.assign(icon_right_circle_default, { install: (app, options) => {
|
|
@@ -1234,7 +1234,7 @@ function _sfc_render$274(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1234
1234
|
style: _ctx.innerStyle
|
|
1235
1235
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M6 11h36M22 24h20M6 37h36M8 20.882 12.819 24 8 27.118z" }, null, -1)])], 16);
|
|
1236
1236
|
}
|
|
1237
|
-
var icon_menu_unfold_default =
|
|
1237
|
+
var icon_menu_unfold_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_menu_unfold_vue_vue_type_script_lang_default, [["render", _sfc_render$274]]);
|
|
1238
1238
|
//#endregion
|
|
1239
1239
|
//#region components/icon/icon-menu-unfold/index.ts
|
|
1240
1240
|
var IconMenuUnfold = Object.assign(icon_menu_unfold_default, { install: (app, options) => {
|
|
@@ -1321,7 +1321,7 @@ function _sfc_render$273(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1321
1321
|
style: _ctx.innerStyle
|
|
1322
1322
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M42 11H6M42 24H22M42 37H6M13.66 26.912l-4.82-3.118 4.82-3.118z" }, null, -1)])], 16);
|
|
1323
1323
|
}
|
|
1324
|
-
var icon_menu_fold_default =
|
|
1324
|
+
var icon_menu_fold_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_menu_fold_vue_vue_type_script_lang_default, [["render", _sfc_render$273]]);
|
|
1325
1325
|
//#endregion
|
|
1326
1326
|
//#region components/icon/icon-menu-fold/index.ts
|
|
1327
1327
|
var IconMenuFold = Object.assign(icon_menu_fold_default, { install: (app, options) => {
|
|
@@ -1408,7 +1408,7 @@ function _sfc_render$272(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1408
1408
|
style: _ctx.innerStyle
|
|
1409
1409
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M32 8.4 16.444 23.956 32 39.513" }, null, -1)])], 16);
|
|
1410
1410
|
}
|
|
1411
|
-
var icon_left_default =
|
|
1411
|
+
var icon_left_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_left_vue_vue_type_script_lang_default, [["render", _sfc_render$272]]);
|
|
1412
1412
|
//#endregion
|
|
1413
1413
|
//#region components/icon/icon-left/index.ts
|
|
1414
1414
|
var IconLeft = Object.assign(icon_left_default, { install: (app, options) => {
|
|
@@ -1499,7 +1499,7 @@ function _sfc_render$271(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1499
1499
|
r: "18"
|
|
1500
1500
|
}, null, -1), createElementVNode("path", { d: "M28.485 32.485 20 24l8.485-8.485" }, null, -1)])], 16);
|
|
1501
1501
|
}
|
|
1502
|
-
var icon_left_circle_default =
|
|
1502
|
+
var icon_left_circle_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_left_circle_vue_vue_type_script_lang_default, [["render", _sfc_render$271]]);
|
|
1503
1503
|
//#endregion
|
|
1504
1504
|
//#region components/icon/icon-left-circle/index.ts
|
|
1505
1505
|
var IconLeftCircle = Object.assign(icon_left_circle_default, { install: (app, options) => {
|
|
@@ -1586,7 +1586,7 @@ function _sfc_render$270(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1586
1586
|
style: _ctx.innerStyle
|
|
1587
1587
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M7 26v14c0 .552.444 1 .996 1H22m19-19V8c0-.552-.444-1-.996-1H26" }, null, -1)])], 16);
|
|
1588
1588
|
}
|
|
1589
|
-
var icon_expand_default =
|
|
1589
|
+
var icon_expand_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_expand_vue_vue_type_script_lang_default, [["render", _sfc_render$270]]);
|
|
1590
1590
|
//#endregion
|
|
1591
1591
|
//#region components/icon/icon-expand/index.ts
|
|
1592
1592
|
var IconExpand = Object.assign(icon_expand_default, { install: (app, options) => {
|
|
@@ -1673,7 +1673,7 @@ function _sfc_render$269(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1673
1673
|
style: _ctx.innerStyle
|
|
1674
1674
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M7 24h34M24 7v34M30 12l-6-6-6 6M36 30l6-6-6-6M12 30l-6-6 6-6M18 36l6 6 6-6" }, null, -1)])], 16);
|
|
1675
1675
|
}
|
|
1676
|
-
var icon_drag_arrow_default =
|
|
1676
|
+
var icon_drag_arrow_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_drag_arrow_vue_vue_type_script_lang_default, [["render", _sfc_render$269]]);
|
|
1677
1677
|
//#endregion
|
|
1678
1678
|
//#region components/icon/icon-drag-arrow/index.ts
|
|
1679
1679
|
var IconDragArrow = Object.assign(icon_drag_arrow_default, { install: (app, options) => {
|
|
@@ -1760,7 +1760,7 @@ function _sfc_render$268(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1760
1760
|
style: _ctx.innerStyle
|
|
1761
1761
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M39.6 17.443 24.043 33 8.487 17.443" }, null, -1)])], 16);
|
|
1762
1762
|
}
|
|
1763
|
-
var icon_down_default =
|
|
1763
|
+
var icon_down_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_down_vue_vue_type_script_lang_default, [["render", _sfc_render$268]]);
|
|
1764
1764
|
//#endregion
|
|
1765
1765
|
//#region components/icon/icon-down/index.ts
|
|
1766
1766
|
var IconDown = Object.assign(icon_down_default, { install: (app, options) => {
|
|
@@ -1852,7 +1852,7 @@ function _sfc_render$267(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1852
1852
|
transform: "rotate(-180 24 24)"
|
|
1853
1853
|
}, null, -1), createElementVNode("path", { d: "M32.484 20.515 24 29l-8.485-8.485" }, null, -1)])], 16);
|
|
1854
1854
|
}
|
|
1855
|
-
var icon_down_circle_default =
|
|
1855
|
+
var icon_down_circle_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_down_circle_vue_vue_type_script_lang_default, [["render", _sfc_render$267]]);
|
|
1856
1856
|
//#endregion
|
|
1857
1857
|
//#region components/icon/icon-down-circle/index.ts
|
|
1858
1858
|
var IconDownCircle = Object.assign(icon_down_circle_default, { install: (app, options) => {
|
|
@@ -1939,7 +1939,7 @@ function _sfc_render$266(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1939
1939
|
style: _ctx.innerStyle
|
|
1940
1940
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M38.1 36.858 23.957 22.716 9.816 36.858M38.1 25.544 23.957 11.402 9.816 25.544" }, null, -1)])], 16);
|
|
1941
1941
|
}
|
|
1942
|
-
var icon_double_up_default =
|
|
1942
|
+
var icon_double_up_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_double_up_vue_vue_type_script_lang_default, [["render", _sfc_render$266]]);
|
|
1943
1943
|
//#endregion
|
|
1944
1944
|
//#region components/icon/icon-double-up/index.ts
|
|
1945
1945
|
var IconDoubleUp = Object.assign(icon_double_up_default, { install: (app, options) => {
|
|
@@ -2026,7 +2026,7 @@ function _sfc_render$265(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2026
2026
|
style: _ctx.innerStyle
|
|
2027
2027
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m11.143 38.1 14.142-14.142L11.143 9.816M22.456 38.1l14.142-14.142L22.456 9.816" }, null, -1)])], 16);
|
|
2028
2028
|
}
|
|
2029
|
-
var icon_double_right_default =
|
|
2029
|
+
var icon_double_right_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_double_right_vue_vue_type_script_lang_default, [["render", _sfc_render$265]]);
|
|
2030
2030
|
//#endregion
|
|
2031
2031
|
//#region components/icon/icon-double-right/index.ts
|
|
2032
2032
|
var IconDoubleRight = Object.assign(icon_double_right_default, { install: (app, options) => {
|
|
@@ -2113,7 +2113,7 @@ function _sfc_render$264(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2113
2113
|
style: _ctx.innerStyle
|
|
2114
2114
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M36.857 9.9 22.715 24.042l14.142 14.142M25.544 9.9 11.402 24.042l14.142 14.142" }, null, -1)])], 16);
|
|
2115
2115
|
}
|
|
2116
|
-
var icon_double_left_default =
|
|
2116
|
+
var icon_double_left_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_double_left_vue_vue_type_script_lang_default, [["render", _sfc_render$264]]);
|
|
2117
2117
|
//#endregion
|
|
2118
2118
|
//#region components/icon/icon-double-left/index.ts
|
|
2119
2119
|
var IconDoubleLeft = Object.assign(icon_double_left_default, { install: (app, options) => {
|
|
@@ -2200,7 +2200,7 @@ function _sfc_render$263(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2200
2200
|
style: _ctx.innerStyle
|
|
2201
2201
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m9.9 11.142 14.143 14.142 14.142-14.142M9.9 22.456l14.143 14.142 14.142-14.142" }, null, -1)])], 16);
|
|
2202
2202
|
}
|
|
2203
|
-
var icon_double_down_default =
|
|
2203
|
+
var icon_double_down_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_double_down_vue_vue_type_script_lang_default, [["render", _sfc_render$263]]);
|
|
2204
2204
|
//#endregion
|
|
2205
2205
|
//#region components/icon/icon-double-down/index.ts
|
|
2206
2206
|
var IconDoubleDown = Object.assign(icon_double_down_default, { install: (app, options) => {
|
|
@@ -2291,7 +2291,7 @@ function _sfc_render$262(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2291
2291
|
d: "M23.063 13.171a1.2 1.2 0 0 1 1.875 0l13.503 16.88c.628.785.069 1.949-.937 1.949H10.497c-1.006 0-1.565-1.164-.937-1.95z"
|
|
2292
2292
|
}, null, -1)])], 16);
|
|
2293
2293
|
}
|
|
2294
|
-
var icon_caret_up_default =
|
|
2294
|
+
var icon_caret_up_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_caret_up_vue_vue_type_script_lang_default, [["render", _sfc_render$262]]);
|
|
2295
2295
|
//#endregion
|
|
2296
2296
|
//#region components/icon/icon-caret-up/index.ts
|
|
2297
2297
|
var IconCaretUp = Object.assign(icon_caret_up_default, { install: (app, options) => {
|
|
@@ -2382,7 +2382,7 @@ function _sfc_render$261(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2382
2382
|
d: "M34.829 23.063c.6.48.6 1.394 0 1.874L17.949 38.44c-.785.629-1.949.07-1.949-.937V10.497c0-1.007 1.164-1.566 1.95-.937z"
|
|
2383
2383
|
}, null, -1)])], 16);
|
|
2384
2384
|
}
|
|
2385
|
-
var icon_caret_right_default =
|
|
2385
|
+
var icon_caret_right_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_caret_right_vue_vue_type_script_lang_default, [["render", _sfc_render$261]]);
|
|
2386
2386
|
//#endregion
|
|
2387
2387
|
//#region components/icon/icon-caret-right/index.ts
|
|
2388
2388
|
var IconCaretRight = Object.assign(icon_caret_right_default, { install: (app, options) => {
|
|
@@ -2473,7 +2473,7 @@ function _sfc_render$260(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2473
2473
|
d: "M13.171 24.937a1.2 1.2 0 0 1 0-1.874L30.051 9.56c.785-.629 1.949-.07 1.949.937v27.006c0 1.006-1.164 1.566-1.95.937z"
|
|
2474
2474
|
}, null, -1)])], 16);
|
|
2475
2475
|
}
|
|
2476
|
-
var icon_caret_left_default =
|
|
2476
|
+
var icon_caret_left_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_caret_left_vue_vue_type_script_lang_default, [["render", _sfc_render$260]]);
|
|
2477
2477
|
//#endregion
|
|
2478
2478
|
//#region components/icon/icon-caret-left/index.ts
|
|
2479
2479
|
var IconCaretLeft = Object.assign(icon_caret_left_default, { install: (app, options) => {
|
|
@@ -2564,7 +2564,7 @@ function _sfc_render$259(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2564
2564
|
d: "M24.938 34.829a1.2 1.2 0 0 1-1.875 0L9.56 17.949c-.628-.785-.069-1.949.937-1.949h27.007c1.006 0 1.565 1.164.937 1.95z"
|
|
2565
2565
|
}, null, -1)])], 16);
|
|
2566
2566
|
}
|
|
2567
|
-
var icon_caret_down_default =
|
|
2567
|
+
var icon_caret_down_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_caret_down_vue_vue_type_script_lang_default, [["render", _sfc_render$259]]);
|
|
2568
2568
|
//#endregion
|
|
2569
2569
|
//#region components/icon/icon-caret-down/index.ts
|
|
2570
2570
|
var IconCaretDown = Object.assign(icon_caret_down_default, { install: (app, options) => {
|
|
@@ -2651,7 +2651,7 @@ function _sfc_render$258(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2651
2651
|
style: _ctx.innerStyle
|
|
2652
2652
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M11.27 20.272 23.998 7.544l12.727 12.728M24 43V8.705" }, null, -1)])], 16);
|
|
2653
2653
|
}
|
|
2654
|
-
var icon_arrow_up_default =
|
|
2654
|
+
var icon_arrow_up_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_arrow_up_vue_vue_type_script_lang_default, [["render", _sfc_render$258]]);
|
|
2655
2655
|
//#endregion
|
|
2656
2656
|
//#region components/icon/icon-arrow-up/index.ts
|
|
2657
2657
|
var IconArrowUp = Object.assign(icon_arrow_up_default, { install: (app, options) => {
|
|
@@ -2751,7 +2751,7 @@ function _sfc_render$257(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2751
2751
|
}, null, -1)
|
|
2752
2752
|
])], 16);
|
|
2753
2753
|
}
|
|
2754
|
-
var icon_arrow_rise_default =
|
|
2754
|
+
var icon_arrow_rise_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_arrow_rise_vue_vue_type_script_lang_default, [["render", _sfc_render$257]]);
|
|
2755
2755
|
//#endregion
|
|
2756
2756
|
//#region components/icon/icon-arrow-rise/index.ts
|
|
2757
2757
|
var IconArrowRise = Object.assign(icon_arrow_rise_default, { install: (app, options) => {
|
|
@@ -2838,7 +2838,7 @@ function _sfc_render$256(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2838
2838
|
style: _ctx.innerStyle
|
|
2839
2839
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m27.728 11.27 12.728 12.728-12.728 12.728M5 24h34.296" }, null, -1)])], 16);
|
|
2840
2840
|
}
|
|
2841
|
-
var icon_arrow_right_default =
|
|
2841
|
+
var icon_arrow_right_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_arrow_right_vue_vue_type_script_lang_default, [["render", _sfc_render$256]]);
|
|
2842
2842
|
//#endregion
|
|
2843
2843
|
//#region components/icon/icon-arrow-right/index.ts
|
|
2844
2844
|
var IconArrowRight = Object.assign(icon_arrow_right_default, { install: (app, options) => {
|
|
@@ -2925,7 +2925,7 @@ function _sfc_render$255(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2925
2925
|
style: _ctx.innerStyle
|
|
2926
2926
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M20.272 11.27 7.544 23.998l12.728 12.728M43 24H8.705" }, null, -1)])], 16);
|
|
2927
2927
|
}
|
|
2928
|
-
var icon_arrow_left_default =
|
|
2928
|
+
var icon_arrow_left_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_arrow_left_vue_vue_type_script_lang_default, [["render", _sfc_render$255]]);
|
|
2929
2929
|
//#endregion
|
|
2930
2930
|
//#region components/icon/icon-arrow-left/index.ts
|
|
2931
2931
|
var IconArrowLeft = Object.assign(icon_arrow_left_default, { install: (app, options) => {
|
|
@@ -3025,7 +3025,7 @@ function _sfc_render$254(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3025
3025
|
}, null, -1)
|
|
3026
3026
|
])], 16);
|
|
3027
3027
|
}
|
|
3028
|
-
var icon_arrow_fall_default =
|
|
3028
|
+
var icon_arrow_fall_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_arrow_fall_vue_vue_type_script_lang_default, [["render", _sfc_render$254]]);
|
|
3029
3029
|
//#endregion
|
|
3030
3030
|
//#region components/icon/icon-arrow-fall/index.ts
|
|
3031
3031
|
var IconArrowFall = Object.assign(icon_arrow_fall_default, { install: (app, options) => {
|
|
@@ -3112,7 +3112,7 @@ function _sfc_render$253(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3112
3112
|
style: _ctx.innerStyle
|
|
3113
3113
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m11.27 27.728 12.728 12.728 12.727-12.728M24 5v34.296" }, null, -1)])], 16);
|
|
3114
3114
|
}
|
|
3115
|
-
var icon_arrow_down_default =
|
|
3115
|
+
var icon_arrow_down_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_arrow_down_vue_vue_type_script_lang_default, [["render", _sfc_render$253]]);
|
|
3116
3116
|
//#endregion
|
|
3117
3117
|
//#region components/icon/icon-arrow-down/index.ts
|
|
3118
3118
|
var IconArrowDown = Object.assign(icon_arrow_down_default, { install: (app, options) => {
|
|
@@ -3199,7 +3199,7 @@ function _sfc_render$252(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3199
3199
|
style: _ctx.innerStyle
|
|
3200
3200
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M36.728 36.728c7.03-7.03 7.03-18.426 0-25.456s-18.426-7.03-25.456 0m25.456 25.456c-7.03 7.03-18.426 7.03-25.456 0s-7.03-18.426 0-25.456m25.456 25.456L11.272 11.272" }, null, -1)])], 16);
|
|
3201
3201
|
}
|
|
3202
|
-
var icon_stop_default =
|
|
3202
|
+
var icon_stop_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_stop_vue_vue_type_script_lang_default, [["render", _sfc_render$252]]);
|
|
3203
3203
|
//#endregion
|
|
3204
3204
|
//#region components/icon/icon-stop/index.ts
|
|
3205
3205
|
var IconStop = Object.assign(icon_stop_default, { install: (app, options) => {
|
|
@@ -3286,7 +3286,7 @@ function _sfc_render$251(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3286
3286
|
style: _ctx.innerStyle
|
|
3287
3287
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M13 17c0-5.523 4.925-10 11-10s11 4.477 11 10c0 3.607-2.1 6.767-5.25 8.526C26.857 27.143 24 29.687 24 33v3m0 5h.02v.02H24z" }, null, -1)])], 16);
|
|
3288
3288
|
}
|
|
3289
|
-
var icon_question_default =
|
|
3289
|
+
var icon_question_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_question_vue_vue_type_script_lang_default, [["render", _sfc_render$251]]);
|
|
3290
3290
|
//#endregion
|
|
3291
3291
|
//#region components/icon/icon-question/index.ts
|
|
3292
3292
|
var IconQuestion = Object.assign(icon_question_default, { install: (app, options) => {
|
|
@@ -3373,7 +3373,7 @@ function _sfc_render$250(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3373
3373
|
style: _ctx.innerStyle
|
|
3374
3374
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M42 24c0 9.941-8.059 18-18 18S6 33.941 6 24 14.059 6 24 6s18 8.059 18 18Z" }, null, -1), createElementVNode("path", { d: "M24.006 31v4.008m0-6.008L24 28c0-3 3-4 4.78-6.402C30.558 19.195 28.288 15 23.987 15c-4.014 0-5.382 2.548-5.388 4.514v.465" }, null, -1)])], 16);
|
|
3375
3375
|
}
|
|
3376
|
-
var icon_question_circle_default =
|
|
3376
|
+
var icon_question_circle_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_question_circle_vue_vue_type_script_lang_default, [["render", _sfc_render$250]]);
|
|
3377
3377
|
//#endregion
|
|
3378
3378
|
//#region components/icon/icon-question-circle/index.ts
|
|
3379
3379
|
var IconQuestionCircle = Object.assign(icon_question_circle_default, { install: (app, options) => {
|
|
@@ -3460,7 +3460,7 @@ function _sfc_render$249(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3460
3460
|
style: _ctx.innerStyle
|
|
3461
3461
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M5 24h38M24 5v38" }, null, -1)])], 16);
|
|
3462
3462
|
}
|
|
3463
|
-
var icon_plus_default =
|
|
3463
|
+
var icon_plus_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_plus_vue_vue_type_script_lang_default, [["render", _sfc_render$249]]);
|
|
3464
3464
|
//#endregion
|
|
3465
3465
|
//#region components/icon/icon-plus/index.ts
|
|
3466
3466
|
var IconPlus = Object.assign(icon_plus_default, { install: (app, options) => {
|
|
@@ -3547,7 +3547,7 @@ function _sfc_render$248(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3547
3547
|
style: _ctx.innerStyle
|
|
3548
3548
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M32 24h-8m-8 0h8m0 0v8m0-8v-8m18 8c0 9.941-8.059 18-18 18S6 33.941 6 24 14.059 6 24 6s18 8.059 18 18Z" }, null, -1)])], 16);
|
|
3549
3549
|
}
|
|
3550
|
-
var icon_plus_circle_default =
|
|
3550
|
+
var icon_plus_circle_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_plus_circle_vue_vue_type_script_lang_default, [["render", _sfc_render$248]]);
|
|
3551
3551
|
//#endregion
|
|
3552
3552
|
//#region components/icon/icon-plus-circle/index.ts
|
|
3553
3553
|
var IconPlusCircle = Object.assign(icon_plus_circle_default, { install: (app, options) => {
|
|
@@ -3634,7 +3634,7 @@ function _sfc_render$247(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3634
3634
|
style: _ctx.innerStyle
|
|
3635
3635
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M5 24h38" }, null, -1)])], 16);
|
|
3636
3636
|
}
|
|
3637
|
-
var icon_minus_default =
|
|
3637
|
+
var icon_minus_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_minus_vue_vue_type_script_lang_default, [["render", _sfc_render$247]]);
|
|
3638
3638
|
//#endregion
|
|
3639
3639
|
//#region components/icon/icon-minus/index.ts
|
|
3640
3640
|
var IconMinus = Object.assign(icon_minus_default, { install: (app, options) => {
|
|
@@ -3721,7 +3721,7 @@ function _sfc_render$246(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3721
3721
|
style: _ctx.innerStyle
|
|
3722
3722
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M32 24H16m26 0c0 9.941-8.059 18-18 18S6 33.941 6 24 14.059 6 24 6s18 8.059 18 18Z" }, null, -1)])], 16);
|
|
3723
3723
|
}
|
|
3724
|
-
var icon_minus_circle_default =
|
|
3724
|
+
var icon_minus_circle_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_minus_circle_vue_vue_type_script_lang_default, [["render", _sfc_render$246]]);
|
|
3725
3725
|
//#endregion
|
|
3726
3726
|
//#region components/icon/icon-minus-circle/index.ts
|
|
3727
3727
|
var IconMinusCircle = Object.assign(icon_minus_circle_default, { install: (app, options) => {
|
|
@@ -3821,7 +3821,7 @@ function _sfc_render$245(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3821
3821
|
}, null, -1)
|
|
3822
3822
|
])], 16);
|
|
3823
3823
|
}
|
|
3824
|
-
var icon_info_default =
|
|
3824
|
+
var icon_info_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_info_vue_vue_type_script_lang_default, [["render", _sfc_render$245]]);
|
|
3825
3825
|
//#endregion
|
|
3826
3826
|
//#region components/icon/icon-info/index.ts
|
|
3827
3827
|
var IconInfo = Object.assign(icon_info_default, { install: (app, options) => {
|
|
@@ -3908,7 +3908,7 @@ function _sfc_render$244(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3908
3908
|
style: _ctx.innerStyle
|
|
3909
3909
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M24 20v14m0-16v-4m18 10c0 9.941-8.059 18-18 18S6 33.941 6 24 14.059 6 24 6s18 8.059 18 18Z" }, null, -1)])], 16);
|
|
3910
3910
|
}
|
|
3911
|
-
var icon_info_circle_default =
|
|
3911
|
+
var icon_info_circle_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_info_circle_vue_vue_type_script_lang_default, [["render", _sfc_render$244]]);
|
|
3912
3912
|
//#endregion
|
|
3913
3913
|
//#region components/icon/icon-info-circle/index.ts
|
|
3914
3914
|
var IconInfoCircle = Object.assign(icon_info_circle_default, { install: (app, options) => {
|
|
@@ -4008,7 +4008,7 @@ function _sfc_render$243(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
4008
4008
|
}, null, -1)
|
|
4009
4009
|
])], 16);
|
|
4010
4010
|
}
|
|
4011
|
-
var icon_exclamation_default =
|
|
4011
|
+
var icon_exclamation_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_exclamation_vue_vue_type_script_lang_default, [["render", _sfc_render$243]]);
|
|
4012
4012
|
//#endregion
|
|
4013
4013
|
//#region components/icon/icon-exclamation/index.ts
|
|
4014
4014
|
var IconExclamation = Object.assign(icon_exclamation_default, { install: (app, options) => {
|
|
@@ -4095,7 +4095,7 @@ function _sfc_render$242(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
4095
4095
|
style: _ctx.innerStyle
|
|
4096
4096
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M24 28V14m0 16v4M6 24c0-9.941 8.059-18 18-18s18 8.059 18 18-8.059 18-18 18S6 33.941 6 24Z" }, null, -1)])], 16);
|
|
4097
4097
|
}
|
|
4098
|
-
var icon_exclamation_circle_default =
|
|
4098
|
+
var icon_exclamation_circle_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_exclamation_circle_vue_vue_type_script_lang_default, [["render", _sfc_render$242]]);
|
|
4099
4099
|
//#endregion
|
|
4100
4100
|
//#region components/icon/icon-exclamation-circle/index.ts
|
|
4101
4101
|
var IconExclamationCircle = Object.assign(icon_exclamation_circle_default, { install: (app, options) => {
|
|
@@ -4182,7 +4182,7 @@ function _sfc_render$241(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
4182
4182
|
style: _ctx.innerStyle
|
|
4183
4183
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M9.857 9.858 24 24m0 0 14.142 14.142M24 24 38.142 9.858M24 24 9.857 38.142" }, null, -1)])], 16);
|
|
4184
4184
|
}
|
|
4185
|
-
var icon_close_default =
|
|
4185
|
+
var icon_close_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_close_vue_vue_type_script_lang_default, [["render", _sfc_render$241]]);
|
|
4186
4186
|
//#endregion
|
|
4187
4187
|
//#region components/icon/icon-close/index.ts
|
|
4188
4188
|
var IconClose = Object.assign(icon_close_default, { install: (app, options) => {
|
|
@@ -4269,7 +4269,7 @@ function _sfc_render$240(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
4269
4269
|
style: _ctx.innerStyle
|
|
4270
4270
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m17.643 17.643 6.364 6.364m0 0 6.364 6.364m-6.364-6.364 6.364-6.364m-6.364 6.364-6.364 6.364M42 24c0 9.941-8.059 18-18 18S6 33.941 6 24 14.059 6 24 6s18 8.059 18 18Z" }, null, -1)])], 16);
|
|
4271
4271
|
}
|
|
4272
|
-
var icon_close_circle_default =
|
|
4272
|
+
var icon_close_circle_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_close_circle_vue_vue_type_script_lang_default, [["render", _sfc_render$240]]);
|
|
4273
4273
|
//#endregion
|
|
4274
4274
|
//#region components/icon/icon-close-circle/index.ts
|
|
4275
4275
|
var IconCloseCircle = Object.assign(icon_close_circle_default, { install: (app, options) => {
|
|
@@ -4356,7 +4356,7 @@ function _sfc_render$239(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
4356
4356
|
style: _ctx.innerStyle
|
|
4357
4357
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M24 14v10h9.5m8.5 0c0 9.941-8.059 18-18 18S6 33.941 6 24 14.059 6 24 6s18 8.059 18 18Z" }, null, -1)])], 16);
|
|
4358
4358
|
}
|
|
4359
|
-
var icon_clock_circle_default =
|
|
4359
|
+
var icon_clock_circle_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_clock_circle_vue_vue_type_script_lang_default, [["render", _sfc_render$239]]);
|
|
4360
4360
|
//#endregion
|
|
4361
4361
|
//#region components/icon/icon-clock-circle/index.ts
|
|
4362
4362
|
var IconClockCircle = Object.assign(icon_clock_circle_default, { install: (app, options) => {
|
|
@@ -4443,7 +4443,7 @@ function _sfc_render$238(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
4443
4443
|
style: _ctx.innerStyle
|
|
4444
4444
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M41.678 11.05 19.05 33.678 6.322 20.95" }, null, -1)])], 16);
|
|
4445
4445
|
}
|
|
4446
|
-
var icon_check_default =
|
|
4446
|
+
var icon_check_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_check_vue_vue_type_script_lang_default, [["render", _sfc_render$238]]);
|
|
4447
4447
|
//#endregion
|
|
4448
4448
|
//#region components/icon/icon-check/index.ts
|
|
4449
4449
|
var IconCheck = Object.assign(icon_check_default, { install: (app, options) => {
|
|
@@ -4530,7 +4530,7 @@ function _sfc_render$237(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
4530
4530
|
style: _ctx.innerStyle
|
|
4531
4531
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M34.603 16.672 21.168 30.107l-7.778-7.779M8 41h32a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v32a1 1 0 0 0 1 1Z" }, null, -1)])], 16);
|
|
4532
4532
|
}
|
|
4533
|
-
var icon_check_square_default =
|
|
4533
|
+
var icon_check_square_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_check_square_vue_vue_type_script_lang_default, [["render", _sfc_render$237]]);
|
|
4534
4534
|
//#endregion
|
|
4535
4535
|
//#region components/icon/icon-check-square/index.ts
|
|
4536
4536
|
var IconCheckSquare = Object.assign(icon_check_square_default, { install: (app, options) => {
|
|
@@ -4617,7 +4617,7 @@ function _sfc_render$236(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
4617
4617
|
style: _ctx.innerStyle
|
|
4618
4618
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m15 22 7 7 11.5-11.5M42 24c0 9.941-8.059 18-18 18S6 33.941 6 24 14.059 6 24 6s18 8.059 18 18Z" }, null, -1)])], 16);
|
|
4619
4619
|
}
|
|
4620
|
-
var icon_check_circle_default =
|
|
4620
|
+
var icon_check_circle_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_check_circle_vue_vue_type_script_lang_default, [["render", _sfc_render$236]]);
|
|
4621
4621
|
//#endregion
|
|
4622
4622
|
//#region components/icon/icon-check-circle/index.ts
|
|
4623
4623
|
var IconCheckCircle = Object.assign(icon_check_circle_default, { install: (app, options) => {
|
|
@@ -4710,7 +4710,7 @@ function _sfc_render$235(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
4710
4710
|
"clip-rule": "evenodd"
|
|
4711
4711
|
}, null, -1)])], 16);
|
|
4712
4712
|
}
|
|
4713
|
-
var icon_question_circle_fill_default =
|
|
4713
|
+
var icon_question_circle_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_question_circle_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$235]]);
|
|
4714
4714
|
//#endregion
|
|
4715
4715
|
//#region components/icon/icon-question-circle-fill/index.ts
|
|
4716
4716
|
var IconQuestionCircleFill = Object.assign(icon_question_circle_fill_default, { install: (app, options) => {
|
|
@@ -4803,7 +4803,7 @@ function _sfc_render$234(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
4803
4803
|
"clip-rule": "evenodd"
|
|
4804
4804
|
}, null, -1)])], 16);
|
|
4805
4805
|
}
|
|
4806
|
-
var icon_plus_circle_fill_default =
|
|
4806
|
+
var icon_plus_circle_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_plus_circle_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$234]]);
|
|
4807
4807
|
//#endregion
|
|
4808
4808
|
//#region components/icon/icon-plus-circle-fill/index.ts
|
|
4809
4809
|
var IconPlusCircleFill = Object.assign(icon_plus_circle_fill_default, { install: (app, options) => {
|
|
@@ -4896,7 +4896,7 @@ function _sfc_render$233(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
4896
4896
|
"clip-rule": "evenodd"
|
|
4897
4897
|
}, null, -1)])], 16);
|
|
4898
4898
|
}
|
|
4899
|
-
var icon_minus_circle_fill_default =
|
|
4899
|
+
var icon_minus_circle_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_minus_circle_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$233]]);
|
|
4900
4900
|
//#endregion
|
|
4901
4901
|
//#region components/icon/icon-minus-circle-fill/index.ts
|
|
4902
4902
|
var IconMinusCircleFill = Object.assign(icon_minus_circle_fill_default, { install: (app, options) => {
|
|
@@ -4989,7 +4989,7 @@ function _sfc_render$232(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
4989
4989
|
"clip-rule": "evenodd"
|
|
4990
4990
|
}, null, -1)])], 16);
|
|
4991
4991
|
}
|
|
4992
|
-
var icon_info_circle_fill_default =
|
|
4992
|
+
var icon_info_circle_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_info_circle_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$232]]);
|
|
4993
4993
|
//#endregion
|
|
4994
4994
|
//#region components/icon/icon-info-circle-fill/index.ts
|
|
4995
4995
|
var IconInfoCircleFill = Object.assign(icon_info_circle_fill_default, { install: (app, options) => {
|
|
@@ -5082,7 +5082,7 @@ function _sfc_render$231(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5082
5082
|
"clip-rule": "evenodd"
|
|
5083
5083
|
}, null, -1)])], 16);
|
|
5084
5084
|
}
|
|
5085
|
-
var icon_exclamation_polygon_fill_default =
|
|
5085
|
+
var icon_exclamation_polygon_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_exclamation_polygon_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$231]]);
|
|
5086
5086
|
//#endregion
|
|
5087
5087
|
//#region components/icon/icon-exclamation-polygon-fill/index.ts
|
|
5088
5088
|
var IconExclamationPolygonFill = Object.assign(icon_exclamation_polygon_fill_default, { install: (app, options) => {
|
|
@@ -5175,7 +5175,7 @@ function _sfc_render$230(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5175
5175
|
"clip-rule": "evenodd"
|
|
5176
5176
|
}, null, -1)])], 16);
|
|
5177
5177
|
}
|
|
5178
|
-
var icon_exclamation_circle_fill_default =
|
|
5178
|
+
var icon_exclamation_circle_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_exclamation_circle_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$230]]);
|
|
5179
5179
|
//#endregion
|
|
5180
5180
|
//#region components/icon/icon-exclamation-circle-fill/index.ts
|
|
5181
5181
|
var IconExclamationCircleFill = Object.assign(icon_exclamation_circle_fill_default, { install: (app, options) => {
|
|
@@ -5268,7 +5268,7 @@ function _sfc_render$229(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5268
5268
|
"clip-rule": "evenodd"
|
|
5269
5269
|
}, null, -1)])], 16);
|
|
5270
5270
|
}
|
|
5271
|
-
var icon_close_circle_fill_default =
|
|
5271
|
+
var icon_close_circle_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_close_circle_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$229]]);
|
|
5272
5272
|
//#endregion
|
|
5273
5273
|
//#region components/icon/icon-close-circle-fill/index.ts
|
|
5274
5274
|
var IconCloseCircleFill = Object.assign(icon_close_circle_fill_default, { install: (app, options) => {
|
|
@@ -5361,7 +5361,7 @@ function _sfc_render$228(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5361
5361
|
"clip-rule": "evenodd"
|
|
5362
5362
|
}, null, -1)])], 16);
|
|
5363
5363
|
}
|
|
5364
|
-
var icon_check_circle_fill_default =
|
|
5364
|
+
var icon_check_circle_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_check_circle_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$228]]);
|
|
5365
5365
|
//#endregion
|
|
5366
5366
|
//#region components/icon/icon-check-circle-fill/index.ts
|
|
5367
5367
|
var IconCheckCircleFill = Object.assign(icon_check_circle_fill_default, { install: (app, options) => {
|
|
@@ -5448,7 +5448,7 @@ function _sfc_render$227(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5448
5448
|
style: _ctx.innerStyle
|
|
5449
5449
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M41 21v1c0 8.837-7.163 16-16 16h-2c-8.837 0-16-7.163-16-16v-1m17 17v6m0-14a9 9 0 0 1-9-9v-6a9 9 0 1 1 18 0v6a9 9 0 0 1-9 9Z" }, null, -1)])], 16);
|
|
5450
5450
|
}
|
|
5451
|
-
var icon_voice_default =
|
|
5451
|
+
var icon_voice_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_voice_vue_vue_type_script_lang_default, [["render", _sfc_render$227]]);
|
|
5452
5452
|
//#endregion
|
|
5453
5453
|
//#region components/icon/icon-voice/index.ts
|
|
5454
5454
|
var IconVoice = Object.assign(icon_voice_default, { install: (app, options) => {
|
|
@@ -5535,7 +5535,7 @@ function _sfc_render$226(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5535
5535
|
style: _ctx.innerStyle
|
|
5536
5536
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M14.93 17.071 24.001 8l9.071 9.071m-9.07 16.071v-25M40 35v6H8v-6" }, null, -1)])], 16);
|
|
5537
5537
|
}
|
|
5538
|
-
var icon_upload_default =
|
|
5538
|
+
var icon_upload_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_upload_vue_vue_type_script_lang_default, [["render", _sfc_render$226]]);
|
|
5539
5539
|
//#endregion
|
|
5540
5540
|
//#region components/icon/icon-upload/index.ts
|
|
5541
5541
|
var IconUpload = Object.assign(icon_upload_default, { install: (app, options) => {
|
|
@@ -5622,7 +5622,7 @@ function _sfc_render$225(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5622
5622
|
style: _ctx.innerStyle
|
|
5623
5623
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M42 25c0 9.941-8.059 18-18 18-6.867 0-12.836-3.845-15.87-9.5M28.374 27 25 18h-2l-3.375 9m8.75 0L31 34m-2.625-7h-8.75m0 0L17 34M6 25c0-9.941 8.059-18 18-18 6.867 0 12.836 3.845 15.87 9.5M43 25h-2l1-1zM5 25h2l-1 1z" }, null, -1)])], 16);
|
|
5624
5624
|
}
|
|
5625
|
-
var icon_translate_default =
|
|
5625
|
+
var icon_translate_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_translate_vue_vue_type_script_lang_default, [["render", _sfc_render$225]]);
|
|
5626
5626
|
//#endregion
|
|
5627
5627
|
//#region components/icon/icon-translate/index.ts
|
|
5628
5628
|
var IconTranslate = Object.assign(icon_translate_default, { install: (app, options) => {
|
|
@@ -5709,7 +5709,7 @@ function _sfc_render$224(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5709
5709
|
style: _ctx.innerStyle
|
|
5710
5710
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M7 17v26m35.17-21.394-5.948 18.697a1 1 0 0 1-.953.697H14V19h3l9.403-12.223a1 1 0 0 1 1.386-.196l2.535 1.87a6 6 0 0 1 2.044 6.974L31 19h9.265a2 2 0 0 1 1.906 2.606Z" }, null, -1)])], 16);
|
|
5711
5711
|
}
|
|
5712
|
-
var icon_thumb_up_default =
|
|
5712
|
+
var icon_thumb_up_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_thumb_up_vue_vue_type_script_lang_default, [["render", _sfc_render$224]]);
|
|
5713
5713
|
//#endregion
|
|
5714
5714
|
//#region components/icon/icon-thumb-up/index.ts
|
|
5715
5715
|
var IconThumbUp = Object.assign(icon_thumb_up_default, { install: (app, options) => {
|
|
@@ -5796,7 +5796,7 @@ function _sfc_render$223(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5796
5796
|
style: _ctx.innerStyle
|
|
5797
5797
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M41 31V5M5.83 26.394l5.949-18.697A1 1 0 0 1 12.732 7H34v22h-3l-9.403 12.223a1 1 0 0 1-1.386.196l-2.536-1.87a6 6 0 0 1-2.043-6.974L17 29H7.736a2 2 0 0 1-1.906-2.606Z" }, null, -1)])], 16);
|
|
5798
5798
|
}
|
|
5799
|
-
var icon_thumb_down_default =
|
|
5799
|
+
var icon_thumb_down_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_thumb_down_vue_vue_type_script_lang_default, [["render", _sfc_render$223]]);
|
|
5800
5800
|
//#endregion
|
|
5801
5801
|
//#region components/icon/icon-thumb-down/index.ts
|
|
5802
5802
|
var IconThumbDown = Object.assign(icon_thumb_down_default, { install: (app, options) => {
|
|
@@ -5883,7 +5883,7 @@ function _sfc_render$222(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5883
5883
|
style: _ctx.innerStyle
|
|
5884
5884
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M11.98 11.703c-6.64 6.64-6.64 17.403 0 24.042a16.92 16.92 0 0 0 8.942 4.7M34.603 37.156l1.414-1.415c6.64-6.639 6.64-17.402 0-24.041A16.92 16.92 0 0 0 27.075 7M14.81 11.982l-1.414-1.414-1.414-1.414h2.829zM33.192 36.02l1.414 1.414 1.414 1.415h-2.828z" }, null, -1)])], 16);
|
|
5885
5885
|
}
|
|
5886
|
-
var icon_sync_default =
|
|
5886
|
+
var icon_sync_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_sync_vue_vue_type_script_lang_default, [["render", _sfc_render$222]]);
|
|
5887
5887
|
//#endregion
|
|
5888
5888
|
//#region components/icon/icon-sync/index.ts
|
|
5889
5889
|
var IconSync = Object.assign(icon_sync_default, { install: (app, options) => {
|
|
@@ -5970,7 +5970,7 @@ function _sfc_render$221(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5970
5970
|
style: _ctx.innerStyle
|
|
5971
5971
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M22.552 6.908a.5.5 0 0 1 .896 0l5.02 10.17a.5.5 0 0 0 .376.274l11.224 1.631a.5.5 0 0 1 .277.853l-8.122 7.916a.5.5 0 0 0-.143.443l1.917 11.178a.5.5 0 0 1-.726.527l-10.038-5.278a.5.5 0 0 0-.466 0L12.73 39.9a.5.5 0 0 1-.726-.527l1.918-11.178a.5.5 0 0 0-.144-.443l-8.122-7.916a.5.5 0 0 1 .278-.853l11.223-1.63a.5.5 0 0 0 .376-.274z" }, null, -1)])], 16);
|
|
5972
5972
|
}
|
|
5973
|
-
var icon_star_default =
|
|
5973
|
+
var icon_star_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_star_vue_vue_type_script_lang_default, [["render", _sfc_render$221]]);
|
|
5974
5974
|
//#endregion
|
|
5975
5975
|
//#region components/icon/icon-star/index.ts
|
|
5976
5976
|
var IconStar = Object.assign(icon_star_default, { install: (app, options) => {
|
|
@@ -6057,7 +6057,7 @@ function _sfc_render$220(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6057
6057
|
style: _ctx.innerStyle
|
|
6058
6058
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M40 35v6H8v-6m1.108-4c1.29-8.868 13.917-15.85 29.392-15.998M30 6l9 9-9 9" }, null, -1)])], 16);
|
|
6059
6059
|
}
|
|
6060
|
-
var icon_share_internal_default =
|
|
6060
|
+
var icon_share_internal_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_share_internal_vue_vue_type_script_lang_default, [["render", _sfc_render$220]]);
|
|
6061
6061
|
//#endregion
|
|
6062
6062
|
//#region components/icon/icon-share-internal/index.ts
|
|
6063
6063
|
var IconShareInternal = Object.assign(icon_share_internal_default, { install: (app, options) => {
|
|
@@ -6147,7 +6147,7 @@ function _sfc_render$219(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6147
6147
|
d: "M18 20h-7a1 1 0 0 0-1 1v20a1 1 0 0 0 1 1h26a1 1 0 0 0 1-1V21a1 1 0 0 0-1-1h-7m2.368-5.636L24.004 6l-8.364 8.364M24.003 28V6.604"
|
|
6148
6148
|
}, null, -1)])], 16);
|
|
6149
6149
|
}
|
|
6150
|
-
var icon_share_external_default =
|
|
6150
|
+
var icon_share_external_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_share_external_vue_vue_type_script_lang_default, [["render", _sfc_render$219]]);
|
|
6151
6151
|
//#endregion
|
|
6152
6152
|
//#region components/icon/icon-share-external/index.ts
|
|
6153
6153
|
var IconShareExternal = Object.assign(icon_share_external_default, { install: (app, options) => {
|
|
@@ -6234,7 +6234,7 @@ function _sfc_render$218(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6234
6234
|
style: _ctx.innerStyle
|
|
6235
6235
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M32.442 21.552a4.5 4.5 0 1 1 .065 4.025m-.065-4.025-16.884-8.104m16.884 8.104A4.5 4.5 0 0 0 32 23.5c0 .75.183 1.455.507 2.077m-16.95-12.13a4.5 4.5 0 1 1-8.113-3.895 4.5 4.5 0 0 1 8.114 3.896Zm-.064 20.977A4.5 4.5 0 1 0 11.5 41c3.334-.001 5.503-3.68 3.993-6.578Zm0 0 17.014-8.847" }, null, -1)])], 16);
|
|
6236
6236
|
}
|
|
6237
|
-
var icon_share_alt_default =
|
|
6237
|
+
var icon_share_alt_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_share_alt_vue_vue_type_script_lang_default, [["render", _sfc_render$218]]);
|
|
6238
6238
|
//#endregion
|
|
6239
6239
|
//#region components/icon/icon-share-alt/index.ts
|
|
6240
6240
|
var IconShareAlt = Object.assign(icon_share_alt_default, { install: (app, options) => {
|
|
@@ -6321,7 +6321,7 @@ function _sfc_render$217(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6321
6321
|
style: _ctx.innerStyle
|
|
6322
6322
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M18.797 6.732A1 1 0 0 1 19.76 6h8.48a1 1 0 0 1 .964.732l1.285 4.628a1 1 0 0 0 1.213.7l4.651-1.2a1 1 0 0 1 1.116.468l4.24 7.344a1 1 0 0 1-.153 1.2L38.193 23.3a1 1 0 0 0 0 1.402l3.364 3.427a1 1 0 0 1 .153 1.2l-4.24 7.344a1 1 0 0 1-1.116.468l-4.65-1.2a1 1 0 0 0-1.214.7l-1.285 4.628a1 1 0 0 1-.964.732h-8.48a1 1 0 0 1-.963-.732L17.51 36.64a1 1 0 0 0-1.213-.7l-4.65 1.2a1 1 0 0 1-1.116-.468l-4.24-7.344a1 1 0 0 1 .153-1.2L9.809 24.7a1 1 0 0 0 0-1.402l-3.364-3.427a1 1 0 0 1-.153-1.2l4.24-7.344a1 1 0 0 1 1.116-.468l4.65 1.2a1 1 0 0 0 1.213-.7z" }, null, -1), createElementVNode("path", { d: "M30 24a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z" }, null, -1)])], 16);
|
|
6323
6323
|
}
|
|
6324
|
-
var icon_settings_default =
|
|
6324
|
+
var icon_settings_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_settings_vue_vue_type_script_lang_default, [["render", _sfc_render$217]]);
|
|
6325
6325
|
//#endregion
|
|
6326
6326
|
//#region components/icon/icon-settings/index.ts
|
|
6327
6327
|
var IconSettings = Object.assign(icon_settings_default, { install: (app, options) => {
|
|
@@ -6411,7 +6411,7 @@ function _sfc_render$216(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6411
6411
|
d: "m14 24-7-5V7l34 17L7 41V29zm0 0h25"
|
|
6412
6412
|
}, null, -1)])], 16);
|
|
6413
6413
|
}
|
|
6414
|
-
var icon_send_default =
|
|
6414
|
+
var icon_send_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_send_vue_vue_type_script_lang_default, [["render", _sfc_render$216]]);
|
|
6415
6415
|
//#endregion
|
|
6416
6416
|
//#region components/icon/icon-send/index.ts
|
|
6417
6417
|
var IconSend = Object.assign(icon_send_default, { install: (app, options) => {
|
|
@@ -6498,7 +6498,7 @@ function _sfc_render$215(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6498
6498
|
style: _ctx.innerStyle
|
|
6499
6499
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m17.314 7.243-7.071 7.07L6 10.072m11.314 10.172-7.071 7.07L6 23.072m11.314 10.172-7.071 7.07L6 36.072M21 11h22M21 25h22M21 39h22" }, null, -1)])], 16);
|
|
6500
6500
|
}
|
|
6501
|
-
var icon_select_all_default =
|
|
6501
|
+
var icon_select_all_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_select_all_vue_vue_type_script_lang_default, [["render", _sfc_render$215]]);
|
|
6502
6502
|
//#endregion
|
|
6503
6503
|
//#region components/icon/icon-select-all/index.ts
|
|
6504
6504
|
var IconSelectAll = Object.assign(icon_select_all_default, { install: (app, options) => {
|
|
@@ -6585,7 +6585,7 @@ function _sfc_render$214(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6585
6585
|
style: _ctx.innerStyle
|
|
6586
6586
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M33.072 33.071c6.248-6.248 6.248-16.379 0-22.627-6.249-6.249-16.38-6.249-22.628 0s-6.248 16.379 0 22.627 16.38 6.248 22.628 0Zm0 0 8.485 8.485" }, null, -1)])], 16);
|
|
6587
6587
|
}
|
|
6588
|
-
var icon_search_default =
|
|
6588
|
+
var icon_search_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_search_vue_vue_type_script_lang_default, [["render", _sfc_render$214]]);
|
|
6589
6589
|
//#endregion
|
|
6590
6590
|
//#region components/icon/icon-search/index.ts
|
|
6591
6591
|
var IconSearch = Object.assign(icon_search_default, { install: (app, options) => {
|
|
@@ -6672,7 +6672,7 @@ function _sfc_render$213(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6672
6672
|
style: _ctx.innerStyle
|
|
6673
6673
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M7 17V7h10m24 10V7H31m10 24v10H31M7 31v10h10M5 24h38" }, null, -1)])], 16);
|
|
6674
6674
|
}
|
|
6675
|
-
var icon_scan_default =
|
|
6675
|
+
var icon_scan_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_scan_vue_vue_type_script_lang_default, [["render", _sfc_render$213]]);
|
|
6676
6676
|
//#endregion
|
|
6677
6677
|
//#region components/icon/icon-scan/index.ts
|
|
6678
6678
|
var IconScan = Object.assign(icon_scan_default, { install: (app, options) => {
|
|
@@ -6759,7 +6759,7 @@ function _sfc_render$212(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6759
6759
|
style: _ctx.innerStyle
|
|
6760
6760
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M21 13v9m18 20H9a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h22.55a1 1 0 0 1 .748.336l7.45 8.38a1 1 0 0 1 .252.664V41a1 1 0 0 1-1 1ZM14 6h14v15a1 1 0 0 1-1 1H15a1 1 0 0 1-1-1z" }, null, -1)])], 16);
|
|
6761
6761
|
}
|
|
6762
|
-
var icon_save_default =
|
|
6762
|
+
var icon_save_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_save_vue_vue_type_script_lang_default, [["render", _sfc_render$212]]);
|
|
6763
6763
|
//#endregion
|
|
6764
6764
|
//#region components/icon/icon-save/index.ts
|
|
6765
6765
|
var IconSave = Object.assign(icon_save_default, { install: (app, options) => {
|
|
@@ -6846,7 +6846,7 @@ function _sfc_render$211(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6846
6846
|
style: _ctx.innerStyle
|
|
6847
6847
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m6.642 24.684 14.013 14.947a.2.2 0 0 0 .345-.137v-8.949A23 23 0 0 1 26 30c6.208 0 11.84 2.459 15.978 6.456a.01.01 0 0 0 .017-.007Q42 36.224 42 36c0-10.493-8.506-19-19-19q-1.013 0-2 .104V8.506a.2.2 0 0 0-.346-.137L6.642 23.316a1 1 0 0 0 0 1.368Z" }, null, -1)])], 16);
|
|
6848
6848
|
}
|
|
6849
|
-
var icon_reply_default =
|
|
6849
|
+
var icon_reply_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_reply_vue_vue_type_script_lang_default, [["render", _sfc_render$211]]);
|
|
6850
6850
|
//#endregion
|
|
6851
6851
|
//#region components/icon/icon-reply/index.ts
|
|
6852
6852
|
var IconReply = Object.assign(icon_reply_default, { install: (app, options) => {
|
|
@@ -6933,7 +6933,7 @@ function _sfc_render$210(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6933
6933
|
style: _ctx.innerStyle
|
|
6934
6934
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M38.837 18C36.463 12.136 30.715 8 24 8 15.163 8 8 15.163 8 24s7.163 16 16 16c7.455 0 13.72-5.1 15.496-12M40 8v10H30" }, null, -1)])], 16);
|
|
6935
6935
|
}
|
|
6936
|
-
var icon_refresh_default =
|
|
6936
|
+
var icon_refresh_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_refresh_vue_vue_type_script_lang_default, [["render", _sfc_render$210]]);
|
|
6937
6937
|
//#endregion
|
|
6938
6938
|
//#region components/icon/icon-refresh/index.ts
|
|
6939
6939
|
var IconRefresh = Object.assign(icon_refresh_default, { install: (app, options) => {
|
|
@@ -7020,7 +7020,7 @@ function _sfc_render$209(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7020
7020
|
style: _ctx.innerStyle
|
|
7021
7021
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M15.5 9.274C10.419 12.214 7 17.708 7 24c0 9.389 7.611 17 17 17s17-7.611 17-17c0-6.292-3.419-11.786-8.5-14.726M24 5v22" }, null, -1)])], 16);
|
|
7022
7022
|
}
|
|
7023
|
-
var icon_poweroff_default =
|
|
7023
|
+
var icon_poweroff_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_poweroff_vue_vue_type_script_lang_default, [["render", _sfc_render$209]]);
|
|
7024
7024
|
//#endregion
|
|
7025
7025
|
//#region components/icon/icon-poweroff/index.ts
|
|
7026
7026
|
var IconPoweroff = Object.assign(icon_poweroff_default, { install: (app, options) => {
|
|
@@ -7111,7 +7111,7 @@ function _sfc_render$208(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7111
7111
|
d: "M38 25v-2h2v2zM23 25v-2h2v2zM8 25v-2h2v2z"
|
|
7112
7112
|
}, null, -1), createElementVNode("path", { d: "M38 25v-2h2v2zM23 25v-2h2v2zM8 25v-2h2v2z" }, null, -1)])], 16);
|
|
7113
7113
|
}
|
|
7114
|
-
var icon_more_default =
|
|
7114
|
+
var icon_more_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_more_vue_vue_type_script_lang_default, [["render", _sfc_render$208]]);
|
|
7115
7115
|
//#endregion
|
|
7116
7116
|
//#region components/icon/icon-more/index.ts
|
|
7117
7117
|
var IconMore = Object.assign(icon_more_default, { install: (app, options) => {
|
|
@@ -7202,7 +7202,7 @@ function _sfc_render$207(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7202
7202
|
d: "M25 10h-2V8h2zM25 25h-2v-2h2zM25 40h-2v-2h2z"
|
|
7203
7203
|
}, null, -1), createElementVNode("path", { d: "M25 10h-2V8h2zM25 25h-2v-2h2zM25 40h-2v-2h2z" }, null, -1)])], 16);
|
|
7204
7204
|
}
|
|
7205
|
-
var icon_more_vertical_default =
|
|
7205
|
+
var icon_more_vertical_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_more_vertical_vue_vue_type_script_lang_default, [["render", _sfc_render$207]]);
|
|
7206
7206
|
//#endregion
|
|
7207
7207
|
//#region components/icon/icon-more-vertical/index.ts
|
|
7208
7208
|
var IconMoreVertical = Object.assign(icon_more_vertical_default, { install: (app, options) => {
|
|
@@ -7289,7 +7289,7 @@ function _sfc_render$206(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7289
7289
|
style: _ctx.innerStyle
|
|
7290
7290
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M15 20h18m-18 9h9M7 41h17.63C33.67 41 41 33.67 41 24.63V24c0-9.389-7.611-17-17-17S7 14.611 7 24z" }, null, -1)])], 16);
|
|
7291
7291
|
}
|
|
7292
|
-
var icon_message_default =
|
|
7292
|
+
var icon_message_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_message_vue_vue_type_script_lang_default, [["render", _sfc_render$206]]);
|
|
7293
7293
|
//#endregion
|
|
7294
7294
|
//#region components/icon/icon-message/index.ts
|
|
7295
7295
|
var IconMessage = Object.assign(icon_message_default, { install: (app, options) => {
|
|
@@ -7376,7 +7376,7 @@ function _sfc_render$205(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7376
7376
|
style: _ctx.innerStyle
|
|
7377
7377
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M40.527 20C38.727 12.541 32.01 7 24 7 14.611 7 7 14.611 7 24v17h14m19.364-.636a9 9 0 0 0-12.728-12.728m12.728 12.728a9 9 0 0 1-12.728-12.728m12.728 12.728L27.636 27.636M13 20h12m-12 9h6" }, null, -1)])], 16);
|
|
7378
7378
|
}
|
|
7379
|
-
var icon_message_banned_default =
|
|
7379
|
+
var icon_message_banned_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_message_banned_vue_vue_type_script_lang_default, [["render", _sfc_render$205]]);
|
|
7380
7380
|
//#endregion
|
|
7381
7381
|
//#region components/icon/icon-message-banned/index.ts
|
|
7382
7382
|
var IconMessageBanned = Object.assign(icon_message_banned_default, { install: (app, options) => {
|
|
@@ -7463,7 +7463,7 @@ function _sfc_render$204(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7463
7463
|
style: _ctx.innerStyle
|
|
7464
7464
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M13 24h30M5 12h4m4 24h30M13 12h30M5 24h4M5 36h4" }, null, -1)])], 16);
|
|
7465
7465
|
}
|
|
7466
|
-
var icon_list_default =
|
|
7466
|
+
var icon_list_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_list_vue_vue_type_script_lang_default, [["render", _sfc_render$204]]);
|
|
7467
7467
|
//#endregion
|
|
7468
7468
|
//#region components/icon/icon-list/index.ts
|
|
7469
7469
|
var IconList = Object.assign(icon_list_default, { install: (app, options) => {
|
|
@@ -7550,7 +7550,7 @@ function _sfc_render$203(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7550
7550
|
style: _ctx.innerStyle
|
|
7551
7551
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M41 26v14a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1h14M19.822 28.178 39.899 8.1M41 20V7H28" }, null, -1)])], 16);
|
|
7552
7552
|
}
|
|
7553
|
-
var icon_launch_default =
|
|
7553
|
+
var icon_launch_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_launch_vue_vue_type_script_lang_default, [["render", _sfc_render$203]]);
|
|
7554
7554
|
//#endregion
|
|
7555
7555
|
//#region components/icon/icon-launch/index.ts
|
|
7556
7556
|
var IconLaunch = Object.assign(icon_launch_default, { install: (app, options) => {
|
|
@@ -7637,7 +7637,7 @@ function _sfc_render$202(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7637
7637
|
style: _ctx.innerStyle
|
|
7638
7638
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m27.929 33.072-9.071-9.07 9.07-9.072M43 24H19m12 17H7V7h24" }, null, -1)])], 16);
|
|
7639
7639
|
}
|
|
7640
|
-
var icon_import_default =
|
|
7640
|
+
var icon_import_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_import_vue_vue_type_script_lang_default, [["render", _sfc_render$202]]);
|
|
7641
7641
|
//#endregion
|
|
7642
7642
|
//#region components/icon/icon-import/index.ts
|
|
7643
7643
|
var IconImport = Object.assign(icon_import_default, { install: (app, options) => {
|
|
@@ -7724,7 +7724,7 @@ function _sfc_render$201(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7724
7724
|
style: _ctx.innerStyle
|
|
7725
7725
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M7 17 24 7l17 10v24H7z" }, null, -1), createElementVNode("path", { d: "M20 28h8v13h-8z" }, null, -1)])], 16);
|
|
7726
7726
|
}
|
|
7727
|
-
var icon_home_default =
|
|
7727
|
+
var icon_home_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_home_vue_vue_type_script_lang_default, [["render", _sfc_render$201]]);
|
|
7728
7728
|
//#endregion
|
|
7729
7729
|
//#region components/icon/icon-home/index.ts
|
|
7730
7730
|
var IconHome = Object.assign(icon_home_default, { install: (app, options) => {
|
|
@@ -7811,7 +7811,7 @@ function _sfc_render$200(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7811
7811
|
style: _ctx.innerStyle
|
|
7812
7812
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M6 24c0-9.941 8.059-18 18-18s18 8.059 18 18-8.059 18-18 18c-6.26 0-11.775-3.197-15-8.047M6 24l-.5-.757h1zm26 2h-9v-9" }, null, -1)])], 16);
|
|
7813
7813
|
}
|
|
7814
|
-
var icon_history_default =
|
|
7814
|
+
var icon_history_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_history_vue_vue_type_script_lang_default, [["render", _sfc_render$200]]);
|
|
7815
7815
|
//#endregion
|
|
7816
7816
|
//#region components/icon/icon-history/index.ts
|
|
7817
7817
|
var IconHistory = Object.assign(icon_history_default, { install: (app, options) => {
|
|
@@ -7898,7 +7898,7 @@ function _sfc_render$199(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7898
7898
|
style: _ctx.innerStyle
|
|
7899
7899
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M38.083 12.912a9.93 9.93 0 0 1 .177 13.878l-.177.18L25.76 39.273c-.972.97-2.548.97-3.52 0L9.917 26.971l-.177-.181a9.93 9.93 0 0 1 .177-13.878c3.889-3.883 10.194-3.883 14.083 0 3.889-3.883 10.194-3.883 14.083 0Z" }, null, -1)])], 16);
|
|
7900
7900
|
}
|
|
7901
|
-
var icon_heart_default =
|
|
7901
|
+
var icon_heart_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_heart_vue_vue_type_script_lang_default, [["render", _sfc_render$199]]);
|
|
7902
7902
|
//#endregion
|
|
7903
7903
|
//#region components/icon/icon-heart/index.ts
|
|
7904
7904
|
var IconHeart = Object.assign(icon_heart_default, { install: (app, options) => {
|
|
@@ -7988,7 +7988,7 @@ function _sfc_render$198(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7988
7988
|
"clip-rule": "evenodd"
|
|
7989
7989
|
}, null, -1), createElementVNode("path", { d: "M29 24a5 5 0 1 1-10 0 5 5 0 0 1 10 0Z" }, null, -1)])], 16);
|
|
7990
7990
|
}
|
|
7991
|
-
var icon_eye_default =
|
|
7991
|
+
var icon_eye_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_eye_vue_vue_type_script_lang_default, [["render", _sfc_render$198]]);
|
|
7992
7992
|
//#endregion
|
|
7993
7993
|
//#region components/icon/icon-eye/index.ts
|
|
7994
7994
|
var IconEye = Object.assign(icon_eye_default, { install: (app, options) => {
|
|
@@ -8075,7 +8075,7 @@ function _sfc_render$197(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
8075
8075
|
style: _ctx.innerStyle
|
|
8076
8076
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M14 14.5c-2.69 2-5.415 5.33-8 9.5q8.06 13 18 13 4.987 0 9.5-3.271M17.464 12.5C19 11 21.749 11 24 11q9.94 0 18 13-2.649 4.272-5.5 7.14" }, null, -1), createElementVNode("path", { d: "M29 24a5 5 0 1 1-10 0 5 5 0 0 1 10 0ZM6.852 7.103l34.294 34.294" }, null, -1)])], 16);
|
|
8077
8077
|
}
|
|
8078
|
-
var icon_eye_invisible_default =
|
|
8078
|
+
var icon_eye_invisible_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_eye_invisible_vue_vue_type_script_lang_default, [["render", _sfc_render$197]]);
|
|
8079
8079
|
//#endregion
|
|
8080
8080
|
//#region components/icon/icon-eye-invisible/index.ts
|
|
8081
8081
|
var IconEyeInvisible = Object.assign(icon_eye_invisible_default, { install: (app, options) => {
|
|
@@ -8162,7 +8162,7 @@ function _sfc_render$196(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
8162
8162
|
style: _ctx.innerStyle
|
|
8163
8163
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m31.929 33.072 9.07-9.07-9.07-9.072M16.857 24h24M31 41H7V7h24" }, null, -1)])], 16);
|
|
8164
8164
|
}
|
|
8165
|
-
var icon_export_default =
|
|
8165
|
+
var icon_export_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_export_vue_vue_type_script_lang_default, [["render", _sfc_render$196]]);
|
|
8166
8166
|
//#endregion
|
|
8167
8167
|
//#region components/icon/icon-export/index.ts
|
|
8168
8168
|
var IconExport = Object.assign(icon_export_default, { install: (app, options) => {
|
|
@@ -8249,7 +8249,7 @@ function _sfc_render$195(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
8249
8249
|
style: _ctx.innerStyle
|
|
8250
8250
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m33.072 22.071-9.07 9.071-9.072-9.07M24 5v26m16 4v6H8v-6" }, null, -1)])], 16);
|
|
8251
8251
|
}
|
|
8252
|
-
var icon_download_default =
|
|
8252
|
+
var icon_download_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_download_vue_vue_type_script_lang_default, [["render", _sfc_render$195]]);
|
|
8253
8253
|
//#endregion
|
|
8254
8254
|
//#region components/icon/icon-download/index.ts
|
|
8255
8255
|
var IconDownload = Object.assign(icon_download_default, { install: (app, options) => {
|
|
@@ -8336,7 +8336,7 @@ function _sfc_render$194(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
8336
8336
|
style: _ctx.innerStyle
|
|
8337
8337
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M11 31V20c0-7.18 5.82-13 13-13s13 5.82 13 13v8c0 5.784-3.778 10.686-9 12.373m0 0A13 13 0 0 1 24 41h-3a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1zm0 0V41m9-20h3a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1h-3zm-26 0H8a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h3z" }, null, -1)])], 16);
|
|
8338
8338
|
}
|
|
8339
|
-
var icon_customer_service_default =
|
|
8339
|
+
var icon_customer_service_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_customer_service_vue_vue_type_script_lang_default, [["render", _sfc_render$194]]);
|
|
8340
8340
|
//#endregion
|
|
8341
8341
|
//#region components/icon/icon-customer-service/index.ts
|
|
8342
8342
|
var IconCustomerService = Object.assign(icon_customer_service_default, { install: (app, options) => {
|
|
@@ -8423,7 +8423,7 @@ function _sfc_render$193(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
8423
8423
|
style: _ctx.innerStyle
|
|
8424
8424
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M16.734 12.686 5.42 24l11.314 11.314m14.521-22.628L42.57 24 31.255 35.314M27.2 6.28l-6.251 35.453" }, null, -1)])], 16);
|
|
8425
8425
|
}
|
|
8426
|
-
var icon_code_default =
|
|
8426
|
+
var icon_code_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_code_vue_vue_type_script_lang_default, [["render", _sfc_render$193]]);
|
|
8427
8427
|
//#endregion
|
|
8428
8428
|
//#region components/icon/icon-code/index.ts
|
|
8429
8429
|
var IconCode = Object.assign(icon_code_default, { install: (app, options) => {
|
|
@@ -8510,7 +8510,7 @@ function _sfc_render$192(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
8510
8510
|
style: _ctx.innerStyle
|
|
8511
8511
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M23.071 17 16 24.071l7.071 7.071m9.001-14.624-4.14 15.455M9 42h30a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v34a1 1 0 0 0 1 1Z" }, null, -1)])], 16);
|
|
8512
8512
|
}
|
|
8513
|
-
var icon_code_square_default =
|
|
8513
|
+
var icon_code_square_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_code_square_vue_vue_type_script_lang_default, [["render", _sfc_render$192]]);
|
|
8514
8514
|
//#endregion
|
|
8515
8515
|
//#region components/icon/icon-code-square/index.ts
|
|
8516
8516
|
var IconCodeSquare = Object.assign(icon_code_square_default, { install: (app, options) => {
|
|
@@ -8597,7 +8597,7 @@ function _sfc_render$191(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
8597
8597
|
style: _ctx.innerStyle
|
|
8598
8598
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M19 6h-4a3 3 0 0 0-3 3v10c0 3-4.343 5-6 5 1.657 0 6 2 6 5v10a3 3 0 0 0 3 3h4M29 6h4a3 3 0 0 1 3 3v10c0 3 4.343 5 6 5-1.657 0-6 2-6 5v10a3 3 0 0 1-3 3h-4" }, null, -1)])], 16);
|
|
8599
8599
|
}
|
|
8600
|
-
var icon_code_block_default =
|
|
8600
|
+
var icon_code_block_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_code_block_vue_vue_type_script_lang_default, [["render", _sfc_render$191]]);
|
|
8601
8601
|
//#endregion
|
|
8602
8602
|
//#region components/icon/icon-code-block/index.ts
|
|
8603
8603
|
var IconCodeBlock = Object.assign(icon_code_block_default, { install: (app, options) => {
|
|
@@ -8684,7 +8684,7 @@ function _sfc_render$190(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
8684
8684
|
style: _ctx.innerStyle
|
|
8685
8685
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M43 22c0-7.732-6.492-14-14.5-14S14 14.268 14 22v.055A9.001 9.001 0 0 0 15 40h13m16.142-5.929-7.07 7.071L30 34.072M37.07 26v15" }, null, -1)])], 16);
|
|
8686
8686
|
}
|
|
8687
|
-
var icon_cloud_download_default =
|
|
8687
|
+
var icon_cloud_download_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_cloud_download_vue_vue_type_script_lang_default, [["render", _sfc_render$190]]);
|
|
8688
8688
|
//#endregion
|
|
8689
8689
|
//#region components/icon/icon-cloud-download/index.ts
|
|
8690
8690
|
var IconCloudDownload = Object.assign(icon_cloud_download_default, { install: (app, options) => {
|
|
@@ -8771,7 +8771,7 @@ function _sfc_render$189(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
8771
8771
|
style: _ctx.innerStyle
|
|
8772
8772
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M31 23a7 7 0 1 1-14 0 7 7 0 0 1 14 0Zm0 0c0 3.038 2.462 6.5 5.5 6.5A5.5 5.5 0 0 0 42 24c0-9.941-8.059-18-18-18S6 14.059 6 24s8.059 18 18 18c4.244 0 8.145-1.469 11.222-3.925" }, null, -1)])], 16);
|
|
8773
8773
|
}
|
|
8774
|
-
var icon_at_default =
|
|
8774
|
+
var icon_at_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_at_vue_vue_type_script_lang_default, [["render", _sfc_render$189]]);
|
|
8775
8775
|
//#endregion
|
|
8776
8776
|
//#region components/icon/icon-at/index.ts
|
|
8777
8777
|
var IconAt = Object.assign(icon_at_default, { install: (app, options) => {
|
|
@@ -8868,7 +8868,7 @@ function _sfc_render$188(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
8868
8868
|
d: "M27.1 4.463a2 2 0 0 0-2.83.364L15.036 17H12v26h23.576a2 2 0 0 0 1.89-1.346l5.697-19.346c.899-2.598-1.03-5.308-3.78-5.308h-10.57l2.422-5.448a4 4 0 0 0-1.184-4.77z"
|
|
8869
8869
|
}, null, -1)])], 16);
|
|
8870
8870
|
}
|
|
8871
|
-
var icon_thumb_up_fill_default =
|
|
8871
|
+
var icon_thumb_up_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_thumb_up_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$188]]);
|
|
8872
8872
|
//#endregion
|
|
8873
8873
|
//#region components/icon/icon-thumb-up-fill/index.ts
|
|
8874
8874
|
var IconThumbUpFill = Object.assign(icon_thumb_up_fill_default, { install: (app, options) => {
|
|
@@ -8965,7 +8965,7 @@ function _sfc_render$187(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
8965
8965
|
d: "M20.9 43.537a2 2 0 0 0 2.83-.364L32.964 31H36V5H12.424a2 2 0 0 0-1.89 1.346L4.838 25.692C3.938 28.29 5.868 31 8.618 31h10.568l-2.421 5.448a4 4 0 0 0 1.184 4.77z"
|
|
8966
8966
|
}, null, -1)])], 16);
|
|
8967
8967
|
}
|
|
8968
|
-
var icon_thumb_down_fill_default =
|
|
8968
|
+
var icon_thumb_down_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_thumb_down_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$187]]);
|
|
8969
8969
|
//#endregion
|
|
8970
8970
|
//#region components/icon/icon-thumb-down-fill/index.ts
|
|
8971
8971
|
var IconThumbDownFill = Object.assign(icon_thumb_down_fill_default, { install: (app, options) => {
|
|
@@ -9056,7 +9056,7 @@ function _sfc_render$186(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9056
9056
|
d: "M22.683 5.415c.568-1.043 2.065-1.043 2.634 0l5.507 10.098a1.5 1.5 0 0 0 1.04.756l11.306 2.117c1.168.219 1.63 1.642.814 2.505l-7.902 8.359a1.5 1.5 0 0 0-.397 1.223l1.48 11.407c.153 1.177-1.058 2.057-2.131 1.548l-10.391-4.933a1.5 1.5 0 0 0-1.287 0l-10.39 4.933c-1.073.51-2.284-.37-2.131-1.548l1.48-11.407a1.5 1.5 0 0 0-.398-1.223L4.015 20.89c-.816-.863-.353-2.286.814-2.505l11.306-2.117a1.5 1.5 0 0 0 1.04-.756z"
|
|
9057
9057
|
}, null, -1)])], 16);
|
|
9058
9058
|
}
|
|
9059
|
-
var icon_star_fill_default =
|
|
9059
|
+
var icon_star_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_star_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$186]]);
|
|
9060
9060
|
//#endregion
|
|
9061
9061
|
//#region components/icon/icon-star-fill/index.ts
|
|
9062
9062
|
var IconStarFill = Object.assign(icon_star_fill_default, { install: (app, options) => {
|
|
@@ -9147,7 +9147,7 @@ function _sfc_render$185(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9147
9147
|
d: "M24 10.542c4.35-4.523 11.405-4.815 15.756-.293 4.35 4.522 4.15 11.365.448 17.135C36.153 33.7 28 41.5 24 42c-4-.5-12.152-8.3-16.204-14.616-3.702-5.77-3.902-12.613.448-17.135S19.65 6.019 24 10.54"
|
|
9148
9148
|
}, null, -1)])], 16);
|
|
9149
9149
|
}
|
|
9150
|
-
var icon_heart_fill_default =
|
|
9150
|
+
var icon_heart_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_heart_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$185]]);
|
|
9151
9151
|
//#endregion
|
|
9152
9152
|
//#region components/icon/icon-heart-fill/index.ts
|
|
9153
9153
|
var IconHeartFill = Object.assign(icon_heart_fill_default, { install: (app, options) => {
|
|
@@ -9234,7 +9234,7 @@ function _sfc_render$184(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9234
9234
|
style: _ctx.innerStyle
|
|
9235
9235
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M32.607 32.607A14.95 14.95 0 0 0 37 22c0-8.284-6.716-15-15-15S7 13.716 7 22s6.716 15 15 15c4.142 0 7.892-1.679 10.607-4.393Zm0 0L41.5 41.5M29 22H15" }, null, -1)])], 16);
|
|
9236
9236
|
}
|
|
9237
|
-
var icon_zoom_out_default =
|
|
9237
|
+
var icon_zoom_out_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_zoom_out_vue_vue_type_script_lang_default, [["render", _sfc_render$184]]);
|
|
9238
9238
|
//#endregion
|
|
9239
9239
|
//#region components/icon/icon-zoom-out/index.ts
|
|
9240
9240
|
var IconZoomOut = Object.assign(icon_zoom_out_default, { install: (app, options) => {
|
|
@@ -9321,7 +9321,7 @@ function _sfc_render$183(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9321
9321
|
style: _ctx.innerStyle
|
|
9322
9322
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M32.607 32.607A14.95 14.95 0 0 0 37 22c0-8.284-6.716-15-15-15S7 13.716 7 22s6.716 15 15 15c4.142 0 7.892-1.679 10.607-4.393Zm0 0L41.5 41.5M29 22H15m7 7V15" }, null, -1)])], 16);
|
|
9323
9323
|
}
|
|
9324
|
-
var icon_zoom_in_default =
|
|
9324
|
+
var icon_zoom_in_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_zoom_in_vue_vue_type_script_lang_default, [["render", _sfc_render$183]]);
|
|
9325
9325
|
//#endregion
|
|
9326
9326
|
//#region components/icon/icon-zoom-in/index.ts
|
|
9327
9327
|
var IconZoomIn = Object.assign(icon_zoom_in_default, { install: (app, options) => {
|
|
@@ -9408,7 +9408,7 @@ function _sfc_render$182(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9408
9408
|
style: _ctx.innerStyle
|
|
9409
9409
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M13 24h30M5 11h4m4 26h30M13 11h30M5 24h4M5 37h4" }, null, -1)])], 16);
|
|
9410
9410
|
}
|
|
9411
|
-
var icon_unordered_list_default =
|
|
9411
|
+
var icon_unordered_list_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_unordered_list_vue_vue_type_script_lang_default, [["render", _sfc_render$182]]);
|
|
9412
9412
|
//#endregion
|
|
9413
9413
|
//#region components/icon/icon-unordered-list/index.ts
|
|
9414
9414
|
var IconUnorderedList = Object.assign(icon_unordered_list_default, { install: (app, options) => {
|
|
@@ -9495,7 +9495,7 @@ function _sfc_render$181(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9495
9495
|
style: _ctx.innerStyle
|
|
9496
9496
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m15.322 23.78-7.778-7.778 7.778-7.778M8.81 16H29.5C35.851 16 41 21.15 41 27.5 41 33.852 35.851 39 29.5 39H17" }, null, -1)])], 16);
|
|
9497
9497
|
}
|
|
9498
|
-
var icon_undo_default =
|
|
9498
|
+
var icon_undo_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_undo_vue_vue_type_script_lang_default, [["render", _sfc_render$181]]);
|
|
9499
9499
|
//#endregion
|
|
9500
9500
|
//#region components/icon/icon-undo/index.ts
|
|
9501
9501
|
var IconUndo = Object.assign(icon_undo_default, { install: (app, options) => {
|
|
@@ -9582,7 +9582,7 @@ function _sfc_render$180(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9582
9582
|
style: _ctx.innerStyle
|
|
9583
9583
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M13 5v17.5C13 27 15.5 33 24 33s11-5 11-10.5V5M9 41h30" }, null, -1)])], 16);
|
|
9584
9584
|
}
|
|
9585
|
-
var icon_underline_default =
|
|
9585
|
+
var icon_underline_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_underline_vue_vue_type_script_lang_default, [["render", _sfc_render$180]]);
|
|
9586
9586
|
//#endregion
|
|
9587
9587
|
//#region components/icon/icon-underline/index.ts
|
|
9588
9588
|
var IconUnderline = Object.assign(icon_underline_default, { install: (app, options) => {
|
|
@@ -9669,7 +9669,7 @@ function _sfc_render$179(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9669
9669
|
style: _ctx.innerStyle
|
|
9670
9670
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M13 32c0 5.246 5.149 9 11.5 9S36 36.746 36 31.5c0-1.708-.5-4.5-3.5-5.695m0 0H43m-10.5 0H5M34 14.5C34 10.358 29.523 7 24 7s-10 3.358-10 7.5c0 1.794 1.6 4.21 3 5.5" }, null, -1)])], 16);
|
|
9671
9671
|
}
|
|
9672
|
-
var icon_strikethrough_default =
|
|
9672
|
+
var icon_strikethrough_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_strikethrough_vue_vue_type_script_lang_default, [["render", _sfc_render$179]]);
|
|
9673
9673
|
//#endregion
|
|
9674
9674
|
//#region components/icon/icon-strikethrough/index.ts
|
|
9675
9675
|
var IconStrikethrough = Object.assign(icon_strikethrough_default, { install: (app, options) => {
|
|
@@ -9756,7 +9756,7 @@ function _sfc_render$178(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9756
9756
|
style: _ctx.innerStyle
|
|
9757
9757
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M43 9H5m0 30h14m15.5-15H5" }, null, -1)])], 16);
|
|
9758
9758
|
}
|
|
9759
|
-
var icon_sort_default =
|
|
9759
|
+
var icon_sort_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_sort_vue_vue_type_script_lang_default, [["render", _sfc_render$178]]);
|
|
9760
9760
|
//#endregion
|
|
9761
9761
|
//#region components/icon/icon-sort/index.ts
|
|
9762
9762
|
var IconSort = Object.assign(icon_sort_default, { install: (app, options) => {
|
|
@@ -9843,7 +9843,7 @@ function _sfc_render$177(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9843
9843
|
style: _ctx.innerStyle
|
|
9844
9844
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M25 27h10.4v.65L27 39.35V40h11m-21.999 2V7.24a.1.1 0 0 0-.17-.07L9 14m28 7L31.4 8h-.8L25 21" }, null, -1)])], 16);
|
|
9845
9845
|
}
|
|
9846
|
-
var icon_sort_descending_default =
|
|
9846
|
+
var icon_sort_descending_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_sort_descending_vue_vue_type_script_lang_default, [["render", _sfc_render$177]]);
|
|
9847
9847
|
//#endregion
|
|
9848
9848
|
//#region components/icon/icon-sort-descending/index.ts
|
|
9849
9849
|
var IconSortDescending = Object.assign(icon_sort_descending_default, { install: (app, options) => {
|
|
@@ -9930,7 +9930,7 @@ function _sfc_render$176(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9930
9930
|
style: _ctx.innerStyle
|
|
9931
9931
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M15 6v33.759a.1.1 0 0 1-.17.07L8 33m17-6h10.4v.65L27 39.35V40h11m-1-19L31.4 8h-.8L25 21" }, null, -1)])], 16);
|
|
9932
9932
|
}
|
|
9933
|
-
var icon_sort_ascending_default =
|
|
9933
|
+
var icon_sort_ascending_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_sort_ascending_vue_vue_type_script_lang_default, [["render", _sfc_render$176]]);
|
|
9934
9934
|
//#endregion
|
|
9935
9935
|
//#region components/icon/icon-sort-ascending/index.ts
|
|
9936
9936
|
var IconSortAscending = Object.assign(icon_sort_ascending_default, { install: (app, options) => {
|
|
@@ -10017,7 +10017,7 @@ function _sfc_render$175(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10017
10017
|
style: _ctx.innerStyle
|
|
10018
10018
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m40.293 7.707-23.05 23.05m0 0a6 6 0 1 0-8.485 8.485 6 6 0 0 0 8.485-8.485Zm13.514 0a6 6 0 1 0 8.485 8.485 6 6 0 0 0-8.485-8.485Zm0 0L7.707 7.707" }, null, -1)])], 16);
|
|
10019
10019
|
}
|
|
10020
|
-
var icon_scissor_default =
|
|
10020
|
+
var icon_scissor_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_scissor_vue_vue_type_script_lang_default, [["render", _sfc_render$175]]);
|
|
10021
10021
|
//#endregion
|
|
10022
10022
|
//#region components/icon/icon-scissor/index.ts
|
|
10023
10023
|
var IconScissor = Object.assign(icon_scissor_default, { install: (app, options) => {
|
|
@@ -10104,7 +10104,7 @@ function _sfc_render$174(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10104
10104
|
style: _ctx.innerStyle
|
|
10105
10105
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m32.678 23.78 7.778-7.778-7.778-7.778M39.19 16H18.5C12.149 16 7 21.15 7 27.5 7 33.852 12.149 39 18.5 39H31" }, null, -1)])], 16);
|
|
10106
10106
|
}
|
|
10107
|
-
var icon_redo_default =
|
|
10107
|
+
var icon_redo_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_redo_vue_vue_type_script_lang_default, [["render", _sfc_render$174]]);
|
|
10108
10108
|
//#endregion
|
|
10109
10109
|
//#region components/icon/icon-redo/index.ts
|
|
10110
10110
|
var IconRedo = Object.assign(icon_redo_default, { install: (app, options) => {
|
|
@@ -10195,7 +10195,7 @@ function _sfc_render$173(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10195
10195
|
d: "M18.08 33.093a6 6 0 0 1-12 0c-.212-3.593 2.686-6 6-6a6 6 0 0 1 6 6M39.08 33.093a6 6 0 0 1-12 0c-.212-3.593 2.686-6 6-6a6 6 0 0 1 6 6"
|
|
10196
10196
|
}, null, -1), createElementVNode("path", { d: "M6.08 33.093a6 6 0 1 0 6-6c-3.314 0-6.212 2.407-6 6Zm0 0c-.5-8.5 1-25.5 15-24m6 24a6 6 0 1 0 6-6c-3.314 0-6.212 2.407-6 6Zm0 0c-.5-8.5 1-25.5 15-24" }, null, -1)])], 16);
|
|
10197
10197
|
}
|
|
10198
|
-
var icon_quote_default =
|
|
10198
|
+
var icon_quote_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_quote_vue_vue_type_script_lang_default, [["render", _sfc_render$173]]);
|
|
10199
10199
|
//#endregion
|
|
10200
10200
|
//#region components/icon/icon-quote/index.ts
|
|
10201
10201
|
var IconQuote = Object.assign(icon_quote_default, { install: (app, options) => {
|
|
@@ -10296,7 +10296,7 @@ function _sfc_render$172(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10296
10296
|
createElementVNode("path", { d: "M24 6h.01v.01H24zM32 6h.01v.01H32zM40 6h.01v.01H40zM40 13h.01v.01H40zM40 21h.01v.01H40z" }, null, -1)
|
|
10297
10297
|
])], 16);
|
|
10298
10298
|
}
|
|
10299
|
-
var icon_paste_default =
|
|
10299
|
+
var icon_paste_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_paste_vue_vue_type_script_lang_default, [["render", _sfc_render$172]]);
|
|
10300
10300
|
//#endregion
|
|
10301
10301
|
//#region components/icon/icon-paste/index.ts
|
|
10302
10302
|
var IconPaste = Object.assign(icon_paste_default, { install: (app, options) => {
|
|
@@ -10391,7 +10391,7 @@ function _sfc_render$171(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10391
10391
|
createElementVNode("path", { d: "M24 17h1v1h-1zM24 30h1v1h-1z" }, null, -1)
|
|
10392
10392
|
])], 16);
|
|
10393
10393
|
}
|
|
10394
|
-
var icon_original_size_default =
|
|
10394
|
+
var icon_original_size_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_original_size_vue_vue_type_script_lang_default, [["render", _sfc_render$171]]);
|
|
10395
10395
|
//#endregion
|
|
10396
10396
|
//#region components/icon/icon-original-size/index.ts
|
|
10397
10397
|
var IconOriginalSize = Object.assign(icon_original_size_default, { install: (app, options) => {
|
|
@@ -10484,7 +10484,7 @@ function _sfc_render$170(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10484
10484
|
"clip-rule": "evenodd"
|
|
10485
10485
|
}, null, -1)])], 16);
|
|
10486
10486
|
}
|
|
10487
|
-
var icon_ordered_list_default =
|
|
10487
|
+
var icon_ordered_list_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_ordered_list_vue_vue_type_script_lang_default, [["render", _sfc_render$170]]);
|
|
10488
10488
|
//#endregion
|
|
10489
10489
|
//#region components/icon/icon-ordered-list/index.ts
|
|
10490
10490
|
var IconOrderedList = Object.assign(icon_ordered_list_default, { install: (app, options) => {
|
|
@@ -10571,7 +10571,7 @@ function _sfc_render$169(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10571
10571
|
style: _ctx.innerStyle
|
|
10572
10572
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M29.506 6.502 18.493 41.498" }, null, -1)])], 16);
|
|
10573
10573
|
}
|
|
10574
|
-
var icon_oblique_line_default =
|
|
10574
|
+
var icon_oblique_line_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_oblique_line_vue_vue_type_script_lang_default, [["render", _sfc_render$169]]);
|
|
10575
10575
|
//#endregion
|
|
10576
10576
|
//#region components/icon/icon-oblique-line/index.ts
|
|
10577
10577
|
var IconObliqueLine = Object.assign(icon_oblique_line_default, { install: (app, options) => {
|
|
@@ -10658,7 +10658,7 @@ function _sfc_render$168(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10658
10658
|
style: _ctx.innerStyle
|
|
10659
10659
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m14.1 25.414-4.95 4.95a6 6 0 0 0 8.486 8.485l8.485-8.485a6 6 0 0 0 0-8.485m7.779.707 4.95-4.95a6 6 0 1 0-8.486-8.485l-8.485 8.485a6 6 0 0 0 0 8.485" }, null, -1)])], 16);
|
|
10660
10660
|
}
|
|
10661
|
-
var icon_link_default =
|
|
10661
|
+
var icon_link_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_link_vue_vue_type_script_lang_default, [["render", _sfc_render$168]]);
|
|
10662
10662
|
//#endregion
|
|
10663
10663
|
//#region components/icon/icon-link/index.ts
|
|
10664
10664
|
var IconLink = Object.assign(icon_link_default, { install: (app, options) => {
|
|
@@ -10753,7 +10753,7 @@ function _sfc_render$167(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10753
10753
|
createElementVNode("path", { d: "M39 13h2l-2-3.5-2 3.5zm0 0v22m0 0h2l-2 3.5-2-3.5z" }, null, -1)
|
|
10754
10754
|
])], 16);
|
|
10755
10755
|
}
|
|
10756
|
-
var icon_line_height_default =
|
|
10756
|
+
var icon_line_height_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_line_height_vue_vue_type_script_lang_default, [["render", _sfc_render$167]]);
|
|
10757
10757
|
//#endregion
|
|
10758
10758
|
//#region components/icon/icon-line-height/index.ts
|
|
10759
10759
|
var IconLineHeight = Object.assign(icon_line_height_default, { install: (app, options) => {
|
|
@@ -10840,7 +10840,7 @@ function _sfc_render$166(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10840
10840
|
style: _ctx.innerStyle
|
|
10841
10841
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M18 8h9m8 0h-8m0 0-6 32m0 0h-8m8 0h9" }, null, -1)])], 16);
|
|
10842
10842
|
}
|
|
10843
|
-
var icon_italic_default =
|
|
10843
|
+
var icon_italic_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_italic_vue_vue_type_script_lang_default, [["render", _sfc_render$166]]);
|
|
10844
10844
|
//#endregion
|
|
10845
10845
|
//#region components/icon/icon-italic/index.ts
|
|
10846
10846
|
var IconItalic = Object.assign(icon_italic_default, { install: (app, options) => {
|
|
@@ -10927,7 +10927,7 @@ function _sfc_render$165(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10927
10927
|
style: _ctx.innerStyle
|
|
10928
10928
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M19 18V9.28a1 1 0 0 1 .758-.97l8-2A1 1 0 0 1 29 7.28V18m-10 0h-4a1 1 0 0 0-1 1v8h-4a1 1 0 0 0-1 1v15m10-25h10m0 0h4a1 1 0 0 1 1 1v8h4a1 1 0 0 1 1 1v15" }, null, -1)])], 16);
|
|
10929
10929
|
}
|
|
10930
|
-
var icon_highlight_default =
|
|
10930
|
+
var icon_highlight_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_highlight_vue_vue_type_script_lang_default, [["render", _sfc_render$165]]);
|
|
10931
10931
|
//#endregion
|
|
10932
10932
|
//#region components/icon/icon-highlight/index.ts
|
|
10933
10933
|
var IconHighlight = Object.assign(icon_highlight_default, { install: (app, options) => {
|
|
@@ -11014,7 +11014,7 @@ function _sfc_render$164(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11014
11014
|
style: _ctx.innerStyle
|
|
11015
11015
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M6 6v18m0 0v18m0-18h20m0 0V6m0 18v18m4-21h12v1l-4.4 16-1.1 3.5" }, null, -1)])], 16);
|
|
11016
11016
|
}
|
|
11017
|
-
var icon_h7_default =
|
|
11017
|
+
var icon_h7_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_h7_vue_vue_type_script_lang_default, [["render", _sfc_render$164]]);
|
|
11018
11018
|
//#endregion
|
|
11019
11019
|
//#region components/icon/icon-h7/index.ts
|
|
11020
11020
|
var IconH7 = Object.assign(icon_h7_default, { install: (app, options) => {
|
|
@@ -11101,7 +11101,7 @@ function _sfc_render$163(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11101
11101
|
style: _ctx.innerStyle
|
|
11102
11102
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M6 6v18m0 0v18m0-18h20m0 0V6m0 18v18M32 34.5c0 3.038 2.239 5.5 5 5.5s5-2.462 5-5.5-2.239-5.5-5-5.5-5 2.462-5 5.5Zm0 0v-5.73c0-4.444 3.867-7.677 8-7.263.437.044.736.08.952.115" }, null, -1)])], 16);
|
|
11103
11103
|
}
|
|
11104
|
-
var icon_h6_default =
|
|
11104
|
+
var icon_h6_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_h6_vue_vue_type_script_lang_default, [["render", _sfc_render$163]]);
|
|
11105
11105
|
//#endregion
|
|
11106
11106
|
//#region components/icon/icon-h6/index.ts
|
|
11107
11107
|
var IconH6 = Object.assign(icon_h6_default, { install: (app, options) => {
|
|
@@ -11188,7 +11188,7 @@ function _sfc_render$162(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11188
11188
|
style: _ctx.innerStyle
|
|
11189
11189
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M6 6v18m0 0v18m0-18h20m0 0V6m0 18v18M43 21H32.5v9h.5s1.5-1 4-1a5 5 0 0 1 5 5v1a5 5 0 0 1-5 5c-2.05 0-4.728-1.234-5.5-3" }, null, -1)])], 16);
|
|
11190
11190
|
}
|
|
11191
|
-
var icon_h5_default =
|
|
11191
|
+
var icon_h5_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_h5_vue_vue_type_script_lang_default, [["render", _sfc_render$162]]);
|
|
11192
11192
|
//#endregion
|
|
11193
11193
|
//#region components/icon/icon-h5/index.ts
|
|
11194
11194
|
var IconH5 = Object.assign(icon_h5_default, { install: (app, options) => {
|
|
@@ -11275,7 +11275,7 @@ function _sfc_render$161(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11275
11275
|
style: _ctx.innerStyle
|
|
11276
11276
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M6 6v18m0 0v18m0-18h20m0 0V6m0 18v18m14.5-6H31v-1l8-15h1.5zm0 0H44m-3.5 0v6" }, null, -1)])], 16);
|
|
11277
11277
|
}
|
|
11278
|
-
var icon_h4_default =
|
|
11278
|
+
var icon_h4_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_h4_vue_vue_type_script_lang_default, [["render", _sfc_render$161]]);
|
|
11279
11279
|
//#endregion
|
|
11280
11280
|
//#region components/icon/icon-h4/index.ts
|
|
11281
11281
|
var IconH4 = Object.assign(icon_h4_default, { install: (app, options) => {
|
|
@@ -11362,7 +11362,7 @@ function _sfc_render$160(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11362
11362
|
style: _ctx.innerStyle
|
|
11363
11363
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M6 6v18m0 0v18m0-18h20m0 0V6m0 18v18M37.001 30h-2m2 0a5 5 0 0 0 0-10h-.556a4.444 4.444 0 0 0-4.444 4.444m5 5.556a5 5 0 0 1 0 10h-.556a4.444 4.444 0 0 1-4.444-4.444" }, null, -1)])], 16);
|
|
11364
11364
|
}
|
|
11365
|
-
var icon_h3_default =
|
|
11365
|
+
var icon_h3_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_h3_vue_vue_type_script_lang_default, [["render", _sfc_render$160]]);
|
|
11366
11366
|
//#endregion
|
|
11367
11367
|
//#region components/icon/icon-h3/index.ts
|
|
11368
11368
|
var IconH3 = Object.assign(icon_h3_default, { install: (app, options) => {
|
|
@@ -11449,7 +11449,7 @@ function _sfc_render$159(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11449
11449
|
style: _ctx.innerStyle
|
|
11450
11450
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M6 6v18m0 0v18m0-18h20m0 0V6m0 18v18M44 40H32v-.5l7.5-9c.914-1.117 2.5-3 2.5-5 0-2.485-2.239-4.5-5-4.5s-5 2.515-5 5" }, null, -1)])], 16);
|
|
11451
11451
|
}
|
|
11452
|
-
var icon_h2_default =
|
|
11452
|
+
var icon_h2_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_h2_vue_vue_type_script_lang_default, [["render", _sfc_render$159]]);
|
|
11453
11453
|
//#endregion
|
|
11454
11454
|
//#region components/icon/icon-h2/index.ts
|
|
11455
11455
|
var IconH2 = Object.assign(icon_h2_default, { install: (app, options) => {
|
|
@@ -11536,7 +11536,7 @@ function _sfc_render$158(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11536
11536
|
style: _ctx.innerStyle
|
|
11537
11537
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M6 6v18m0 0v18m0-18h20m0 0V6m0 18v18M40 42V21h-1l-6 3" }, null, -1)])], 16);
|
|
11538
11538
|
}
|
|
11539
|
-
var icon_h1_default =
|
|
11539
|
+
var icon_h1_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_h1_vue_vue_type_script_lang_default, [["render", _sfc_render$158]]);
|
|
11540
11540
|
//#endregion
|
|
11541
11541
|
//#region components/icon/icon-h1/index.ts
|
|
11542
11542
|
var IconH1 = Object.assign(icon_h1_default, { install: (app, options) => {
|
|
@@ -11623,7 +11623,7 @@ function _sfc_render$157(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11623
11623
|
style: _ctx.innerStyle
|
|
11624
11624
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M40 8H10a1 1 0 0 0-1 1v.546a1 1 0 0 0 .341.753L24.17 23.273a1 1 0 0 1 .026 1.482l-.195.183L9.343 37.7a1 1 0 0 0-.343.754V39a1 1 0 0 0 1 1h30" }, null, -1)])], 16);
|
|
11625
11625
|
}
|
|
11626
|
-
var icon_formula_default =
|
|
11626
|
+
var icon_formula_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_formula_vue_vue_type_script_lang_default, [["render", _sfc_render$157]]);
|
|
11627
11627
|
//#endregion
|
|
11628
11628
|
//#region components/icon/icon-formula/index.ts
|
|
11629
11629
|
var IconFormula = Object.assign(icon_formula_default, { install: (app, options) => {
|
|
@@ -11710,7 +11710,7 @@ function _sfc_render$156(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11710
11710
|
style: _ctx.innerStyle
|
|
11711
11711
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M9 41h30M16.467 22 11.5 34m20.032-12L24.999 7h-2l-6.532 15zm0 0H16.467zm0 0L36.5 34z" }, null, -1)])], 16);
|
|
11712
11712
|
}
|
|
11713
|
-
var icon_font_colors_default =
|
|
11713
|
+
var icon_font_colors_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_font_colors_vue_vue_type_script_lang_default, [["render", _sfc_render$156]]);
|
|
11714
11714
|
//#endregion
|
|
11715
11715
|
//#region components/icon/icon-font-colors/index.ts
|
|
11716
11716
|
var IconFontColors = Object.assign(icon_font_colors_default, { install: (app, options) => {
|
|
@@ -11797,7 +11797,7 @@ function _sfc_render$155(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11797
11797
|
style: _ctx.innerStyle
|
|
11798
11798
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M42.354 40.854 36.01 34.51m0 0a9 9 0 0 1-15.364-6.364c0-5 4-9 9-9s9 4 9 9a8.97 8.97 0 0 1-2.636 6.364Zm5.636-26.365h-36m10 16h-10m10 16h-10" }, null, -1)])], 16);
|
|
11799
11799
|
}
|
|
11800
|
-
var icon_find_replace_default =
|
|
11800
|
+
var icon_find_replace_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_find_replace_vue_vue_type_script_lang_default, [["render", _sfc_render$155]]);
|
|
11801
11801
|
//#endregion
|
|
11802
11802
|
//#region components/icon/icon-find-replace/index.ts
|
|
11803
11803
|
var IconFindReplace = Object.assign(icon_find_replace_default, { install: (app, options) => {
|
|
@@ -11884,7 +11884,7 @@ function _sfc_render$154(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11884
11884
|
style: _ctx.innerStyle
|
|
11885
11885
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M30 42V22.549a1 1 0 0 1 .463-.844l10.074-6.41A1 1 0 0 0 41 14.45V8a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v6.451a1 1 0 0 0 .463.844l10.074 6.41a1 1 0 0 1 .463.844V37" }, null, -1)])], 16);
|
|
11886
11886
|
}
|
|
11887
|
-
var icon_filter_default =
|
|
11887
|
+
var icon_filter_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_filter_vue_vue_type_script_lang_default, [["render", _sfc_render$154]]);
|
|
11888
11888
|
//#endregion
|
|
11889
11889
|
//#region components/icon/icon-filter/index.ts
|
|
11890
11890
|
var IconFilter = Object.assign(icon_filter_default, { install: (app, options) => {
|
|
@@ -11971,7 +11971,7 @@ function _sfc_render$153(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11971
11971
|
style: _ctx.innerStyle
|
|
11972
11972
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M25.5 40.503 14.914 40.5a1 1 0 0 1-.707-.293l-9-9a1 1 0 0 1 0-1.414L13.5 21.5m12 19.003L44 40.5m-18.5.003L29 37M13.5 21.5 26.793 8.207a1 1 0 0 1 1.414 0l14.086 14.086a1 1 0 0 1 0 1.414L29 37M13.5 21.5 29 37" }, null, -1)])], 16);
|
|
11973
11973
|
}
|
|
11974
|
-
var icon_eraser_default =
|
|
11974
|
+
var icon_eraser_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_eraser_vue_vue_type_script_lang_default, [["render", _sfc_render$153]]);
|
|
11975
11975
|
//#endregion
|
|
11976
11976
|
//#region components/icon/icon-eraser/index.ts
|
|
11977
11977
|
var IconEraser = Object.assign(icon_eraser_default, { install: (app, options) => {
|
|
@@ -12058,7 +12058,7 @@ function _sfc_render$152(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12058
12058
|
style: _ctx.innerStyle
|
|
12059
12059
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m30.48 19.038 5.733-5.734a1 1 0 0 0 0-1.414l-5.586-5.586a1 1 0 0 0-1.414 0l-5.734 5.734m7 7L15.763 33.754a1 1 0 0 1-.59.286l-6.048.708a1 1 0 0 1-1.113-1.069l.477-6.31a1 1 0 0 1 .29-.631l14.7-14.7m7 7-7-7M6 42h36" }, null, -1)])], 16);
|
|
12060
12060
|
}
|
|
12061
|
-
var icon_edit_default =
|
|
12061
|
+
var icon_edit_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_edit_vue_vue_type_script_lang_default, [["render", _sfc_render$152]]);
|
|
12062
12062
|
//#endregion
|
|
12063
12063
|
//#region components/icon/icon-edit/index.ts
|
|
12064
12064
|
var IconEdit = Object.assign(icon_edit_default, { install: (app, options) => {
|
|
@@ -12145,7 +12145,7 @@ function _sfc_render$151(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12145
12145
|
style: _ctx.innerStyle
|
|
12146
12146
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M5 11h5.5m0 0v29a1 1 0 0 0 1 1h25a1 1 0 0 0 1-1V11m-27 0H16m21.5 0H43m-5.5 0H32m-16 0V7h16v4m-16 0h16M20 18v15m8-15v15" }, null, -1)])], 16);
|
|
12147
12147
|
}
|
|
12148
|
-
var icon_delete_default =
|
|
12148
|
+
var icon_delete_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_delete_vue_vue_type_script_lang_default, [["render", _sfc_render$151]]);
|
|
12149
12149
|
//#endregion
|
|
12150
12150
|
//#region components/icon/icon-delete/index.ts
|
|
12151
12151
|
var IconDelete = Object.assign(icon_delete_default, { install: (app, options) => {
|
|
@@ -12232,7 +12232,7 @@ function _sfc_render$150(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12232
12232
|
style: _ctx.innerStyle
|
|
12233
12233
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M20 6h18a2 2 0 0 1 2 2v22M8 16v24c0 1.105.891 2 1.996 2h20.007A1.99 1.99 0 0 0 32 40.008V15.997A1.997 1.997 0 0 0 30 14H10a2 2 0 0 0-2 2Z" }, null, -1)])], 16);
|
|
12234
12234
|
}
|
|
12235
|
-
var icon_copy_default =
|
|
12235
|
+
var icon_copy_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_copy_vue_vue_type_script_lang_default, [["render", _sfc_render$150]]);
|
|
12236
12236
|
//#endregion
|
|
12237
12237
|
//#region components/icon/icon-copy/index.ts
|
|
12238
12238
|
var IconCopy = Object.assign(icon_copy_default, { install: (app, options) => {
|
|
@@ -12319,7 +12319,7 @@ function _sfc_render$149(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12319
12319
|
style: _ctx.innerStyle
|
|
12320
12320
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M33 13h7a1 1 0 0 1 1 1v12.14a1 1 0 0 1-.85.99l-21.3 3.24a1 1 0 0 0-.85.99V43M33 8v10.002A1 1 0 0 1 32 19H8a1 1 0 0 1-1-1V8c0-.552.444-1 .997-1H32.01c.552 0 .99.447.99 1Z" }, null, -1)])], 16);
|
|
12321
12321
|
}
|
|
12322
|
-
var icon_brush_default =
|
|
12322
|
+
var icon_brush_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_brush_vue_vue_type_script_lang_default, [["render", _sfc_render$149]]);
|
|
12323
12323
|
//#endregion
|
|
12324
12324
|
//#region components/icon/icon-brush/index.ts
|
|
12325
12325
|
var IconBrush = Object.assign(icon_brush_default, { install: (app, options) => {
|
|
@@ -12406,7 +12406,7 @@ function _sfc_render$148(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12406
12406
|
style: _ctx.innerStyle
|
|
12407
12407
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M13 24h12a8 8 0 1 0 0-16H13.2a.2.2 0 0 0-.2.2zm0 0h16a8 8 0 1 1 0 16H13.2a.2.2 0 0 1-.2-.2z" }, null, -1)])], 16);
|
|
12408
12408
|
}
|
|
12409
|
-
var icon_bold_default =
|
|
12409
|
+
var icon_bold_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_bold_vue_vue_type_script_lang_default, [["render", _sfc_render$148]]);
|
|
12410
12410
|
//#endregion
|
|
12411
12411
|
//#region components/icon/icon-bold/index.ts
|
|
12412
12412
|
var IconBold = Object.assign(icon_bold_default, { install: (app, options) => {
|
|
@@ -12507,7 +12507,7 @@ function _sfc_render$147(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12507
12507
|
}, null, -1)
|
|
12508
12508
|
])], 16);
|
|
12509
12509
|
}
|
|
12510
|
-
var icon_bg_colors_default =
|
|
12510
|
+
var icon_bg_colors_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_bg_colors_vue_vue_type_script_lang_default, [["render", _sfc_render$147]]);
|
|
12511
12511
|
//#endregion
|
|
12512
12512
|
//#region components/icon/icon-bg-colors/index.ts
|
|
12513
12513
|
var IconBgColors = Object.assign(icon_bg_colors_default, { install: (app, options) => {
|
|
@@ -12594,7 +12594,7 @@ function _sfc_render$146(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12594
12594
|
style: _ctx.innerStyle
|
|
12595
12595
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M29.037 15.236s-9.174 9.267-11.48 11.594c-2.305 2.327-1.646 4.987-.329 6.316 1.317 1.33 3.994 1.953 6.258-.332L37.32 18.851c3.623-3.657 2.092-8.492 0-10.639s-6.916-3.657-10.54 0L11.3 23.838c-3.623 3.657-3.953 10.638.329 14.96s11.115 4.105 14.821.333 8.74-8.822 11.224-11.33" }, null, -1)])], 16);
|
|
12596
12596
|
}
|
|
12597
|
-
var icon_attachment_default =
|
|
12597
|
+
var icon_attachment_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_attachment_vue_vue_type_script_lang_default, [["render", _sfc_render$146]]);
|
|
12598
12598
|
//#endregion
|
|
12599
12599
|
//#region components/icon/icon-attachment/index.ts
|
|
12600
12600
|
var IconAttachment = Object.assign(icon_attachment_default, { install: (app, options) => {
|
|
@@ -12681,7 +12681,7 @@ function _sfc_render$145(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12681
12681
|
style: _ctx.innerStyle
|
|
12682
12682
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M4 9h40M8 29h36M23 19h21M23 39h21" }, null, -1)])], 16);
|
|
12683
12683
|
}
|
|
12684
|
-
var icon_align_right_default =
|
|
12684
|
+
var icon_align_right_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_align_right_vue_vue_type_script_lang_default, [["render", _sfc_render$145]]);
|
|
12685
12685
|
//#endregion
|
|
12686
12686
|
//#region components/icon/icon-align-right/index.ts
|
|
12687
12687
|
var IconAlignRight = Object.assign(icon_align_right_default, { install: (app, options) => {
|
|
@@ -12768,7 +12768,7 @@ function _sfc_render$144(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12768
12768
|
style: _ctx.innerStyle
|
|
12769
12769
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M44 9H4m36 20H4m21-10H4m21 20H4" }, null, -1)])], 16);
|
|
12770
12770
|
}
|
|
12771
|
-
var icon_align_left_default =
|
|
12771
|
+
var icon_align_left_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_align_left_vue_vue_type_script_lang_default, [["render", _sfc_render$144]]);
|
|
12772
12772
|
//#endregion
|
|
12773
12773
|
//#region components/icon/icon-align-left/index.ts
|
|
12774
12774
|
var IconAlignLeft = Object.assign(icon_align_left_default, { install: (app, options) => {
|
|
@@ -12855,7 +12855,7 @@ function _sfc_render$143(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12855
12855
|
style: _ctx.innerStyle
|
|
12856
12856
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M44 9H4m38 20H6m28-10H14m20 20H14" }, null, -1)])], 16);
|
|
12857
12857
|
}
|
|
12858
|
-
var icon_align_center_default =
|
|
12858
|
+
var icon_align_center_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_align_center_vue_vue_type_script_lang_default, [["render", _sfc_render$143]]);
|
|
12859
12859
|
//#endregion
|
|
12860
12860
|
//#region components/icon/icon-align-center/index.ts
|
|
12861
12861
|
var IconAlignCenter = Object.assign(icon_align_center_default, { install: (app, options) => {
|
|
@@ -12942,7 +12942,7 @@ function _sfc_render$142(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12942
12942
|
style: _ctx.innerStyle
|
|
12943
12943
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m14 16 10-9v34l-10-9H6V16z" }, null, -1), createElementVNode("path", { d: "M31.071 16.929c3.906 3.905 3.906 10.237 0 14.142M36.728 11.272c7.029 7.03 7.029 18.426 0 25.456" }, null, -1)])], 16);
|
|
12944
12944
|
}
|
|
12945
|
-
var icon_sound_default =
|
|
12945
|
+
var icon_sound_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_sound_vue_vue_type_script_lang_default, [["render", _sfc_render$142]]);
|
|
12946
12946
|
//#endregion
|
|
12947
12947
|
//#region components/icon/icon-sound/index.ts
|
|
12948
12948
|
var IconSound = Object.assign(icon_sound_default, { install: (app, options) => {
|
|
@@ -13029,7 +13029,7 @@ function _sfc_render$141(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
13029
13029
|
style: _ctx.innerStyle
|
|
13030
13030
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m14 24 24 16V8z" }, null, -1), createElementVNode("path", { d: "M10 6v36" }, null, -1)])], 16);
|
|
13031
13031
|
}
|
|
13032
|
-
var icon_skip_previous_default =
|
|
13032
|
+
var icon_skip_previous_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_skip_previous_vue_vue_type_script_lang_default, [["render", _sfc_render$141]]);
|
|
13033
13033
|
//#endregion
|
|
13034
13034
|
//#region components/icon/icon-skip-previous/index.ts
|
|
13035
13035
|
var IconSkipPrevious = Object.assign(icon_skip_previous_default, { install: (app, options) => {
|
|
@@ -13116,7 +13116,7 @@ function _sfc_render$140(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
13116
13116
|
style: _ctx.innerStyle
|
|
13117
13117
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M34 24 10 40V8z" }, null, -1), createElementVNode("path", { d: "M38 6v36" }, null, -1)])], 16);
|
|
13118
13118
|
}
|
|
13119
|
-
var icon_skip_next_default =
|
|
13119
|
+
var icon_skip_next_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_skip_next_vue_vue_type_script_lang_default, [["render", _sfc_render$140]]);
|
|
13120
13120
|
//#endregion
|
|
13121
13121
|
//#region components/icon/icon-skip-next/index.ts
|
|
13122
13122
|
var IconSkipNext = Object.assign(icon_skip_next_default, { install: (app, options) => {
|
|
@@ -13214,7 +13214,7 @@ function _sfc_render$139(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
13214
13214
|
createElementVNode("path", { d: "M30 24a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z" }, null, -1)
|
|
13215
13215
|
])], 16);
|
|
13216
13216
|
}
|
|
13217
|
-
var icon_record_default =
|
|
13217
|
+
var icon_record_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_record_vue_vue_type_script_lang_default, [["render", _sfc_render$139]]);
|
|
13218
13218
|
//#endregion
|
|
13219
13219
|
//#region components/icon/icon-record/index.ts
|
|
13220
13220
|
var IconRecord = Object.assign(icon_record_default, { install: (app, options) => {
|
|
@@ -13312,7 +13312,7 @@ function _sfc_render$138(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
13312
13312
|
createElementVNode("path", { d: "M19 20a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-8a1 1 0 0 1-1-1z" }, null, -1)
|
|
13313
13313
|
])], 16);
|
|
13314
13314
|
}
|
|
13315
|
-
var icon_record_stop_default =
|
|
13315
|
+
var icon_record_stop_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_record_stop_vue_vue_type_script_lang_default, [["render", _sfc_render$138]]);
|
|
13316
13316
|
//#endregion
|
|
13317
13317
|
//#region components/icon/icon-record-stop/index.ts
|
|
13318
13318
|
var IconRecordStop = Object.assign(icon_record_stop_default, { install: (app, options) => {
|
|
@@ -13399,7 +13399,7 @@ function _sfc_render$137(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
13399
13399
|
style: _ctx.innerStyle
|
|
13400
13400
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M24 42c9.941 0 18-8.059 18-18S33.941 6 24 6 6 14.059 6 24s8.059 18 18 18Z" }, null, -1), createElementVNode("path", { d: "M19 17v14l12-7z" }, null, -1)])], 16);
|
|
13401
13401
|
}
|
|
13402
|
-
var icon_play_circle_default =
|
|
13402
|
+
var icon_play_circle_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_play_circle_vue_vue_type_script_lang_default, [["render", _sfc_render$137]]);
|
|
13403
13403
|
//#endregion
|
|
13404
13404
|
//#region components/icon/icon-play-circle/index.ts
|
|
13405
13405
|
var IconPlayCircle = Object.assign(icon_play_circle_default, { install: (app, options) => {
|
|
@@ -13486,7 +13486,7 @@ function _sfc_render$136(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
13486
13486
|
style: _ctx.innerStyle
|
|
13487
13487
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M12.533 7.965A1 1 0 0 0 11 8.81v30.377a1 1 0 0 0 1.533.846L36.656 24.84a1 1 0 0 0 0-1.692z" }, null, -1)])], 16);
|
|
13488
13488
|
}
|
|
13489
|
-
var icon_play_arrow_default =
|
|
13489
|
+
var icon_play_arrow_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_play_arrow_vue_vue_type_script_lang_default, [["render", _sfc_render$136]]);
|
|
13490
13490
|
//#endregion
|
|
13491
13491
|
//#region components/icon/icon-play-arrow/index.ts
|
|
13492
13492
|
var IconPlayArrow = Object.assign(icon_play_arrow_default, { install: (app, options) => {
|
|
@@ -13577,7 +13577,7 @@ function _sfc_render$135(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
13577
13577
|
d: "M14 12h4v24h-4zM30 12h4v24h-4z"
|
|
13578
13578
|
}, null, -1)])], 16);
|
|
13579
13579
|
}
|
|
13580
|
-
var icon_pause_default =
|
|
13580
|
+
var icon_pause_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_pause_vue_vue_type_script_lang_default, [["render", _sfc_render$135]]);
|
|
13581
13581
|
//#endregion
|
|
13582
13582
|
//#region components/icon/icon-pause/index.ts
|
|
13583
13583
|
var IconPause = Object.assign(icon_pause_default, { install: (app, options) => {
|
|
@@ -13664,7 +13664,7 @@ function _sfc_render$134(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
13664
13664
|
style: _ctx.innerStyle
|
|
13665
13665
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M42 24c0 9.941-8.059 18-18 18S6 33.941 6 24 14.059 6 24 6s18 8.059 18 18Z" }, null, -1), createElementVNode("path", { d: "M19 19v10h1V19zM28 19v10h1V19z" }, null, -1)])], 16);
|
|
13666
13666
|
}
|
|
13667
|
-
var icon_pause_circle_default =
|
|
13667
|
+
var icon_pause_circle_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_pause_circle_vue_vue_type_script_lang_default, [["render", _sfc_render$134]]);
|
|
13668
13668
|
//#endregion
|
|
13669
13669
|
//#region components/icon/icon-pause-circle/index.ts
|
|
13670
13670
|
var IconPauseCircle = Object.assign(icon_pause_circle_default, { install: (app, options) => {
|
|
@@ -13751,7 +13751,7 @@ function _sfc_render$133(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
13751
13751
|
style: _ctx.innerStyle
|
|
13752
13752
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m19 11.5 4.833-4.35a.1.1 0 0 1 .167.075V17m-14-1H7.1a.1.1 0 0 0-.1.1v15.8a.1.1 0 0 0 .1.1H14l9.833 8.85a.1.1 0 0 0 .167-.075V31m6.071-14.071C32.535 19.393 34 23 32.799 26m2.929-14.728C41.508 17.052 42.5 25 39.123 32M6.5 6.5l35 35" }, null, -1)])], 16);
|
|
13753
13753
|
}
|
|
13754
|
-
var icon_mute_default =
|
|
13754
|
+
var icon_mute_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_mute_vue_vue_type_script_lang_default, [["render", _sfc_render$133]]);
|
|
13755
13755
|
//#endregion
|
|
13756
13756
|
//#region components/icon/icon-mute/index.ts
|
|
13757
13757
|
var IconMute = Object.assign(icon_mute_default, { install: (app, options) => {
|
|
@@ -13838,7 +13838,7 @@ function _sfc_render$132(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
13838
13838
|
style: _ctx.innerStyle
|
|
13839
13839
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M15 37a4 4 0 1 0-8 0 4 4 0 0 0 8 0Zm0 0V18.5M41 37a4 4 0 1 0-8 0 4 4 0 0 0 8 0Zm0 0V16.5m-26 2V9.926a1 1 0 0 1 .923-.997l24-1.846A1 1 0 0 1 41 8.08v8.42m-26 2 26-2" }, null, -1)])], 16);
|
|
13840
13840
|
}
|
|
13841
|
-
var icon_music_default =
|
|
13841
|
+
var icon_music_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_music_vue_vue_type_script_lang_default, [["render", _sfc_render$132]]);
|
|
13842
13842
|
//#endregion
|
|
13843
13843
|
//#region components/icon/icon-music/index.ts
|
|
13844
13844
|
var IconMusic = Object.assign(icon_music_default, { install: (app, options) => {
|
|
@@ -13925,7 +13925,7 @@ function _sfc_render$131(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
13925
13925
|
style: _ctx.innerStyle
|
|
13926
13926
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M29 16h12a1 1 0 0 1 1 1v22a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V17a1 1 0 0 1 1-1h12m10 0 8-9m-8 9H19m0 0-8-9m17.281 21.88-6.195 4.475a1 1 0 0 1-1.586-.81v-8.262a1 1 0 0 1 1.521-.853l6.196 3.786a1 1 0 0 1 .064 1.664Z" }, null, -1)])], 16);
|
|
13927
13927
|
}
|
|
13928
|
-
var icon_live_broadcast_default =
|
|
13928
|
+
var icon_live_broadcast_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_live_broadcast_vue_vue_type_script_lang_default, [["render", _sfc_render$131]]);
|
|
13929
13929
|
//#endregion
|
|
13930
13930
|
//#region components/icon/icon-live-broadcast/index.ts
|
|
13931
13931
|
var IconLiveBroadcast = Object.assign(icon_live_broadcast_default, { install: (app, options) => {
|
|
@@ -14012,7 +14012,7 @@ function _sfc_render$130(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
14012
14012
|
style: _ctx.innerStyle
|
|
14013
14013
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M42 17V9a1 1 0 0 0-1-1h-8M6 17V9a1 1 0 0 1 1-1h8m27 23v8a1 1 0 0 1-1 1h-8M6 31v8a1 1 0 0 0 1 1h8" }, null, -1)])], 16);
|
|
14014
14014
|
}
|
|
14015
|
-
var icon_fullscreen_default =
|
|
14015
|
+
var icon_fullscreen_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_fullscreen_vue_vue_type_script_lang_default, [["render", _sfc_render$130]]);
|
|
14016
14016
|
//#endregion
|
|
14017
14017
|
//#region components/icon/icon-fullscreen/index.ts
|
|
14018
14018
|
var IconFullscreen = Object.assign(icon_fullscreen_default, { install: (app, options) => {
|
|
@@ -14099,7 +14099,7 @@ function _sfc_render$129(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
14099
14099
|
style: _ctx.innerStyle
|
|
14100
14100
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M35 6v8a1 1 0 0 0 1 1h8M13 6v8a1 1 0 0 1-1 1H4m31 27v-8a1 1 0 0 1 1-1h8m-31 9v-8a1 1 0 0 0-1-1H4" }, null, -1)])], 16);
|
|
14101
14101
|
}
|
|
14102
|
-
var icon_fullscreen_exit_default =
|
|
14102
|
+
var icon_fullscreen_exit_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_fullscreen_exit_vue_vue_type_script_lang_default, [["render", _sfc_render$129]]);
|
|
14103
14103
|
//#endregion
|
|
14104
14104
|
//#region components/icon/icon-fullscreen-exit/index.ts
|
|
14105
14105
|
var IconFullscreenExit = Object.assign(icon_fullscreen_exit_default, { install: (app, options) => {
|
|
@@ -14186,7 +14186,7 @@ function _sfc_render$128(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
14186
14186
|
style: _ctx.innerStyle
|
|
14187
14187
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m9.707 11.707 11.586 11.586a1 1 0 0 1 0 1.414L9.707 36.293c-.63.63-1.707.184-1.707-.707V12.414c0-.89 1.077-1.337 1.707-.707ZM27 35.586V12.414c0-.89 1.077-1.337 1.707-.707l11.586 11.586a1 1 0 0 1 0 1.414L28.707 36.293c-.63.63-1.707.184-1.707-.707Z" }, null, -1)])], 16);
|
|
14188
14188
|
}
|
|
14189
|
-
var icon_forward_default =
|
|
14189
|
+
var icon_forward_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_forward_vue_vue_type_script_lang_default, [["render", _sfc_render$128]]);
|
|
14190
14190
|
//#endregion
|
|
14191
14191
|
//#region components/icon/icon-forward/index.ts
|
|
14192
14192
|
var IconForward = Object.assign(icon_forward_default, { install: (app, options) => {
|
|
@@ -14273,7 +14273,7 @@ function _sfc_render$127(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
14273
14273
|
style: _ctx.innerStyle
|
|
14274
14274
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M38.293 36.293 26.707 24.707a1 1 0 0 1 0-1.414l11.586-11.586c.63-.63 1.707-.184 1.707.707v23.172c0 .89-1.077 1.337-1.707.707ZM21 12.414v23.172c0 .89-1.077 1.337-1.707.707L7.707 24.707a1 1 0 0 1 0-1.414l11.586-11.586c.63-.63 1.707-.184 1.707.707Z" }, null, -1)])], 16);
|
|
14275
14275
|
}
|
|
14276
|
-
var icon_backward_default =
|
|
14276
|
+
var icon_backward_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_backward_vue_vue_type_script_lang_default, [["render", _sfc_render$127]]);
|
|
14277
14277
|
//#endregion
|
|
14278
14278
|
//#region components/icon/icon-backward/index.ts
|
|
14279
14279
|
var IconBackward = Object.assign(icon_backward_default, { install: (app, options) => {
|
|
@@ -14376,7 +14376,7 @@ function _sfc_render$126(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
14376
14376
|
}, null, -1)
|
|
14377
14377
|
])], 16);
|
|
14378
14378
|
}
|
|
14379
|
-
var icon_sound_fill_default =
|
|
14379
|
+
var icon_sound_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_sound_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$126]]);
|
|
14380
14380
|
//#endregion
|
|
14381
14381
|
//#region components/icon/icon-sound-fill/index.ts
|
|
14382
14382
|
var IconSoundFill = Object.assign(icon_sound_fill_default, { install: (app, options) => {
|
|
@@ -14473,7 +14473,7 @@ function _sfc_render$125(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
14473
14473
|
"clip-rule": "evenodd"
|
|
14474
14474
|
}, null, -1)])], 16);
|
|
14475
14475
|
}
|
|
14476
|
-
var icon_skip_previous_fill_default =
|
|
14476
|
+
var icon_skip_previous_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_skip_previous_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$125]]);
|
|
14477
14477
|
//#endregion
|
|
14478
14478
|
//#region components/icon/icon-skip-previous-fill/index.ts
|
|
14479
14479
|
var IconSkipPreviousFill = Object.assign(icon_skip_previous_fill_default, { install: (app, options) => {
|
|
@@ -14570,7 +14570,7 @@ function _sfc_render$124(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
14570
14570
|
"clip-rule": "evenodd"
|
|
14571
14571
|
}, null, -1)])], 16);
|
|
14572
14572
|
}
|
|
14573
|
-
var icon_skip_next_fill_default =
|
|
14573
|
+
var icon_skip_next_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_skip_next_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$124]]);
|
|
14574
14574
|
//#endregion
|
|
14575
14575
|
//#region components/icon/icon-skip-next-fill/index.ts
|
|
14576
14576
|
var IconSkipNextFill = Object.assign(icon_skip_next_fill_default, { install: (app, options) => {
|
|
@@ -14663,7 +14663,7 @@ function _sfc_render$123(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
14663
14663
|
"clip-rule": "evenodd"
|
|
14664
14664
|
}, null, -1)])], 16);
|
|
14665
14665
|
}
|
|
14666
|
-
var icon_play_circle_fill_default =
|
|
14666
|
+
var icon_play_circle_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_play_circle_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$123]]);
|
|
14667
14667
|
//#endregion
|
|
14668
14668
|
//#region components/icon/icon-play-circle-fill/index.ts
|
|
14669
14669
|
var IconPlayCircleFill = Object.assign(icon_play_circle_fill_default, { install: (app, options) => {
|
|
@@ -14754,7 +14754,7 @@ function _sfc_render$122(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
14754
14754
|
d: "M17.533 10.974a1 1 0 0 0-1.537.844v24.356a1 1 0 0 0 1.537.844L36.67 24.84a1 1 0 0 0 0-1.688z"
|
|
14755
14755
|
}, null, -1)])], 16);
|
|
14756
14756
|
}
|
|
14757
|
-
var icon_play_arrow_fill_default =
|
|
14757
|
+
var icon_play_arrow_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_play_arrow_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$122]]);
|
|
14758
14758
|
//#endregion
|
|
14759
14759
|
//#region components/icon/icon-play-arrow-fill/index.ts
|
|
14760
14760
|
var IconPlayArrowFill = Object.assign(icon_play_arrow_fill_default, { install: (app, options) => {
|
|
@@ -14847,7 +14847,7 @@ function _sfc_render$121(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
14847
14847
|
"clip-rule": "evenodd"
|
|
14848
14848
|
}, null, -1)])], 16);
|
|
14849
14849
|
}
|
|
14850
|
-
var icon_pause_circle_fill_default =
|
|
14850
|
+
var icon_pause_circle_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_pause_circle_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$121]]);
|
|
14851
14851
|
//#endregion
|
|
14852
14852
|
//#region components/icon/icon-pause-circle-fill/index.ts
|
|
14853
14853
|
var IconPauseCircleFill = Object.assign(icon_pause_circle_fill_default, { install: (app, options) => {
|
|
@@ -14944,7 +14944,7 @@ function _sfc_render$120(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
14944
14944
|
"clip-rule": "evenodd"
|
|
14945
14945
|
}, null, -1)])], 16);
|
|
14946
14946
|
}
|
|
14947
|
-
var icon_mute_fill_default =
|
|
14947
|
+
var icon_mute_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_mute_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$120]]);
|
|
14948
14948
|
//#endregion
|
|
14949
14949
|
//#region components/icon/icon-mute-fill/index.ts
|
|
14950
14950
|
var IconMuteFill = Object.assign(icon_mute_fill_default, { install: (app, options) => {
|
|
@@ -15035,7 +15035,7 @@ function _sfc_render$119(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
15035
15035
|
d: "M31.82 5.6c-1.445.635-1.776 2.144-.727 3.192.515.516.993.608 3.11.608 2.952 0 4.94.781 6.448 2.53 1.84 2.079 2.052 2.714 2.052 6.513 0 3.377 0 3.441.782 3.892 1.812 1.021 3.017-.24 3.44-3.616.544-4.397-2.078-9.531-6.025-11.877-2.595-1.509-7.029-2.116-9.08-1.242m-14.831 5.612c-3.376 1.205-6.633 3.524-10.13 7.268-8.288 8.804-7.746 17.186 1.39 21.648 9.494 4.636 22.282 3.1 29.247-3.533 5.216-4.94 4.581-11.16-1.353-13.267-1.058-.358-1.389-.634-1.232-.966.542-1.324.726-2.86.423-3.772-.939-2.86-4.343-3.523-9.403-1.812l-2.024.69.184-2.024c.212-2.383-.303-3.68-1.72-4.398-1.187-.588-3.45-.524-5.382.166m8.381 11.666c4.49 1.232 7.231 3.946 7.231 7.176 0 3.588-3.192 6.817-8.38 8.528-2.77.902-7.931 1.086-10.461.396-4.793-1.353-7.507-4.012-7.507-7.416 0-1.867.81-3.496 2.594-5.152 1.656-1.564 2.926-2.318 5.364-3.137 3.689-1.242 7.636-1.389 11.16-.395m-9.494 2.925c-3.045 1.417-4.674 3.588-4.674 6.302 0 2.475 1.086 4.159 3.469 5.428 1.84.994 5.216.902 7.268-.147 2.622-1.39 4.342-3.947 4.342-6.45-.028-2.05-1.84-4.489-3.984-5.363-1.72-.736-4.609-.616-6.421.23m2.199 5.667c.211.212.358.727.358 1.178 0 1.509-2.53 2.742-3.56 1.72-.57-.57-.423-1.987.24-2.65.662-.662 2.391-.818 2.962-.248m14.26-19.688c-1.39 1.39-.451 3.046 1.748 3.046 1.895 0 2.741.966 2.741 3.137 0 1.352.12 1.748.663 2.107 1.628 1.15 2.953-.12 2.953-2.806 0-3.285-2.355-5.76-5.695-5.999-1.509-.12-1.868-.027-2.41.515"
|
|
15036
15036
|
}, null, -1)])], 16);
|
|
15037
15037
|
}
|
|
15038
|
-
var icon_weibo_default =
|
|
15038
|
+
var icon_weibo_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_weibo_vue_vue_type_script_lang_default, [["render", _sfc_render$119]]);
|
|
15039
15039
|
//#endregion
|
|
15040
15040
|
//#region components/icon/icon-weibo/index.ts
|
|
15041
15041
|
var IconWeibo = Object.assign(icon_weibo_default, { install: (app, options) => {
|
|
@@ -15126,7 +15126,7 @@ function _sfc_render$118(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
15126
15126
|
d: "M17.514 29.52a1.5 1.5 0 0 1-.715.165c-.608 0-1.104-.33-1.38-.826l-.113-.219-4.357-9.493c-.054-.112-.054-.219-.054-.33 0-.444.331-.774.774-.774q.247-.001.496.165l5.13 3.643c.384.218.827.384 1.323.384q.414.001.827-.166l24.058-10.704C39.2 6.288 32.085 2.976 24.026 2.976 10.896 2.976.191 11.861.191 22.837c0 5.958 3.2 11.366 8.22 15.008.383.278.66.774.66 1.27 0 .165-.053.33-.112.496-.384 1.488-1.05 3.92-1.05 4.026a2 2 0 0 0-.112.608c0 .443.33.774.773.774.165 0 .33-.054.443-.166l5.184-3.034c.384-.219.826-.384 1.27-.384.218 0 .495.053.714.112a27.7 27.7 0 0 0 7.781 1.104c13.13 0 23.835-8.886 23.835-19.862 0-3.312-.992-6.453-2.704-9.216L17.679 29.408z"
|
|
15127
15127
|
}, null, -1)])], 16);
|
|
15128
15128
|
}
|
|
15129
|
-
var icon_wechatpay_default =
|
|
15129
|
+
var icon_wechatpay_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_wechatpay_vue_vue_type_script_lang_default, [["render", _sfc_render$118]]);
|
|
15130
15130
|
//#endregion
|
|
15131
15131
|
//#region components/icon/icon-wechatpay/index.ts
|
|
15132
15132
|
var IconWechatpay = Object.assign(icon_wechatpay_default, { install: (app, options) => {
|
|
@@ -15217,7 +15217,7 @@ function _sfc_render$117(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
15217
15217
|
d: "M32.09 16.362a14.4 14.4 0 0 0-6.927 1.716 13.1 13.1 0 0 0-5.008 4.676 11.94 11.94 0 0 0-1.856 6.473c.01 1.137.185 2.273.517 3.36h-1.505a26.7 26.7 0 0 1-4.766-.593l-.925-.166-5.665 2.93 1.55-4.848C3.179 26.783 1.018 23.077 1 18.792a11.95 11.95 0 0 1 2.188-6.927 14.94 14.94 0 0 1 5.938-5.027 18.6 18.6 0 0 1 8.248-1.837A18.8 18.8 0 0 1 24.8 6.506a16.9 16.9 0 0 1 5.893 4.128 11.96 11.96 0 0 1 2.992 5.817 18 18 0 0 0-1.595-.09m-20.152-.414a2.17 2.17 0 0 0 1.505-.471c.405-.378.62-.908.593-1.46a1.88 1.88 0 0 0-.592-1.46 2.03 2.03 0 0 0-1.506-.535 2.78 2.78 0 0 0-1.67.535c-.454.323-.728.849-.728 1.401a1.71 1.71 0 0 0 .727 1.523 2.93 2.93 0 0 0 1.672.467M47 28.99a9.57 9.57 0 0 1-1.59 5.193c-1.128 1.6-2.52 3-4.129 4.128l1.258 4.129-4.51-2.413h-.243a20.8 20.8 0 0 1-4.6.76 15.54 15.54 0 0 1-7.03-1.59 13.1 13.1 0 0 1-5.008-4.313 10.5 10.5 0 0 1-1.838-5.939 10.3 10.3 0 0 1 1.838-5.92c1.266-1.847 3-3.334 5.008-4.313a15.6 15.6 0 0 1 7.03-1.59 14.9 14.9 0 0 1 6.761 1.59 13.3 13.3 0 0 1 5.09 4.312 10 10 0 0 1 1.94 5.966zM23.407 11.955a2.77 2.77 0 0 0-1.747.534 1.65 1.65 0 0 0-.76 1.46c-.017.584.27 1.146.76 1.46.498.36 1.1.544 1.716.535a2.08 2.08 0 0 0 1.505-.472c.368-.404.561-.925.534-1.46a1.83 1.83 0 0 0-.534-1.532 1.89 1.89 0 0 0-1.532-.534h.063v.009zm5.256 15.03a2.02 2.02 0 0 0 1.46-.498c.332-.288.525-.7.534-1.137a1.61 1.61 0 0 0-.534-1.136 2.06 2.06 0 0 0-1.46-.499 1.58 1.58 0 0 0-1.092.499c-.305.296-.49.71-.498 1.136.009.427.184.84.498 1.137.288.305.679.48 1.092.499m8.953 0a2.02 2.02 0 0 0 1.46-.498c.332-.288.525-.7.534-1.137a1.56 1.56 0 0 0-.593-1.136 2.12 2.12 0 0 0-1.401-.499 1.5 1.5 0 0 0-1.092.499c-.305.296-.49.71-.498 1.136.009.427.184.84.498 1.137.279.305.674.49 1.092.499"
|
|
15218
15218
|
}, null, -1)])], 16);
|
|
15219
15219
|
}
|
|
15220
|
-
var icon_wechat_default =
|
|
15220
|
+
var icon_wechat_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_wechat_vue_vue_type_script_lang_default, [["render", _sfc_render$117]]);
|
|
15221
15221
|
//#endregion
|
|
15222
15222
|
//#region components/icon/icon-wechat/index.ts
|
|
15223
15223
|
var IconWechat = Object.assign(icon_wechat_default, { install: (app, options) => {
|
|
@@ -15308,7 +15308,7 @@ function _sfc_render$116(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
15308
15308
|
d: "M43.277 13.575c0 16.613-10.912 28.575-26.962 29.1-6.788.525-11.438-1.537-15.6-4.65 4.65.525 10.912-1.012 13.987-4.163-4.65 0-7.275-2.625-8.812-6.187h4.162C5.89 26.1 2.74 22.988 2.74 17.813c1.012.524 2.062 1.012 4.162 1.012-3.637-2.062-5.7-8.812-3.112-12.975 4.65 5.175 10.35 9.863 19.762 10.35C20.927 5.85 34.465.6 40.165 7.388c2.625-.525 4.162-1.538 6.187-2.625-.525 2.625-2.062 4.162-4.162 5.175 2.062 0 3.637-.525 5.175-1.538-.488 2.063-2.55 4.163-4.088 5.175"
|
|
15309
15309
|
}, null, -1)])], 16);
|
|
15310
15310
|
}
|
|
15311
|
-
var icon_twitter_default =
|
|
15311
|
+
var icon_twitter_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_twitter_vue_vue_type_script_lang_default, [["render", _sfc_render$116]]);
|
|
15312
15312
|
//#endregion
|
|
15313
15313
|
//#region components/icon/icon-twitter/index.ts
|
|
15314
15314
|
var IconTwitter = Object.assign(icon_twitter_default, { install: (app, options) => {
|
|
@@ -15399,7 +15399,7 @@ function _sfc_render$115(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
15399
15399
|
d: "M7.85 32.825s1.153 3.136 3.264 5.955c0 0-3.779 1.281-3.458 4.61 0 0-.128 3.714 8.069 3.458 0 0 5.764-.45 7.494-2.88h1.52c1.73 2.432 7.494 2.88 7.494 2.88 8.193.256 8.068-3.457 8.068-3.457.318-3.33-3.458-4.611-3.458-4.611 2.11-2.82 3.264-5.955 3.264-5.955 5.122 8.259 4.611-1.154 4.611-1.154-.96-5.57-4.995-9.221-4.995-9.221.576-5.058-1.537-5.955-1.537-5.955C37.742.844 24.26 1.12 23.978 1.126 23.694 1.12 10.21.846 9.767 16.495c0 0-2.113.897-1.537 5.955 0 0-4.034 3.65-4.995 9.221.005 0-.51 9.413 4.615 1.154"
|
|
15400
15400
|
}, null, -1)])], 16);
|
|
15401
15401
|
}
|
|
15402
|
-
var icon_qq_default =
|
|
15402
|
+
var icon_qq_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_qq_vue_vue_type_script_lang_default, [["render", _sfc_render$115]]);
|
|
15403
15403
|
//#endregion
|
|
15404
15404
|
//#region components/icon/icon-qq/index.ts
|
|
15405
15405
|
var IconQq = Object.assign(icon_qq_default, { install: (app, options) => {
|
|
@@ -15490,7 +15490,7 @@ function _sfc_render$114(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
15490
15490
|
d: "M25.1 3.9c.2.1.4.3.5.5l6.8 10L44 17.8c1.1.3 1.7 1.4 1.4 2.5-.1.2-.2.5-.3.7l-7.4 9.5.4 12c0 1.1-.8 2-1.9 2.1-.2 0-.5 0-.7-.1L24 40.4l-11.3 4.1c-1 .4-2.2-.2-2.6-1.2-.1-.3-.1-.6-.1-.8l.4-12L3 20.9c-.7-.9-.5-2.1.4-2.8.2-.2.4-.3.7-.3l11.6-3.4 6.8-10c.5-.9 1.7-1.1 2.6-.5M24 9.1l-5.9 8.7-10.1 3 6.5 8.3-.3 10.5 9.9-3.6 9.9 3.6-.3-10.5 6.5-8.3-10.1-3zm5 11.5c.8 0 1.5.5 1.8 1.2s.1 1.6-.5 2.1L24 29.6h5c1 0 1.9.9 1.9 1.9s-.9 1.9-1.9 1.9H19c-.8 0-1.5-.5-1.8-1.2s-.1-1.6.5-2.1l6.3-5.7h-5c-1 0-1.9-.9-1.9-1.9s.9-1.9 1.9-1.9z"
|
|
15491
15491
|
}, null, -1)])], 16);
|
|
15492
15492
|
}
|
|
15493
|
-
var icon_qq_zone_default =
|
|
15493
|
+
var icon_qq_zone_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_qq_zone_vue_vue_type_script_lang_default, [["render", _sfc_render$114]]);
|
|
15494
15494
|
//#endregion
|
|
15495
15495
|
//#region components/icon/icon-qq-zone/index.ts
|
|
15496
15496
|
var IconQqZone = Object.assign(icon_qq_zone_default, { install: (app, options) => {
|
|
@@ -15581,7 +15581,7 @@ function _sfc_render$113(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
15581
15581
|
d: "M23.997 21.054h19.42a19.5 19.5 0 0 1 .321 3.428q0 5.813-2.437 10.38Q38.863 39.429 34.35 42q-4.514 2.572-10.353 2.572-4.205 0-8.009-1.621-3.803-1.62-6.562-4.38-2.76-2.758-4.38-6.562A20.2 20.2 0 0 1 3.426 24q0-4.205 1.62-8.009 1.62-3.803 4.38-6.562t6.562-4.38a20.2 20.2 0 0 1 8.01-1.62q8.035 0 13.794 5.384l-5.598 5.384q-3.295-3.188-8.197-3.188-3.455 0-6.388 1.741a12.83 12.83 0 0 0-4.648 4.728Q11.247 20.464 11.247 24t1.714 6.523a12.83 12.83 0 0 0 4.648 4.727q2.933 1.74 6.388 1.741 2.33 0 4.286-.643 1.955-.642 3.214-1.607a11.6 11.6 0 0 0 2.197-2.196q.937-1.232 1.38-2.33a10 10 0 0 0 .602-2.09H23.997z"
|
|
15582
15582
|
}, null, -1)])], 16);
|
|
15583
15583
|
}
|
|
15584
|
-
var icon_google_default =
|
|
15584
|
+
var icon_google_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_google_vue_vue_type_script_lang_default, [["render", _sfc_render$113]]);
|
|
15585
15585
|
//#endregion
|
|
15586
15586
|
//#region components/icon/icon-google/index.ts
|
|
15587
15587
|
var IconGoogle = Object.assign(icon_google_default, { install: (app, options) => {
|
|
@@ -15672,7 +15672,7 @@ function _sfc_render$112(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
15672
15672
|
d: "M45.53 26.154 39.694 6.289v-.005c-.407-1.227-1.376-1.955-2.587-1.955-1.254 0-2.277.723-2.663 1.885L30.62 17.625H17.4l-3.825-11.41c-.386-1.163-1.41-1.886-2.663-1.886-1.237 0-2.276.792-2.592 1.96l-5.83 19.865a2.05 2.05 0 0 0 .724 2.18l19.741 14.807c.14.193.332.338.557.418l.461.343.455-.343c.263-.091.483-.252.638-.477L44.8 28.33a2.03 2.03 0 0 0 .728-2.175M36.84 6.932c.053-.096.155-.102.187-.102.06 0 .134.016.182.161l3.183 10.704H33.24zm-26.11.054c.047-.14.122-.156.181-.156.145 0 .156.006.183.091L14.699 17.7H7.633zM5.076 26.502l1.511-5.213 10.843 14.475zm3.96-6.236h6.54l4.865 15.23zm15.01 17.877-5.743-17.877h11.48zm8.459-17.877h6.402L27.642 35.31zm-2.18 15.745L41.43 21.187l1.58 5.315z"
|
|
15673
15673
|
}, null, -1)])], 16);
|
|
15674
15674
|
}
|
|
15675
|
-
var icon_gitlab_default =
|
|
15675
|
+
var icon_gitlab_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_gitlab_vue_vue_type_script_lang_default, [["render", _sfc_render$112]]);
|
|
15676
15676
|
//#endregion
|
|
15677
15677
|
//#region components/icon/icon-gitlab/index.ts
|
|
15678
15678
|
var IconGitlab = Object.assign(icon_gitlab_default, { install: (app, options) => {
|
|
@@ -15763,7 +15763,7 @@ function _sfc_render$111(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
15763
15763
|
d: "M.056 24.618c0 10.454 6.7 19.344 16.038 22.608 1.259.32 1.067-.582 1.067-1.19v-4.148c-7.265.853-7.553-3.957-8.043-4.758-.987-1.686-3.312-2.112-2.62-2.912 1.654-.853 3.34.213 5.291 3.1 1.413 2.09 4.166 1.738 5.562 1.385a6.8 6.8 0 0 1 1.856-3.253C11.687 34.112 8.55 29.519 8.55 24.057c0-2.646.874-5.082 2.586-7.045-1.088-3.243.102-6.01.26-6.422 3.11-.282 6.337 2.225 6.587 2.421 1.766-.474 3.782-.73 6.038-.73 2.266 0 4.293.26 6.069.74.603-.458 3.6-2.608 6.49-2.345.155.41 1.317 3.12.294 6.315 1.734 1.968 2.62 4.422 2.62 7.077 0 5.472-3.158 10.07-10.699 11.397a6.82 6.82 0 0 1 2.037 4.875v6.02c.042.48 0 .96.806.96 9.477-3.194 16.299-12.15 16.299-22.697C47.938 11.396 37.218.68 23.996.68 10.77.675.055 11.391.055 24.617z"
|
|
15764
15764
|
}, null, -1)])], 16);
|
|
15765
15765
|
}
|
|
15766
|
-
var icon_github_default =
|
|
15766
|
+
var icon_github_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_github_vue_vue_type_script_lang_default, [["render", _sfc_render$111]]);
|
|
15767
15767
|
//#endregion
|
|
15768
15768
|
//#region components/icon/icon-github/index.ts
|
|
15769
15769
|
var IconGithub = Object.assign(icon_github_default, { install: (app, options) => {
|
|
@@ -15854,7 +15854,7 @@ function _sfc_render$110(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
15854
15854
|
d: "M35.184 15.727 34.312 24h-6.613v24h-9.933V24h-4.95v-8.273h4.95v-4.98C17.766 4.016 20.564 0 28.518 0h6.61v8.273H30.99c-3.086 0-3.292 1.166-3.292 3.32v4.134z"
|
|
15855
15855
|
}, null, -1)])], 16);
|
|
15856
15856
|
}
|
|
15857
|
-
var icon_facebook_default =
|
|
15857
|
+
var icon_facebook_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_facebook_vue_vue_type_script_lang_default, [["render", _sfc_render$110]]);
|
|
15858
15858
|
//#endregion
|
|
15859
15859
|
//#region components/icon/icon-facebook/index.ts
|
|
15860
15860
|
var IconFacebook = Object.assign(icon_facebook_default, { install: (app, options) => {
|
|
@@ -15945,7 +15945,7 @@ function _sfc_render$109(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
15945
15945
|
d: "M45 15.7v17.1L24.5 44.7c-.3.2-.7.2-1 0l-20-11.5c-.3-.2-.5-.5-.5-.9V15.7c0-.4.2-.7.5-.9l20-11.6c.3-.2.7-.2 1 0l20 11.6c.3.2.5.5.5.9M26 9v9.8l5.5 3.2 8.5-4.9zm-4 0L8 17.1l8.4 4.9 5.6-3.2zm0 21.2L16.5 27 9 31.4 22 39zm17 1.2L31.4 27 26 30.2V39zm2-3.4v-6l-5 3zm-29-3-5-3v6zm8 0 4 2 4-2-4-2z"
|
|
15946
15946
|
}, null, -1)])], 16);
|
|
15947
15947
|
}
|
|
15948
|
-
var icon_codepen_default =
|
|
15948
|
+
var icon_codepen_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_codepen_vue_vue_type_script_lang_default, [["render", _sfc_render$109]]);
|
|
15949
15949
|
//#endregion
|
|
15950
15950
|
//#region components/icon/icon-codepen/index.ts
|
|
15951
15951
|
var IconCodepen = Object.assign(icon_codepen_default, { install: (app, options) => {
|
|
@@ -16036,7 +16036,7 @@ function _sfc_render$108(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16036
16036
|
d: "m25.002 1.6 17.9 10.3c.6.4 1 1 1 1.7v20.7c0 .7-.4 1.4-1 1.7l-17.9 10.4c-.6.4-1.4.4-2 0l-17.9-10.3c-.6-.4-1-1-1-1.7V13.7c0-.7.4-1.4 1-1.7l17.9-10.4c.6-.4 1.4-.4 2 0m13.5 12.4-7.9-4.5-6.6 4.5-6.5-4-7.3 4.3 13.8 8.7zm-16.5 26.4V26.3l-14-8.9v7.9l8 5.5V37zm4 0 6-3.5v-5.2l8-5.5v-8.9l-14 8.9z"
|
|
16037
16037
|
}, null, -1)])], 16);
|
|
16038
16038
|
}
|
|
16039
|
-
var icon_code_sandbox_default =
|
|
16039
|
+
var icon_code_sandbox_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_code_sandbox_vue_vue_type_script_lang_default, [["render", _sfc_render$108]]);
|
|
16040
16040
|
//#endregion
|
|
16041
16041
|
//#region components/icon/icon-code-sandbox/index.ts
|
|
16042
16042
|
var IconCodeSandbox = Object.assign(icon_code_sandbox_default, { install: (app, options) => {
|
|
@@ -16127,7 +16127,7 @@ function _sfc_render$107(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16127
16127
|
d: "M10.8 27.025c-.566.456-1.174 1.122-1.35 1.968-.24 1.156-.05 2.604 1.065 3.739 1.352 1.376 3.405 1.753 4.292 1.818 2.41.174 4.978-1.02 6.913-2.384.759-.535 2.058-1.61 3.3-3.268-2.783-1.437-6.257-3.026-9.97-2.87-1.898.079-3.256.472-4.25.997m35.29 6.354A23.9 23.9 0 0 0 48 24C48 10.767 37.234 0 24 0S0 10.767 0 24s10.766 24 24 24c7.987 0 15.07-3.925 19.436-9.943a2689 2689 0 0 0-15.11-7.467c-1.999 2.278-4.953 4.56-8.29 5.554-2.097.623-3.986.86-5.963.457-1.956-.4-3.397-1.317-4.237-2.235-.428-.469-.92-1.064-1.275-1.773.033.09.056.143.056.143s-.204-.353-.361-.914a4 4 0 0 1-.157-.85 4.4 4.4 0 0 1-.009-.612 4.4 4.4 0 0 1 .078-1.128c.197-.948.601-2.054 1.649-3.08 2.3-2.251 5.38-2.372 6.976-2.363 2.363.014 6.47 1.048 9.928 2.27.958-2.04 1.573-4.221 1.97-5.676H14.31v-1.555h7.384V15.72h-8.938v-1.555h8.938v-3.108c0-.427.084-.778.777-.778h3.498v3.886h9.717v1.555H25.97v3.11h7.773s-.78 4.35-3.221 8.64c5.416 1.934 13.037 4.914 15.568 5.91"
|
|
16128
16128
|
}, null, -1)])], 16);
|
|
16129
16129
|
}
|
|
16130
|
-
var icon_alipay_circle_default =
|
|
16130
|
+
var icon_alipay_circle_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_alipay_circle_vue_vue_type_script_lang_default, [["render", _sfc_render$107]]);
|
|
16131
16131
|
//#endregion
|
|
16132
16132
|
//#region components/icon/icon-alipay-circle/index.ts
|
|
16133
16133
|
var IconAlipayCircle = Object.assign(icon_alipay_circle_default, { install: (app, options) => {
|
|
@@ -16218,7 +16218,7 @@ function _sfc_render$106(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16218
16218
|
d: "M24 47a23 23 0 1 1 23-23 22.99 22.99 0 0 1-23 23m1.276-26.994c-.544.063-2.259 1.171-1.297-1.108C25 15 20.235 15.293 17.874 16.16A23.78 23.78 0 0 0 7.649 27.283c-2.007 6.419 5.018 10.329 10.246 11.123 5.227.795 13.068-.502 16.622-4.85 2.635-3.179 3.137-7.507-1.84-8.761-1.651-.398-.69-1.088-.271-2.259a2.775 2.775 0 0 0-2.175-3.24 2 2 0 0 0-.335-.042 12.5 12.5 0 0 0-4.62.752m7.004-3.889a2.33 2.33 0 0 0-1.903.544c-.377.339-.418 1.338.962 1.652q.688.032 1.36.188a1.836 1.836 0 0 1 1.233 2.07c-.21 1.924.878 2.237 1.652 1.714a1.65 1.65 0 0 0 .627-1.338 4.117 4.117 0 0 0-3.325-4.767c-.042-.008-.61-.063-.606-.063m7.423.084a8.41 8.41 0 0 0-6.838-4.6c-1.129-.126-3.512-.397-3.784 1.15a1.17 1.17 0 0 0 .857 1.4c.042 0 .084.022.126.022q.786.03 1.568-.063a6.48 6.48 0 0 1 6.524 6.44q0 .45-.063.9c-.063.355-.105.71-.147 1.066A1.277 1.277 0 0 0 38.93 24a1.255 1.255 0 0 0 1.338-.648c.71-2.373.501-4.926-.585-7.151zM21.616 36.44c-5.457.69-10.245-1.673-10.684-5.27-.44-3.595 3.575-7.066 9.033-7.756s10.245 1.672 10.705 5.269c.46 3.596-3.617 7.088-9.074 7.757zm-1.484-10.266a5.18 5.18 0 0 0-5.353 4.913 4.66 4.66 0 0 0 4.935 4.391q.21-.005.418-.042a5.503 5.503 0 0 0 5.185-5.143 4.47 4.47 0 0 0-4.746-4.182zm1.003 4.244a.67.67 0 0 1-.773-.544v-.083a.76.76 0 0 1 .774-.711.64.64 0 0 1 .731.544.08.08 0 0 1 .021.062.81.81 0 0 1-.753.732m-2.78 2.781a1.65 1.65 0 0 1-1.861-1.422.3.3 0 0 1-.021-.125 1.844 1.844 0 0 1 1.882-1.736 1.56 1.56 0 0 1 1.819 1.297.5.5 0 0 1 .02.167 1.96 1.96 0 0 1-1.84 1.819"
|
|
16219
16219
|
}, null, -1)])], 16);
|
|
16220
16220
|
}
|
|
16221
|
-
var icon_weibo_circle_fill_default =
|
|
16221
|
+
var icon_weibo_circle_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_weibo_circle_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$106]]);
|
|
16222
16222
|
//#endregion
|
|
16223
16223
|
//#region components/icon/icon-weibo-circle-fill/index.ts
|
|
16224
16224
|
var IconWeiboCircleFill = Object.assign(icon_weibo_circle_fill_default, { install: (app, options) => {
|
|
@@ -16309,7 +16309,7 @@ function _sfc_render$105(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16309
16309
|
d: "M24 1C11.297 1 1 11.297 1 24s10.297 23 23 23 23-10.297 23-23S36.703 1 24 1m11.698 18.592c-.13 9.818-6.408 16.542-15.78 16.965-3.864.176-6.664-1.072-9.1-2.62 2.855.456 6.397-.686 8.292-2.307-2.8-.273-4.458-1.698-5.233-3.991.808.14 1.66.103 2.43-.06-2.527-.846-4.331-2.407-4.424-5.68.709.323 1.448.626 2.43.686-1.891-1.075-3.29-5.007-1.688-7.607 2.806 3.076 6.182 5.586 11.724 5.926-1.391-5.949 6.492-9.175 9.791-5.177 1.395-.27 2.53-.799 3.622-1.374-.45 1.381-1.315 2.347-2.37 3.119 1.158-.157 2.184-.44 3.06-.872-.544 1.128-1.732 2.14-2.754 2.992"
|
|
16310
16310
|
}, null, -1)])], 16);
|
|
16311
16311
|
}
|
|
16312
|
-
var icon_twitter_circle_fill_default =
|
|
16312
|
+
var icon_twitter_circle_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_twitter_circle_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$105]]);
|
|
16313
16313
|
//#endregion
|
|
16314
16314
|
//#region components/icon/icon-twitter-circle-fill/index.ts
|
|
16315
16315
|
var IconTwitterCircleFill = Object.assign(icon_twitter_circle_fill_default, { install: (app, options) => {
|
|
@@ -16400,7 +16400,7 @@ function _sfc_render$104(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16400
16400
|
d: "M24.007 1C11.281 1 1 11.281 1 24.007c0 13.23 11.216 23.87 24.733 22.936 11.288-.791 20.49-9.994 21.21-21.354C47.877 12.144 37.237 1 24.007 1m11.36 29.263s-.79 2.228-2.3 4.241c0 0 2.66.935 2.444 3.236 0 0 .072 2.66-5.68 2.444 0 0-4.026-.287-5.248-2.013h-1.079c-1.222 1.726-5.248 2.013-5.248 2.013-5.752.216-5.68-2.444-5.68-2.444-.216-2.373 2.444-3.236 2.444-3.236-1.51-2.013-2.3-4.241-2.3-4.241-3.596 5.895-3.236-.791-3.236-.791.647-3.955 3.523-6.543 3.523-6.543-.431-3.595 1.078-4.242 1.078-4.242.216-11.072 9.707-10.929 9.922-10.929.216 0 9.707-.215 9.994 10.929 0 0 1.51.647 1.079 4.242 0 0 2.876 2.588 3.523 6.543 0 0 .36 6.686-3.236.79"
|
|
16401
16401
|
}, null, -1)])], 16);
|
|
16402
16402
|
}
|
|
16403
|
-
var icon_qq_circle_fill_default =
|
|
16403
|
+
var icon_qq_circle_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_qq_circle_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$104]]);
|
|
16404
16404
|
//#endregion
|
|
16405
16405
|
//#region components/icon/icon-qq-circle-fill/index.ts
|
|
16406
16406
|
var IconQqCircleFill = Object.assign(icon_qq_circle_fill_default, { install: (app, options) => {
|
|
@@ -16491,7 +16491,7 @@ function _sfc_render$103(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16491
16491
|
d: "M32.571 33.526c-2.084 1.92-4.927 3.05-8.322 3.05a12.57 12.57 0 0 1-12.572-12.577A12.58 12.58 0 0 1 24.25 11.416a12.1 12.1 0 0 1 8.414 3.277L29.061 18.3a6.79 6.79 0 0 0-4.807-1.88c-3.277 0-6.045 2.213-7.037 5.186a7.6 7.6 0 0 0-.394 2.392c0 .833.144 1.638.394 2.391.992 2.973 3.763 5.187 7.032 5.187 1.696 0 3.133-.449 4.254-1.202a5.78 5.78 0 0 0 2.513-3.8h-6.767V21.71h11.844q.226 1.238.227 2.57c0 3.835-1.371 7.055-3.749 9.246M24 1A23 23 0 1 0 24 47 23 23 0 0 0 24 1"
|
|
16492
16492
|
}, null, -1)])], 16);
|
|
16493
16493
|
}
|
|
16494
|
-
var icon_google_circle_fill_default =
|
|
16494
|
+
var icon_google_circle_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_google_circle_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$103]]);
|
|
16495
16495
|
//#endregion
|
|
16496
16496
|
//#region components/icon/icon-google-circle-fill/index.ts
|
|
16497
16497
|
var IconGoogleCircleFill = Object.assign(icon_google_circle_fill_default, { install: (app, options) => {
|
|
@@ -16582,7 +16582,7 @@ function _sfc_render$102(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16582
16582
|
d: "M43.125 2.475c.6 0 1.2.225 1.688.713.524.487.75 1.012.75 1.612v38.363c0 .6-.263 1.2-.75 1.612-.526.488-1.088.713-1.688.713H32.138V28.913h5.625l.825-6.563h-6.45v-4.275c0-2.137 1.087-3.225 3.3-3.225h3.374V9.263c-1.2-.225-2.85-.338-5.024-.338-2.513 0-4.5.75-6.038 2.25s-2.288 3.675-2.288 6.375v4.8h-5.625v6.563h5.625v16.575h-20.7c-.6 0-1.2-.225-1.612-.713-.487-.487-.712-1.012-.712-1.612V4.8c0-.6.224-1.2.712-1.612.488-.488 1.012-.713 1.613-.713z"
|
|
16583
16583
|
}, null, -1)])], 16);
|
|
16584
16584
|
}
|
|
16585
|
-
var icon_facebook_square_fill_default =
|
|
16585
|
+
var icon_facebook_square_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_facebook_square_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$102]]);
|
|
16586
16586
|
//#endregion
|
|
16587
16587
|
//#region components/icon/icon-facebook-square-fill/index.ts
|
|
16588
16588
|
var IconFacebookSquareFill = Object.assign(icon_facebook_square_fill_default, { install: (app, options) => {
|
|
@@ -16673,7 +16673,7 @@ function _sfc_render$101(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16673
16673
|
d: "M24 1C11.29 1 1 11.29 1 24s10.29 23 23 23 23-10.29 23-23S36.71 1 24 1m6.172 22.88H26.18v14.404h-5.931V23.88H17.22v-4.962h3.027V15.89c0-3.993 1.695-6.414 6.414-6.414h3.993v4.962h-2.421c-1.815 0-1.936.727-1.936 1.936v2.421h4.478l-.605 5.084z"
|
|
16674
16674
|
}, null, -1)])], 16);
|
|
16675
16675
|
}
|
|
16676
|
-
var icon_faceBook_circle_fill_default =
|
|
16676
|
+
var icon_faceBook_circle_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_faceBook_circle_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$101]]);
|
|
16677
16677
|
//#endregion
|
|
16678
16678
|
//#region components/icon/icon-faceBook-circle-fill/index.ts
|
|
16679
16679
|
var IconFaceBookCircleFill = Object.assign(icon_faceBook_circle_fill_default, { install: (app, options) => {
|
|
@@ -16761,7 +16761,7 @@ function _sfc_render$100(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16761
16761
|
d: "M381.968 38.684c-202.85 54.614-351.085 232.757-371.89 446.01C-.326 590.018 28.281 630.328 140.108 668.037c104.026 33.808 176.843 101.425 209.351 189.846 40.31 115.729 44.211 122.23 91.023 144.336 40.31 19.504 58.514 19.504 131.332 7.802 211.951-36.41 362.788-171.642 416.101-374.492C1059.434 368.965 882.59 90.697 605.623 32.183 517.2 13.978 470.39 15.279 381.968 38.684m176.843 322.48c158.64 74.117 201.55 158.638 119.63 237.957-102.725 97.524-240.56 136.534-291.271 80.62-20.806-23.406-24.707-48.112-24.707-161.24s3.901-137.833 24.707-161.239c32.507-36.409 88.421-35.108 171.641 3.901"
|
|
16762
16762
|
}, null, -1)])], 16);
|
|
16763
16763
|
}
|
|
16764
|
-
var icon_xigua_color_default =
|
|
16764
|
+
var icon_xigua_color_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_xigua_color_vue_vue_type_script_lang_default, [["render", _sfc_render$100]]);
|
|
16765
16765
|
//#endregion
|
|
16766
16766
|
//#region components/icon/icon-xigua-color/index.ts
|
|
16767
16767
|
var IconXiguaColor = Object.assign(icon_xigua_color_default, { install: (app, options) => {
|
|
@@ -16846,7 +16846,7 @@ function _sfc_render$99(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16846
16846
|
style: _ctx.innerStyle
|
|
16847
16847
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createStaticVNode("<path fill=\"#ff004f\" d=\"M928 310.4v148.8c-8 0-17.6 1.6-27.2 1.6-72 0-139.2-27.2-190.4-70.4v316.8c0 64-20.8 124.8-57.6 172.8-51.2 68.8-134.4 115.2-228.8 115.2-102.4 0-192-54.4-241.6-134.4 51.2 48 120 78.4 195.2 78.4 92.8 0 176-44.8 227.2-115.2 35.2-48 57.6-107.2 57.6-172.8V332.8c51.2 44.8 116.8 70.4 190.4 70.4 9.6 0 17.6 0 27.2-1.6v-96c14.4 3.2 27.2 4.8 41.6 4.8z\"></path><path fill=\"#ff004f\" d=\"M464 420.8v164.8c-11.2-3.2-24-4.8-35.2-4.8-70.4 0-128 59.2-128 131.2 0 16 3.2 30.4 8 44.8-32-24-54.4-62.4-54.4-105.6 0-72 57.6-131.2 128-131.2 12.8 0 24 1.6 35.2 4.8V419.2h9.6c12.8 0 25.6 0 36.8 1.6M734.4 192c-28.8-25.6-49.6-60.8-60.8-97.6H712v22.4c3.2 25.6 11.2 51.2 22.4 75.2\"></path><path d=\"M881.6 307.2v96c-8 1.6-17.6 1.6-27.2 1.6-72 0-139.2-27.2-190.4-70.4v316.8c0 64-20.8 124.8-57.6 172.8-52.8 70.4-134.4 115.2-227.2 115.2-75.2 0-144-30.4-195.2-78.4-27.2-44.8-43.2-96-43.2-152 0-155.2 123.2-281.6 276.8-286.4V528c-11.2-3.2-24-4.8-35.2-4.8-70.4 0-128 59.2-128 131.2 0 43.2 20.8 83.2 54.4 105.6 17.6 49.6 65.6 86.4 120 86.4 70.4 0 128-59.2 128-131.2V94.4h116.8c11.2 38.4 32 72 60.8 97.6 28.8 57.6 83.2 100.8 147.2 115.2\"></path><path fill=\"#00f7ef\" d=\"M417.6 364.8v54.4C264 424 140.8 550.4 140.8 705.6c0 56 16 107.2 43.2 152-54.4-52.8-88-126.4-88-209.6 0-158.4 128-286.4 284.8-286.4 12.8 0 25.6 1.6 36.8 3.2\"></path><path fill=\"#00f7ef\" d=\"M673.6 94.4H556.8V712c0 72-57.6 131.2-128 131.2-56 0-102.4-35.2-120-86.4 20.8 14.4 46.4 24 73.6 24 70.4 0 128-57.6 128-129.6V32h155.2v3.2c0 6.4 0 12.8 1.6 19.2 0 12.8 3.2 27.2 6.4 40m208 153.6v57.6c-64-12.8-118.4-56-148.8-113.6 40 36.8 91.2 57.6 148.8 56\"></path>", 5)])], 16);
|
|
16848
16848
|
}
|
|
16849
|
-
var icon_tiktok_color_default =
|
|
16849
|
+
var icon_tiktok_color_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_tiktok_color_vue_vue_type_script_lang_default, [["render", _sfc_render$99]]);
|
|
16850
16850
|
//#endregion
|
|
16851
16851
|
//#region components/icon/icon-tiktok-color/index.ts
|
|
16852
16852
|
var IconTiktokColor = Object.assign(icon_tiktok_color_default, { install: (app, options) => {
|
|
@@ -16944,7 +16944,7 @@ function _sfc_render$98(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16944
16944
|
}, null, -1)
|
|
16945
16945
|
])], 16);
|
|
16946
16946
|
}
|
|
16947
|
-
var icon_lark_color_default =
|
|
16947
|
+
var icon_lark_color_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_lark_color_vue_vue_type_script_lang_default, [["render", _sfc_render$98]]);
|
|
16948
16948
|
//#endregion
|
|
16949
16949
|
//#region components/icon/icon-lark-color/index.ts
|
|
16950
16950
|
var IconLarkColor = Object.assign(icon_lark_color_default, { install: (app, options) => {
|
|
@@ -17046,7 +17046,7 @@ function _sfc_render$97(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
17046
17046
|
}, null, -1)
|
|
17047
17047
|
])], 16);
|
|
17048
17048
|
}
|
|
17049
|
-
var icon_bytedance_color_default =
|
|
17049
|
+
var icon_bytedance_color_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_bytedance_color_vue_vue_type_script_lang_default, [["render", _sfc_render$97]]);
|
|
17050
17050
|
//#endregion
|
|
17051
17051
|
//#region components/icon/icon-bytedance-color/index.ts
|
|
17052
17052
|
var IconBytedanceColor = Object.assign(icon_bytedance_color_default, { install: (app, options) => {
|
|
@@ -17133,7 +17133,7 @@ function _sfc_render$96(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
17133
17133
|
style: _ctx.innerStyle
|
|
17134
17134
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M24 29c6.075 0 11-4.925 11-11S30.075 7 24 7s-11 4.925-11 11 4.925 11 11 11Zm0 0v15M15 36h18" }, null, -1)])], 16);
|
|
17135
17135
|
}
|
|
17136
|
-
var icon_woman_default =
|
|
17136
|
+
var icon_woman_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_woman_vue_vue_type_script_lang_default, [["render", _sfc_render$96]]);
|
|
17137
17137
|
//#endregion
|
|
17138
17138
|
//#region components/icon/icon-woman/index.ts
|
|
17139
17139
|
var IconWoman = Object.assign(icon_woman_default, { install: (app, options) => {
|
|
@@ -17224,7 +17224,7 @@ function _sfc_render$95(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
17224
17224
|
d: "M27.536 35.465a5 5 0 0 0-7.071 0L24 39z"
|
|
17225
17225
|
}, null, -1)])], 16);
|
|
17226
17226
|
}
|
|
17227
|
-
var icon_wifi_default =
|
|
17227
|
+
var icon_wifi_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_wifi_vue_vue_type_script_lang_default, [["render", _sfc_render$95]]);
|
|
17228
17228
|
//#endregion
|
|
17229
17229
|
//#region components/icon/icon-wifi/index.ts
|
|
17230
17230
|
var IconWifi = Object.assign(icon_wifi_default, { install: (app, options) => {
|
|
@@ -17311,7 +17311,7 @@ function _sfc_render$94(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
17311
17311
|
style: _ctx.innerStyle
|
|
17312
17312
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M33 18v12m0-12v-6a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v24a1 1 0 0 0 1 1h25a1 1 0 0 0 1-1v-6m0-12 8.713-2.614a1 1 0 0 1 1.287.958v15.312a1 1 0 0 1-1.287.958L33 30M11 19h6" }, null, -1)])], 16);
|
|
17313
17313
|
}
|
|
17314
|
-
var icon_video_camera_default =
|
|
17314
|
+
var icon_video_camera_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_video_camera_vue_vue_type_script_lang_default, [["render", _sfc_render$94]]);
|
|
17315
17315
|
//#endregion
|
|
17316
17316
|
//#region components/icon/icon-video-camera/index.ts
|
|
17317
17317
|
var IconVideoCamera = Object.assign(icon_video_camera_default, { install: (app, options) => {
|
|
@@ -17402,7 +17402,7 @@ function _sfc_render$93(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
17402
17402
|
r: "8"
|
|
17403
17403
|
}, null, -1)])], 16);
|
|
17404
17404
|
}
|
|
17405
|
-
var icon_user_default =
|
|
17405
|
+
var icon_user_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_user_vue_vue_type_script_lang_default, [["render", _sfc_render$93]]);
|
|
17406
17406
|
//#endregion
|
|
17407
17407
|
//#region components/icon/icon-user/index.ts
|
|
17408
17408
|
var IconUser = Object.assign(icon_user_default, { install: (app, options) => {
|
|
@@ -17501,7 +17501,7 @@ function _sfc_render$92(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
17501
17501
|
createElementVNode("path", { d: "M6 34a6 6 0 0 1 6-6h12a6 6 0 0 1 6 6v6H6zM34 30h4a4 4 0 0 1 4 4v4h-8" }, null, -1)
|
|
17502
17502
|
])], 16);
|
|
17503
17503
|
}
|
|
17504
|
-
var icon_user_group_default =
|
|
17504
|
+
var icon_user_group_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_user_group_vue_vue_type_script_lang_default, [["render", _sfc_render$92]]);
|
|
17505
17505
|
//#endregion
|
|
17506
17506
|
//#region components/icon/icon-user-group/index.ts
|
|
17507
17507
|
var IconUserGroup = Object.assign(icon_user_group_default, { install: (app, options) => {
|
|
@@ -17588,7 +17588,7 @@ function _sfc_render$91(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
17588
17588
|
style: _ctx.innerStyle
|
|
17589
17589
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M25 27h-8c-5.523 0-10 4.477-10 10v4h18m11-14v8m0 0v8m0-8h8m-8 0h-8m3-21a7 7 0 1 1-14 0 7 7 0 0 1 14 0Z" }, null, -1)])], 16);
|
|
17590
17590
|
}
|
|
17591
|
-
var icon_user_add_default =
|
|
17591
|
+
var icon_user_add_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_user_add_vue_vue_type_script_lang_default, [["render", _sfc_render$91]]);
|
|
17592
17592
|
//#endregion
|
|
17593
17593
|
//#region components/icon/icon-user-add/index.ts
|
|
17594
17594
|
var IconUserAdd = Object.assign(icon_user_add_default, { install: (app, options) => {
|
|
@@ -17681,7 +17681,7 @@ function _sfc_render$90(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
17681
17681
|
rx: "1"
|
|
17682
17682
|
}, null, -1), createElementVNode("path", { d: "M44 15a9 9 0 1 0-18 0v6M24 35v-8" }, null, -1)])], 16);
|
|
17683
17683
|
}
|
|
17684
|
-
var icon_unlock_default =
|
|
17684
|
+
var icon_unlock_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_unlock_vue_vue_type_script_lang_default, [["render", _sfc_render$90]]);
|
|
17685
17685
|
//#endregion
|
|
17686
17686
|
//#region components/icon/icon-unlock/index.ts
|
|
17687
17687
|
var IconUnlock = Object.assign(icon_unlock_default, { install: (app, options) => {
|
|
@@ -17768,7 +17768,7 @@ function _sfc_render$89(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
17768
17768
|
style: _ctx.innerStyle
|
|
17769
17769
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M24 33c-6.075 0-11-4.925-11-11m11 11c6.075 0 11-4.925 11-11M24 33v8M13 22V7h22v15m-22 0V9H7v7a6 6 0 0 0 6 6Zm22 0V9h6v7a6 6 0 0 1-6 6ZM12 41h24" }, null, -1)])], 16);
|
|
17770
17770
|
}
|
|
17771
|
-
var icon_trophy_default =
|
|
17771
|
+
var icon_trophy_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_trophy_vue_vue_type_script_lang_default, [["render", _sfc_render$89]]);
|
|
17772
17772
|
//#endregion
|
|
17773
17773
|
//#region components/icon/icon-trophy/index.ts
|
|
17774
17774
|
var IconTrophy = Object.assign(icon_trophy_default, { install: (app, options) => {
|
|
@@ -17855,7 +17855,7 @@ function _sfc_render$88(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
17855
17855
|
style: _ctx.innerStyle
|
|
17856
17856
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M19.994 11.035c3.66-3.659 9.094-4.46 13.531-2.405a.1.1 0 0 1 .028.16l-6.488 6.488a1 1 0 0 0 0 1.414l4.243 4.243a1 1 0 0 0 1.414 0l6.488-6.488a.1.1 0 0 1 .16.028c2.056 4.437 1.254 9.872-2.405 13.53-3.695 3.696-9.2 4.477-13.66 2.347L12.923 40.734a1 1 0 0 1-1.414 0L7.266 36.49a1 1 0 0 1 0-1.414l10.382-10.382c-2.13-4.46-1.349-9.965 2.346-13.66Z" }, null, -1)])], 16);
|
|
17857
17857
|
}
|
|
17858
|
-
var icon_tool_default =
|
|
17858
|
+
var icon_tool_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_tool_vue_vue_type_script_lang_default, [["render", _sfc_render$88]]);
|
|
17859
17859
|
//#endregion
|
|
17860
17860
|
//#region components/icon/icon-tool/index.ts
|
|
17861
17861
|
var IconTool = Object.assign(icon_tool_default, { install: (app, options) => {
|
|
@@ -17942,7 +17942,7 @@ function _sfc_render$87(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
17942
17942
|
style: _ctx.innerStyle
|
|
17943
17943
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M27.824 5.203A.1.1 0 0 1 28 5.27V21h10.782a.1.1 0 0 1 .075.165L20.176 42.797A.1.1 0 0 1 20 42.73V27H9.219a.1.1 0 0 1-.076-.165z" }, null, -1)])], 16);
|
|
17944
17944
|
}
|
|
17945
|
-
var icon_thunderbolt_default =
|
|
17945
|
+
var icon_thunderbolt_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_thunderbolt_vue_vue_type_script_lang_default, [["render", _sfc_render$87]]);
|
|
17946
17946
|
//#endregion
|
|
17947
17947
|
//#region components/icon/icon-thunderbolt/index.ts
|
|
17948
17948
|
var IconThunderbolt = Object.assign(icon_thunderbolt_default, { install: (app, options) => {
|
|
@@ -18033,7 +18033,7 @@ function _sfc_render$86(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
18033
18033
|
d: "M27.697 15.292a1 1 0 1 1 1.414-1.414 1 1 0 0 1-1.414 1.414"
|
|
18034
18034
|
}, null, -1)])], 16);
|
|
18035
18035
|
}
|
|
18036
|
-
var icon_tags_default =
|
|
18036
|
+
var icon_tags_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_tags_vue_vue_type_script_lang_default, [["render", _sfc_render$86]]);
|
|
18037
18037
|
//#endregion
|
|
18038
18038
|
//#region components/icon/icon-tags/index.ts
|
|
18039
18039
|
var IconTags = Object.assign(icon_tags_default, { install: (app, options) => {
|
|
@@ -18128,7 +18128,7 @@ function _sfc_render$85(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
18128
18128
|
}, null, -1)
|
|
18129
18129
|
])], 16);
|
|
18130
18130
|
}
|
|
18131
|
-
var icon_tag_default =
|
|
18131
|
+
var icon_tag_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_tag_vue_vue_type_script_lang_default, [["render", _sfc_render$85]]);
|
|
18132
18132
|
//#endregion
|
|
18133
18133
|
//#region components/icon/icon-tag/index.ts
|
|
18134
18134
|
var IconTag = Object.assign(icon_tag_default, { install: (app, options) => {
|
|
@@ -18227,7 +18227,7 @@ function _sfc_render$84(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
18227
18227
|
}, null, -1)
|
|
18228
18228
|
])], 16);
|
|
18229
18229
|
}
|
|
18230
|
-
var icon_sun_default =
|
|
18230
|
+
var icon_sun_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_sun_vue_vue_type_script_lang_default, [["render", _sfc_render$84]]);
|
|
18231
18231
|
//#endregion
|
|
18232
18232
|
//#region components/icon/icon-sun/index.ts
|
|
18233
18233
|
var IconSun = Object.assign(icon_sun_default, { install: (app, options) => {
|
|
@@ -18314,7 +18314,7 @@ function _sfc_render$83(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
18314
18314
|
style: _ctx.innerStyle
|
|
18315
18315
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m31.289 15.596-9.193 9.193-4.95-4.95M24 34l14.706 7.843a.2.2 0 0 0 .294-.176V7a1 1 0 0 0-1-1H10a1 1 0 0 0-1 1v34.667a.2.2 0 0 0 .294.176z" }, null, -1)])], 16);
|
|
18316
18316
|
}
|
|
18317
|
-
var icon_subscribed_default =
|
|
18317
|
+
var icon_subscribed_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_subscribed_vue_vue_type_script_lang_default, [["render", _sfc_render$83]]);
|
|
18318
18318
|
//#endregion
|
|
18319
18319
|
//#region components/icon/icon-subscribed/index.ts
|
|
18320
18320
|
var IconSubscribed = Object.assign(icon_subscribed_default, { install: (app, options) => {
|
|
@@ -18401,7 +18401,7 @@ function _sfc_render$82(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
18401
18401
|
style: _ctx.innerStyle
|
|
18402
18402
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M9 7v34.667a.2.2 0 0 0 .294.176L24 34l14.706 7.843a.2.2 0 0 0 .294-.176V7a1 1 0 0 0-1-1H10a1 1 0 0 0-1 1Z" }, null, -1)])], 16);
|
|
18403
18403
|
}
|
|
18404
|
-
var icon_subscribe_default =
|
|
18404
|
+
var icon_subscribe_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_subscribe_vue_vue_type_script_lang_default, [["render", _sfc_render$82]]);
|
|
18405
18405
|
//#endregion
|
|
18406
18406
|
//#region components/icon/icon-subscribe/index.ts
|
|
18407
18407
|
var IconSubscribe = Object.assign(icon_subscribe_default, { install: (app, options) => {
|
|
@@ -18488,7 +18488,7 @@ function _sfc_render$81(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
18488
18488
|
style: _ctx.innerStyle
|
|
18489
18489
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M24.53 6.007H9.97c-.535 0-.97.449-.97 1.003V41.8c0 .148.152.245.28.179l15.25-7.881 14.248 7.88c.129.067.28-.03.28-.179V22.06M27.413 11.023h6.794m0 0H41m-6.794 0V4m0 7.023v7.023" }, null, -1)])], 16);
|
|
18490
18490
|
}
|
|
18491
|
-
var icon_subscribe_add_default =
|
|
18491
|
+
var icon_subscribe_add_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_subscribe_add_vue_vue_type_script_lang_default, [["render", _sfc_render$81]]);
|
|
18492
18492
|
//#endregion
|
|
18493
18493
|
//#region components/icon/icon-subscribe-add/index.ts
|
|
18494
18494
|
var IconSubscribeAdd = Object.assign(icon_subscribe_add_default, { install: (app, options) => {
|
|
@@ -18584,7 +18584,7 @@ function _sfc_render$80(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
18584
18584
|
createElementVNode("path", { d: "M13.02 24H13v.02h.02z" }, null, -1)
|
|
18585
18585
|
])], 16);
|
|
18586
18586
|
}
|
|
18587
|
-
var icon_storage_default =
|
|
18587
|
+
var icon_storage_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_storage_vue_vue_type_script_lang_default, [["render", _sfc_render$80]]);
|
|
18588
18588
|
//#endregion
|
|
18589
18589
|
//#region components/icon/icon-storage/index.ts
|
|
18590
18590
|
var IconStorage = Object.assign(icon_storage_default, { install: (app, options) => {
|
|
@@ -18671,7 +18671,7 @@ function _sfc_render$79(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
18671
18671
|
style: _ctx.innerStyle
|
|
18672
18672
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M7 33a1 1 0 0 1 1-1h32a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1zM29.082 21.18a8 8 0 1 0-10.163 0L14 32h20z" }, null, -1)])], 16);
|
|
18673
18673
|
}
|
|
18674
|
-
var icon_stamp_default =
|
|
18674
|
+
var icon_stamp_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_stamp_vue_vue_type_script_lang_default, [["render", _sfc_render$79]]);
|
|
18675
18675
|
//#endregion
|
|
18676
18676
|
//#region components/icon/icon-stamp/index.ts
|
|
18677
18677
|
var IconStamp = Object.assign(icon_stamp_default, { install: (app, options) => {
|
|
@@ -18758,7 +18758,7 @@ function _sfc_render$78(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
18758
18758
|
style: _ctx.innerStyle
|
|
18759
18759
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M17.937 6H7a1 1 0 0 0-1 1v17.559a1 1 0 0 0 1 1h4V40a1 1 0 0 0 1 1h24a1 1 0 0 0 1-1V25.559h4a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H30.064C28.854 7.23 26.59 9.059 24 9.059S19.147 7.23 17.936 6Z" }, null, -1)])], 16);
|
|
18760
18760
|
}
|
|
18761
|
-
var icon_skin_default =
|
|
18761
|
+
var icon_skin_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_skin_vue_vue_type_script_lang_default, [["render", _sfc_render$78]]);
|
|
18762
18762
|
//#endregion
|
|
18763
18763
|
//#region components/icon/icon-skin/index.ts
|
|
18764
18764
|
var IconSkin = Object.assign(icon_skin_default, { install: (app, options) => {
|
|
@@ -18852,7 +18852,7 @@ function _sfc_render$77(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
18852
18852
|
transform: "rotate(45 17.637 30.364)"
|
|
18853
18853
|
}, null, -1)])], 16);
|
|
18854
18854
|
}
|
|
18855
|
-
var icon_shake_default =
|
|
18855
|
+
var icon_shake_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_shake_vue_vue_type_script_lang_default, [["render", _sfc_render$77]]);
|
|
18856
18856
|
//#endregion
|
|
18857
18857
|
//#region components/icon/icon-shake/index.ts
|
|
18858
18858
|
var IconShake = Object.assign(icon_shake_default, { install: (app, options) => {
|
|
@@ -18943,7 +18943,7 @@ function _sfc_render$76(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
18943
18943
|
r: "18"
|
|
18944
18944
|
}, null, -1), createElementVNode("path", { d: "M24 13v10l6.5 7" }, null, -1)])], 16);
|
|
18945
18945
|
}
|
|
18946
|
-
var icon_schedule_default =
|
|
18946
|
+
var icon_schedule_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_schedule_vue_vue_type_script_lang_default, [["render", _sfc_render$76]]);
|
|
18947
18947
|
//#endregion
|
|
18948
18948
|
//#region components/icon/icon-schedule/index.ts
|
|
18949
18949
|
var IconSchedule = Object.assign(icon_schedule_default, { install: (app, options) => {
|
|
@@ -19030,7 +19030,7 @@ function _sfc_render$75(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
19030
19030
|
style: _ctx.innerStyle
|
|
19031
19031
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m16.825 22.165 6 6 10-10M24 6c7 4 16 5 16 5v15s-2 12-16 16.027C10 38 8 26 8 26V11s9-1 16-5Z" }, null, -1)])], 16);
|
|
19032
19032
|
}
|
|
19033
|
-
var icon_safe_default =
|
|
19033
|
+
var icon_safe_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_safe_vue_vue_type_script_lang_default, [["render", _sfc_render$75]]);
|
|
19034
19034
|
//#endregion
|
|
19035
19035
|
//#region components/icon/icon-safe/index.ts
|
|
19036
19036
|
var IconSafe = Object.assign(icon_safe_default, { install: (app, options) => {
|
|
@@ -19121,7 +19121,7 @@ function _sfc_render$74(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
19121
19121
|
d: "M18 26h1v1h-1zM29 26h1v1h-1z"
|
|
19122
19122
|
}, null, -1), createElementVNode("path", { d: "M24 7v6m0-6h5m-5 0h-5M3 21v11m36 8H9V13h30v29m6-21v11m-27-6h1v1h-1zm11 0h1v1h-1z" }, null, -1)])], 16);
|
|
19123
19123
|
}
|
|
19124
|
-
var icon_robot_default =
|
|
19124
|
+
var icon_robot_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_robot_vue_vue_type_script_lang_default, [["render", _sfc_render$74]]);
|
|
19125
19125
|
//#endregion
|
|
19126
19126
|
//#region components/icon/icon-robot/index.ts
|
|
19127
19127
|
var IconRobot = Object.assign(icon_robot_default, { install: (app, options) => {
|
|
@@ -19208,7 +19208,7 @@ function _sfc_render$73(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
19208
19208
|
style: _ctx.innerStyle
|
|
19209
19209
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M24 7v6m0-6h5m-5 0h-5M3 21v11m25 8H9V13h30v11m-7 11h14m-7-7v14M18 26h1v1h-1zm11 0h1v1h-1z" }, null, -1)])], 16);
|
|
19210
19210
|
}
|
|
19211
|
-
var icon_robot_add_default =
|
|
19211
|
+
var icon_robot_add_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_robot_add_vue_vue_type_script_lang_default, [["render", _sfc_render$73]]);
|
|
19212
19212
|
//#endregion
|
|
19213
19213
|
//#region components/icon/icon-robot-add/index.ts
|
|
19214
19214
|
var IconRobotAdd = Object.assign(icon_robot_add_default, { install: (app, options) => {
|
|
@@ -19295,7 +19295,7 @@ function _sfc_render$72(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
19295
19295
|
style: _ctx.innerStyle
|
|
19296
19296
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M19.714 14C15.204 15.784 12 20.302 12 25.593c0 1.142.15 2.247.429 3.298m16.285-14.712C32.998 16.073 36 20.471 36 25.593c0 1.07-.131 2.11-.378 3.102m-18.32 7.194a11.676 11.676 0 0 0 13.556-.112" }, null, -1), createElementVNode("path", { d: "M24 19a6 6 0 1 0 0-12 6 6 0 0 0 0 12ZM36 40a6 6 0 1 0 0-12 6 6 0 0 0 0 12ZM12 40a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z" }, null, -1)])], 16);
|
|
19297
19297
|
}
|
|
19298
|
-
var icon_relation_default =
|
|
19298
|
+
var icon_relation_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_relation_vue_vue_type_script_lang_default, [["render", _sfc_render$72]]);
|
|
19299
19299
|
//#endregion
|
|
19300
19300
|
//#region components/icon/icon-relation/index.ts
|
|
19301
19301
|
var IconRelation = Object.assign(icon_relation_default, { install: (app, options) => {
|
|
@@ -19382,7 +19382,7 @@ function _sfc_render$71(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
19382
19382
|
style: _ctx.innerStyle
|
|
19383
19383
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M24 30v4m0 3v6m19-19h-6m-3 0h-4M7 7h17v17H7zm0 25h9v9H7zm25 0h9v9h-9zm0-25h9v9h-9zm-18 7h3v3h-3z" }, null, -1)])], 16);
|
|
19384
19384
|
}
|
|
19385
|
-
var icon_qrcode_default =
|
|
19385
|
+
var icon_qrcode_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_qrcode_vue_vue_type_script_lang_default, [["render", _sfc_render$71]]);
|
|
19386
19386
|
//#endregion
|
|
19387
19387
|
//#region components/icon/icon-qrcode/index.ts
|
|
19388
19388
|
var IconQrcode = Object.assign(icon_qrcode_default, { install: (app, options) => {
|
|
@@ -19469,7 +19469,7 @@ function _sfc_render$70(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
19469
19469
|
style: _ctx.innerStyle
|
|
19470
19470
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M19.921 28.163 7.193 40.89m12.728-12.728 8.884 8.883c.17.17.447.17.617 0l5.12-5.12a7.86 7.86 0 0 0 1.667-8.655.09.09 0 0 1 .02-.102l4.906-4.906a2 2 0 0 0 0-2.828L32.649 6.95a2 2 0 0 0-2.828 0l-4.89 4.889a.13.13 0 0 1-.139.027 7.83 7.83 0 0 0-8.618 1.66l-5.027 5.026a.59.59 0 0 0 0 .836z" }, null, -1)])], 16);
|
|
19471
19471
|
}
|
|
19472
|
-
var icon_pushpin_default =
|
|
19472
|
+
var icon_pushpin_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_pushpin_vue_vue_type_script_lang_default, [["render", _sfc_render$70]]);
|
|
19473
19473
|
//#endregion
|
|
19474
19474
|
//#region components/icon/icon-pushpin/index.ts
|
|
19475
19475
|
var IconPushpin = Object.assign(icon_pushpin_default, { install: (app, options) => {
|
|
@@ -19556,7 +19556,7 @@ function _sfc_render$69(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
19556
19556
|
style: _ctx.innerStyle
|
|
19557
19557
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M15 21.5 6.704 19M15 21.5l4.683 5.152a1 1 0 0 1 .25.814L18 40.976l10.918-16.117a1 1 0 0 0-.298-1.409L21.5 19zm0 0 6.062-6.994a1 1 0 0 0 .138-1.104L18 7.024M42 24c0 9.941-8.059 18-18 18S6 33.941 6 24 14.059 6 24 6s18 8.059 18 18Z" }, null, -1)])], 16);
|
|
19558
19558
|
}
|
|
19559
|
-
var icon_public_default =
|
|
19559
|
+
var icon_public_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_public_vue_vue_type_script_lang_default, [["render", _sfc_render$69]]);
|
|
19560
19560
|
//#endregion
|
|
19561
19561
|
//#region components/icon/icon-public/index.ts
|
|
19562
19562
|
var IconPublic = Object.assign(icon_public_default, { install: (app, options) => {
|
|
@@ -19643,7 +19643,7 @@ function _sfc_render$68(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
19643
19643
|
style: _ctx.innerStyle
|
|
19644
19644
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M14 15V8a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1v7m-20 0H7a1 1 0 0 0-1 1v17a1 1 0 0 0 1 1h6m1-19h20m0 0h7a1 1 0 0 1 1 1v17a1 1 0 0 1-1 1h-6m-22 0v6a1 1 0 0 0 1 1h20a1 1 0 0 0 1-1v-6m-22 0v-5a1 1 0 0 1 1-1h20a1 1 0 0 1 1 1v5" }, null, -1)])], 16);
|
|
19645
19645
|
}
|
|
19646
|
-
var icon_printer_default =
|
|
19646
|
+
var icon_printer_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_printer_vue_vue_type_script_lang_default, [["render", _sfc_render$68]]);
|
|
19647
19647
|
//#endregion
|
|
19648
19648
|
//#region components/icon/icon-printer/index.ts
|
|
19649
19649
|
var IconPrinter = Object.assign(icon_printer_default, { install: (app, options) => {
|
|
@@ -19730,7 +19730,7 @@ function _sfc_render$67(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
19730
19730
|
style: _ctx.innerStyle
|
|
19731
19731
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M6.707 34.284a1 1 0 0 1 0-1.414l5.657-5.657a1 1 0 0 1 1.414 0l4.95 4.95s3.535-1.414 7.778-5.657 5.657-7.778 5.657-7.778l-4.95-4.95a1 1 0 0 1 0-1.414l5.657-5.657a1 1 0 0 1 1.414 0l6.01 6.01s3.183 7.425-8.485 19.092c-11.667 11.668-19.092 8.485-19.092 8.485z" }, null, -1)])], 16);
|
|
19732
19732
|
}
|
|
19733
|
-
var icon_phone_default =
|
|
19733
|
+
var icon_phone_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_phone_vue_vue_type_script_lang_default, [["render", _sfc_render$67]]);
|
|
19734
19734
|
//#endregion
|
|
19735
19735
|
//#region components/icon/icon-phone/index.ts
|
|
19736
19736
|
var IconPhone = Object.assign(icon_phone_default, { install: (app, options) => {
|
|
@@ -19817,7 +19817,7 @@ function _sfc_render$66(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
19817
19817
|
style: _ctx.innerStyle
|
|
19818
19818
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m28.364 11.565 7.07 7.071M7.15 32.778 33.313 6.615l7.071 7.071L14.222 39.85H7.15z" }, null, -1)])], 16);
|
|
19819
19819
|
}
|
|
19820
|
-
var icon_pen_default =
|
|
19820
|
+
var icon_pen_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_pen_vue_vue_type_script_lang_default, [["render", _sfc_render$66]]);
|
|
19821
19821
|
//#endregion
|
|
19822
19822
|
//#region components/icon/icon-pen/index.ts
|
|
19823
19823
|
var IconPen = Object.assign(icon_pen_default, { install: (app, options) => {
|
|
@@ -19904,7 +19904,7 @@ function _sfc_render$65(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
19904
19904
|
style: _ctx.innerStyle
|
|
19905
19905
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createStaticVNode("<path d=\"M31.813 12.02C29.73 10.459 27.013 10 24 10c-9.78 0-17.708 6.987-17.708 15.042s8.97 14.583 18.75 14.583c5.277 0 2.485-5.318 5.73-8.333 2.767-2.574 10.937-1.563 10.937-6.25 0-2.792-.521-5.209-2.605-7.617\"></path><path d=\"M25.042 25.563 42.23 8.375\"></path><circle cx=\"22.5\" cy=\"17.5\" r=\"2.5\" fill=\"currentColor\" stroke=\"none\"></circle><circle cx=\"15.5\" cy=\"20.5\" r=\"2.5\" fill=\"currentColor\" stroke=\"none\"></circle><circle cx=\"14.5\" cy=\"28.5\" r=\"2.5\" fill=\"currentColor\" stroke=\"none\"></circle>", 5)])], 16);
|
|
19906
19906
|
}
|
|
19907
|
-
var icon_palette_default =
|
|
19907
|
+
var icon_palette_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_palette_vue_vue_type_script_lang_default, [["render", _sfc_render$65]]);
|
|
19908
19908
|
//#endregion
|
|
19909
19909
|
//#region components/icon/icon-palette/index.ts
|
|
19910
19910
|
var IconPalette = Object.assign(icon_palette_default, { install: (app, options) => {
|
|
@@ -19991,7 +19991,7 @@ function _sfc_render$64(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
19991
19991
|
style: _ctx.innerStyle
|
|
19992
19992
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M24 9c7.18 0 13 5.82 13 13v13H11V22c0-7.18 5.82-13 13-13Zm0 0V4M6 35h36m-25 7h14" }, null, -1)])], 16);
|
|
19993
19993
|
}
|
|
19994
|
-
var icon_notification_default =
|
|
19994
|
+
var icon_notification_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_notification_vue_vue_type_script_lang_default, [["render", _sfc_render$64]]);
|
|
19995
19995
|
//#endregion
|
|
19996
19996
|
//#region components/icon/icon-notification/index.ts
|
|
19997
19997
|
var IconNotification = Object.assign(icon_notification_default, { install: (app, options) => {
|
|
@@ -20078,7 +20078,7 @@ function _sfc_render$63(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
20078
20078
|
style: _ctx.innerStyle
|
|
20079
20079
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M11 35V22c0-1.835.38-3.58 1.066-5.163M11 35H6m5 0h15.5M24 9c7.18 0 13 5.82 13 13v7.5M24 9V4m0 5a12.94 12.94 0 0 0-6.5 1.74M17 42h14M6 4l36 40" }, null, -1)])], 16);
|
|
20080
20080
|
}
|
|
20081
|
-
var icon_notification_close_default =
|
|
20081
|
+
var icon_notification_close_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_notification_close_vue_vue_type_script_lang_default, [["render", _sfc_render$63]]);
|
|
20082
20082
|
//#endregion
|
|
20083
20083
|
//#region components/icon/icon-notification-close/index.ts
|
|
20084
20084
|
var IconNotificationClose = Object.assign(icon_notification_close_default, { install: (app, options) => {
|
|
@@ -20165,7 +20165,7 @@ function _sfc_render$62(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
20165
20165
|
style: _ctx.innerStyle
|
|
20166
20166
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M6 19h10m0 0h26m-26 0V9m0 10v10m0 0v10m0-10H6m10 0h26M6 9h36v30H6z" }, null, -1)])], 16);
|
|
20167
20167
|
}
|
|
20168
|
-
var icon_nav_default =
|
|
20168
|
+
var icon_nav_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_nav_vue_vue_type_script_lang_default, [["render", _sfc_render$62]]);
|
|
20169
20169
|
//#endregion
|
|
20170
20170
|
//#region components/icon/icon-nav/index.ts
|
|
20171
20171
|
var IconNav = Object.assign(icon_nav_default, { install: (app, options) => {
|
|
@@ -20256,7 +20256,7 @@ function _sfc_render$61(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
20256
20256
|
d: "M6 7h4v4H6zM6 23h4v4H6zM6 38h4v4H6zM14 15h4v4h-4zM14 31h4v4h-4zM22 7h4v4h-4zM22 23h4v4h-4zM22 38h4v4h-4zM30 15h4v4h-4zM30 31h4v4h-4zM38 7h4v4h-4zM38 23h4v4h-4zM38 38h4v4h-4z"
|
|
20257
20257
|
}, null, -1), createElementVNode("path", { d: "M6 7h4v4H6zM6 23h4v4H6zM6 38h4v4H6zM14 15h4v4h-4zM14 31h4v4h-4zM22 7h4v4h-4zM22 23h4v4h-4zM22 38h4v4h-4zM30 15h4v4h-4zM30 31h4v4h-4zM38 7h4v4h-4zM38 23h4v4h-4zM38 38h4v4h-4z" }, null, -1)])], 16);
|
|
20258
20258
|
}
|
|
20259
|
-
var icon_mosaic_default =
|
|
20259
|
+
var icon_mosaic_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_mosaic_vue_vue_type_script_lang_default, [["render", _sfc_render$61]]);
|
|
20260
20260
|
//#endregion
|
|
20261
20261
|
//#region components/icon/icon-mosaic/index.ts
|
|
20262
20262
|
var IconMosaic = Object.assign(icon_mosaic_default, { install: (app, options) => {
|
|
@@ -20343,7 +20343,7 @@ function _sfc_render$60(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
20343
20343
|
style: _ctx.innerStyle
|
|
20344
20344
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M39.979 29.241c.11-.344-.23-.654-.574-.544-1.53.487-3.162.75-4.855.75-8.834 0-15.997-7.163-15.997-15.997 0-1.693.263-3.324.75-4.855.11-.344-.2-.684-.544-.574C11.939 10.19 7 16.576 7 24.114 7 33.44 14.56 41 23.886 41c7.538 0 13.923-4.94 16.093-11.759Z" }, null, -1)])], 16);
|
|
20345
20345
|
}
|
|
20346
|
-
var icon_moon_default =
|
|
20346
|
+
var icon_moon_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_moon_vue_vue_type_script_lang_default, [["render", _sfc_render$60]]);
|
|
20347
20347
|
//#endregion
|
|
20348
20348
|
//#region components/icon/icon-moon/index.ts
|
|
20349
20349
|
var IconMoon = Object.assign(icon_moon_default, { install: (app, options) => {
|
|
@@ -20436,7 +20436,7 @@ function _sfc_render$59(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
20436
20436
|
stroke: "none"
|
|
20437
20437
|
}, null, -1)])], 16);
|
|
20438
20438
|
}
|
|
20439
|
-
var icon_mobile_default =
|
|
20439
|
+
var icon_mobile_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_mobile_vue_vue_type_script_lang_default, [["render", _sfc_render$59]]);
|
|
20440
20440
|
//#endregion
|
|
20441
20441
|
//#region components/icon/icon-mobile/index.ts
|
|
20442
20442
|
var IconMobile = Object.assign(icon_mobile_default, { install: (app, options) => {
|
|
@@ -20523,7 +20523,7 @@ function _sfc_render$58(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
20523
20523
|
style: _ctx.innerStyle
|
|
20524
20524
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M20 10h23M20 24h23M20 38h23M9 12v28m0-28a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 26h7M9 24h7" }, null, -1)])], 16);
|
|
20525
20525
|
}
|
|
20526
|
-
var icon_mind_mapping_default =
|
|
20526
|
+
var icon_mind_mapping_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_mind_mapping_vue_vue_type_script_lang_default, [["render", _sfc_render$58]]);
|
|
20527
20527
|
//#endregion
|
|
20528
20528
|
//#region components/icon/icon-mind-mapping/index.ts
|
|
20529
20529
|
var IconMindMapping = Object.assign(icon_mind_mapping_default, { install: (app, options) => {
|
|
@@ -20610,7 +20610,7 @@ function _sfc_render$57(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
20610
20610
|
style: _ctx.innerStyle
|
|
20611
20611
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M5 10h38M5 24h38M5 38h38" }, null, -1)])], 16);
|
|
20612
20612
|
}
|
|
20613
|
-
var icon_menu_default =
|
|
20613
|
+
var icon_menu_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_menu_vue_vue_type_script_lang_default, [["render", _sfc_render$57]]);
|
|
20614
20614
|
//#endregion
|
|
20615
20615
|
//#region components/icon/icon-menu/index.ts
|
|
20616
20616
|
var IconMenu = Object.assign(icon_menu_default, { install: (app, options) => {
|
|
@@ -20697,7 +20697,7 @@ function _sfc_render$56(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
20697
20697
|
style: _ctx.innerStyle
|
|
20698
20698
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M40 8 29.68 18.321M31 8h9v9m-7 10c0 7.18-5.82 13-13 13S7 34.18 7 27s5.82-13 13-13 13 5.82 13 13Z" }, null, -1)])], 16);
|
|
20699
20699
|
}
|
|
20700
|
-
var icon_man_default =
|
|
20700
|
+
var icon_man_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_man_vue_vue_type_script_lang_default, [["render", _sfc_render$56]]);
|
|
20701
20701
|
//#endregion
|
|
20702
20702
|
//#region components/icon/icon-man/index.ts
|
|
20703
20703
|
var IconMan = Object.assign(icon_man_default, { install: (app, options) => {
|
|
@@ -20784,7 +20784,7 @@ function _sfc_render$55(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
20784
20784
|
style: _ctx.innerStyle
|
|
20785
20785
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M24 38c-7.732 0-14-6.268-14-14 0-3.815 1.526-7.273 4-9.798M24 10c7.732 0 14 6.268 14 14 0 3.815-1.526 7.273-4 9.798M24 7v6l-4-3zm0 33v-6l4 3z" }, null, -1)])], 16);
|
|
20786
20786
|
}
|
|
20787
|
-
var icon_loop_default =
|
|
20787
|
+
var icon_loop_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_loop_vue_vue_type_script_lang_default, [["render", _sfc_render$55]]);
|
|
20788
20788
|
//#endregion
|
|
20789
20789
|
//#region components/icon/icon-loop/index.ts
|
|
20790
20790
|
var IconLoop = Object.assign(icon_loop_default, { install: (app, options) => {
|
|
@@ -20877,7 +20877,7 @@ function _sfc_render$54(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
20877
20877
|
rx: "1"
|
|
20878
20878
|
}, null, -1), createElementVNode("path", { d: "M15 21v-6a9 9 0 1 1 18 0v6M24 35v-8" }, null, -1)])], 16);
|
|
20879
20879
|
}
|
|
20880
|
-
var icon_lock_default =
|
|
20880
|
+
var icon_lock_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_lock_vue_vue_type_script_lang_default, [["render", _sfc_render$54]]);
|
|
20881
20881
|
//#endregion
|
|
20882
20882
|
//#region components/icon/icon-lock/index.ts
|
|
20883
20883
|
var IconLock = Object.assign(icon_lock_default, { install: (app, options) => {
|
|
@@ -20968,7 +20968,7 @@ function _sfc_render$53(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
20968
20968
|
r: "5"
|
|
20969
20969
|
}, null, -1), createElementVNode("path", { d: "M39 20.405C39 28.914 24 43 24 43S9 28.914 9 20.405 15.716 5 24 5s15 6.897 15 15.405Z" }, null, -1)])], 16);
|
|
20970
20970
|
}
|
|
20971
|
-
var icon_location_default =
|
|
20971
|
+
var icon_location_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_location_vue_vue_type_script_lang_default, [["render", _sfc_render$53]]);
|
|
20972
20972
|
//#endregion
|
|
20973
20973
|
//#region components/icon/icon-location/index.ts
|
|
20974
20974
|
var IconLocation = Object.assign(icon_location_default, { install: (app, options) => {
|
|
@@ -21055,7 +21055,7 @@ function _sfc_render$52(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
21055
21055
|
style: _ctx.innerStyle
|
|
21056
21056
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M42 24c0 9.941-8.059 18-18 18S6 33.941 6 24 14.059 6 24 6" }, null, -1)])], 16);
|
|
21057
21057
|
}
|
|
21058
|
-
var icon_loading_default =
|
|
21058
|
+
var icon_loading_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_loading_vue_vue_type_script_lang_default, [["render", _sfc_render$52]]);
|
|
21059
21059
|
//#endregion
|
|
21060
21060
|
//#region components/icon/icon-loading/index.ts
|
|
21061
21061
|
var IconLoading = Object.assign(icon_loading_default, { install: (app, options) => {
|
|
@@ -21142,7 +21142,7 @@ function _sfc_render$51(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
21142
21142
|
style: _ctx.innerStyle
|
|
21143
21143
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M19 40V8m23 2a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v28a2 2 0 0 0 2 2h32a2 2 0 0 0 2-2V10Z" }, null, -1)])], 16);
|
|
21144
21144
|
}
|
|
21145
|
-
var icon_layout_default =
|
|
21145
|
+
var icon_layout_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_layout_vue_vue_type_script_lang_default, [["render", _sfc_render$51]]);
|
|
21146
21146
|
//#endregion
|
|
21147
21147
|
//#region components/icon/icon-layout/index.ts
|
|
21148
21148
|
var IconLayout = Object.assign(icon_layout_default, { install: (app, options) => {
|
|
@@ -21229,7 +21229,7 @@ function _sfc_render$50(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
21229
21229
|
style: _ctx.innerStyle
|
|
21230
21230
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M24.015 7.017 41 14.62l-16.985 7.605L7.03 14.62z" }, null, -1), createElementVNode("path", { d: "m41 23.255-16.985 7.604L7.03 23.255M40.97 33.412l-16.985 7.605L7 33.412" }, null, -1)])], 16);
|
|
21231
21231
|
}
|
|
21232
|
-
var icon_layers_default =
|
|
21232
|
+
var icon_layers_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_layers_vue_vue_type_script_lang_default, [["render", _sfc_render$50]]);
|
|
21233
21233
|
//#endregion
|
|
21234
21234
|
//#region components/icon/icon-layers/index.ts
|
|
21235
21235
|
var IconLayers = Object.assign(icon_layers_default, { install: (app, options) => {
|
|
@@ -21316,7 +21316,7 @@ function _sfc_render$49(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
21316
21316
|
style: _ctx.innerStyle
|
|
21317
21317
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m42 43-2.385-6M26 43l2.384-6m11.231 0-.795-2-4.18-10h-1.28l-4.181 10-.795 2m11.231 0h-11.23M17 5l1 5M5 11h26M11 11s1.889 7.826 6.611 12.174S30 31 30 31" }, null, -1), createElementVNode("path", { d: "M25 11s-1.889 7.826-6.611 12.174S6 31 6 31" }, null, -1)])], 16);
|
|
21318
21318
|
}
|
|
21319
|
-
var icon_language_default =
|
|
21319
|
+
var icon_language_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_language_vue_vue_type_script_lang_default, [["render", _sfc_render$49]]);
|
|
21320
21320
|
//#endregion
|
|
21321
21321
|
//#region components/icon/icon-language/index.ts
|
|
21322
21322
|
var IconLanguage = Object.assign(icon_language_default, { install: (app, options) => {
|
|
@@ -21403,7 +21403,7 @@ function _sfc_render$48(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
21403
21403
|
style: _ctx.innerStyle
|
|
21404
21404
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M8 19h16m16 0H24m0 0v23m14 0H10a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h28a2 2 0 0 1 2 2v32a2 2 0 0 1-2 2Z" }, null, -1)])], 16);
|
|
21405
21405
|
}
|
|
21406
|
-
var icon_interaction_default =
|
|
21406
|
+
var icon_interaction_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_interaction_vue_vue_type_script_lang_default, [["render", _sfc_render$48]]);
|
|
21407
21407
|
//#endregion
|
|
21408
21408
|
//#region components/icon/icon-interaction/index.ts
|
|
21409
21409
|
var IconInteraction = Object.assign(icon_interaction_default, { install: (app, options) => {
|
|
@@ -21494,7 +21494,7 @@ function _sfc_render$47(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
21494
21494
|
d: "M33 33v-9l-9 9zM23.5 33l-3-4-3 4zM15 15h2v2h-2z"
|
|
21495
21495
|
}, null, -1)])], 16);
|
|
21496
21496
|
}
|
|
21497
|
-
var icon_image_default =
|
|
21497
|
+
var icon_image_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_image_vue_vue_type_script_lang_default, [["render", _sfc_render$47]]);
|
|
21498
21498
|
//#endregion
|
|
21499
21499
|
//#region components/icon/icon-image/index.ts
|
|
21500
21500
|
var IconImage = Object.assign(icon_image_default, { install: (app, options) => {
|
|
@@ -21581,7 +21581,7 @@ function _sfc_render$46(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
21581
21581
|
style: _ctx.innerStyle
|
|
21582
21582
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createStaticVNode("<path d=\"M41 26V9a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v30a2 2 0 0 0 2 2h17\"></path><path d=\"m24 33 9-8.5V27s-2 1-3.5 2.5C27.841 31.159 27 33 27 33zm0 0-3.5-4.5L17 33z\"></path><path fill=\"currentColor\" stroke=\"none\" d=\"M20.5 28.5 17 33h7zM33 24.5 24 33h3s.841-1.841 2.5-3.5C31 28 33 27 33 27z\"></path><path fill=\"currentColor\" fill-rule=\"evenodd\" stroke=\"none\" d=\"M46 38a8 8 0 1 1-16 0 8 8 0 0 1 16 0m-4.95-4.782 1.74 1.74-3.045 3.046 3.046 3.046-1.74 1.74-3.047-3.045-3.046 3.046-1.74-1.74 3.046-3.047-3.046-3.046 1.74-1.74 3.046 3.046z\" clip-rule=\"evenodd\"></path><path d=\"M17 15h-2v2h2z\"></path>", 5)])], 16);
|
|
21583
21583
|
}
|
|
21584
|
-
var icon_image_close_default =
|
|
21584
|
+
var icon_image_close_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_image_close_vue_vue_type_script_lang_default, [["render", _sfc_render$46]]);
|
|
21585
21585
|
//#endregion
|
|
21586
21586
|
//#region components/icon/icon-image-close/index.ts
|
|
21587
21587
|
var IconImageClose = Object.assign(icon_image_close_default, { install: (app, options) => {
|
|
@@ -21676,7 +21676,7 @@ function _sfc_render$45(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
21676
21676
|
}, null, -1)
|
|
21677
21677
|
])], 16);
|
|
21678
21678
|
}
|
|
21679
|
-
var icon_idcard_default =
|
|
21679
|
+
var icon_idcard_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_idcard_vue_vue_type_script_lang_default, [["render", _sfc_render$45]]);
|
|
21680
21680
|
//#endregion
|
|
21681
21681
|
//#region components/icon/icon-idcard/index.ts
|
|
21682
21682
|
var IconIdcard = Object.assign(icon_idcard_default, { install: (app, options) => {
|
|
@@ -21763,7 +21763,7 @@ function _sfc_render$44(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
21763
21763
|
style: _ctx.innerStyle
|
|
21764
21764
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M13.45 14.043H8a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h32a1 1 0 0 0 1-1v-8a1 1 0 0 0-1-1h-4.893m-21.657 0c-1.036-2.833-.615-5.6 1.182-6.637 2.152-1.243 5.464.464 7.397 3.812.539.933.914 1.896 1.127 2.825m-9.706 0h9.706m0 0H25.4m0 0a10.3 10.3 0 0 1 1.128-2.825c1.933-3.348 5.244-5.055 7.397-3.812 1.797 1.037 2.217 3.804 1.182 6.637m-9.707 0h9.707M10 26.043a2 2 0 0 1 2-2h24a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2H12a2 2 0 0 1-2-2z" }, null, -1)])], 16);
|
|
21765
21765
|
}
|
|
21766
|
-
var icon_gift_default =
|
|
21766
|
+
var icon_gift_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_gift_vue_vue_type_script_lang_default, [["render", _sfc_render$44]]);
|
|
21767
21767
|
//#endregion
|
|
21768
21768
|
//#region components/icon/icon-gift/index.ts
|
|
21769
21769
|
var IconGift = Object.assign(icon_gift_default, { install: (app, options) => {
|
|
@@ -21850,7 +21850,7 @@ function _sfc_render$43(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
21850
21850
|
style: _ctx.innerStyle
|
|
21851
21851
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M6 13h18l-2.527-3.557a1.08 1.08 0 0 0-.88-.443H7.06C6.474 9 6 9.448 6 10zm0 0h33.882c1.17 0 2.118.895 2.118 2v21c0 1.105-.948 3-2.118 3H8.118C6.948 39 6 38.105 6 37z" }, null, -1)])], 16);
|
|
21852
21852
|
}
|
|
21853
|
-
var icon_folder_default =
|
|
21853
|
+
var icon_folder_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_folder_vue_vue_type_script_lang_default, [["render", _sfc_render$43]]);
|
|
21854
21854
|
//#endregion
|
|
21855
21855
|
//#region components/icon/icon-folder/index.ts
|
|
21856
21856
|
var IconFolder = Object.assign(icon_folder_default, { install: (app, options) => {
|
|
@@ -21937,7 +21937,7 @@ function _sfc_render$42(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
21937
21937
|
style: _ctx.innerStyle
|
|
21938
21938
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M17 26h14M6 13h18l-2.527-3.557a1.08 1.08 0 0 0-.88-.443H7.06C6.474 9 6 9.448 6 10zm0 0h33.882c1.17 0 2.118.895 2.118 2v21c0 1.105-.948 3-2.118 3H8.118C6.948 39 6 38.105 6 37z" }, null, -1)])], 16);
|
|
21939
21939
|
}
|
|
21940
|
-
var icon_folder_delete_default =
|
|
21940
|
+
var icon_folder_delete_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_folder_delete_vue_vue_type_script_lang_default, [["render", _sfc_render$42]]);
|
|
21941
21941
|
//#endregion
|
|
21942
21942
|
//#region components/icon/icon-folder-delete/index.ts
|
|
21943
21943
|
var IconFolderDelete = Object.assign(icon_folder_delete_default, { install: (app, options) => {
|
|
@@ -22024,7 +22024,7 @@ function _sfc_render$41(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
22024
22024
|
style: _ctx.innerStyle
|
|
22025
22025
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M24 19v14m-7-7h14M6 13h18l-2.527-3.557a1.08 1.08 0 0 0-.88-.443H7.06C6.474 9 6 9.448 6 10zm0 0h33.882c1.17 0 2.118.895 2.118 2v21c0 1.105-.948 3-2.118 3H8.118C6.948 39 6 38.105 6 37z" }, null, -1)])], 16);
|
|
22026
22026
|
}
|
|
22027
|
-
var icon_folder_add_default =
|
|
22027
|
+
var icon_folder_add_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_folder_add_vue_vue_type_script_lang_default, [["render", _sfc_render$41]]);
|
|
22028
22028
|
//#endregion
|
|
22029
22029
|
//#region components/icon/icon-folder-add/index.ts
|
|
22030
22030
|
var IconFolderAdd = Object.assign(icon_folder_add_default, { install: (app, options) => {
|
|
@@ -22111,7 +22111,7 @@ function _sfc_render$40(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
22111
22111
|
style: _ctx.innerStyle
|
|
22112
22112
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M17.577 27.477C20.022 22.579 17.041 12.98 24.546 6c0 0-1.156 15.55 5.36 17.181 2.145.537 2.68-5.369 4.289-8.59 0 0 .536 4.832 2.68 8.59 3.217 7.517-1 14.117-5.896 17.182-4.289 2.685-14.587 2.807-19.835-5.37-4.824-7.516 0-15.57 0-15.57s4.289 12.35 6.433 8.054Z" }, null, -1)])], 16);
|
|
22113
22113
|
}
|
|
22114
|
-
var icon_fire_default =
|
|
22114
|
+
var icon_fire_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_fire_vue_vue_type_script_lang_default, [["render", _sfc_render$40]]);
|
|
22115
22115
|
//#endregion
|
|
22116
22116
|
//#region components/icon/icon-fire/index.ts
|
|
22117
22117
|
var IconFire = Object.assign(icon_fire_default, { install: (app, options) => {
|
|
@@ -22198,7 +22198,7 @@ function _sfc_render$39(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
22198
22198
|
style: _ctx.innerStyle
|
|
22199
22199
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M16 21h16m-16 8h10m11 13H11a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h21l7 7v27a2 2 0 0 1-2 2Z" }, null, -1)])], 16);
|
|
22200
22200
|
}
|
|
22201
|
-
var icon_file_default =
|
|
22201
|
+
var icon_file_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_file_vue_vue_type_script_lang_default, [["render", _sfc_render$39]]);
|
|
22202
22202
|
//#endregion
|
|
22203
22203
|
//#region components/icon/icon-file/index.ts
|
|
22204
22204
|
var IconFile = Object.assign(icon_file_default, { install: (app, options) => {
|
|
@@ -22285,7 +22285,7 @@ function _sfc_render$38(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
22285
22285
|
style: _ctx.innerStyle
|
|
22286
22286
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M37 42H11a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h21l7 7v27a2 2 0 0 1-2 2Z" }, null, -1), createElementVNode("path", { d: "M22 27.796v-6l5 3z" }, null, -1)])], 16);
|
|
22287
22287
|
}
|
|
22288
|
-
var icon_file_video_default =
|
|
22288
|
+
var icon_file_video_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_file_video_vue_vue_type_script_lang_default, [["render", _sfc_render$38]]);
|
|
22289
22289
|
//#endregion
|
|
22290
22290
|
//#region components/icon/icon-file-video/index.ts
|
|
22291
22291
|
var IconFileVideo = Object.assign(icon_file_video_default, { install: (app, options) => {
|
|
@@ -22372,7 +22372,7 @@ function _sfc_render$37(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
22372
22372
|
style: _ctx.innerStyle
|
|
22373
22373
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M11 42h26a2 2 0 0 0 2-2V13.828a2 2 0 0 0-.586-1.414l-5.828-5.828A2 2 0 0 0 31.172 6H11a2 2 0 0 0-2 2v32a2 2 0 0 0 2 2Z" }, null, -1), createElementVNode("path", { d: "M22.305 21.028c.874 1.939 3.506 6.265 4.903 8.055 1.747 2.237 3.494 2.685 4.368 2.237.873-.447 1.21-4.548-7.425-2.685-7.523 1.623-7.424 3.58-6.988 4.476.728 1.193 2.522 2.627 5.678-6.266C25.699 18.79 24.489 17 23.277 17c-1.408 0-2.538.805-.972 4.028Z" }, null, -1)])], 16);
|
|
22374
22374
|
}
|
|
22375
|
-
var icon_file_pdf_default =
|
|
22375
|
+
var icon_file_pdf_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_file_pdf_vue_vue_type_script_lang_default, [["render", _sfc_render$37]]);
|
|
22376
22376
|
//#endregion
|
|
22377
22377
|
//#region components/icon/icon-file-pdf/index.ts
|
|
22378
22378
|
var IconFilePdf = Object.assign(icon_file_pdf_default, { install: (app, options) => {
|
|
@@ -22459,7 +22459,7 @@ function _sfc_render$36(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
22459
22459
|
style: _ctx.innerStyle
|
|
22460
22460
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m26 33 5-6v6zm0 0-3-4-4 4zm11 9H11a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h21l7 7v27a2 2 0 0 1-2 2ZM17 19h1v1h-1z" }, null, -1)])], 16);
|
|
22461
22461
|
}
|
|
22462
|
-
var icon_file_image_default =
|
|
22462
|
+
var icon_file_image_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_file_image_vue_vue_type_script_lang_default, [["render", _sfc_render$36]]);
|
|
22463
22463
|
//#endregion
|
|
22464
22464
|
//#region components/icon/icon-file-image/index.ts
|
|
22465
22465
|
var IconFileImage = Object.assign(icon_file_image_default, { install: (app, options) => {
|
|
@@ -22554,7 +22554,7 @@ function _sfc_render$35(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
22554
22554
|
createElementVNode("path", { d: "M25 30a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm0 0-.951-12.363a.5.5 0 0 1 .58-.532L30 18" }, null, -1)
|
|
22555
22555
|
])], 16);
|
|
22556
22556
|
}
|
|
22557
|
-
var icon_file_audio_default =
|
|
22557
|
+
var icon_file_audio_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_file_audio_vue_vue_type_script_lang_default, [["render", _sfc_render$35]]);
|
|
22558
22558
|
//#endregion
|
|
22559
22559
|
//#region components/icon/icon-file-audio/index.ts
|
|
22560
22560
|
var IconFileAudio = Object.assign(icon_file_audio_default, { install: (app, options) => {
|
|
@@ -22641,7 +22641,7 @@ function _sfc_render$34(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
22641
22641
|
style: _ctx.innerStyle
|
|
22642
22642
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M10.5 7h6m0 0v10.5l-5.25 14M16.5 7h15m0 0h6m-6 0v10.5L37 32.167M11.25 31.5l-2.344 6.853A2 2 0 0 0 10.8 41h26.758a2 2 0 0 0 1.86-2.737L37 32.167M11.25 31.5c1.916 1.833 7.05 4.4 12.25 0s11.166-1.389 13.5.667M26 22.5v.01" }, null, -1)])], 16);
|
|
22643
22643
|
}
|
|
22644
|
-
var icon_experiment_default =
|
|
22644
|
+
var icon_experiment_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_experiment_vue_vue_type_script_lang_default, [["render", _sfc_render$34]]);
|
|
22645
22645
|
//#endregion
|
|
22646
22646
|
//#region components/icon/icon-experiment/index.ts
|
|
22647
22647
|
var IconExperiment = Object.assign(icon_experiment_default, { install: (app, options) => {
|
|
@@ -22728,7 +22728,7 @@ function _sfc_render$33(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
22728
22728
|
style: _ctx.innerStyle
|
|
22729
22729
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M24 5v6m7 1 4-4m-18 4-4-4m28.5 22H28s-1 3-4 3-4-3-4-3H6.5M40 41H8a2 2 0 0 1-2-2v-8.46a2 2 0 0 1 .272-1.007l6.15-10.54A2 2 0 0 1 14.148 18H33.85a2 2 0 0 1 1.728.992l6.149 10.541A2 2 0 0 1 42 30.541V39a2 2 0 0 1-2 2Z" }, null, -1)])], 16);
|
|
22730
22730
|
}
|
|
22731
|
-
var icon_empty_default =
|
|
22731
|
+
var icon_empty_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_empty_vue_vue_type_script_lang_default, [["render", _sfc_render$33]]);
|
|
22732
22732
|
//#endregion
|
|
22733
22733
|
//#region components/icon/icon-empty/index.ts
|
|
22734
22734
|
var IconEmpty = Object.assign(icon_empty_default, { install: (app, options) => {
|
|
@@ -22821,7 +22821,7 @@ function _sfc_render$32(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
22821
22821
|
rx: "1"
|
|
22822
22822
|
}, null, -1), createElementVNode("path", { d: "m37 17-12.43 8.606a1 1 0 0 1-1.14 0L11 17" }, null, -1)])], 16);
|
|
22823
22823
|
}
|
|
22824
|
-
var icon_email_default =
|
|
22824
|
+
var icon_email_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_email_vue_vue_type_script_lang_default, [["render", _sfc_render$32]]);
|
|
22825
22825
|
//#endregion
|
|
22826
22826
|
//#region components/icon/icon-email/index.ts
|
|
22827
22827
|
var IconEmail = Object.assign(icon_email_default, { install: (app, options) => {
|
|
@@ -22908,7 +22908,7 @@ function _sfc_render$31(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
22908
22908
|
style: _ctx.innerStyle
|
|
22909
22909
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M13 15.528C14.32 12.386 18.403 6.977 23.556 7c7.944.036 14.514 8.528 10.116 15.71-4.399 7.181-5.718 10.323-6.598 14.363-.82 3.766-9.288 7.143-11.498-1.515M20 18.5c1-3.083 4.5-4.5 6.5-2 2.85 3.562-3.503 8.312-5.5 12.5" }, null, -1)])], 16);
|
|
22910
22910
|
}
|
|
22911
|
-
var icon_ear_default =
|
|
22911
|
+
var icon_ear_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_ear_vue_vue_type_script_lang_default, [["render", _sfc_render$31]]);
|
|
22912
22912
|
//#endregion
|
|
22913
22913
|
//#region components/icon/icon-ear/index.ts
|
|
22914
22914
|
var IconEar = Object.assign(icon_ear_default, { install: (app, options) => {
|
|
@@ -22995,7 +22995,7 @@ function _sfc_render$30(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
22995
22995
|
style: _ctx.innerStyle
|
|
22996
22996
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M38.5 17H29a1 1 0 0 1-1-1V6.5m0-.5H10a1 1 0 0 0-1 1v34a1 1 0 0 0 1 1h28a1 1 0 0 0 1-1V17z" }, null, -1)])], 16);
|
|
22997
22997
|
}
|
|
22998
|
-
var icon_drive_file_default =
|
|
22998
|
+
var icon_drive_file_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_drive_file_vue_vue_type_script_lang_default, [["render", _sfc_render$30]]);
|
|
22999
22999
|
//#endregion
|
|
23000
23000
|
//#region components/icon/icon-drive-file/index.ts
|
|
23001
23001
|
var IconDriveFile = Object.assign(icon_drive_file_default, { install: (app, options) => {
|
|
@@ -23086,7 +23086,7 @@ function _sfc_render$29(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23086
23086
|
d: "M40 17v2h-2v-2zM25 17v2h-2v-2zM10 17v2H8v-2zM40 29v2h-2v-2zM25 29v2h-2v-2zM10 29v2H8v-2z"
|
|
23087
23087
|
}, null, -1), createElementVNode("path", { d: "M40 17v2h-2v-2zM25 17v2h-2v-2zM10 17v2H8v-2zM40 29v2h-2v-2zM25 29v2h-2v-2zM10 29v2H8v-2z" }, null, -1)])], 16);
|
|
23088
23088
|
}
|
|
23089
|
-
var icon_drag_dot_default =
|
|
23089
|
+
var icon_drag_dot_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_drag_dot_vue_vue_type_script_lang_default, [["render", _sfc_render$29]]);
|
|
23090
23090
|
//#endregion
|
|
23091
23091
|
//#region components/icon/icon-drag-dot/index.ts
|
|
23092
23092
|
var IconDragDot = Object.assign(icon_drag_dot_default, { install: (app, options) => {
|
|
@@ -23177,7 +23177,7 @@ function _sfc_render$28(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23177
23177
|
d: "M17 8h2v2h-2zM17 23h2v2h-2zM17 38h2v2h-2zM29 8h2v2h-2zM29 23h2v2h-2zM29 38h2v2h-2z"
|
|
23178
23178
|
}, null, -1), createElementVNode("path", { d: "M17 8h2v2h-2zM17 23h2v2h-2zM17 38h2v2h-2zM29 8h2v2h-2zM29 23h2v2h-2zM29 38h2v2h-2z" }, null, -1)])], 16);
|
|
23179
23179
|
}
|
|
23180
|
-
var icon_drag_dot_vertical_default =
|
|
23180
|
+
var icon_drag_dot_vertical_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_drag_dot_vertical_vue_vue_type_script_lang_default, [["render", _sfc_render$28]]);
|
|
23181
23181
|
//#endregion
|
|
23182
23182
|
//#region components/icon/icon-drag-dot-vertical/index.ts
|
|
23183
23183
|
var IconDragDotVertical = Object.assign(icon_drag_dot_vertical_default, { install: (app, options) => {
|
|
@@ -23264,7 +23264,7 @@ function _sfc_render$27(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23264
23264
|
style: _ctx.innerStyle
|
|
23265
23265
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createStaticVNode("<rect width=\"34\" height=\"34\" x=\"6.998\" y=\"7\" rx=\"1.5\"></rect><circle cx=\"16\" cy=\"16\" r=\"2\"></circle><circle cx=\"24\" cy=\"24\" r=\"2\"></circle><circle cx=\"16\" cy=\"32\" r=\"2\"></circle><circle cx=\"32\" cy=\"16\" r=\"2\"></circle><circle cx=\"32\" cy=\"32\" r=\"2\"></circle><circle cx=\"16\" cy=\"16\" r=\"2\" fill=\"currentColor\" stroke=\"none\"></circle><circle cx=\"24\" cy=\"24\" r=\"2\" fill=\"currentColor\" stroke=\"none\"></circle><circle cx=\"16\" cy=\"32\" r=\"2\" fill=\"currentColor\" stroke=\"none\"></circle><circle cx=\"32\" cy=\"16\" r=\"2\" fill=\"currentColor\" stroke=\"none\"></circle><circle cx=\"32\" cy=\"32\" r=\"2\" fill=\"currentColor\" stroke=\"none\"></circle>", 11)])], 16);
|
|
23266
23266
|
}
|
|
23267
|
-
var icon_dice_default =
|
|
23267
|
+
var icon_dice_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_dice_vue_vue_type_script_lang_default, [["render", _sfc_render$27]]);
|
|
23268
23268
|
//#endregion
|
|
23269
23269
|
//#region components/icon/icon-dice/index.ts
|
|
23270
23270
|
var IconDice = Object.assign(icon_dice_default, { install: (app, options) => {
|
|
@@ -23351,7 +23351,7 @@ function _sfc_render$26(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23351
23351
|
style: _ctx.innerStyle
|
|
23352
23352
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M24 32v8m0 0h-9m9 0h9M7 32h34a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v22a1 1 0 0 0 1 1Z" }, null, -1)])], 16);
|
|
23353
23353
|
}
|
|
23354
|
-
var icon_desktop_default =
|
|
23354
|
+
var icon_desktop_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_desktop_vue_vue_type_script_lang_default, [["render", _sfc_render$26]]);
|
|
23355
23355
|
//#endregion
|
|
23356
23356
|
//#region components/icon/icon-desktop/index.ts
|
|
23357
23357
|
var IconDesktop = Object.assign(icon_desktop_default, { install: (app, options) => {
|
|
@@ -23438,7 +23438,7 @@ function _sfc_render$25(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23438
23438
|
style: _ctx.innerStyle
|
|
23439
23439
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M41.808 24c.118 4.63-1.486 9.333-5.21 13m5.21-13h-8.309m8.309 0c-.112-4.38-1.767-8.694-4.627-12M24 6c5.531 0 10.07 2.404 13.18 6M24 6c-5.724 0-10.384 2.574-13.5 6.38M24 6v7.5M37.18 12 31 17.5m-20.5-5.12L17 17.5m-6.5-5.12C6.99 16.662 5.44 22.508 6.53 28m4.872 9c-2.65-2.609-4.226-5.742-4.873-9m0 0 8.97-3.5" }, null, -1), createElementVNode("path", { d: "M24 32a5 5 0 1 0 0 10 5 5 0 0 0 0-10Zm0 0V19" }, null, -1)])], 16);
|
|
23440
23440
|
}
|
|
23441
|
-
var icon_dashboard_default =
|
|
23441
|
+
var icon_dashboard_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_dashboard_vue_vue_type_script_lang_default, [["render", _sfc_render$25]]);
|
|
23442
23442
|
//#endregion
|
|
23443
23443
|
//#region components/icon/icon-dashboard/index.ts
|
|
23444
23444
|
var IconDashboard = Object.assign(icon_dashboard_default, { install: (app, options) => {
|
|
@@ -23525,7 +23525,7 @@ function _sfc_render$24(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23525
23525
|
style: _ctx.innerStyle
|
|
23526
23526
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M29.292 18a8 8 0 1 0 0 12M42 24c0 9.941-8.059 18-18 18S6 33.941 6 24 14.059 6 24 6s18 8.059 18 18Z" }, null, -1)])], 16);
|
|
23527
23527
|
}
|
|
23528
|
-
var icon_copyright_default =
|
|
23528
|
+
var icon_copyright_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_copyright_vue_vue_type_script_lang_default, [["render", _sfc_render$24]]);
|
|
23529
23529
|
//#endregion
|
|
23530
23530
|
//#region components/icon/icon-copyright/index.ts
|
|
23531
23531
|
var IconCopyright = Object.assign(icon_copyright_default, { install: (app, options) => {
|
|
@@ -23617,7 +23617,7 @@ function _sfc_render$23(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23617
23617
|
createElementVNode("path", { d: "m20.243 14.657 5.657 5.657M15.414 22.314l7.071-7.071M24.485 21.728l7.071-7.071" }, null, -1)
|
|
23618
23618
|
])], 16);
|
|
23619
23619
|
}
|
|
23620
|
-
var icon_computer_default =
|
|
23620
|
+
var icon_computer_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_computer_vue_vue_type_script_lang_default, [["render", _sfc_render$23]]);
|
|
23621
23621
|
//#endregion
|
|
23622
23622
|
//#region components/icon/icon-computer/index.ts
|
|
23623
23623
|
var IconComputer = Object.assign(icon_computer_default, { install: (app, options) => {
|
|
@@ -23704,7 +23704,7 @@ function _sfc_render$22(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23704
23704
|
style: _ctx.innerStyle
|
|
23705
23705
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M42 24c0 9.941-8.059 18-18 18S6 33.941 6 24 14.059 6 24 6s18 8.059 18 18Z" }, null, -1), createElementVNode("path", { d: "m21.177 21.183 10.108-4.717a.2.2 0 0 1 .266.265L26.834 26.84l-10.109 4.717a.2.2 0 0 1-.266-.266z" }, null, -1)])], 16);
|
|
23706
23706
|
}
|
|
23707
|
-
var icon_compass_default =
|
|
23707
|
+
var icon_compass_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_compass_vue_vue_type_script_lang_default, [["render", _sfc_render$22]]);
|
|
23708
23708
|
//#endregion
|
|
23709
23709
|
//#region components/icon/icon-compass/index.ts
|
|
23710
23710
|
var IconCompass = Object.assign(icon_compass_default, { install: (app, options) => {
|
|
@@ -23791,7 +23791,7 @@ function _sfc_render$21(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23791
23791
|
style: _ctx.innerStyle
|
|
23792
23792
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M24 23 7.652 14.345M24 23l16.366-8.664M24 23v19.438M7 14v20l17 9 17-9V14L24 5z" }, null, -1)])], 16);
|
|
23793
23793
|
}
|
|
23794
|
-
var icon_common_default =
|
|
23794
|
+
var icon_common_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_common_vue_vue_type_script_lang_default, [["render", _sfc_render$21]]);
|
|
23795
23795
|
//#endregion
|
|
23796
23796
|
//#region components/icon/icon-common/index.ts
|
|
23797
23797
|
var IconCommon = Object.assign(icon_common_default, { install: (app, options) => {
|
|
@@ -23878,7 +23878,7 @@ function _sfc_render$20(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23878
23878
|
style: _ctx.innerStyle
|
|
23879
23879
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M29 19v-6a6 6 0 1 1 6 6zm0 0v10m0-10H19m10 10v6a6 6 0 1 0 6-6zm0 0H19m0-10v10m0-10v-6a6 6 0 1 0-6 6zm0 10v6a6 6 0 1 1-6-6z" }, null, -1)])], 16);
|
|
23880
23880
|
}
|
|
23881
|
-
var icon_command_default =
|
|
23881
|
+
var icon_command_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_command_vue_vue_type_script_lang_default, [["render", _sfc_render$20]]);
|
|
23882
23882
|
//#endregion
|
|
23883
23883
|
//#region components/icon/icon-command/index.ts
|
|
23884
23884
|
var IconCommand = Object.assign(icon_command_default, { install: (app, options) => {
|
|
@@ -23965,7 +23965,7 @@ function _sfc_render$19(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23965
23965
|
style: _ctx.innerStyle
|
|
23966
23966
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M5 29a9 9 0 0 0 9 9h19c5.523 0 10-4.477 10-10 0-5.312-4.142-9.657-9.373-9.98C32.3 12.833 27.598 9 22 9c-6.606 0-11.965 5.338-12 11.935A9 9 0 0 0 5 29Z" }, null, -1)])], 16);
|
|
23967
23967
|
}
|
|
23968
|
-
var icon_cloud_default =
|
|
23968
|
+
var icon_cloud_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_cloud_vue_vue_type_script_lang_default, [["render", _sfc_render$19]]);
|
|
23969
23969
|
//#endregion
|
|
23970
23970
|
//#region components/icon/icon-cloud/index.ts
|
|
23971
23971
|
var IconCloud = Object.assign(icon_cloud_default, { install: (app, options) => {
|
|
@@ -24052,7 +24052,7 @@ function _sfc_render$18(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24052
24052
|
style: _ctx.innerStyle
|
|
24053
24053
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "m33 12-1.862-3.724A.5.5 0 0 0 30.691 8H17.309a.5.5 0 0 0-.447.276L15 12m16 14a7 7 0 1 1-14 0 7 7 0 0 1 14 0ZM7 40h34a1 1 0 0 0 1-1V13a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v26a1 1 0 0 0 1 1Z" }, null, -1)])], 16);
|
|
24054
24054
|
}
|
|
24055
|
-
var icon_camera_default =
|
|
24055
|
+
var icon_camera_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_camera_vue_vue_type_script_lang_default, [["render", _sfc_render$18]]);
|
|
24056
24056
|
//#endregion
|
|
24057
24057
|
//#region components/icon/icon-camera/index.ts
|
|
24058
24058
|
var IconCamera = Object.assign(icon_camera_default, { install: (app, options) => {
|
|
@@ -24139,7 +24139,7 @@ function _sfc_render$17(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24139
24139
|
style: _ctx.innerStyle
|
|
24140
24140
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M7 22h34M14 5v8m20-8v8M8 41h32a1 1 0 0 0 1-1V10a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v30a1 1 0 0 0 1 1Z" }, null, -1)])], 16);
|
|
24141
24141
|
}
|
|
24142
|
-
var icon_calendar_default =
|
|
24142
|
+
var icon_calendar_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_calendar_vue_vue_type_script_lang_default, [["render", _sfc_render$17]]);
|
|
24143
24143
|
//#endregion
|
|
24144
24144
|
//#region components/icon/icon-calendar/index.ts
|
|
24145
24145
|
var IconCalendar = Object.assign(icon_calendar_default, { install: (app, options) => {
|
|
@@ -24232,7 +24232,7 @@ function _sfc_render$16(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24232
24232
|
"clip-rule": "evenodd"
|
|
24233
24233
|
}, null, -1)])], 16);
|
|
24234
24234
|
}
|
|
24235
|
-
var icon_calendar_clock_default =
|
|
24235
|
+
var icon_calendar_clock_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_calendar_clock_vue_vue_type_script_lang_default, [["render", _sfc_render$16]]);
|
|
24236
24236
|
//#endregion
|
|
24237
24237
|
//#region components/icon/icon-calendar-clock/index.ts
|
|
24238
24238
|
var IconCalendarClock = Object.assign(icon_calendar_clock_default, { install: (app, options) => {
|
|
@@ -24319,7 +24319,7 @@ function _sfc_render$15(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24319
24319
|
style: _ctx.innerStyle
|
|
24320
24320
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M17 42h14m6-24c0 2.823-.9 5.437-2.43 7.568-1.539 2.147-3.185 4.32-3.77 6.897l-.623 2.756A1 1 0 0 1 29.2 36H18.8a1 1 0 0 1-.976-.779l-.624-2.756c-.584-2.576-2.23-4.75-3.77-6.897A12.94 12.94 0 0 1 11 18c0-7.18 5.82-13 13-13s13 5.82 13 13Z" }, null, -1)])], 16);
|
|
24321
24321
|
}
|
|
24322
|
-
var icon_bulb_default =
|
|
24322
|
+
var icon_bulb_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_bulb_vue_vue_type_script_lang_default, [["render", _sfc_render$15]]);
|
|
24323
24323
|
//#endregion
|
|
24324
24324
|
//#region components/icon/icon-bulb/index.ts
|
|
24325
24325
|
var IconBulb = Object.assign(icon_bulb_default, { install: (app, options) => {
|
|
@@ -24406,7 +24406,7 @@ function _sfc_render$14(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24406
24406
|
style: _ctx.innerStyle
|
|
24407
24407
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M24 42c-6.075 0-11-4.925-11-11V18h22v13c0 6.075-4.925 11-11 11Zm0 0V23m11 4h8M5 27h8M7 14a4 4 0 0 0 4 4h26a4 4 0 0 0 4-4m0 28v-.5a6.5 6.5 0 0 0-6.5-6.5M7 42v-.5a6.5 6.5 0 0 1 6.5-6.5M17 14a7 7 0 1 1 14 0" }, null, -1)])], 16);
|
|
24408
24408
|
}
|
|
24409
|
-
var icon_bug_default =
|
|
24409
|
+
var icon_bug_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_bug_vue_vue_type_script_lang_default, [["render", _sfc_render$14]]);
|
|
24410
24410
|
//#endregion
|
|
24411
24411
|
//#region components/icon/icon-bug/index.ts
|
|
24412
24412
|
var IconBug = Object.assign(icon_bug_default, { install: (app, options) => {
|
|
@@ -24493,7 +24493,7 @@ function _sfc_render$13(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24493
24493
|
style: _ctx.innerStyle
|
|
24494
24494
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M19 10a4 4 0 1 1-8 0 4 4 0 0 1 8 0ZM38 10a4 4 0 1 1-8 0 4 4 0 0 1 8 0ZM19 38a4 4 0 1 1-8 0 4 4 0 0 1 8 0ZM15 15v15m0 3.5V30m0 0c0-5 19-7 19-15" }, null, -1)])], 16);
|
|
24495
24495
|
}
|
|
24496
|
-
var icon_branch_default =
|
|
24496
|
+
var icon_branch_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_branch_vue_vue_type_script_lang_default, [["render", _sfc_render$13]]);
|
|
24497
24497
|
//#endregion
|
|
24498
24498
|
//#region components/icon/icon-branch/index.ts
|
|
24499
24499
|
var IconBranch = Object.assign(icon_branch_default, { install: (app, options) => {
|
|
@@ -24584,7 +24584,7 @@ function _sfc_render$12(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24584
24584
|
createElementVNode("path", { d: "M30 29h11v13l-5.5-3.5L30 42z" }, null, -1)
|
|
24585
24585
|
])], 16);
|
|
24586
24586
|
}
|
|
24587
|
-
var icon_bookmark_default =
|
|
24587
|
+
var icon_bookmark_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_bookmark_vue_vue_type_script_lang_default, [["render", _sfc_render$12]]);
|
|
24588
24588
|
//#endregion
|
|
24589
24589
|
//#region components/icon/icon-bookmark/index.ts
|
|
24590
24590
|
var IconBookmark = Object.assign(icon_bookmark_default, { install: (app, options) => {
|
|
@@ -24671,7 +24671,7 @@ function _sfc_render$11(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24671
24671
|
style: _ctx.innerStyle
|
|
24672
24672
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M24 13 7 7v28l17 6 17-6V7zm0 0v27.5M29 18l7-2.5M29 25l7-2.5M29 32l7-2.5M19 18l-7-2.5m7 9.5-7-2.5m7 9.5-7-2.5" }, null, -1)])], 16);
|
|
24673
24673
|
}
|
|
24674
|
-
var icon_book_default =
|
|
24674
|
+
var icon_book_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_book_vue_vue_type_script_lang_default, [["render", _sfc_render$11]]);
|
|
24675
24675
|
//#endregion
|
|
24676
24676
|
//#region components/icon/icon-book/index.ts
|
|
24677
24677
|
var IconBook = Object.assign(icon_book_default, { install: (app, options) => {
|
|
@@ -24758,7 +24758,7 @@ function _sfc_render$10(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24758
24758
|
style: _ctx.innerStyle
|
|
24759
24759
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M41 7H29v34h12zM29 18H18v23h11zM18 29H7v12h11z" }, null, -1)])], 16);
|
|
24760
24760
|
}
|
|
24761
|
-
var icon_bar_chart_default =
|
|
24761
|
+
var icon_bar_chart_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_bar_chart_vue_vue_type_script_lang_default, [["render", _sfc_render$10]]);
|
|
24762
24762
|
//#endregion
|
|
24763
24763
|
//#region components/icon/icon-bar-chart/index.ts
|
|
24764
24764
|
var IconBarChart = Object.assign(icon_bar_chart_default, { install: (app, options) => {
|
|
@@ -24851,7 +24851,7 @@ function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24851
24851
|
rx: "1"
|
|
24852
24852
|
}, null, -1), createElementVNode("path", { d: "M6 9a1 1 0 0 1 1-1h34a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1zM19 27h10" }, null, -1)])], 16);
|
|
24853
24853
|
}
|
|
24854
|
-
var icon_archive_default =
|
|
24854
|
+
var icon_archive_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_archive_vue_vue_type_script_lang_default, [["render", _sfc_render$9]]);
|
|
24855
24855
|
//#endregion
|
|
24856
24856
|
//#region components/icon/icon-archive/index.ts
|
|
24857
24857
|
var IconArchive = Object.assign(icon_archive_default, { install: (app, options) => {
|
|
@@ -24938,7 +24938,7 @@ function _sfc_render$8(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24938
24938
|
style: _ctx.innerStyle
|
|
24939
24939
|
}, _ctx.svgAttrs, { onClick: _cache[0] || (_cache[0] = (...args) => _ctx.onClick && _ctx.onClick(...args)) }), [..._cache[1] || (_cache[1] = [createElementVNode("path", { d: "M7 7h13v13H7zM28 7h13v13H28zM7 28h13v13H7zM28 28h13v13H28z" }, null, -1)])], 16);
|
|
24940
24940
|
}
|
|
24941
|
-
var icon_apps_default =
|
|
24941
|
+
var icon_apps_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_apps_vue_vue_type_script_lang_default, [["render", _sfc_render$8]]);
|
|
24942
24942
|
//#endregion
|
|
24943
24943
|
//#region components/icon/icon-apps/index.ts
|
|
24944
24944
|
var IconApps = Object.assign(icon_apps_default, { install: (app, options) => {
|
|
@@ -25035,7 +25035,7 @@ function _sfc_render$7(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
25035
25035
|
d: "M21 5.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v5a.5.5 0 0 1-.5.5h-5a.5.5 0 0 1-.5-.5zM21 37.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v5a.5.5 0 0 1-.5.5h-5a.5.5 0 0 1-.5-.5zM42.5 21a.5.5 0 0 1 .5.5v5a.5.5 0 0 1-.5.5h-5a.5.5 0 0 1-.5-.5v-5a.5.5 0 0 1 .5-.5zM10.5 21a.5.5 0 0 1 .5.5v5a.5.5 0 0 1-.5.5h-5a.5.5 0 0 1-.5-.5v-5a.5.5 0 0 1 .5-.5zM39.203 34.96a.5.5 0 0 1 0 .707l-3.536 3.536a.5.5 0 0 1-.707 0l-3.535-3.536a.5.5 0 0 1 0-.707l3.535-3.535a.5.5 0 0 1 .707 0zM16.575 12.333a.5.5 0 0 1 0 .707l-3.535 3.535a.5.5 0 0 1-.707 0L8.797 13.04a.5.5 0 0 1 0-.707l3.536-3.536a.5.5 0 0 1 .707 0zM13.04 39.203a.5.5 0 0 1-.707 0l-3.536-3.536a.5.5 0 0 1 0-.707l3.536-3.535a.5.5 0 0 1 .707 0l3.536 3.535a.5.5 0 0 1 0 .707zM35.668 16.575a.5.5 0 0 1-.708 0l-3.535-3.535a.5.5 0 0 1 0-.707l3.535-3.536a.5.5 0 0 1 .708 0l3.535 3.536a.5.5 0 0 1 0 .707z"
|
|
25036
25036
|
}, null, -1)])], 16);
|
|
25037
25037
|
}
|
|
25038
|
-
var icon_sun_fill_default =
|
|
25038
|
+
var icon_sun_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_sun_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$7]]);
|
|
25039
25039
|
//#endregion
|
|
25040
25040
|
//#region components/icon/icon-sun-fill/index.ts
|
|
25041
25041
|
var IconSunFill = Object.assign(icon_sun_fill_default, { install: (app, options) => {
|
|
@@ -25126,7 +25126,7 @@ function _sfc_render$6(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
25126
25126
|
d: "m31.07 8.444 8.485 8.485L19.05 37.435l-8.485-8.485zM33.9 5.615a2 2 0 0 1 2.829 0l5.657 5.657a2 2 0 0 1 0 2.829l-1.415 1.414-8.485-8.486zM17.636 38.85 9.15 30.363l-3.61 10.83a1 1 0 0 0 1.265 1.265z"
|
|
25127
25127
|
}, null, -1)])], 16);
|
|
25128
25128
|
}
|
|
25129
|
-
var icon_pen_fill_default =
|
|
25129
|
+
var icon_pen_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_pen_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$6]]);
|
|
25130
25130
|
//#endregion
|
|
25131
25131
|
//#region components/icon/icon-pen-fill/index.ts
|
|
25132
25132
|
var IconPenFill = Object.assign(icon_pen_fill_default, { install: (app, options) => {
|
|
@@ -25217,7 +25217,7 @@ function _sfc_render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
25217
25217
|
d: "M42.108 29.769c.124-.387-.258-.736-.645-.613A18 18 0 0 1 36 30c-9.941 0-18-8.059-18-18 0-1.904.296-3.74.844-5.463.123-.387-.226-.768-.613-.645C10.558 8.334 5 15.518 5 24c0 10.493 8.507 19 19 19 8.482 0 15.666-5.558 18.108-13.231"
|
|
25218
25218
|
}, null, -1)])], 16);
|
|
25219
25219
|
}
|
|
25220
|
-
var icon_moon_fill_default =
|
|
25220
|
+
var icon_moon_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_moon_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$5]]);
|
|
25221
25221
|
//#endregion
|
|
25222
25222
|
//#region components/icon/icon-moon-fill/index.ts
|
|
25223
25223
|
var IconMoonFill = Object.assign(icon_moon_fill_default, { install: (app, options) => {
|
|
@@ -25310,7 +25310,7 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
25310
25310
|
"clip-rule": "evenodd"
|
|
25311
25311
|
}, null, -1)])], 16);
|
|
25312
25312
|
}
|
|
25313
|
-
var icon_face_smile_fill_default =
|
|
25313
|
+
var icon_face_smile_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_face_smile_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$4]]);
|
|
25314
25314
|
//#endregion
|
|
25315
25315
|
//#region components/icon/icon-face-smile-fill/index.ts
|
|
25316
25316
|
var IconFaceSmileFill = Object.assign(icon_face_smile_fill_default, { install: (app, options) => {
|
|
@@ -25403,7 +25403,7 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
25403
25403
|
"clip-rule": "evenodd"
|
|
25404
25404
|
}, null, -1)])], 16);
|
|
25405
25405
|
}
|
|
25406
|
-
var icon_face_meh_fill_default =
|
|
25406
|
+
var icon_face_meh_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_face_meh_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$3]]);
|
|
25407
25407
|
//#endregion
|
|
25408
25408
|
//#region components/icon/icon-face-meh-fill/index.ts
|
|
25409
25409
|
var IconFaceMehFill = Object.assign(icon_face_meh_fill_default, { install: (app, options) => {
|
|
@@ -25496,7 +25496,7 @@ function _sfc_render$2(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
25496
25496
|
"clip-rule": "evenodd"
|
|
25497
25497
|
}, null, -1)])], 16);
|
|
25498
25498
|
}
|
|
25499
|
-
var icon_face_frown_fill_default =
|
|
25499
|
+
var icon_face_frown_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_face_frown_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$2]]);
|
|
25500
25500
|
//#endregion
|
|
25501
25501
|
//#region components/icon/icon-face-frown-fill/index.ts
|
|
25502
25502
|
var IconFaceFrownFill = Object.assign(icon_face_frown_fill_default, { install: (app, options) => {
|
|
@@ -25589,7 +25589,7 @@ function _sfc_render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
25589
25589
|
"clip-rule": "evenodd"
|
|
25590
25590
|
}, null, -1)])], 16);
|
|
25591
25591
|
}
|
|
25592
|
-
var icon_english_fill_default =
|
|
25592
|
+
var icon_english_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_english_fill_vue_vue_type_script_lang_default, [["render", _sfc_render$1]]);
|
|
25593
25593
|
//#endregion
|
|
25594
25594
|
//#region components/icon/icon-english-fill/index.ts
|
|
25595
25595
|
var IconEnglishFill = Object.assign(icon_english_fill_default, { install: (app, options) => {
|
|
@@ -25686,7 +25686,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
25686
25686
|
"clip-rule": "evenodd"
|
|
25687
25687
|
}, null, -1)])], 16);
|
|
25688
25688
|
}
|
|
25689
|
-
var icon_chinese_fill_default =
|
|
25689
|
+
var icon_chinese_fill_default = /*#__PURE__*/ _plugin_vue_export_helper_default(icon_chinese_fill_vue_vue_type_script_lang_default, [["render", _sfc_render]]);
|
|
25690
25690
|
//#endregion
|
|
25691
25691
|
//#region components/icon/icon-chinese-fill/index.ts
|
|
25692
25692
|
var IconChineseFill = Object.assign(icon_chinese_fill_default, { install: (app, options) => {
|