zova-ui-vuetify 5.0.97
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/.editorconfig +9 -0
- package/.eslintignore +8 -0
- package/.eslintrc.cjs +4 -0
- package/.gitattributes +2 -0
- package/.gitignore +66 -0
- package/.npmrc +29 -0
- package/.vscode/extensions.json +9 -0
- package/.vscode/settings.json +57 -0
- package/.vscode/zova.code-snippets +18 -0
- package/LICENSE +21 -0
- package/README.md +124 -0
- package/env/.env +29 -0
- package/env/.env.development +0 -0
- package/env/.env.production +0 -0
- package/index.html +14 -0
- package/package.json +53 -0
- package/pnpm-workspace.yaml +7 -0
- package/prettier.config.cjs +2 -0
- package/public/favicon.ico +0 -0
- package/src/boot/app.vue +9 -0
- package/src/boot/main.ts +22 -0
- package/src/boot/router.ts +14 -0
- package/src/boot/vuetify.ts +18 -0
- package/src/boot/zova.ts +14 -0
- package/src/css/settings.scss +10 -0
- package/src/front/_config/config/config.app.ts +16 -0
- package/src/front/_config/config/config.ts +17 -0
- package/src/front/_config/config/config.web.ts +15 -0
- package/src/front/_config/locale/en-us.ts +5 -0
- package/src/front/_config/locale/zh-cn.ts +5 -0
- package/src/front/_config/locales.ts +7 -0
- package/src/front/_config/monkey.ts +24 -0
- package/src/front/typing/env.d.ts +5 -0
- package/src/front/typing/shims-vue.d.ts +10 -0
- package/src/front/typing/types.d.ts +2 -0
- package/src/module/.gitkeep +0 -0
- package/src/module-vendor/.gitkeep +0 -0
- package/src/suite/a-demo/modules/a-demo/package.json +29 -0
- package/src/suite/a-demo/modules/a-demo/src/assets/css/module.scss +0 -0
- package/src/suite/a-demo/modules/a-demo/src/bean/.gitkeep +0 -0
- package/src/suite/a-demo/modules/a-demo/src/component/card/controller.ts +25 -0
- package/src/suite/a-demo/modules/a-demo/src/component/card/index.vue +12 -0
- package/src/suite/a-demo/modules/a-demo/src/component/card/render.tsx +37 -0
- package/src/suite/a-demo/modules/a-demo/src/config/config.ts +5 -0
- package/src/suite/a-demo/modules/a-demo/src/config/constants.ts +1 -0
- package/src/suite/a-demo/modules/a-demo/src/config/errors.ts +1 -0
- package/src/suite/a-demo/modules/a-demo/src/config/index.ts +4 -0
- package/src/suite/a-demo/modules/a-demo/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-demo/modules/a-demo/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-demo/modules/a-demo/src/config/locales.ts +7 -0
- package/src/suite/a-demo/modules/a-demo/src/index.ts +7 -0
- package/src/suite/a-demo/modules/a-demo/src/page/component/controller.ts +9 -0
- package/src/suite/a-demo/modules/a-demo/src/page/component/index.vue +10 -0
- package/src/suite/a-demo/modules/a-demo/src/page/component/render.tsx +39 -0
- package/src/suite/a-demo/modules/a-demo/src/page/state/controller.ts +21 -0
- package/src/suite/a-demo/modules/a-demo/src/page/state/index.vue +10 -0
- package/src/suite/a-demo/modules/a-demo/src/page/state/render.tsx +23 -0
- package/src/suite/a-demo/modules/a-demo/src/resource/beans.ts +4 -0
- package/src/suite/a-demo/modules/a-demo/src/resource/components.ts +3 -0
- package/src/suite/a-demo/modules/a-demo/src/resource/index.ts +3 -0
- package/src/suite/a-demo/modules/a-demo/src/resource/scope.ts +30 -0
- package/src/suite/a-demo/modules/a-demo/src/resource/this.ts +4 -0
- package/src/suite/a-demo/modules/a-demo/src/routes.ts +8 -0
- package/src/suite/a-demo/modules/a-demo/src/types.ts +1 -0
- package/src/suite/a-demo/modules/a-demo/src/typings.ts +1 -0
- package/src/suite/a-demo/modules/a-demo/tsconfig.json +5 -0
- package/src/suite/a-demo/package.json +11 -0
- package/src/suite/a-demo/tsconfig.base.json +4 -0
- package/src/suite/a-home/README.md +1 -0
- package/src/suite/a-home/modules/a-home/README.md +1 -0
- package/src/suite/a-home/modules/a-home/package.json +28 -0
- package/src/suite/a-home/modules/a-home/src/assets/css/module.scss +0 -0
- package/src/suite/a-home/modules/a-home/src/bean/.gitkeep +0 -0
- package/src/suite/a-home/modules/a-home/src/component/.gitkeep +0 -0
- package/src/suite/a-home/modules/a-home/src/config/config.ts +5 -0
- package/src/suite/a-home/modules/a-home/src/config/constants.ts +1 -0
- package/src/suite/a-home/modules/a-home/src/config/errors.ts +1 -0
- package/src/suite/a-home/modules/a-home/src/config/index.ts +4 -0
- package/src/suite/a-home/modules/a-home/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-home/modules/a-home/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-home/modules/a-home/src/config/locales.ts +7 -0
- package/src/suite/a-home/modules/a-home/src/index.ts +7 -0
- package/src/suite/a-home/modules/a-home/src/page/home/controller.ts +4 -0
- package/src/suite/a-home/modules/a-home/src/page/home/index.vue +10 -0
- package/src/suite/a-home/modules/a-home/src/page/home/render.tsx +21 -0
- package/src/suite/a-home/modules/a-home/src/resource/beans.ts +4 -0
- package/src/suite/a-home/modules/a-home/src/resource/components.ts +1 -0
- package/src/suite/a-home/modules/a-home/src/resource/index.ts +3 -0
- package/src/suite/a-home/modules/a-home/src/resource/scope.ts +30 -0
- package/src/suite/a-home/modules/a-home/src/resource/this.ts +4 -0
- package/src/suite/a-home/modules/a-home/src/routes.ts +4 -0
- package/src/suite/a-home/modules/a-home/src/types.ts +1 -0
- package/src/suite/a-home/modules/a-home/src/typings.ts +5 -0
- package/src/suite/a-home/modules/a-home/tsconfig.json +5 -0
- package/src/suite/a-home/modules/home-api/package.json +34 -0
- package/src/suite/a-home/modules/home-api/src/bean/store.api.ts +22 -0
- package/src/suite/a-home/modules/home-api/src/component/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-api/src/config/config.ts +5 -0
- package/src/suite/a-home/modules/home-api/src/config/constants.ts +1 -0
- package/src/suite/a-home/modules/home-api/src/config/errors.ts +1 -0
- package/src/suite/a-home/modules/home-api/src/config/index.ts +4 -0
- package/src/suite/a-home/modules/home-api/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-home/modules/home-api/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-home/modules/home-api/src/config/locales.ts +7 -0
- package/src/suite/a-home/modules/home-api/src/index.ts +7 -0
- package/src/suite/a-home/modules/home-api/src/monkey.ts +24 -0
- package/src/suite/a-home/modules/home-api/src/page/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-api/src/resource/beans.ts +8 -0
- package/src/suite/a-home/modules/home-api/src/resource/components.ts +1 -0
- package/src/suite/a-home/modules/home-api/src/resource/index.ts +3 -0
- package/src/suite/a-home/modules/home-api/src/resource/scope.ts +30 -0
- package/src/suite/a-home/modules/home-api/src/resource/this.ts +4 -0
- package/src/suite/a-home/modules/home-api/src/routes.ts +3 -0
- package/src/suite/a-home/modules/home-api/src/types.ts +13 -0
- package/src/suite/a-home/modules/home-api/src/typings.ts +1 -0
- package/src/suite/a-home/modules/home-api/tsconfig.json +5 -0
- package/src/suite/a-home/modules/home-icon/icons/auth/dingtalk-square.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/auth/github.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/auth/password.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/auth/sms.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/auth/wechat-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/auth/wxwork-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/coupon.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/course.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/distribution.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/hotsprings.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/kitchen-set.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/money-bag.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/party.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/provider.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/purchase.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/store.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/add.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/alert.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/archive.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-back.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-cycle.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-down-left.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-down-right.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-down.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-drop-down.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-drop-up.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-forward.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-left.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-repeat.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-right-left.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-right.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-shuffle.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-up-down.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-up-left.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-up-right.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-up.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/article.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/attachment-line.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/book.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/cabloy.svg +4 -0
- package/src/suite/a-home/modules/home-icon/icons/default/checkbox-checked.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/checkbox-intermediate.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/checkbox-off.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/checkbox.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/chevron-left.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/chevron-right.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/close.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/comment-dots.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/construction.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/copyright.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/cross-circle.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/dashboard.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/database.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/delete-forever.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/delete.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/developer-board.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/done.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/dot.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/draft.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/drive-file-move.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/edit.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/expand-more.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/export.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/fast-forward.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/flow-chart.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/folder-open.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/folder.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/fullscreen-exit.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/fullscreen.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/grading.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/group-work.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/group.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/groups.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/heart.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/home.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/identification.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/import.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/info-circle.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/information-filled.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/information.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/label.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/language.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/layers.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/layout-columns.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/location-on.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/lock-open.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/lock.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/mail.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/mark-as-unread.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/mark-email-read.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/menu.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/message.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/module.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/more-horiz.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/notebook.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/open-in-new.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/open-with.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/people.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/person.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/play-arrow.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/popup.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/preview.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/radio-button-checked.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/radio-button-unchecked.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/redo.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/remove.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/reply.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/reset.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/round-person-add.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/save-and-return.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/save-and-submit.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/save-as-draft.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/save.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/search.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/send.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/settings.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/share.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/sort.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/star.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/stats-chart.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/stop.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/text-fields.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/timeline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/undo.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/view-list.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/visibility.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/zoom-in.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/zoom-out.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/add-box-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/add-box.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/bookmark-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/bookmark.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/code-block.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/code.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-align-center.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-align-left.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-align-right.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-bold.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-italic.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-list-bulleted.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-list-numbered.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-quote.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-strikethrough.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-underlined.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/grid-on.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/horizontal-rule.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/image-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/image.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/insert-link-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/paragraph-break.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/paragraph.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/redo.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/source-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/subscript.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/superscript.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/task-alt.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/title.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/undo.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/activity-none.svg +17 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/activity-service.svg +30 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/activity-user-task.svg +27 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/end-event-atom.svg +24 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/end-event-none.svg +22 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/gateway-exclusive.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/gateway-inclusive.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/gateway-parallel.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/start-event-atom.svg +16 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/start-event-none.svg +16 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/start-event-timer.svg +16 -0
- package/src/suite/a-home/modules/home-icon/icons/login/call-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/login/chevron-left.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/login/done.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/login/lock-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/login/person-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/add-circle-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/alert-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/apps-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/archive-lock-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/archive-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/article-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/backspace-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/build-circle-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/calendar-today-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/check-circle-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/checkbox-checked-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/checkbox-off-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/checkbox-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/copy-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/data-list-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/database-lock-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/delete-forever-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/delete-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/dict-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/draft-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/folder-transfer-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/group-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/heart-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/insert-emoticon-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/key-reset-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/label-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/layout-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/login-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/logout-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/mail-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/note-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/software-resource-cluster-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/software-resource-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/star-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/theme-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/timer-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/visibility-off-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/visibility-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/work-history-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/collaboration.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/level.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/organization.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/position.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/relation.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/role.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/shield-key.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/template.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/social/chat.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/social/facebook.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/social/github.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/social/public.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/social/record-voice-over.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/social/school.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/social/twitter.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/tools/pomotodo.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/tools/spreadsheet.svg +1 -0
- package/src/suite/a-home/modules/home-icon/package.json +34 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/auth.svg +8 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/business.svg +12 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/default.svg +114 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/editor.svg +32 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/flow.svg +13 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/login.svg +7 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/outline.svg +41 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/role.svg +10 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/social.svg +9 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/tools.svg +4 -0
- package/src/suite/a-home/modules/home-icon/src/bean/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-icon/src/component/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-icon/src/config/config.ts +5 -0
- package/src/suite/a-home/modules/home-icon/src/config/constants.ts +1 -0
- package/src/suite/a-home/modules/home-icon/src/config/errors.ts +1 -0
- package/src/suite/a-home/modules/home-icon/src/config/icons.ts +23 -0
- package/src/suite/a-home/modules/home-icon/src/config/index.ts +5 -0
- package/src/suite/a-home/modules/home-icon/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-home/modules/home-icon/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-home/modules/home-icon/src/config/locales.ts +7 -0
- package/src/suite/a-home/modules/home-icon/src/index.ts +6 -0
- package/src/suite/a-home/modules/home-icon/src/page/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-icon/src/resource/beans.ts +4 -0
- package/src/suite/a-home/modules/home-icon/src/resource/components.ts +1 -0
- package/src/suite/a-home/modules/home-icon/src/resource/icons.ts +235 -0
- package/src/suite/a-home/modules/home-icon/src/resource/index.ts +4 -0
- package/src/suite/a-home/modules/home-icon/src/resource/scope.ts +30 -0
- package/src/suite/a-home/modules/home-icon/src/resource/this.ts +4 -0
- package/src/suite/a-home/modules/home-icon/src/routes.ts +3 -0
- package/src/suite/a-home/modules/home-icon/src/types.ts +1 -0
- package/src/suite/a-home/modules/home-icon/src/typings.ts +1 -0
- package/src/suite/a-home/modules/home-icon/tsconfig.json +5 -0
- package/src/suite/a-home/modules/home-layout/package.json +29 -0
- package/src/suite/a-home/modules/home-layout/src/bean/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-layout/src/component/essentialLink/controller.ts +21 -0
- package/src/suite/a-home/modules/home-layout/src/component/essentialLink/index.vue +12 -0
- package/src/suite/a-home/modules/home-layout/src/component/essentialLink/render.tsx +21 -0
- package/src/suite/a-home/modules/home-layout/src/component/layoutDefault/controller.ts +31 -0
- package/src/suite/a-home/modules/home-layout/src/component/layoutDefault/index.vue +12 -0
- package/src/suite/a-home/modules/home-layout/src/component/layoutDefault/render.tsx +68 -0
- package/src/suite/a-home/modules/home-layout/src/component/layoutEmpty/controller.ts +16 -0
- package/src/suite/a-home/modules/home-layout/src/component/layoutEmpty/index.vue +12 -0
- package/src/suite/a-home/modules/home-layout/src/component/layoutEmpty/render.tsx +18 -0
- package/src/suite/a-home/modules/home-layout/src/config/config.ts +5 -0
- package/src/suite/a-home/modules/home-layout/src/config/constants.ts +1 -0
- package/src/suite/a-home/modules/home-layout/src/config/errors.ts +1 -0
- package/src/suite/a-home/modules/home-layout/src/config/index.ts +4 -0
- package/src/suite/a-home/modules/home-layout/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-home/modules/home-layout/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-home/modules/home-layout/src/config/locales.ts +7 -0
- package/src/suite/a-home/modules/home-layout/src/index.ts +6 -0
- package/src/suite/a-home/modules/home-layout/src/page/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-layout/src/resource/beans.ts +4 -0
- package/src/suite/a-home/modules/home-layout/src/resource/components.ts +7 -0
- package/src/suite/a-home/modules/home-layout/src/resource/index.ts +3 -0
- package/src/suite/a-home/modules/home-layout/src/resource/scope.ts +30 -0
- package/src/suite/a-home/modules/home-layout/src/resource/this.ts +4 -0
- package/src/suite/a-home/modules/home-layout/src/routes.ts +3 -0
- package/src/suite/a-home/modules/home-layout/src/types.ts +1 -0
- package/src/suite/a-home/modules/home-layout/src/typings.ts +1 -0
- package/src/suite/a-home/modules/home-layout/tsconfig.json +5 -0
- package/src/suite/a-home/modules/home-mock/package.json +30 -0
- package/src/suite/a-home/modules/home-mock/src/bean/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-mock/src/component/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-mock/src/config/config.ts +5 -0
- package/src/suite/a-home/modules/home-mock/src/config/constants.ts +1 -0
- package/src/suite/a-home/modules/home-mock/src/config/errors.ts +1 -0
- package/src/suite/a-home/modules/home-mock/src/config/index.ts +4 -0
- package/src/suite/a-home/modules/home-mock/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-home/modules/home-mock/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-home/modules/home-mock/src/config/locales.ts +7 -0
- package/src/suite/a-home/modules/home-mock/src/index.ts +6 -0
- package/src/suite/a-home/modules/home-mock/src/mock/menu.fake.ts +65 -0
- package/src/suite/a-home/modules/home-mock/src/page/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-mock/src/resource/beans.ts +4 -0
- package/src/suite/a-home/modules/home-mock/src/resource/components.ts +1 -0
- package/src/suite/a-home/modules/home-mock/src/resource/index.ts +3 -0
- package/src/suite/a-home/modules/home-mock/src/resource/scope.ts +30 -0
- package/src/suite/a-home/modules/home-mock/src/resource/this.ts +4 -0
- package/src/suite/a-home/modules/home-mock/src/routes.ts +3 -0
- package/src/suite/a-home/modules/home-mock/src/types.ts +1 -0
- package/src/suite/a-home/modules/home-mock/src/typings.ts +1 -0
- package/src/suite/a-home/modules/home-mock/tsconfig.json +5 -0
- package/src/suite/a-home/modules/home-pagesystem/package.json +34 -0
- package/src/suite/a-home/modules/home-pagesystem/src/bean/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-pagesystem/src/component/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-pagesystem/src/config/config.ts +5 -0
- package/src/suite/a-home/modules/home-pagesystem/src/config/constants.ts +1 -0
- package/src/suite/a-home/modules/home-pagesystem/src/config/errors.ts +1 -0
- package/src/suite/a-home/modules/home-pagesystem/src/config/index.ts +4 -0
- package/src/suite/a-home/modules/home-pagesystem/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-home/modules/home-pagesystem/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-home/modules/home-pagesystem/src/config/locales.ts +7 -0
- package/src/suite/a-home/modules/home-pagesystem/src/index.ts +6 -0
- package/src/suite/a-home/modules/home-pagesystem/src/page/errorNotFound/controller.ts +4 -0
- package/src/suite/a-home/modules/home-pagesystem/src/page/errorNotFound/index.vue +10 -0
- package/src/suite/a-home/modules/home-pagesystem/src/page/errorNotFound/render.tsx +24 -0
- package/src/suite/a-home/modules/home-pagesystem/src/resource/beans.ts +4 -0
- package/src/suite/a-home/modules/home-pagesystem/src/resource/components.ts +1 -0
- package/src/suite/a-home/modules/home-pagesystem/src/resource/index.ts +3 -0
- package/src/suite/a-home/modules/home-pagesystem/src/resource/scope.ts +30 -0
- package/src/suite/a-home/modules/home-pagesystem/src/resource/this.ts +4 -0
- package/src/suite/a-home/modules/home-pagesystem/src/routes.ts +22 -0
- package/src/suite/a-home/modules/home-pagesystem/src/types.ts +1 -0
- package/src/suite/a-home/modules/home-pagesystem/src/typings.ts +1 -0
- package/src/suite/a-home/modules/home-pagesystem/tsconfig.json +5 -0
- package/src/suite/a-home/modules/home-router/package.json +37 -0
- package/src/suite/a-home/modules/home-router/src/bean/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-router/src/component/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-router/src/config/config.ts +5 -0
- package/src/suite/a-home/modules/home-router/src/config/constants.ts +1 -0
- package/src/suite/a-home/modules/home-router/src/config/errors.ts +1 -0
- package/src/suite/a-home/modules/home-router/src/config/index.ts +4 -0
- package/src/suite/a-home/modules/home-router/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-home/modules/home-router/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-home/modules/home-router/src/config/locales.ts +7 -0
- package/src/suite/a-home/modules/home-router/src/index.ts +7 -0
- package/src/suite/a-home/modules/home-router/src/local/router.ts +12 -0
- package/src/suite/a-home/modules/home-router/src/monkey.ts +17 -0
- package/src/suite/a-home/modules/home-router/src/page/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-router/src/resource/beans.ts +4 -0
- package/src/suite/a-home/modules/home-router/src/resource/components.ts +1 -0
- package/src/suite/a-home/modules/home-router/src/resource/index.ts +3 -0
- package/src/suite/a-home/modules/home-router/src/resource/scope.ts +30 -0
- package/src/suite/a-home/modules/home-router/src/resource/this.ts +4 -0
- package/src/suite/a-home/modules/home-router/src/routes.ts +3 -0
- package/src/suite/a-home/modules/home-router/src/types.ts +1 -0
- package/src/suite/a-home/modules/home-router/src/typings.ts +1 -0
- package/src/suite/a-home/modules/home-router/tsconfig.json +5 -0
- package/src/suite/a-home/package.json +17 -0
- package/src/suite/a-home/tsconfig.base.json +4 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/package.json +34 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/bean/.gitkeep +0 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/component/.gitkeep +0 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/config/config.ts +5 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/config/constants.ts +1 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/config/errors.ts +1 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/config/index.ts +4 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/config/locale/en-us.ts +1 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/config/locale/zh-cn.ts +1 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/config/locales.ts +7 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/index.ts +7 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/monkey.ts +37 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/page/.gitkeep +0 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/patch/icon.tsx +89 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/patch/svg.ts +29 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/resource/beans.ts +4 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/resource/components.ts +1 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/resource/index.ts +3 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/resource/scope.ts +30 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/resource/this.ts +4 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/routes.ts +3 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/types.ts +18 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/typings.ts +1 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/tsconfig.json +5 -0
- package/src/suite-vendor/a-vuetify/package.json +11 -0
- package/src/suite-vendor/a-vuetify/tsconfig.base.json +4 -0
- package/tsconfig.base.cjs.json +3 -0
- package/tsconfig.base.esm.json +12 -0
- package/tsconfig.base.json +6 -0
- package/tsconfig.json +5 -0
- package/tsconfig.vue-tsc.json +5 -0
- package/vite.config.ts +53 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="99.08133 98.92314 1850.4658 1850.2586" width="1850.4658" height="1850.2586">
|
|
4
|
+
<defs/>
|
|
5
|
+
<metadata> Produced by OmniGraffle 7.18.5\n2021-04-09 07:38:50 +0000</metadata>
|
|
6
|
+
<g id="Canvas_1" stroke-opacity="1" fill="none" fill-opacity="1" stroke="none" stroke-dasharray="none">
|
|
7
|
+
<title>Canvas 1</title>
|
|
8
|
+
<g id="Canvas_1_Layer_1">
|
|
9
|
+
<title>Layer 1</title>
|
|
10
|
+
<g id="Graphic_2">
|
|
11
|
+
<title>path4481</title>
|
|
12
|
+
<path d="M 1015.4766 98.92773 C 654.77914 97.73011 308.6741 330.79447 171.7754 664.1914 C 27.65656 994.3438 102.53842 1404.4752 354.6367 1661.9629 C 597.1004 1922.9548 996.5859 2018.7494 1331.1562 1896.6348 C 1677.896 1778.5613 1933.8798 1438.0411 1947.795 1071.543 C 1971.1343 711.4123 1759.2596 352.12165 1434.8418 195.25 C 1307.8073 131.85595 1165.9493 98.79702 1024 99 C 1021.1581 98.96146 1018.3167 98.93716 1015.4766 98.92773 Z M 1040.8281 198.9004 C 1393.9006 200.83863 1726.4328 456.25906 1817.746 797.9297 C 1914.7762 1124.8373 1783.5324 1503.3352 1501.8398 1696.955 C 1209.2273 1912.0295 775.2993 1896.469 498.97656 1660.7988 C 220.5625 1438.8189 120.90473 1028.2233 263.75 702.6172 C 387.55746 401.60486 698.3378 195.17882 1024 199 C 1029.6138 198.90237 1035.2238 198.86962 1040.8281 198.9004 Z" fill="black"/>
|
|
13
|
+
</g>
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="51.5 80 1850 1849.998" width="1850" height="1849.998">
|
|
4
|
+
<defs/>
|
|
5
|
+
<metadata> Produced by OmniGraffle 7.18.5\n2021-04-09 07:39:42 +0000</metadata>
|
|
6
|
+
<g id="Canvas_1" stroke-opacity="1" fill="none" fill-opacity="1" stroke="none" stroke-dasharray="none">
|
|
7
|
+
<title>Canvas 1</title>
|
|
8
|
+
<g id="Canvas_1_Layer_1">
|
|
9
|
+
<title>Layer 1</title>
|
|
10
|
+
<g id="Graphic_2">
|
|
11
|
+
<title>path4481</title>
|
|
12
|
+
<path d="M 976.5 80 C 466.22933 80 51.5 494.72064 51.5 1004.9941 C 51.5 1515.2677 466.22866 1929.998 976.5 1929.998 C 1486.7712 1929.998 1901.5 1515.2677 1901.5 1004.9941 C 1901.5 494.72065 1486.7706 80 976.5 80 Z M 976.5 180 C 1432.7276 180 1801.5 548.7644 1801.5 1004.9941 C 1801.5 1461.224 1432.727 1829.998 976.5 1829.998 C 520.2729 1829.998 151.5 1461.224 151.5 1004.9941 C 151.5 548.7644 520.2722 180 976.5 180 Z M 968.2109 565.9453 C 796.6824 567.15733 633.1106 679.8299 569.8926 839.2305 C 504.1024 995.0313 540.4735 1186.8001 658.77734 1307.6719 C 773.8036 1431.5016 963.3318 1477.136 1122.084 1419.0996 C 1288.4435 1362.4249 1410.6568 1197.8689 1415.0605 1021.9102 C 1423.923 850.965 1321.1862 681.941 1166.502 609.34375 C 1107.4754 580.76485 1041.9568 565.88615 976.3848 565.97265 C 973.6584 565.9355 970.9336 565.9261 968.2109 565.9453 Z M 983.8535 645.918 C 1140.5597 646.619 1287.5681 762.4377 1324.1113 915.0938 C 1364.8101 1064.1123 1296.2408 1234.0297 1162.75 1312.1094 C 1026.4496 1397.6527 834.2796 1374.8541 722.3555 1259 C 604.2415 1145.0565 583.2081 947.9146 673.8242 811.2656 C 738.0027 709.3191 855.8746 644.79905 976.3848 645.97265 C 978.8766 645.9255 981.3661 645.90684 983.8535 645.918 Z M 1089.8047 747.9902 C 1049.8373 820.4993 1009.8697 893.0085 969.9023 965.5176 C 932.8699 969.4554 924.0723 1025.6387 958.2402 1040.6231 C 980.8101 1056.2894 998.4874 1030.2309 1019.0332 1031.1289 L 1202.3262 1031.1289 L 1202.3262 981.1289 L 1018.3887 981.1289 C 1056.7904 911.4609 1095.1921 841.793 1133.5938 772.125 C 1118.9974 764.0801 1104.4011 756.0351 1089.8047 747.9902 Z" fill="black"/>
|
|
13
|
+
</g>
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 16 16"><path fill="currentColor" d="M3.714 5.258C3.523 4 4.41 2.87 5.765 2.456a.988.988 0 0 1 1.214.598l.435 1.16a1 1 0 0 1-.26 1.088L5.86 6.487a.501.501 0 0 0-.152.47l.012.052l.031.13a7.265 7.265 0 0 0 .729 1.805a7.264 7.264 0 0 0 1.296 1.627l.04.036a.5.5 0 0 0 .482.103l1.673-.527a1 1 0 0 1 1.072.319l.792.961c.33.4.29.988-.089 1.341c-1.037.967-2.463 1.165-3.455.368a12.732 12.732 0 0 1-3.024-3.529a12.432 12.432 0 0 1-1.554-4.385Zm3.043 1.765l1.072-.984a2 2 0 0 0 .521-2.176l-.434-1.16A1.988 1.988 0 0 0 5.473 1.5c-1.683.515-3.034 2.024-2.748 3.909c.2 1.316.661 2.99 1.678 4.738a13.732 13.732 0 0 0 3.262 3.805c1.488 1.195 3.474.787 4.764-.415a1.98 1.98 0 0 0 .179-2.708l-.792-.962a2 2 0 0 0-2.144-.636l-1.389.437a6.604 6.604 0 0 1-.936-1.223a6.268 6.268 0 0 1-.59-1.421Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 20 20"><path fill="currentColor" d="M12.452 4.516c.446.436.481 1.043 0 1.576L8.705 10l3.747 3.908c.481.533.446 1.141 0 1.574c-.445.436-1.197.408-1.615 0c-.418-.406-4.502-4.695-4.502-4.695a1.095 1.095 0 0 1 0-1.576s4.084-4.287 4.502-4.695c.418-.409 1.17-.436 1.615 0z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="m9 16.2l-3.5-3.5a.984.984 0 0 0-1.4 0a.984.984 0 0 0 0 1.4l4.19 4.19c.39.39 1.02.39 1.41 0L20.3 7.7a.984.984 0 0 0 0-1.4a.984.984 0 0 0-1.4 0L9 16.2z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 1024 1024"><path fill="currentColor" d="M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32H224zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96z"/><path fill="currentColor" d="M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32zm192-160v-64a192 192 0 1 0-384 0v64h384zM512 64a256 256 0 0 1 256 256v128H256V320A256 256 0 0 1 512 64z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 48 48"><path fill="currentColor" fill-rule="evenodd" d="M24 24c4.42 0 8-3.58 8-8s-3.58-8-8-8s-8 3.58-8 8s3.58 8 8 8Zm10-8c0 5.525-4.475 10-10 10s-10-4.475-10-10S18.475 6 24 6s10 4.475 10 10ZM9.223 34.212C8.22 35.022 8 35.629 8 36v4h32v-4c0-.37-.22-.979-1.224-1.788c-.98-.791-2.442-1.545-4.214-2.197C31.02 30.712 26.753 30 24 30c-2.753 0-7.02.712-10.562 2.015c-1.772.652-3.234 1.406-4.215 2.197ZM24 28c-6.008 0-18 3.035-18 8v6h36v-6c0-4.965-11.992-8-18-8Z" clip-rule="evenodd"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ic" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12 7c-.55 0-1 .45-1 1v3H8c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3V8c0-.55-.45-1-1-1zm0-5C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8s8 3.59 8 8s-3.59 8-8 8z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--fluent" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12 1.996a7.49 7.49 0 0 1 7.496 7.25l.004.25v4.097l1.38 3.156a1.249 1.249 0 0 1-1.145 1.75L15 18.502a3 3 0 0 1-5.995.177L9 18.499H4.275a1.251 1.251 0 0 1-1.147-1.747L4.5 13.594V9.496c0-4.155 3.352-7.5 7.5-7.5ZM13.5 18.5l-3 .002a1.5 1.5 0 0 0 2.993.145l.007-.147ZM12 3.496c-3.32 0-6 2.674-6 6v4.41L4.656 17h14.697L18 13.907V9.509l-.003-.225A5.988 5.988 0 0 0 12 3.496Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ant-design" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 1024 1024"><path fill="currentColor" d="M464 144H160c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V160c0-8.8-7.2-16-16-16zm-52 268H212V212h200v200zm452-268H560c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V160c0-8.8-7.2-16-16-16zm-52 268H612V212h200v200zM464 544H160c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V560c0-8.8-7.2-16-16-16zm-52 268H212V612h200v200zm452-268H560c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V560c0-8.8-7.2-16-16-16zm-52 268H612V612h200v200z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--mdi" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M15 12.06c-.21.29-.36.61-.5.94H9v-1.5c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5v.56M21 9H3V3h18v6m-2-4H5v2h14V5m-6 14H6v-9H4v11h9.03c-.03-.1-.03-.2-.03-.3V19m10-1.7v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V16c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h3v-1.5Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="m21.706 5.291l-2.999-2.998A.996.996 0 0 0 18 2H6a.996.996 0 0 0-.707.293L2.294 5.291A.994.994 0 0 0 2 5.999V19c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5.999a.994.994 0 0 0-.294-.708zM6.414 4h11.172l.999.999H5.415L6.414 4zM4 19V6.999h16L20.002 19H4z"/><path fill="currentColor" d="M15 12H9v-2H7v4h10v-4h-2z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ri" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M20 22H4a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1zm-1-2V4H5v16h14zM7 6h4v4H7V6zm0 6h10v2H7v-2zm0 4h10v2H7v-2zm6-9h4v2h-4V7z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 24 24"><path fill="currentColor" d="M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14zm-11.59-2L14 13.41L17.59 17L19 15.59L15.41 12L19 8.41L17.59 7L14 10.59L10.41 7L9 8.41L12.59 12L9 15.59z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8s8 3.59 8 8s-3.59 8-8 8z"/><path fill="currentColor" fill-rule="evenodd" d="M13.49 11.38c.43-1.22.17-2.64-.81-3.62a3.468 3.468 0 0 0-4.1-.59l2.35 2.35l-1.41 1.41l-2.35-2.35c-.71 1.32-.52 2.99.59 4.1c.98.98 2.4 1.24 3.62.81l3.41 3.41c.2.2.51.2.71 0l1.4-1.4c.2-.2.2-.51 0-.71l-3.41-3.41z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ic" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V10h16v11zm0-13H4V5h16v3z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8s8 3.59 8 8s-3.59 8-8 8zm3.88-11.71L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 2v14H5V5h14m-9 12l-4-4l1.41-1.42L10 14.17l6.59-6.59L18 9"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M22.11 21.46L2.39 1.73L1.11 3L3 4.9V19a2 2 0 0 0 2 2h14.1l1.74 1.73l1.27-1.27M5 19V6.89L17.11 19H5M8.2 5l-2-2H19a2 2 0 0 1 2 2v12.8l-2-2V5H8.2Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M19 3H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 2v14H5V5h14Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M5.503 4.627L5.5 6.75v10.504a3.25 3.25 0 0 0 3.25 3.25h8.616a2.251 2.251 0 0 1-2.122 1.5H8.75A4.75 4.75 0 0 1 4 17.254V6.75c0-.98.627-1.815 1.503-2.123ZM17.75 2A2.25 2.25 0 0 1 20 4.25v13a2.25 2.25 0 0 1-2.25 2.25h-9a2.25 2.25 0 0 1-2.25-2.25v-13A2.25 2.25 0 0 1 8.75 2h9Zm0 1.5h-9a.75.75 0 0 0-.75.75v13c0 .414.336.75.75.75h9a.75.75 0 0 0 .75-.75v-13a.75.75 0 0 0-.75-.75Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--material-symbols" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M7 13h7q.425 0 .713-.288Q15 12.425 15 12t-.287-.713Q14.425 11 14 11H7q-.425 0-.713.287Q6 11.575 6 12t.287.712Q6.575 13 7 13Zm0-3h7q.425 0 .713-.288Q15 9.425 15 9t-.287-.713Q14.425 8 14 8H7q-.425 0-.713.287Q6 8.575 6 9t.287.712Q6.575 10 7 10ZM4 20q-.825 0-1.412-.587Q2 18.825 2 18V6q0-.825.588-1.412Q3.175 4 4 4h16q.825 0 1.413.588Q22 5.175 22 6v12q0 .825-.587 1.413Q20.825 20 20 20Zm0-2V6v12Zm0 0h16V6H4v12Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--mdi" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M6 12.45V9.64c1.47.83 3.61 1.36 6 1.36s4.53-.53 6-1.36v1.41c.17-.02.33-.05.5-.05c.53 0 1.03.1 1.5.26V7c0-2.21-3.58-4-8-4S4 4.79 4 7v10c0 2.21 3.59 4 8 4c.34 0 .67 0 1-.03v-2.02c-.32.05-.65.05-1 .05c-3.87 0-6-1.5-6-2v-2.23c1.61.78 3.72 1.23 6 1.23c.41 0 .81-.03 1.21-.06c.19-.48.47-.91.86-1.24c.06-.31.16-.61.27-.9c-.74.13-1.53.2-2.34.2c-2.42 0-4.7-.6-6-1.55M12 5c3.87 0 6 1.5 6 2s-2.13 2-6 2s-6-1.5-6-2s2.13-2 6-2m9 11v-.5a2.5 2.5 0 0 0-5 0v.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1m-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M14.12 10.47L12 12.59l-2.13-2.12l-1.41 1.41L10.59 14l-2.12 2.12l1.41 1.41L12 15.41l2.12 2.12l1.41-1.41L13.41 14l2.12-2.12l-1.41-1.41M15.5 4l-1-1h-5l-1 1H5v2h14V4h-3.5M6 19a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7H6v12M8 9h8v10H8V9Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M6 19a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7H6v12M8 9h8v10H8V9m7.5-5l-1-1h-5l-1 1H5v2h14V4h-3.5Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--arcticons" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 48 48"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M8.4 6.5v35a2 2 0 0 0 2 2h2.33v-39H10.4a2 2 0 0 0-2 2Zm4.33-2v39H37.6a2 2 0 0 0 2-2v-35a2 2 0 0 0-2-2Z"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M32.165 26.1a6 6 0 0 0-6-6h0a6 6 0 0 0-6 6V30a6 6 0 0 0 6 6h0a6 6 0 0 0 6-6m0 6V12"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M20 2a1 1 0 0 1 1 1v3.757l-2 2V4H5v16h14v-2.758l2-2V21a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h16zm1.778 6.808l1.414 1.414L15.414 18l-1.416-.002l.002-1.412l7.778-7.778zM13 12v2H8v-2h5zm3-4v2H8V8h8z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ri" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12.414 5H21a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h7.414l2 2zM4 5v14h16V7h-8.414l-2-2H4zm8 7V9l4 4l-4 4v-3H8v-2h4z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ri" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M2 22a8 8 0 1 1 16 0h-2a6 6 0 1 0-12 0H2zm8-9c-3.315 0-6-2.685-6-6s2.685-6 6-6s6 2.685 6 6s-2.685 6-6 6zm0-2c2.21 0 4-1.79 4-4s-1.79-4-4-4s-4 1.79-4 4s1.79 4 4 4zm8.284 3.703A8.002 8.002 0 0 1 23 22h-2a6.001 6.001 0 0 0-3.537-5.473l.82-1.824zm-.688-11.29A5.5 5.5 0 0 1 21 8.5a5.499 5.499 0 0 1-5 5.478v-2.013a3.5 3.5 0 0 0 1.041-6.609l.555-1.943z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 3C4.239 3 2 5.216 2 7.95c0 2.207.875 7.445 9.488 12.74a.985.985 0 0 0 1.024 0C21.125 15.395 22 10.157 22 7.95C22 5.216 19.761 3 17 3s-5 3-5 3s-2.239-3-5-3Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ic" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8s8 3.58 8 8s-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8S14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8S7 8.67 7 9.5S7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--fluent" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M17 8.25a1.25 1.25 0 1 0 0-2.5a1.25 1.25 0 0 0 0 2.5Zm-8.05.35a6.554 6.554 0 0 1 6.55-6.55c3.596 0 6.55 2.819 6.55 6.45a6.51 6.51 0 0 1-1.255 3.852a6.014 6.014 0 0 0-1.276-.798a5.026 5.026 0 0 0 1.03-3.054c0-2.769-2.247-4.95-5.05-4.95a5.054 5.054 0 0 0-5.05 5.05c0 .262.034.539.088.845a1.774 1.774 0 0 1-.486 1.564l-6.236 6.235a1.25 1.25 0 0 0-.366.884V20.3c0 .138.112.25.25.25h2.5a.25.25 0 0 0 .25-.25v-1.5c0-.69.56-1.25 1.25-1.25h1.75V15.8c0-.65.497-1.185 1.132-1.245l1.077 1.078a1.758 1.758 0 0 0-.378.417h-.33v1.75c0 .69-.56 1.25-1.25 1.25H7.95v1.25a1.75 1.75 0 0 1-1.75 1.75H3.7a1.75 1.75 0 0 1-1.75-1.75v-2.172c0-.73.289-1.429.805-1.944L8.99 9.948a.275.275 0 0 0 .07-.244A6.387 6.387 0 0 1 8.95 8.6Zm4.83 2.68a.75.75 0 1 0-1.06-1.06l-2 2a.75.75 0 0 0 0 1.06l2 2a.75.75 0 1 0 1.06-1.06l-.72-.72H17a3.5 3.5 0 1 1-3.5 3.5a.75.75 0 0 0-1.5 0a5 5 0 1 0 5-5h-3.94l.72-.72Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16zM16 17H5V7h11l3.55 5L16 17z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ph" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 256"><path fill="currentColor" d="M216 40H40a16 16 0 0 0-16 16v144a16 16 0 0 0 16 16h176a16 16 0 0 0 16-16V56a16 16 0 0 0-16-16ZM40 56h176v40H40Zm0 56h56v88H40Zm176 88H112v-88h104v88Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 1024 1024"><path fill="currentColor" d="M521.7 82c-152.5-.4-286.7 78.5-363.4 197.7c-3.4 5.3.4 12.3 6.7 12.3h70.3c4.8 0 9.3-2.1 12.3-5.8c7-8.5 14.5-16.7 22.4-24.5c32.6-32.5 70.5-58.1 112.7-75.9c43.6-18.4 90-27.8 137.9-27.8c47.9 0 94.3 9.3 137.9 27.8c42.2 17.8 80.1 43.4 112.7 75.9c32.6 32.5 58.1 70.4 76 112.5C865.7 417.8 875 464.1 875 512c0 47.9-9.4 94.2-27.8 137.8c-17.8 42.1-43.4 80-76 112.5s-70.5 58.1-112.7 75.9A352.8 352.8 0 0 1 520.6 866c-47.9 0-94.3-9.4-137.9-27.8A353.84 353.84 0 0 1 270 762.3c-7.9-7.9-15.3-16.1-22.4-24.5c-3-3.7-7.6-5.8-12.3-5.8H165c-6.3 0-10.2 7-6.7 12.3C234.9 863.2 368.5 942 520.6 942c236.2 0 428-190.1 430.4-425.6C953.4 277.1 761.3 82.6 521.7 82zM395.02 624v-76h-314c-4.4 0-8-3.6-8-8v-56c0-4.4 3.6-8 8-8h314v-76c0-6.7 7.8-10.5 13-6.3l141.9 112a8 8 0 0 1 0 12.6l-141.9 112c-5.2 4.1-13 .4-13-6.3z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 1024 1024"><path fill="currentColor" d="M868 732h-70.3c-4.8 0-9.3 2.1-12.3 5.8c-7 8.5-14.5 16.7-22.4 24.5a353.84 353.84 0 0 1-112.7 75.9A352.8 352.8 0 0 1 512.4 866c-47.9 0-94.3-9.4-137.9-27.8a353.84 353.84 0 0 1-112.7-75.9a353.28 353.28 0 0 1-76-112.5C167.3 606.2 158 559.9 158 512s9.4-94.2 27.8-137.8c17.8-42.1 43.4-80 76-112.5s70.5-58.1 112.7-75.9c43.6-18.4 90-27.8 137.9-27.8c47.9 0 94.3 9.3 137.9 27.8c42.2 17.8 80.1 43.4 112.7 75.9c7.9 7.9 15.3 16.1 22.4 24.5c3 3.7 7.6 5.8 12.3 5.8H868c6.3 0 10.2-7 6.7-12.3C798 160.5 663.8 81.6 511.3 82C271.7 82.6 79.6 277.1 82 516.4C84.4 751.9 276.2 942 512.4 942c152.1 0 285.7-78.8 362.3-197.7c3.4-5.3-.4-12.3-6.7-12.3zm88.9-226.3L815 393.7c-5.3-4.2-13-.4-13 6.3v76H488c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h314v76c0 6.7 7.8 10.5 13 6.3l141.9-112a8 8 0 0 0 0-12.6z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5l8-5v10zm-8-7L4 6h16l-8 5z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ic" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75s-.75-.34-.75-.75s.34-.75.75-.75zM19 19H5V5h14v14z"></path><path fill="currentColor" d="m15.08 11.03l-2.12-2.12L7 14.86V17h2.1zm1.77-1.76c.2-.2.2-.51 0-.71l-1.41-1.41c-.2-.2-.51-.2-.71 0l-1.06 1.06l2.12 2.12l1.06-1.06z"></path></svg>
|
package/src/suite/a-home/modules/home-icon/icons/outline/software-resource-cluster-outline.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--carbon" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path fill="currentColor" d="M24 21c-.5 0-1-.2-1.4-.6l-3-3c-.4-.4-.6-.9-.6-1.4s.2-1 .6-1.4l3-3c.4-.4.9-.6 1.4-.6c.5 0 1 .2 1.4.6l3 3c.4.4.6.9.6 1.4c0 .5-.2 1-.6 1.4l-3 3c-.4.4-.9.6-1.4.6zm0-8l-3 3l3 3l3-3l-3-3zm-8 0c-.5 0-1-.2-1.4-.6l-3-3C11.2 9 11 8.5 11 8s.2-1 .6-1.4l3-3c.4-.4.9-.6 1.4-.6c.5 0 1 .2 1.4.6l3 3c.4.4.6.9.6 1.4c0 .5-.2 1-.6 1.4l-3 3c-.4.4-.9.6-1.4.6zm0-8l-3 3l3 3l3-3l-3-3zm0 24c-.5 0-1-.2-1.4-.6l-3-3c-.4-.4-.6-.9-.6-1.4s.2-1 .6-1.4l3-3c.4-.4.9-.6 1.4-.6c.5 0 1 .2 1.4.6l3 3c.4.4.6.9.6 1.4c0 .5-.2 1-.6 1.4l-3 3c-.4.4-.9.6-1.4.6zm0-8l-3 3l3 3l3-3l-3-3zm-8 0c-.5 0-1-.2-1.4-.6l-3-3C3.2 17 3 16.5 3 16s.2-1 .6-1.4l3-3c.4-.4.9-.6 1.4-.6c.5 0 1 .2 1.4.6l3 3c.4.4.6.9.6 1.4c0 .5-.2 1-.6 1.4l-3 3c-.4.4-.9.6-1.4.6zm0-8l-3 3l3 3l3-3l-3-3z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--carbon" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path fill="currentColor" d="M29.391 14.527L17.473 2.609A2.078 2.078 0 0 0 16 2c-.533 0-1.067.203-1.473.609L2.609 14.527C2.203 14.933 2 15.466 2 16s.203 1.067.609 1.473L14.526 29.39c.407.407.941.61 1.474.61s1.067-.203 1.473-.609L29.39 17.474c.407-.407.61-.94.61-1.474s-.203-1.067-.609-1.473zM16 28.036L3.965 16L16 3.964L28.036 16L16 28.036z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path fill="currentColor" d="m16 6.52l2.76 5.58l.46 1l1 .15l6.16.89l-4.38 4.3l-.75.73l.18 1l1.05 6.13l-5.51-2.89L16 23l-.93.49l-5.51 2.85l1-6.13l.18-1l-.74-.77l-4.42-4.35l6.16-.89l1-.15l.46-1L16 6.52M16 2l-4.55 9.22l-10.17 1.47l7.36 7.18L6.9 30l9.1-4.78L25.1 30l-1.74-10.13l7.36-7.17l-10.17-1.48Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--icon-park-outline" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 48 48"><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="4" d="M18 6a6 6 0 1 0 12 0h5.455L42 15.818l-5.727 4.91V42H11.727V20.727L6 15.818L12.545 6H18Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12 5a8.5 8.5 0 1 1 0 17a8.5 8.5 0 0 1 0-17Zm0 1.5a7 7 0 1 0 0 14a7 7 0 0 0 0-14ZM12 8a.75.75 0 0 1 .743.648l.007.102v4.5a.75.75 0 0 1-1.493.102l-.007-.102v-4.5A.75.75 0 0 1 12 8Zm7.147-2.886l.083.06l1.158.964a.75.75 0 0 1-.877 1.212l-.082-.06l-1.159-.964a.75.75 0 0 1 .877-1.212ZM14.25 2.5a.75.75 0 0 1 .102 1.493L14.25 4h-4.5a.75.75 0 0 1-.102-1.493L9.75 2.5h4.5Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ic" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12 6a9.77 9.77 0 0 1 8.82 5.5a9.647 9.647 0 0 1-2.41 3.12l1.41 1.41c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l1.65 1.65C10.66 6.09 11.32 6 12 6zm-1.07 1.14L13 9.21c.57.25 1.03.71 1.28 1.28l2.07 2.07c.08-.34.14-.7.14-1.07C16.5 9.01 14.48 7 12 7c-.37 0-.72.05-1.07.14zM2.01 3.87l2.68 2.68A11.738 11.738 0 0 0 1 11.5C2.73 15.89 7 19 12 19c1.52 0 2.98-.29 4.32-.82l3.42 3.42l1.41-1.41L3.42 2.45L2.01 3.87zm7.5 7.5l2.61 2.61c-.04.01-.08.02-.12.02a2.5 2.5 0 0 1-2.5-2.5c0-.05.01-.08.01-.13zm-3.4-3.4l1.75 1.75a4.6 4.6 0 0 0-.36 1.78a4.507 4.507 0 0 0 6.27 4.14l.98.98c-.88.24-1.8.38-2.75.38a9.77 9.77 0 0 1-8.82-5.5c.7-1.43 1.72-2.61 2.93-3.53z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ic" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12 6a9.77 9.77 0 0 1 8.82 5.5C19.17 14.87 15.79 17 12 17s-7.17-2.13-8.82-5.5A9.77 9.77 0 0 1 12 6m0-2C7 4 2.73 7.11 1 11.5C2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 5a2.5 2.5 0 0 1 0 5a2.5 2.5 0 0 1 0-5m0-2c-2.48 0-4.5 2.02-4.5 4.5S9.52 16 12 16s4.5-2.02 4.5-4.5S14.48 7 12 7z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M4 19V8h16v3.29c.72.22 1.4.54 2 .97V8c0-1.11-.89-2-2-2h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h7.68c-.3-.62-.5-1.29-.6-2H4zm6-15h4v2h-4V4z"/><path fill="currentColor" d="M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5s5-2.24 5-5s-2.24-5-5-5zm1.65 7.35L17.5 18.2V15h1v2.79l1.85 1.85l-.7.71z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path fill="currentColor" d="M6 21v-1H4v1a7 7 0 0 0 7 7h3v-2h-3a5 5 0 0 1-5-5zm18-10v1h2v-1a7 7 0 0 0-7-7h-3v2h3a5 5 0 0 1 5 5zm-13 0H5a3 3 0 0 0-3 3v2h2v-2a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v2h2v-2a3 3 0 0 0-3-3zm-3-1a4 4 0 1 0-4-4a4 4 0 0 0 4 4zm0-6a2 2 0 1 1-2 2a2 2 0 0 1 2-2zm19 21h-6a3 3 0 0 0-3 3v2h2v-2a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v2h2v-2a3 3 0 0 0-3-3zm-7-5a4 4 0 1 0 4-4a4 4 0 0 0-4 4zm6 0a2 2 0 1 1-2-2a2 2 0 0 1 2 2z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--icon-park-outline" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 48 48"><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="4"><path stroke-linejoin="round" d="M6 8v32M24 8v32M7 24h16"></path><path d="M32 24v16m0-8.976C32 28.46 34 26 37 26s5 2.358 5 5.024v8.99"></path></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--fluent" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M11.75 1.998a3.752 3.752 0 0 0-.75 7.43V11.5H7.75a2.25 2.25 0 0 0-2.25 2.25v.826a3.754 3.754 0 0 0 .752 7.429A3.752 3.752 0 0 0 7 14.575v-.825a.75.75 0 0 1 .75-.75h8a.75.75 0 0 1 .75.75v.826a3.754 3.754 0 0 0 .752 7.429a3.752 3.752 0 0 0 .748-7.43v-.825a2.25 2.25 0 0 0-2.25-2.25H12.5V9.428a3.754 3.754 0 0 0-.75-7.43ZM9.498 5.75a2.252 2.252 0 1 1 4.504 0a2.252 2.252 0 0 1-4.504 0ZM4 18.253a2.252 2.252 0 1 1 4.505 0a2.252 2.252 0 0 1-4.505 0ZM17.252 16a2.252 2.252 0 1 1 0 4.505a2.252 2.252 0 0 1 0-4.505Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--iconoir" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m14.73 8.36l-2.25 3a.6.6 0 0 1-.96 0l-2.25-3a.6.6 0 0 1 0-.72l2.25-3a.6.6 0 0 1 .96 0l2.25 3a.6.6 0 0 1 0 .72ZM3 20h18m-9-3v-2"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--mdi" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M21 15v-2h-2v2h-.21a2.5 2.5 0 0 0-4.58 0H13V7H9.79a2.5 2.5 0 0 0-4.58 0H5V5H3v2H2v2h1v2h2V9h.21a2.5 2.5 0 0 0 4.58 0H11v8h3.21a2.5 2.5 0 0 0 4.58 0H19v2h2v-2h1v-2M7.5 9a1 1 0 1 1 1-1a1 1 0 0 1-1 1m9 8a1 1 0 1 1 1-1a1 1 0 0 1-1 1Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ic" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12 11c1.33 0 4 .67 4 2v.16c-.97 1.12-2.4 1.84-4 1.84s-3.03-.72-4-1.84V13c0-1.33 2.67-2 4-2zm0-1c-1.1 0-2-.9-2-2s.9-2 2-2s2 .9 2 2s-.9 2-2 2zm6 .2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14c4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2c0 3.32-2.67 7.25-8 11.8c-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--mdi" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M21 11c0 5.55-3.84 10.74-9 12c-5.16-1.26-9-6.45-9-12V5l9-4l9 4v6m-9 10c3.75-1 7-5.46 7-9.78V6.3l-7-3.12L5 6.3v4.92C5 15.54 8.25 20 12 21m0-15a3 3 0 0 1 3 3c0 1.31-.83 2.42-2 2.83V14h2v2h-2v2h-2v-6.17A2.99 2.99 0 0 1 9 9a3 3 0 0 1 3-3m0 2a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ic" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M5 5.5C5 6.33 5.67 7 6.5 7h4v10.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V7h4c.83 0 1.5-.67 1.5-1.5S18.33 4 17.5 4h-11C5.67 4 5 4.67 5 5.5z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="currentColor" d="m6 18l-2.3 2.3q-.475.475-1.088.213T2 19.575V4q0-.825.588-1.412T4 2h16q.825 0 1.413.588T22 4v12q0 .825-.587 1.413T20 18zm1-4h6q.425 0 .713-.288T14 13t-.288-.712T13 12H7q-.425 0-.712.288T6 13t.288.713T7 14m0-3h10q.425 0 .713-.288T18 10t-.288-.712T17 9H7q-.425 0-.712.288T6 10t.288.713T7 11m0-3h10q.425 0 .713-.288T18 7t-.288-.712T17 6H7q-.425 0-.712.288T6 7t.288.713T7 8"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ic" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15H8v-3h2V9.5C10 7.57 11.57 6 13.5 6H16v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v6.95c5.05-.5 9-4.76 9-9.95z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="currentColor" d="M12 2A10 10 0 0 0 2 12c0 4.42 2.87 8.17 6.84 9.5c.5.08.66-.23.66-.5v-1.69c-2.77.6-3.36-1.34-3.36-1.34c-.46-1.16-1.11-1.47-1.11-1.47c-.91-.62.07-.6.07-.6c1 .07 1.53 1.03 1.53 1.03c.87 1.52 2.34 1.07 2.91.83c.09-.65.35-1.09.63-1.34c-2.22-.25-4.55-1.11-4.55-4.92c0-1.11.38-2 1.03-2.71c-.1-.25-.45-1.29.1-2.64c0 0 .84-.27 2.75 1.02c.79-.22 1.65-.33 2.5-.33s1.71.11 2.5.33c1.91-1.29 2.75-1.02 2.75-1.02c.55 1.35.2 2.39.1 2.64c.65.71 1.03 1.6 1.03 2.71c0 3.82-2.34 4.66-4.57 4.91c.36.31.69.92.69 1.85V21c0 .27.16.59.67.5C19.14 20.16 22 16.42 22 12A10 10 0 0 0 12 2"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="currentColor" d="M12 22q-2.075 0-3.9-.788t-3.175-2.137T2.788 15.9T2 12t.788-3.9t2.137-3.175T8.1 2.788T12 2t3.9.788t3.175 2.137T21.213 8.1T22 12t-.788 3.9t-2.137 3.175t-3.175 2.138T12 22m-1-2.05V18q-.825 0-1.412-.587T9 16v-1l-4.8-4.8q-.075.45-.137.9T4 12q0 3.025 1.988 5.3T11 19.95m6.9-2.55q.5-.55.9-1.187t.662-1.325t.4-1.413T20 12q0-2.45-1.363-4.475T15 4.6V5q0 .825-.587 1.413T13 7h-2v2q0 .425-.288.713T10 10H8v2h6q.425 0 .713.288T15 13v3h1q.65 0 1.175.388T17.9 17.4"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="currentColor" d="M19.95 15.95L18.4 14.4q1.1-1.025 1.725-2.425T20.75 9t-.625-2.95t-1.725-2.4l1.55-1.6q1.4 1.325 2.225 3.125T23 9t-.825 3.825t-2.225 3.125m-3.2-3.2l-1.6-1.6q.45-.425.725-.962T16.15 9t-.275-1.187t-.725-.963l1.6-1.6q.8.725 1.25 1.688T18.45 9T18 11.063t-1.25 1.687M9 13q-1.65 0-2.825-1.175T5 9t1.175-2.825T9 5t2.825 1.175T13 9t-1.175 2.825T9 13m-8 8v-2.8q0-.825.425-1.55t1.175-1.1q1.275-.65 2.875-1.1T9 14t3.525.45t2.875 1.1q.75.375 1.175 1.1T17 18.2V21z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="currentColor" d="M21 17v-6.9L12 15L1 9l11-6l11 6v8zm-9 4l-7-3.8v-5l7 3.8l7-3.8v5z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--mdi" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M22.46 6c-.77.35-1.6.58-2.46.69c.88-.53 1.56-1.37 1.88-2.38c-.83.5-1.75.85-2.72 1.05C18.37 4.5 17.26 4 16 4c-2.35 0-4.27 1.92-4.27 4.29c0 .34.04.67.11.98C8.28 9.09 5.11 7.38 3 4.79c-.37.63-.58 1.37-.58 2.15c0 1.49.75 2.81 1.91 3.56c-.71 0-1.37-.2-1.95-.5v.03c0 2.08 1.48 3.82 3.44 4.21a4.22 4.22 0 0 1-1.93.07a4.28 4.28 0 0 0 4 2.98a8.521 8.521 0 0 1-5.33 1.84c-.34 0-.68-.02-1.02-.06C3.44 20.29 5.7 21 8.12 21C16 21 20.33 14.46 20.33 8.79c0-.19 0-.37-.01-.56c.84-.6 1.56-1.36 2.14-2.23Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 48 48"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M24 2.5a21.515 21.515 0 1 0 18.816 11.11c-11.229 7.287-19.31 19.874-19.31 19.874l-10.8-12.035l2.827-2.676L22.89 24s10.096-8.369 18.492-12.646A21.5 21.5 0 0 0 24 2.5Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="currentColor" d="M21 5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5zM5 19V5h14l.002 14H5z"/><path fill="currentColor" d="M7 7h1.998v2H7zm4 0h6v2h-6zm-4 4h1.998v2H7zm4 0h6v2h-6zm-4 4h1.998v2H7zm4 0h6v2h-6z"/></svg>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "zova-module-home-icon",
|
|
3
|
+
"version": "5.0.0",
|
|
4
|
+
"title": "home-icon",
|
|
5
|
+
"cabloyModule": {
|
|
6
|
+
"capabilities": {
|
|
7
|
+
"icon": true
|
|
8
|
+
}
|
|
9
|
+
},
|
|
10
|
+
"type": "module",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": [
|
|
14
|
+
"./src/index.ts",
|
|
15
|
+
"./dist/index.d.ts"
|
|
16
|
+
],
|
|
17
|
+
"import": "./src/index.ts",
|
|
18
|
+
"default": "./dist/index.js"
|
|
19
|
+
},
|
|
20
|
+
"./*": "./*"
|
|
21
|
+
},
|
|
22
|
+
"description": "icon",
|
|
23
|
+
"keywords": [
|
|
24
|
+
"Cabloy Module"
|
|
25
|
+
],
|
|
26
|
+
"author": "zhennann",
|
|
27
|
+
"files": [
|
|
28
|
+
"dist"
|
|
29
|
+
],
|
|
30
|
+
"scripts": {},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"zod": "^3.23.8"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
+
<symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 1024 1024" id="zova-svg-icon-home-icon-auth-dingtalk-square"><path fill="currentColor" d="M880 112H144c-17.7 0-32 14.3-32 32v736c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V144c0-17.7-14.3-32-32-32M739 449.3c-1 4.2-3.5 10.4-7 17.8h.1l-.4.7c-20.3 43.1-73.1 127.7-73.1 127.7s-.1-.2-.3-.5l-15.5 26.8h74.5L575.1 810l32.3-128h-58.6l20.4-84.7c-16.5 3.9-35.9 9.4-59 16.8 0 0-31.2 18.2-89.9-35 0 0-39.6-34.7-16.6-43.4 9.8-3.7 47.4-8.4 77-12.3 40-5.4 64.6-8.2 64.6-8.2S422 517 392.7 512.5c-29.3-4.6-66.4-53.1-74.3-95.8 0 0-12.2-23.4 26.3-12.3s197.9 43.2 197.9 43.2-207.4-63.3-221.2-78.7-40.6-84.2-37.1-126.5c0 0 1.5-10.5 12.4-7.7 0 0 153.3 69.7 258.1 107.9 104.8 37.9 195.9 57.3 184.2 106.7" /></symbol>
|
|
3
|
+
<symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--mdi" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-auth-github"><path fill="currentColor" d="M12 2A10 10 0 0 0 2 12c0 4.42 2.87 8.17 6.84 9.5.5.08.66-.23.66-.5v-1.69c-2.77.6-3.36-1.34-3.36-1.34-.46-1.16-1.11-1.47-1.11-1.47-.91-.62.07-.6.07-.6 1 .07 1.53 1.03 1.53 1.03.87 1.52 2.34 1.07 2.91.83.09-.65.35-1.09.63-1.34-2.22-.25-4.55-1.11-4.55-4.92 0-1.11.38-2 1.03-2.71-.1-.25-.45-1.29.1-2.64 0 0 .84-.27 2.75 1.02.79-.22 1.65-.33 2.5-.33s1.71.11 2.5.33c1.91-1.29 2.75-1.02 2.75-1.02.55 1.35.2 2.39.1 2.64.65.71 1.03 1.6 1.03 2.71 0 3.82-2.34 4.66-4.57 4.91.36.31.69.92.69 1.85V21c0 .27.16.59.67.5C19.14 20.16 22 16.42 22 12A10 10 0 0 0 12 2" /></symbol>
|
|
4
|
+
<symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--ic" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-auth-password"><path fill="currentColor" d="M3 17h18c.55 0 1 .45 1 1s-.45 1-1 1H3c-.55 0-1-.45-1-1s.45-1 1-1m-.5-4.43c.36.21.82.08 1.03-.28l.47-.82.48.83c.21.36.67.48 1.03.28.36-.21.48-.66.28-1.02l-.49-.84h.95c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H5.3l.47-.82c.21-.36.09-.82-.27-1.03a.764.764 0 0 0-1.03.28L4 8.47l-.47-.82a.764.764 0 0 0-1.03-.28c-.36.21-.48.67-.27 1.03l.47.82h-.95c-.41 0-.75.34-.75.75s.34.75.75.75h.95l-.48.83c-.2.36-.08.82.28 1.02m8 0c.36.21.82.08 1.03-.28l.47-.82.48.83c.21.36.67.48 1.03.28.36-.21.48-.66.28-1.02l-.48-.83h.95c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.96l.47-.82a.76.76 0 0 0-.27-1.03.746.746 0 0 0-1.02.27l-.48.82-.47-.82a.74.74 0 0 0-1.02-.27c-.36.21-.48.67-.27 1.03l.47.82h-.96a.74.74 0 0 0-.75.74c0 .41.34.75.75.75h.95l-.48.83c-.2.36-.08.82.28 1.02M23 9.97c0-.41-.34-.75-.75-.75h-.95l.47-.82a.76.76 0 0 0-.27-1.03.746.746 0 0 0-1.02.27l-.48.83-.47-.82a.74.74 0 0 0-1.02-.27c-.36.21-.48.67-.27 1.03l.47.82h-.95a.743.743 0 0 0-.76.74c0 .41.34.75.75.75h.95l-.48.83a.74.74 0 0 0 .28 1.02c.36.21.82.08 1.03-.28l.47-.82.48.83c.21.36.67.48 1.03.28.36-.21.48-.66.28-1.02l-.48-.83h.95c.4-.01.74-.35.74-.76" /></symbol>
|
|
5
|
+
<symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--fa6-solid" viewBox="0 0 512 512" id="zova-svg-icon-home-icon-auth-sms"><path fill="currentColor" d="M256 32C114.6 32 .014 125.1.014 240c0 49.59 21.39 95 56.99 130.7-12.5 50.39-54.31 95.3-54.81 95.8C0 468.8-.594 472.2.688 475.2 1.1 478.2 4.813 480 8 480c66.31 0 116-31.8 140.6-51.41C181.3 440.9 217.6 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32m-88.7 239.9c-3.4 19.2-21 32.1-46.2 32.1a80.5 80.5 0 0 1-12.59-1c-7.41-1.2-15.7-4.2-23.01-6.9-8.312-3-14.06-12.66-11.09-20.97S85 261.1 93.38 264.9c6.979 2.498 14.53 5.449 20.88 6.438C125.7 273.1 135 271 135.8 266.4c1.053-5.912-10.84-8.396-24.56-12.34-12.12-3.531-44.28-12.97-38.63-46 4.062-23.38 27.31-35.91 58-31.09 5.906.906 12.44 2.844 18.59 4.969 8.344 2.875 12.78 12 9.906 20.34C156.3 210.7 147.2 215.1 138.8 212.2c-4.344-1.5-8.938-2.938-13.09-3.594-11.22-1.656-20.72.406-21.5 4.906-1.01 5.688 9.39 7.988 20.19 11.088 17 4.9 48.7 13.9 42.9 47.3M320 288c0 8.844-7.156 16-16 16s-16-7.2-16-16v-48l-19.19 25.59c-6.062 8.062-19.55 8.062-25.62 0L224 240v48c0 8.844-7.156 16-16 16s-16-7.2-16-16v-96c0-6.875 4.406-12.1 10.94-15.18 6.5-2.094 13.71.059 17.87 5.59L256 229.3l35.19-46.93c4.156-5.531 11.4-7.652 17.87-5.59C315.6 179 320 185.1 320 192zm119.3-16.1c-3.4 19.2-21 32.1-46.2 32.1a80.5 80.5 0 0 1-12.59-1c-8.25-1.25-16.56-4.25-23.88-6.906-8.312-3-14.06-12.66-11.09-20.97s10.59-13.16 18.97-10.19c6.979 2.498 14.53 5.449 20.88 6.438 11.44 1.719 20.78-.375 21.56-4.938 1.053-5.912-10.84-8.396-24.56-12.34-12.12-3.531-44.28-12.97-38.63-46 4.031-23.38 27.25-35.91 58-31.09 5.906.906 12.44 2.844 18.59 4.969 8.344 2.875 12.78 12 9.906 20.34-2.875 8.344-11.94 12.81-20.34 9.906-4.344-1.5-8.938-2.938-13.09-3.594-11.19-1.656-20.72.406-21.5 4.906C375.2 219.2 385.6 221.5 396.4 224.6c17 4.9 48.7 13.9 42.9 47.3" /></symbol>
|
|
6
|
+
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1025 1024" id="zova-svg-icon-home-icon-auth-wechat-outline"><path fill="currentColor" d="M498.816 345.056c26.336 0 43.936-17.632 43.936-43.904 0-26.56-17.568-43.744-43.936-43.744s-52.832 17.184-52.832 43.744c.032 26.272 26.496 43.904 52.832 43.904m-245.728-87.648c-26.336 0-52.96 17.184-52.96 43.744 0 26.272 26.624 43.904 52.96 43.904 26.24 0 43.808-17.632 43.808-43.904-.032-26.56-17.568-43.744-43.808-43.744M1024 626.112c0-138.88-128.832-257.216-286.976-269.536.224-1.728.32-3.52-.064-5.312-31.712-147.84-190.688-259.296-369.824-259.296C164.704 91.968 0 233.12 0 406.624c0 93.088 47.52 176.96 137.568 243.104l-31.392 94.368c-2.016 6.144-.192 12.896 4.704 17.152a16.1 16.1 0 0 0 10.496 3.904 16.26 16.26 0 0 0 7.168-1.696L246.4 704.48l14.528 2.944c36.288 7.456 67.616 13.92 106.208 13.92a406 406 0 0 0 34.176-1.472c4.576-.384 8.448-2.688 11.072-6.016C454.88 820.192 572 896.96 709.824 896.96c35.296 0 71.04-8.512 103.104-16.544l90.848 49.664a16.06 16.06 0 0 0 7.68 1.984 16 16 0 0 0 10.048-3.552c5.056-4.096 7.136-10.848 5.248-17.024l-23.2-77.152C981.344 772.864 1024 699.328 1024 626.112m-625.408 61.856c-10.4.896-20.96 1.344-31.424 1.344-35.328 0-65.216-6.112-99.776-13.248L247.296 672a15.46 15.46 0 0 0-10.272 1.376l-88.288 44.192 22.944-68.928a16.01 16.01 0 0 0-6.016-18.176C76.96 568.64 32 493.312 32 406.624c0-155.84 150.336-282.656 335.136-282.656 163.36 0 308 99.392 337.856 231.584-171.296 2.24-309.888 122.656-309.888 270.56 0 21.504 3.264 42.336 8.768 62.432-1.664-.416-3.424-.736-5.28-.576m476.864 127.584a16.02 16.02 0 0 0-5.696 17.376l15.136 50.336-62.112-33.984a15.9 15.9 0 0 0-7.68-1.984c-1.312 0-2.624.16-3.904.512-33.312 8.416-67.776 17.088-101.344 17.088-155.904 0-282.72-107.136-282.72-238.816s126.816-238.784 282.72-238.784C862.784 387.296 992 496.64 992 626.08c0 65.664-41.376 132.96-116.544 189.472M612.992 511.968c-17.568 0-35.136 17.696-35.136 35.232 0 17.664 17.568 35.104 35.136 35.104 26.4 0 43.84-17.44 43.84-35.104 0-17.568-17.44-35.232-43.84-35.232m193.024 0c-17.312 0-34.88 17.696-34.88 35.232 0 17.664 17.568 35.104 34.88 35.104 26.304 0 44.064-17.44 44.064-35.104 0-17.568-17.728-35.232-44.064-35.232" /></symbol>
|
|
7
|
+
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1228 1024" id="zova-svg-icon-home-icon-auth-wxwork-outline"><path fill="currentColor" d="M1045.84 747.027a153.6 153.6 0 0 0-53.156 21.515 129.1 129.1 0 0 1-58.092 35.1c2.953-19.828 12.783-37.926 27.633-51.3a191.2 191.2 0 0 0 26.452-62.142 56.953 56.953 0 1 1 57.164 56.827zM941.639 610.634a190.8 190.8 0 0 0-61.932-26.747 56.953 56.953 0 1 1 56.953-56.953 155.3 155.3 0 0 0 21.263 53.325 129.67 129.67 0 0 1 34.762 58.346 85.98 85.98 0 0 1-50.878-27.97h-.21zm-93.826-200.728c-17.17-143.817-166.092-256.5-346.274-256.5-191.954 0-348.132 127.744-348.132 284.85a266.33 266.33 0 0 0 124.369 216.169 352 352 0 0 0 37.969 24.384l-15.44 61.636c5.568 2.616 10.968 5.4 16.663 7.805l77.963-38.981c11.39 2.953 23.372 4.851 35.268 6.876 7.594 1.35 15.188 2.742 22.993 3.67a401.1 401.1 0 0 0 145.547-8.353 281 281 0 0 0 11.474 62.185 481 481 0 0 1-108.675 12.698 472.5 472.5 0 0 1-97.621-10.758L262.46 846.21a31.22 31.22 0 0 1-33.877-3.543 31.64 31.64 0 0 1-10.926-32.316l25.312-101.925a330.08 330.08 0 0 1-152.844-270.17c0-192.29 184.19-348.131 411.413-348.131 215.746 0 392.428 140.653 409.64 319.444a277 277 0 0 0-29.91-2.953c-11.18.422-22.36 1.476-33.456 3.248zM716.399 634.47c18.943-3.797 36.957-11.053 53.157-21.515a129.1 129.1 0 0 1 58.134-35.016 86.36 86.36 0 0 1-27.675 51.216c-12.445 18.984-21.389 40.078-26.451 62.184a56.953 56.953 0 1 1-57.165-56.869m102.6 137.025c18.816 12.614 39.741 21.727 61.763 27a56.953 56.953 0 1 1-56.953 56.953 154.4 154.4 0 0 0-21.094-53.409 129.56 129.56 0 0 1-34.51-58.514 85.9 85.9 0 0 1 50.794 28.308z" /></symbol>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
+
<symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--ri" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-business-coupon"><path fill="currentColor" d="M2 9.5V4a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1v5.5a2.5 2.5 0 1 0 0 5V20a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-5.5a2.5 2.5 0 1 0 0-5M14 5H4v2.968a4.5 4.5 0 0 1 0 8.064V19h10zm2 0v14h4v-2.968a4.5 4.5 0 0 1 0-8.064V5z" /></symbol>
|
|
3
|
+
<symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--carbon" viewBox="0 0 32 32" id="zova-svg-icon-home-icon-business-course"><path fill="currentColor" d="M24 30H8a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v16.618l-5-2.5-5 2.5V4H8v24h16v-4h2v4a2.003 2.003 0 0 1-2 2m-3-14.118 3 1.5V4h-6v13.382Z" /></symbol>
|
|
4
|
+
<symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--uil" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-business-distribution"><path fill="currentColor" d="M19 2a1 1 0 0 0-1 1v1h-5a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h5v1a1 1 0 0 0 2 0V3a1 1 0 0 0-1-1m-1 16h-4V6h4ZM9 2a1 1 0 0 0-1 1v2H5a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h3v2a1 1 0 0 0 2 0V3a1 1 0 0 0-1-1M8 17H6V7h2Z" /></symbol>
|
|
5
|
+
<symbol viewBox="0 0 512 512" id="zova-svg-icon-home-icon-business-hotsprings"><path fill="#FF473E" d="M349.164 318.915s.842-1.244 2.518-3.433c.927-1.132 1.662-2.397 2.568-3.849.445-.758.936-1.417 1.456-2.337l1.628-2.765a107 107 0 0 0 6.794-13.979c2.1-5.414 3.932-11.49 4.998-18.019a87.2 87.2 0 0 0 .918-20.539c-.041-.883-.209-1.781-.296-2.67l-.131-1.337-.062-.669c-.015-.745.013.924.003.707l-.015-.115-.03-.229-.06-.459-.483-3.699-.11-.932c-.02-.14-.033-.346-.06-.432l-.078-.267-.299-1.066-.554-2.184-.722-2.638c-.198-.889-.533-1.748-.825-2.616-.301-.866-.517-1.755-.865-2.608-1.289-3.447-2.842-6.81-4.557-10.124-1.856-3.246-3.837-6.447-6.113-9.493-2.338-2.992-4.826-5.911-7.6-8.587a81 81 0 0 0-8.999-7.291c-1.44-.946-.46-.306-.809-.537l-.106-.076-.213-.152-.426-.304-.852-.608-1.703-1.217-.851-.608-.213-.152-.299-.23-.602-.465-2.396-1.878-2.363-1.912-.585-.483-.504-.458-1.003-.918c-1.331-1.23-2.672-2.444-3.967-3.7l-3.742-3.906c-1.259-1.284-2.353-2.721-3.519-4.08l-1.712-2.068c-.566-.691-1.077-1.428-1.614-2.14-1.056-1.44-2.126-2.862-3.113-4.337-3.961-5.903-7.262-12.137-9.996-18.492-1.266-3.226-2.534-6.413-3.473-9.69-.476-1.634-1.048-3.225-1.406-4.876l-1.13-4.898c-1.271-6.54-2.083-13.031-2.1-19.364-.124-3.161.118-6.277.258-9.333l.034-.572.018-.286.009-.143c-.001.102.032-1.419.026-.828l.131-.915.261-1.821.26-1.809c.093-.63.149-1.099.304-2 .262-1.611.56-3.201.856-4.771.152-.778.294-1.579.46-2.322l.549-2.098q.545-2.087 1.119-4.117c.405-1.349.892-2.666 1.334-3.974.475-1.3.853-2.607 1.408-3.85l1.582-3.695.786-1.807.881-1.746 1.766-3.403a91.6 91.6 0 0 1 16.266-21.593c5.671-5.573 11.267-9.53 15.974-12.417 2.385-1.417 4.52-2.611 6.466-3.501 1.912-.932 3.541-1.676 4.919-2.179 2.727-1.043 4.173-1.532 4.173-1.532a6.56 6.56 0 0 1 7.247 10.281l-.408.508s-.863 1.077-2.466 2.97c-.836.898-1.721 2.18-2.815 3.56-1.126 1.343-2.218 3.085-3.511 4.879-2.458 3.727-5.206 8.27-7.648 13.633-2.405 5.381-4.539 11.534-5.84 18.244-.604 3.369-1.168 6.817-1.338 10.401-.046.894-.14 1.78-.157 2.684q.017 1.365-.004 2.726l-.019 1.363c.019.421.07.795.099 1.192.065.784.131 1.563.159 2.339.002.291.067 1.026.11 1.602l.142 1.822.142 1.834.072.921c-.007.667.018-.777.022-.599l.016.087.033.175.064.349c.346 1.859.548 3.735 1.061 5.575.734 3.718 2.028 7.343 3.346 10.926a82 82 0 0 0 5.109 10.357l1.57 2.45c.488.834 1.081 1.611 1.661 2.392l.841 1.188c.268.404.559.793.882 1.162l1.836 2.271a81.6 81.6 0 0 0 8.273 8.262l2.291 1.819.568.458.282.229.241.156c.32.21.639.418.945.643l.914.678.225.174.115.089.22.141.88.566 1.76 1.132.88.566.44.283.22.141.11.071c-.277-.182.775.507-.593-.39a119 119 0 0 1 17.396 13.16 116 116 0 0 1 14.374 16.206c1.024 1.477 2.047 2.951 3.029 4.446.507.737.978 1.496 1.421 2.272l1.353 2.308c1.87 3.032 3.337 6.274 4.869 9.436 1.366 3.247 2.759 6.454 3.772 9.778.521 1.654 1.137 3.267 1.541 4.941l1.248 4.977c.405 1.651.658 3.331.978 4.982.293 1.658.586 3.305.737 4.965l.521 4.931c.048.391.072.835.089 1.3l.058 1.361.096 2.705.069 2.682.013.667c.005.225-.013.332-.018.504l-.05.937-.242 3.722-.03.462-.015.231-.008.115c-.004-.14.016 1.606 0 .937l-.122 1.167-.25 2.317c-.2 1.537-.337 3.059-.608 4.562-1.978 12.051-6.015 22.916-11.084 31.95a88.8 88.8 0 0 1-17.109 21.819 213 213 0 0 1-4.459 3.838c-1.453 1.195-2.953 2.236-4.345 3.255-1.364 1.047-2.824 1.881-4.16 2.712-1.354.813-2.589 1.625-3.865 2.265-2.552 1.278-4.715 2.424-6.893 3.278-2.1.86-3.878 1.621-5.165 1.89-2.654.747-4.121 1.069-4.121 1.069a6.88 6.88 0 0 1-8.192-5.243 6.92 6.92 0 0 1 1.028-5.323m-118.415 5.33a6.877 6.877 0 0 0 8.192 5.243s1.467-.322 4.121-1.069c1.287-.27 3.065-1.03 5.165-1.89 2.178-.854 4.341-1.999 6.893-3.278 1.277-.64 2.511-1.452 3.865-2.265 1.336-.832 2.796-1.666 4.16-2.712 1.391-1.019 2.892-2.061 4.345-3.255a213 213 0 0 0 4.459-3.838 88.9 88.9 0 0 0 17.109-21.819c5.068-9.034 9.106-19.899 11.084-31.95.27-1.503.408-3.026.608-4.562l.25-2.317.122-1.167c.016.668-.004-1.078 0-.937l.008-.115.015-.231.03-.462.242-3.722.05-.937c.005-.172.023-.279.018-.504l-.013-.667-.069-2.682-.096-2.705-.058-1.361a16 16 0 0 0-.089-1.3l-.521-4.931c-.151-1.66-.444-3.307-.737-4.965-.32-1.651-.574-3.331-.978-4.982l-1.248-4.977c-.404-1.674-1.019-3.287-1.541-4.941-1.013-3.324-2.406-6.531-3.772-9.778-1.532-3.162-2.999-6.404-4.869-9.436l-1.353-2.308a32 32 0 0 0-1.421-2.272c-.983-1.495-2.006-2.969-3.029-4.446a116 116 0 0 0-14.374-16.206c-1.339-1.227-2.728-2.403-4.112-3.583-1.363-1.206-2.827-2.291-4.28-3.388-1.462-1.086-2.887-2.222-4.426-3.202l-2.281-1.507-1.147-.742-.574-.37-.287-.184-.144-.092c.266.175-.797-.521.559.369l-3.521-2.264-.88-.566-.22-.141-.115-.089-.225-.174-.914-.678c-.306-.224-.625-.433-.945-.643l-.241-.156-.282-.229-.568-.458-2.291-1.819a81.5 81.5 0 0 1-8.273-8.262l-1.836-2.271a11 11 0 0 1-.882-1.162l-.841-1.188c-.58-.781-1.173-1.558-1.662-2.392l-1.57-2.45a82.6 82.6 0 0 1-5.109-10.357c-1.318-3.584-2.612-7.208-3.346-10.926-.514-1.84-.716-3.716-1.061-5.575l-.064-.349-.033-.175-.016-.087c-.004-.178-.029 1.266-.022.599l-.072-.921-.142-1.834-.142-1.822c-.043-.576-.108-1.312-.11-1.602-.028-.775-.094-1.555-.159-2.339-.029-.398-.08-.772-.099-1.192l.019-1.363q.021-1.361.004-2.726c.017-.904.111-1.79.157-2.684.17-3.584.734-7.032 1.338-10.401 1.301-6.71 3.436-12.864 5.84-18.244 2.442-5.363 5.189-9.907 7.648-13.633 1.293-1.794 2.385-3.537 3.511-4.879 1.094-1.38 1.979-2.663 2.815-3.56a159 159 0 0 0 2.466-2.97l.408-.508a6.56 6.56 0 0 0-7.247-10.281s-1.447.489-4.173 1.532c-1.378.504-3.006 1.247-4.919 2.179-1.946.89-4.081 2.083-6.466 3.501-4.708 2.887-10.304 6.844-15.974 12.417a91.6 91.6 0 0 0-16.266 21.593l-1.765 3.403-.881 1.746-.786 1.807-1.582 3.695c-.555 1.243-.933 2.55-1.408 3.85-.442 1.308-.929 2.625-1.334 3.974a214 214 0 0 0-1.119 4.117l-.549 2.098c-.166.743-.308 1.544-.46 2.322-.296 1.569-.594 3.16-.856 4.771-.154.9-.211 1.37-.304 2l-.26 1.809-.261 1.821-.131.915c.006-.59-.027.93-.026.828l-.009.143-.018.286-.034.572c-.141 3.056-.383 6.172-.258 9.333.017 6.333.829 12.823 2.1 19.364l1.13 4.898c.358 1.651.93 3.242 1.406 4.876.939 3.277 2.207 6.464 3.473 9.69 2.734 6.354 6.035 12.589 9.996 18.492.987 1.476 2.057 2.898 3.113 4.337.537.712 1.048 1.449 1.614 2.14l1.712 2.068c1.166 1.359 2.26 2.795 3.519 4.08l3.742 3.906c1.296 1.256 2.637 2.47 3.968 3.7l1.003.918.504.458.585.483 2.363 1.912 2.396 1.878.602.465.299.23.213.152.851.608 3.406 2.433c1.429.939.438.292.776.515l.073.055.146.109.292.218.584.432 1.182.841c.815.522 1.529 1.185 2.29 1.779 1.556 1.151 2.895 2.556 4.359 3.802 2.774 2.676 5.261 5.595 7.6 8.587 2.277 3.045 4.258 6.247 6.113 9.493 1.715 3.314 3.268 6.676 4.557 10.124.348.854.564 1.743.865 2.608.292.868.628 1.728.825 2.616l.722 2.638.554 2.184.299 1.066.078.267c.027.086.039.292.06.432l.11.932.483 3.699.06.459.03.229.015.115c.009.217-.018-1.452-.003-.707l.062.669.131 1.337c.087.89.255 1.787.296 2.67a87.2 87.2 0 0 1-.918 20.539c-1.066 6.529-2.898 12.605-4.998 18.019a107 107 0 0 1-6.794 13.979l-1.628 2.765c-.52.92-1.011 1.579-1.456 2.337-.906 1.452-1.642 2.717-2.568 3.849-1.676 2.189-2.518 3.433-2.518 3.433a6.86 6.86 0 0 0-1.029 5.324m-117.392 0a6.877 6.877 0 0 0 8.192 5.243s1.467-.322 4.121-1.069c1.287-.27 3.065-1.03 5.165-1.89 2.178-.854 4.341-1.999 6.893-3.278 1.277-.64 2.511-1.452 3.865-2.265 1.336-.832 2.796-1.666 4.16-2.712 1.391-1.019 2.892-2.061 4.345-3.255a213 213 0 0 0 4.459-3.838 88.9 88.9 0 0 0 17.109-21.819c5.068-9.034 9.106-19.899 11.084-31.95.27-1.503.407-3.026.608-4.562l.25-2.317.122-1.167c.016.668-.004-1.078 0-.937l.008-.115.015-.231.03-.462.242-3.722.05-.937c.005-.172.023-.279.018-.504l-.013-.667-.069-2.682-.096-2.705-.058-1.361a16 16 0 0 0-.089-1.3l-.521-4.931c-.151-1.66-.444-3.307-.737-4.965-.32-1.651-.574-3.331-.978-4.982l-1.248-4.977c-.404-1.674-1.019-3.287-1.541-4.941-1.013-3.324-2.406-6.531-3.772-9.778-1.532-3.162-2.999-6.404-4.869-9.436l-1.353-2.308a32 32 0 0 0-1.421-2.272c-.983-1.495-2.006-2.969-3.029-4.446a116 116 0 0 0-14.374-16.206c-1.339-1.227-2.728-2.403-4.112-3.583-1.363-1.206-2.827-2.291-4.28-3.388-1.462-1.086-2.887-2.222-4.426-3.202l-2.281-1.507-1.147-.742-.574-.37-.287-.184-.144-.092c.266.175-.797-.521.559.369l-3.521-2.264-.88-.566-.22-.141-.115-.089-.225-.174-.914-.678c-.306-.224-.625-.433-.945-.643l-.241-.156-.282-.229-.568-.458-2.291-1.819a81.5 81.5 0 0 1-8.273-8.262l-1.836-2.271a11 11 0 0 1-.882-1.162l-.841-1.188c-.58-.781-1.173-1.558-1.662-2.392l-1.57-2.45a82.6 82.6 0 0 1-5.109-10.357c-1.318-3.584-2.612-7.208-3.346-10.926-.514-1.84-.716-3.716-1.061-5.575l-.064-.349-.033-.175-.016-.087c-.004-.178-.029 1.266-.022.599l-.072-.921-.142-1.834-.142-1.822c-.043-.576-.108-1.312-.11-1.602-.028-.775-.094-1.555-.159-2.339-.029-.398-.08-.772-.099-1.192l.019-1.363q.021-1.361.004-2.726c.017-.904.111-1.79.157-2.684.17-3.584.734-7.032 1.338-10.401 1.301-6.71 3.436-12.864 5.84-18.244 2.442-5.363 5.189-9.907 7.648-13.633 1.293-1.794 2.385-3.537 3.511-4.879 1.094-1.38 1.979-2.663 2.815-3.56a159 159 0 0 0 2.466-2.97l.408-.508a6.56 6.56 0 0 0-7.247-10.281s-1.447.489-4.173 1.532c-1.378.504-3.006 1.247-4.919 2.179-1.946.89-4.081 2.083-6.466 3.501-4.708 2.887-10.304 6.844-15.974 12.417a91.6 91.6 0 0 0-16.266 21.593l-1.765 3.403-.881 1.746-.786 1.807-1.582 3.695c-.555 1.243-.933 2.55-1.408 3.85-.442 1.308-.929 2.625-1.334 3.974a214 214 0 0 0-1.119 4.117l-.549 2.098c-.166.743-.308 1.544-.46 2.322-.296 1.569-.594 3.16-.856 4.771-.154.9-.211 1.37-.304 2l-.26 1.809-.261 1.821-.131.915c.006-.59-.027.93-.026.828l-.009.143-.018.286-.034.572c-.14 3.056-.383 6.172-.258 9.333.017 6.333.829 12.823 2.1 19.364l1.13 4.898c.358 1.651.93 3.242 1.406 4.876.939 3.277 2.207 6.464 3.473 9.69 2.734 6.354 6.035 12.589 9.996 18.492.987 1.476 2.057 2.898 3.113 4.337.537.712 1.048 1.449 1.614 2.14l1.712 2.068c1.166 1.359 2.26 2.795 3.519 4.08l3.742 3.906c1.296 1.256 2.637 2.47 3.968 3.7l1.003.918.504.458.585.483 2.363 1.912 2.396 1.878.602.465.299.23.213.152.851.608 3.406 2.433c1.429.939.438.292.776.515l.073.055.146.109.292.218.584.432 1.182.841c.815.522 1.529 1.185 2.29 1.779 1.556 1.151 2.895 2.556 4.359 3.802 2.774 2.676 5.261 5.595 7.6 8.587 2.277 3.045 4.258 6.247 6.113 9.493 1.715 3.314 3.268 6.676 4.557 10.124.348.854.564 1.743.865 2.608.292.868.628 1.728.825 2.616l.722 2.638.554 2.184.299 1.066.078.267c.027.086.039.292.06.432l.11.932.483 3.699.06.459.03.229.015.115c.009.217-.018-1.452-.003-.707l.062.669.131 1.337c.087.89.255 1.787.296 2.67a87.2 87.2 0 0 1-.918 20.539c-1.066 6.529-2.898 12.605-4.998 18.019a107 107 0 0 1-6.794 13.979l-1.628 2.765c-.52.92-1.011 1.579-1.456 2.337-.906 1.452-1.642 2.717-2.568 3.849-1.676 2.189-2.518 3.433-2.518 3.433a6.86 6.86 0 0 0-1.029 5.324m-42.814-83.381a7.96 7.96 0 0 0-11.031-2.252l-1.885 1.245-2.298 1.541c-.898.562-1.999 1.418-3.241 2.371-1.218.954-2.689 2.013-4.119 3.222-1.44 1.217-3.039 2.529-4.703 4.035-3.317 3.024-7.087 6.628-10.919 11.142-1.982 2.2-3.897 4.698-5.908 7.337l-2.909 4.212c-1.019 1.426-1.894 3.002-2.877 4.562-3.83 6.307-7.303 13.697-10.054 22.115l-1.015 3.198c-.321 1.082-.587 2.191-.865 3.308l-.817 3.39-.641 3.488c-.201 1.176-.442 2.361-.605 3.562l-.432 3.644-.21 1.849-.052.465-.026.233c.026 1.702 0 .582.003 1.011l-.049.768-.196 3.095-.198 3.135c-.013.115-.012.28-.005.466l.014.529.031 1.063.086 2.141c.137 2.835.242 5.923.629 8.464l.512 4.039.273 2.042c.11.677.267 1.342.4 2.017l.859 4.068c.314 1.356.543 2.765.967 4.092 2.838 10.905 7.43 21.744 13.466 31.938 6.017 10.219 13.418 19.845 21.825 28.688 16.836 17.711 37.521 32.389 60.158 44.003 11.337 5.783 23.19 10.791 35.379 15.129l4.592 1.582 2.303.791 2.321.717 9.33 2.847 9.449 2.519c3.161.831 6.353 1.498 9.542 2.251 3.188.773 6.4 1.39 9.624 1.993 3.222.615 6.449 1.251 9.697 1.723 3.245.496 6.493 1.06 9.754 1.492l9.808 1.172c3.275.366 6.559.6 9.844.902 1.643.131 3.286.311 4.931.399l4.939.253c3.294.147 6.59.378 9.885.398l10.418.176 9.082-.163 2.27-.043c.359-.002.784-.021 1.221-.043l1.287-.06 5.147-.247 5.143-.258c1.722-.079 3.31-.258 4.97-.39 3.285-.302 6.57-.537 9.845-.903l9.809-1.169c3.264-.412 6.51-.991 9.756-1.482 3.248-.473 6.475-1.11 9.698-1.725 3.223-.61 6.441-1.201 9.627-1.981 3.19-.754 6.382-1.422 9.543-2.253l9.453-2.509 9.331-2.849 2.321-.718 2.303-.791 4.593-1.583c12.194-4.328 24.052-9.335 35.391-15.119 22.645-11.609 43.34-26.288 60.183-44.006 8.409-8.849 15.814-18.478 21.835-28.701 6.036-10.201 10.63-21.046 13.47-31.958 2.863-10.902 3.979-21.816 3.562-31.998l-.179-3.788-.048-.936c-.009-.348.003.449-.023-.839l-.026-.19-.052-.379-.206-1.511-.408-2.992-.128-.864-.156-.975-.32-1.935-.668-3.794-.819-3.391c-.278-1.117-.536-2.228-.862-3.31l-1.018-3.2c-2.761-8.419-6.232-15.814-10.068-22.121-.985-1.56-1.861-3.136-2.882-4.562l-2.913-4.211c-2.014-2.638-3.927-5.139-5.913-7.336-3.837-4.512-7.608-8.115-10.929-11.137-1.665-1.505-3.267-2.815-4.707-4.033-1.441-1.218-2.845-2.203-4.046-3.141-2.393-1.885-4.379-3.119-5.655-4.017l-1.966-1.317c-2.659-1.772-6.256-1.832-9.01.135a7.92 7.92 0 0 0-1.843 11.049l.26.364 1.252 1.753c.82 1.154 2.09 2.816 3.585 5.072 1.547 2.214 3.318 5.02 5.318 8.288.93 1.681 2.018 3.417 2.995 5.354l1.553 2.951c.54 1.003.988 2.088 1.506 3.164 1.067 2.138 1.91 4.5 2.937 6.864l1.327 3.71c.483 1.244.79 2.573 1.207 3.881 1.481 5.296 2.728 10.968 3.14 16.968l.158 2.255c.04.756.01 1.523.04 2.284l.055 2.296-.125 2.019-.106 2.127-.224 3.012-.113 1.521-.028.382-.014.191c-.024-1.161-.023-.237-.035-.457l-.111.593-.431 2.376a75.4 75.4 0 0 1-6.12 19.034c-5.914 12.613-16.129 24.844-29.614 35.681-13.486 10.844-30.13 20.283-48.629 27.843a286 286 0 0 1-29.04 9.912 302 302 0 0 1-31.006 7.128 368 368 0 0 1-32.29 4.298c-2.725.254-5.47.385-8.206.588-1.353.081-2.774.215-4.072.266l-3.919.168-3.92.179-.98.046c-.319.017-.65.032-1.048.033l-2.27.028-9.082.121-7.746-.107c-2.761.013-5.506-.18-8.257-.281-2.75-.118-5.501-.208-8.235-.43-2.736-.204-5.481-.335-8.206-.589a371 371 0 0 1-32.297-4.275c-10.6-1.858-20.98-4.237-31.013-7.123a283 283 0 0 1-29.051-9.902c-18.507-7.556-35.159-16.996-48.653-27.847-13.493-10.846-23.714-23.089-29.628-35.716-.45-.773-.698-1.584-1.052-2.373l-1.004-2.373c-.163-.395-.353-.786-.496-1.184l-.394-1.197-.809-2.384c-.641-1.691-.865-2.899-1.287-4.271l-.302-1.009-.162-.505-.083-.253a1.2 1.2 0 0 1-.071-.317l-.454-3.109-.448-3.069-.111-.761c-.001.302-.037-.945-.009.63l-.014-.148-.029-.296-.117-1.184-.248-2.36c-.069-.784-.065-1.561-.106-2.339l-.097-2.326.057-2.297c.029-.762-.008-1.531.036-2.286l.161-2.256c.422-6.002 1.666-11.678 3.154-16.974.419-1.308.727-2.637 1.212-3.881l1.331-3.71c1.03-2.363 1.87-4.727 2.942-6.863.519-1.076.967-2.16 1.509-3.163l1.556-2.95c.976-1.939 2.069-3.672 3-5.352.969-1.656 1.976-3.128 2.832-4.537.861-1.423 1.691-2.553 2.417-3.667.731-1.088 1.356-2.051 2.053-2.954L69 251.772l1.332-1.825c1.892-2.607 2.093-6.236.211-9.083" /></symbol>
|
|
6
|
+
<symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--fa6-solid" viewBox="0 0 576 512" id="zova-svg-icon-home-icon-business-kitchen-set"><path fill="currentColor" d="M80 144c0-35.3 28.7-64 64-64s64 28.7 64 64-28.7 64-64 64-64-28.7-64-64m204.4 32c-14.5 64.1-71.9 112-140.4 112C64.47 288 0 223.5 0 144 0 64.47 64.47 0 144 0c68.5 0 125.9 47.87 140.4 112h71.8c8.8-9.8 21.6-16 35.8-16h104c26.5 0 48 21.5 48 48s-21.5 48-48 48H392c-14.2 0-27-6.2-35.8-16zM144 48c-53.02 0-96 42.98-96 96 0 53 42.98 96 96 96 53 0 96-43 96-96 0-53.02-43-96-96-96m280 216v8h96c13.3 0 24 10.7 24 24s-10.7 24-24 24H280c-13.3 0-24-10.7-24-24s10.7-24 24-24h96v-8c0-13.3 10.7-24 24-24s24 10.7 24 24M288 464V352h224v112c0 26.5-21.5 48-48 48H336c-26.5 0-48-21.5-48-48M176 320c26.5 0 48 21.5 48 48s-21.5 48-48 48h-16c0 17.7-14.3 32-32 32H64c-17.67 0-32-14.3-32-32v-80c0-8.8 7.16-16 16-16zm16 48c0-8.8-7.2-16-16-16h-16v32h16c8.8 0 16-7.2 16-16m8 96c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.25 0-24-10.7-24-24s10.75-24 24-24z" /></symbol>
|
|
7
|
+
<symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--healthicons" viewBox="0 0 48 48" id="zova-svg-icon-home-icon-business-money-bag"><g fill="currentColor" fill-rule="evenodd" clip-rule="evenodd"><path d="M28.772 24.667A4 4 0 0 0 25 22v-1h-2v1a4 4 0 1 0 0 8v4c-.87 0-1.611-.555-1.887-1.333a1 1 0 1 0-1.885.666A4 4 0 0 0 23 36v1h2v-1a4 4 0 0 0 0-8v-4a2 2 0 0 1 1.886 1.333 1 1 0 1 0 1.886-.666M23 24a2 2 0 1 0 0 4zm2 10a2 2 0 1 0 0-4z" /><path d="M13.153 8.621C15.607 7.42 19.633 6 24.039 6c4.314 0 8.234 1.361 10.675 2.546l.138.067c.736.364 1.33.708 1.748.987L32.906 15C41.422 23.706 48 41.997 24.039 41.997S6.479 24.038 15.069 15l-3.67-5.4c.283-.185.642-.4 1.07-.628q.318-.171.684-.35Zm17.379 6.307 2.957-4.323c-2.75.198-6.022.844-9.172 1.756-2.25.65-4.75.551-7.065.124a25 25 0 0 1-1.737-.386l1.92 2.827c4.115 1.465 8.981 1.465 13.097.002M16.28 16.63c4.815 1.86 10.602 1.86 15.417-.002a29.3 29.3 0 0 1 4.988 7.143c1.352 2.758 2.088 5.515 1.968 7.891-.116 2.293-1.018 4.252-3.078 5.708-2.147 1.517-5.758 2.627-11.537 2.627-5.785 0-9.413-1.091-11.58-2.591-2.075-1.438-2.986-3.37-3.115-5.632-.135-2.35.585-5.093 1.932-7.87 1.285-2.648 3.078-5.197 5.005-7.274m-1.15-6.714c.8.238 1.636.445 2.484.602 2.15.396 4.306.454 6.146-.079a54 54 0 0 1 6.53-1.471C28.45 8.414 26.298 8 24.038 8c-3.445 0-6.658.961-8.908 1.916" /></g></symbol>
|
|
8
|
+
<symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--logos" viewBox="0 0 256 268" id="zova-svg-icon-home-icon-business-party"><path fill="#FF37AD" d="M22.498 68.97a11.845 11.845 0 1 0 0-23.687c-6.471.098-11.666 5.372-11.666 11.844s5.195 11.746 11.666 11.844Zm181.393-10.04a11.845 11.845 0 1 0-.003-23.688c-6.471.098-11.665 5.373-11.665 11.845.001 6.472 5.197 11.745 11.668 11.842Z" /><path fill="#FCC954" d="M213.503 211.097a11.845 11.845 0 1 0-.003-23.687c-6.471.098-11.665 5.373-11.664 11.845s5.196 11.745 11.667 11.842M70.872 23.689a11.845 11.845 0 1 0 0-23.688C64.4.1 59.206 5.373 59.206 11.845s5.195 11.746 11.666 11.844" /><path fill="#2890E9" d="M140.945 105.94a9.25 9.25 0 0 1-8.974-11.484c.37-1.482.672-2.97.899-4.455a25.4 25.4 0 0 1-8.732 1.904c-5.379.205-10.195-.702-14.3-2.69a22.23 22.23 0 0 1-9.614-8.877c-4.415-7.652-4.034-17.718.964-25.645 4.765-7.568 12.836-11.664 21.586-10.995 6.74.527 12.647 3.051 17.378 7.382q1.293-3.647 2.473-7.803c4.833-17.058 6.429-34.187 6.442-34.36a9.24 9.24 0 0 1 10.041-8.37 9.25 9.25 0 0 1 8.37 10.044c-.067.767-1.768 19.03-7.068 37.735-2.676 9.445-5.838 17.426-9.42 23.798q.397 2.13.631 4.372c.746 7.211.152 14.974-1.714 22.445a9.256 9.256 0 0 1-8.962 6.998Zm-20.123-43.827c-.956 0-2.64.28-3.996 2.43-1.298 2.06-1.552 4.873-.588 6.544 1.282 2.223 5.054 2.417 7.19 2.336 2.424-.092 4.908-1.612 7.338-4.382a16 16 0 0 0-1.43-2.422c-2.007-2.787-4.547-4.212-7.998-4.482-.13-.008-.305-.024-.516-.024" /><path fill="#F0A420" d="M114.361 131.268c-38.343-30.224-78.42-43.319-89.514-29.246a12.8 12.8 0 0 0-2.257 4.509 4 4 0 0 0-.156.61v.024q-.224.947-.333 1.917L.393 236.18c-3.477 20.412 16.73 36.755 35.967 29.093l117.721-46.908c2.076-.826 7.185-3.982 8.583-5.724q.556-.543 1.037-1.153c11.092-14.075-11-49.988-49.34-80.223z" /><path fill="#FCC954" d="M163.688 211.494c11.1-14.08-10.984-50-49.327-80.226-38.343-30.227-78.425-43.316-89.524-29.236s10.983 50 49.326 80.226c38.343 30.227 78.425 43.316 89.525 29.236" /><path fill="#F0A420" d="M156.994 203.294c9.108-11.556-10.956-42.563-44.817-69.256-33.861-26.695-68.697-38.966-77.804-27.413-9.11 11.556 10.954 42.563 44.815 69.256 33.86 26.695 68.697 38.969 77.806 27.413" /><path fill="#2E6AC9" d="M76.059 249.456c-14.327.07-26.004-7.101-40.158-18.257C19.431 218.21 8.493 202.665 7.63 193.81l-4.668 27.327c2.16 7.798 9.523 17.683 20.202 26.101 8.883 7.004 17.844 11.813 27.135 12.48l25.76-10.266zm-14.332-49.6c-27.443-21.637-45.271-46.467-44.77-60.669l-4.549 26.63c.351 12.685 15.175 33.184 36.262 49.808 18.894 14.896 38.583 25.38 53.66 23.363l25.593-10.2c-20.62 1.425-42.376-10.147-66.196-28.931Z" /><path fill="#2890E9" d="M118.535 145.052a11.845 11.845 0 1 0 0-23.688c-6.471.098-11.666 5.372-11.666 11.844s5.195 11.746 11.666 11.844" /><path fill="#FF37AD" d="m182.412 122.007.087-.097c.108-.116.308-.33.596-.621a45 45 0 0 1 2.8-2.56c3.56-2.98 7.45-5.54 11.594-7.63 10.128-5.125 25.208-9.307 44.985-4.747 5.943 1.37 11.87-2.336 13.241-8.278 1.37-5.942-2.336-11.87-8.278-13.24-25.602-5.903-45.957-.506-59.922 6.566a82.5 82.5 0 0 0-15.857 10.449 66 66 0 0 0-4.215 3.866 45 45 0 0 0-1.53 1.615l-.12.135-.042.048-.02.022-.007.008c-.003.005-.009.01 8.361 7.21l-8.37-7.2c-3.877 4.622-3.328 11.5 1.233 15.448s11.446 3.506 15.464-.994M73.03 43.248a11.75 11.75 0 0 0-16.23-3.664 11.76 11.76 0 0 0-3.665 16.227c.427.683 9.178 14.86 10.976 34.276 1.83 19.727-3.966 37.86-17.253 54.12 4.474 5.686 9.858 11.596 16.008 17.507 8.51-9.834 14.913-20.402 19.12-31.583 5.175-13.756 7.006-28.342 5.445-43.348-2.487-23.874-12.874-41.11-14.402-43.535Z" /><path fill="#2890E9" d="M220.242 156.578c6.002 1.553 10.244 3.246 12.077 4.034a11.86 11.86 0 0 0 13.94-1.12 11.87 11.87 0 0 0 4.107-8.765 11.85 11.85 0 0 0-8.06-11.426c-5.618-2.495-26.905-10.92-55.044-9.423-18.941 1.007-37.155 6.253-54.133 15.608-16.076 8.86-31.004 21.412-44.556 37.425a199 199 0 0 0 20.17 12.607c22.882-26.08 49.283-40.217 78.7-42.085a105.9 105.9 0 0 1 32.8 3.145Z" /></symbol>
|
|
9
|
+
<symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--material-symbols" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-business-provider"><path fill="currentColor" d="M12 13q1.45 0 2.475-1.025T15.5 9.5t-1.025-2.475T12 6 9.525 7.025 8.5 9.5t1.025 2.475T12 13m0-2q-.625 0-1.062-.438-.438-.437-.438-1.062t.438-1.062Q11.375 8 12 8t1.062.438q.438.437.438 1.062t-.438 1.062Q12.625 11 12 11m0 11.5L3 17V7l9-5.5L21 7v10Zm0-2.35 3.675-2.25q-.825-.425-1.75-.662T12 17t-1.925.238q-.925.237-1.75.662Zm-5.6-3.425q1.2-.825 2.613-1.275Q10.425 15 12 15t2.988.45q1.412.45 2.612 1.275l1.4-.85v-7.75L12 3.85 5 8.125v7.75Zm5.6-6.45" /></symbol>
|
|
10
|
+
<symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--carbon" viewBox="0 0 32 32" id="zova-svg-icon-home-icon-business-purchase"><path fill="currentColor" d="M28 6H4a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h24a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2m0 2v3H4V8ZM4 24V13h24v11Z" /><path fill="currentColor" d="M6 20h10v2H6z" /></symbol>
|
|
11
|
+
<symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--material-symbols" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-business-store"><path fill="currentColor" d="M5.025 21q-.825 0-1.412-.587-.588-.588-.588-1.413v-7.95q-.575-.525-.887-1.35t-.013-1.8l1.05-3.4q.2-.65.713-1.075T5.075 3h13.9q.675 0 1.175.412.5.413.725 1.088l1.05 3.4q.3.975-.012 1.775-.313.8-.888 1.375V19q0 .825-.587 1.413-.588.587-1.413.587Zm9.2-11q.675 0 1.025-.463.35-.462.275-1.037l-.55-3.5h-1.95v3.7q0 .525.35.913.35.387.85.387m-4.5 0q.575 0 .938-.387.362-.388.362-.913V5h-1.95l-.55 3.5q-.1.6.263 1.05.362.45.937.45m-4.45 0q.45 0 .787-.325.338-.325.413-.825L7.025 5h-1.95l-1 3.35q-.15.5.162 1.075Q4.55 10 5.275 10m13.5 0q.725 0 1.05-.575t.15-1.075L18.925 5h-1.9l.55 3.85q.075.5.413.825t.787.325m-13.75 9h14v-7.05q-.125.05-.162.05h-.088q-.675 0-1.188-.225t-1.012-.725q-.45.45-1.025.7t-1.225.25q-.675 0-1.263-.25t-1.037-.7q-.425.45-.987.7T9.825 12q-.725 0-1.313-.25-.587-.25-1.037-.7-.525.525-1.037.737Q5.925 12 5.275 12h-.112q-.063 0-.138-.05zm14 0h-14z" /></symbol>
|
|
12
|
+
</svg>
|