@volverjs/ui-vue 0.0.1-beta.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +91 -0
- package/dist/Volver.d.ts +58 -0
- package/dist/components/VvAccordion/VvAccordion.d.ts +32 -0
- package/dist/components/VvAccordion/VvAccordion.es.js +260 -0
- package/dist/components/VvAccordion/VvAccordion.umd.js +1 -0
- package/dist/components/VvAccordion/VvAccordion.vue.d.ts +104 -0
- package/dist/components/VvAccordion/useAccordionProps.d.ts +16 -0
- package/dist/components/VvAccordionGroup/VvAccordionGroup.d.ts +50 -0
- package/dist/components/VvAccordionGroup/VvAccordionGroup.es.js +313 -0
- package/dist/components/VvAccordionGroup/VvAccordionGroup.umd.js +1 -0
- package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +170 -0
- package/dist/components/VvBadge/VvBadge.d.ts +4 -0
- package/dist/components/VvBadge/VvBadge.es.js +18 -0
- package/dist/components/VvBadge/VvBadge.umd.js +1 -0
- package/dist/components/VvBadge/VvBadge.vue.d.ts +56 -0
- package/dist/components/VvBreadcrumb/VvBreadcrumb.d.ts +26 -0
- package/dist/components/VvBreadcrumb/VvBreadcrumb.es.js +206 -0
- package/dist/components/VvBreadcrumb/VvBreadcrumb.umd.js +1 -0
- package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +118 -0
- package/dist/components/VvButton/VvButton.d.ts +115 -0
- package/dist/components/VvButton/VvButton.es.js +420 -0
- package/dist/components/VvButton/VvButton.umd.js +1 -0
- package/dist/components/VvButton/VvButton.vue.d.ts +228 -0
- package/dist/components/VvButton/useButtonGroupProps.d.ts +23 -0
- package/dist/components/VvButtonGroup/VvButtonGroup.d.ts +57 -0
- package/dist/components/VvButtonGroup/VvButtonGroup.es.js +210 -0
- package/dist/components/VvButtonGroup/VvButtonGroup.umd.js +1 -0
- package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +210 -0
- package/dist/components/VvCard/VvCard.d.ts +4 -0
- package/dist/components/VvCard/VvCard.es.js +188 -0
- package/dist/components/VvCard/VvCard.umd.js +1 -0
- package/dist/components/VvCard/VvCard.vue.d.ts +63 -0
- package/dist/components/VvCheck/VvCheck.d.ts +47 -0
- package/dist/components/VvCheck/VvCheck.es.js +318 -0
- package/dist/components/VvCheck/VvCheck.umd.js +1 -0
- package/dist/components/VvCheck/VvCheck.vue.d.ts +165 -0
- package/dist/components/VvCheck/useCheckProps.d.ts +16 -0
- package/dist/components/VvCheckGroup/VvCheckGroup.d.ts +65 -0
- package/dist/components/VvCheckGroup/VvCheckGroup.es.js +451 -0
- package/dist/components/VvCheckGroup/VvCheckGroup.umd.js +2 -0
- package/dist/components/VvCheckGroup/VvCheckGroup.vue.d.ts +272 -0
- package/dist/components/VvDialog/VvDialog.d.ts +22 -0
- package/dist/components/VvDialog/VvDialog.es.js +315 -0
- package/dist/components/VvDialog/VvDialog.umd.js +1 -0
- package/dist/components/VvDialog/VvDialog.vue.d.ts +153 -0
- package/dist/components/VvDialog/constants.d.ts +5 -0
- package/dist/components/VvDropdown/VvDropdown.d.ts +52 -0
- package/dist/components/VvDropdown/VvDropdown.es.js +236 -0
- package/dist/components/VvDropdown/VvDropdown.umd.js +1 -0
- package/dist/components/VvDropdown/VvDropdown.vue.d.ts +166 -0
- package/dist/components/VvIcon/VvIcon.d.ts +92 -0
- package/dist/components/VvIcon/VvIcon.es.js +229 -0
- package/dist/components/VvIcon/VvIcon.umd.js +1 -0
- package/dist/components/VvIcon/VvIcon.vue.d.ts +183 -0
- package/dist/components/VvInputText/VvInputText.d.ts +73 -0
- package/dist/components/VvInputText/VvInputText.es.js +727 -0
- package/dist/components/VvInputText/VvInputText.umd.js +2 -0
- package/dist/components/VvInputText/VvInputText.vue.d.ts +327 -0
- package/dist/components/VvInputText/VvInputTextActions.d.ts +3 -0
- package/dist/components/VvInputText/constants.d.ts +55 -0
- package/dist/components/VvNativeSelect/VvNativeSelect.d.ts +70 -0
- package/dist/components/VvNativeSelect/VvNativeSelect.es.js +416 -0
- package/dist/components/VvNativeSelect/VvNativeSelect.umd.js +2 -0
- package/dist/components/VvNativeSelect/VvNativeSelect.vue.d.ts +228 -0
- package/dist/components/VvProgress/VvProgress.d.ts +29 -0
- package/dist/components/VvProgress/VvProgress.es.js +188 -0
- package/dist/components/VvProgress/VvProgress.umd.js +1 -0
- package/dist/components/VvProgress/VvProgress.vue.d.ts +117 -0
- package/dist/components/VvRadio/VvRadio.d.ts +22 -0
- package/dist/components/VvRadio/VvRadio.es.js +307 -0
- package/dist/components/VvRadio/VvRadio.umd.js +1 -0
- package/dist/components/VvRadio/VvRadio.vue.d.ts +136 -0
- package/dist/components/VvRadio/useRadioProps.d.ts +15 -0
- package/dist/components/VvRadioGroup/VvRadioGroup.d.ts +54 -0
- package/dist/components/VvRadioGroup/VvRadioGroup.es.js +441 -0
- package/dist/components/VvRadioGroup/VvRadioGroup.umd.js +2 -0
- package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +264 -0
- package/dist/components/VvSelect/VvSelect.d.ts +99 -0
- package/dist/components/VvSelect/VvSelect.es.js +447 -0
- package/dist/components/VvSelect/VvSelect.umd.js +2 -0
- package/dist/components/VvSelect/VvSelect.vue.d.ts +294 -0
- package/dist/components/VvTextarea/VvTextarea.d.ts +88 -0
- package/dist/components/VvTextarea/VvTextarea.es.js +550 -0
- package/dist/components/VvTextarea/VvTextarea.umd.js +2 -0
- package/dist/components/VvTextarea/VvTextarea.vue.d.ts +369 -0
- package/dist/components/VvTextarea/constants.d.ts +19 -0
- package/dist/components/common/HintSlot.d.ts +25 -0
- package/dist/components/index.d.ts +12 -0
- package/dist/components/index.es.js +1120 -0
- package/dist/components/index.umd.js +2 -0
- package/dist/composables/debouncedInput/useDebouncedInput.d.ts +2 -0
- package/dist/composables/focus/useComponentFocus.d.ts +7 -0
- package/dist/composables/group/types/IAccordionGroupState.d.ts +10 -0
- package/dist/composables/group/types/IButtonGroupState.d.ts +19 -0
- package/dist/composables/group/types/IGroupState.d.ts +11 -0
- package/dist/composables/group/types/IInputGroup.d.ts +11 -0
- package/dist/composables/group/useInjectedGroupState.d.ts +10 -0
- package/dist/composables/group/useProvideGroupState.d.ts +6 -0
- package/dist/composables/icons/useComponentIcons.d.ts +26 -0
- package/dist/composables/options/useOptions.d.ts +5 -0
- package/dist/composables/textLimit/useTextLimit.d.ts +14 -0
- package/dist/composables/useModifiers.d.ts +10 -0
- package/dist/constants.d.ts +4 -0
- package/dist/icons.es.js +1885 -0
- package/dist/icons.umd.js +1 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.es.js +1156 -0
- package/dist/index.umd.js +2 -0
- package/dist/props/index.d.ts +92 -0
- package/dist/stories/Button/Button.test.d.ts +11 -0
- package/dist/stories/Icon/IconList.vue.d.ts +44 -0
- package/dist/stories/RadioGroup/RadioProperty.test.d.ts +12 -0
- package/dist/stories/utils.d.ts +5 -0
- package/dist/test/expect.d.ts +13 -0
- package/dist/utils/ObjectUtilities.d.ts +96 -0
- package/package.json +216 -0
- package/src/Volver.ts +114 -0
- package/src/assets/icons/detailed/add-circle.svg +1 -0
- package/src/assets/icons/detailed/add.svg +1 -0
- package/src/assets/icons/detailed/align-center.svg +1 -0
- package/src/assets/icons/detailed/align-justify.svg +1 -0
- package/src/assets/icons/detailed/align-left.svg +1 -0
- package/src/assets/icons/detailed/align-right.svg +1 -0
- package/src/assets/icons/detailed/analysis-2.svg +1 -0
- package/src/assets/icons/detailed/analysis-3.svg +1 -0
- package/src/assets/icons/detailed/analysis.svg +1 -0
- package/src/assets/icons/detailed/apple.svg +1 -0
- package/src/assets/icons/detailed/arrow-down.svg +1 -0
- package/src/assets/icons/detailed/arrow-left.svg +1 -0
- package/src/assets/icons/detailed/arrow-right.svg +1 -0
- package/src/assets/icons/detailed/arrow-up.svg +1 -0
- package/src/assets/icons/detailed/attachment.svg +1 -0
- package/src/assets/icons/detailed/back-to-front.svg +1 -0
- package/src/assets/icons/detailed/bell-active.svg +1 -0
- package/src/assets/icons/detailed/bell.svg +1 -0
- package/src/assets/icons/detailed/bold.svg +1 -0
- package/src/assets/icons/detailed/bookmark-active.svg +1 -0
- package/src/assets/icons/detailed/bookmark.svg +1 -0
- package/src/assets/icons/detailed/building.svg +1 -0
- package/src/assets/icons/detailed/bullet-list.svg +1 -0
- package/src/assets/icons/detailed/calendar.svg +1 -0
- package/src/assets/icons/detailed/camera-off.svg +1 -0
- package/src/assets/icons/detailed/camera-on.svg +1 -0
- package/src/assets/icons/detailed/catalog.svg +1 -0
- package/src/assets/icons/detailed/certificate.svg +1 -0
- package/src/assets/icons/detailed/chat.svg +1 -0
- package/src/assets/icons/detailed/check-badge.svg +1 -0
- package/src/assets/icons/detailed/check-circle.svg +1 -0
- package/src/assets/icons/detailed/check.svg +1 -0
- package/src/assets/icons/detailed/checkbox.svg +1 -0
- package/src/assets/icons/detailed/chevron-down-circle.svg +1 -0
- package/src/assets/icons/detailed/chevron-down.svg +1 -0
- package/src/assets/icons/detailed/chevron-left-circle.svg +1 -0
- package/src/assets/icons/detailed/chevron-left.svg +1 -0
- package/src/assets/icons/detailed/chevron-right-circle.svg +1 -0
- package/src/assets/icons/detailed/chevron-up-circle.svg +1 -0
- package/src/assets/icons/detailed/chevron-up.svg +1 -0
- package/src/assets/icons/detailed/classroom.svg +1 -0
- package/src/assets/icons/detailed/clear-field.svg +1 -0
- package/src/assets/icons/detailed/clear-style.svg +1 -0
- package/src/assets/icons/detailed/close-circle.svg +1 -0
- package/src/assets/icons/detailed/close-loader.svg +1 -0
- package/src/assets/icons/detailed/close.svg +1 -0
- package/src/assets/icons/detailed/coffee.svg +1 -0
- package/src/assets/icons/detailed/color.svg +1 -0
- package/src/assets/icons/detailed/contact-us.svg +1 -0
- package/src/assets/icons/detailed/copy.svg +1 -0
- package/src/assets/icons/detailed/courses.svg +1 -0
- package/src/assets/icons/detailed/dashboard.svg +1 -0
- package/src/assets/icons/detailed/download.svg +1 -0
- package/src/assets/icons/detailed/drag.svg +1 -0
- package/src/assets/icons/detailed/duplicate.svg +1 -0
- package/src/assets/icons/detailed/edit.svg +1 -0
- package/src/assets/icons/detailed/elearning.svg +1 -0
- package/src/assets/icons/detailed/email.svg +1 -0
- package/src/assets/icons/detailed/error-2.svg +1 -0
- package/src/assets/icons/detailed/error.svg +1 -0
- package/src/assets/icons/detailed/exercise.svg +1 -0
- package/src/assets/icons/detailed/external-link.svg +1 -0
- package/src/assets/icons/detailed/extract.svg +1 -0
- package/src/assets/icons/detailed/eye-off.svg +1 -0
- package/src/assets/icons/detailed/eye-on.svg +1 -0
- package/src/assets/icons/detailed/fail.svg +1 -0
- package/src/assets/icons/detailed/fast-back.svg +1 -0
- package/src/assets/icons/detailed/fast-forward.svg +1 -0
- package/src/assets/icons/detailed/file-add.svg +1 -0
- package/src/assets/icons/detailed/file-duplicate.svg +1 -0
- package/src/assets/icons/detailed/file-remove.svg +1 -0
- package/src/assets/icons/detailed/file-required.svg +1 -0
- package/src/assets/icons/detailed/file.svg +1 -0
- package/src/assets/icons/detailed/filter-2.svg +1 -0
- package/src/assets/icons/detailed/filter-active.svg +1 -0
- package/src/assets/icons/detailed/filter.svg +1 -0
- package/src/assets/icons/detailed/flag.svg +1 -0
- package/src/assets/icons/detailed/folder.svg +1 -0
- package/src/assets/icons/detailed/full-width.svg +1 -0
- package/src/assets/icons/detailed/go-to-back.svg +1 -0
- package/src/assets/icons/detailed/grid.svg +1 -0
- package/src/assets/icons/detailed/group-add.svg +1 -0
- package/src/assets/icons/detailed/group.svg +1 -0
- package/src/assets/icons/detailed/heart-active.svg +1 -0
- package/src/assets/icons/detailed/heart.svg +1 -0
- package/src/assets/icons/detailed/highlighter.svg +1 -0
- package/src/assets/icons/detailed/home.svg +1 -0
- package/src/assets/icons/detailed/hourglass.svg +1 -0
- package/src/assets/icons/detailed/image.svg +1 -0
- package/src/assets/icons/detailed/info-badge.svg +1 -0
- package/src/assets/icons/detailed/information.svg +1 -0
- package/src/assets/icons/detailed/italic.svg +1 -0
- package/src/assets/icons/detailed/key.svg +1 -0
- package/src/assets/icons/detailed/language.svg +1 -0
- package/src/assets/icons/detailed/learning-path.svg +1 -0
- package/src/assets/icons/detailed/light-off.svg +1 -0
- package/src/assets/icons/detailed/light-on.svg +1 -0
- package/src/assets/icons/detailed/link.svg +1 -0
- package/src/assets/icons/detailed/lock.svg +1 -0
- package/src/assets/icons/detailed/login.svg +1 -0
- package/src/assets/icons/detailed/logout.svg +1 -0
- package/src/assets/icons/detailed/maximaze.svg +1 -0
- package/src/assets/icons/detailed/menu.svg +1 -0
- package/src/assets/icons/detailed/merge.svg +1 -0
- package/src/assets/icons/detailed/minimize.svg +1 -0
- package/src/assets/icons/detailed/mixed-class.svg +1 -0
- package/src/assets/icons/detailed/more-horizontal.svg +1 -0
- package/src/assets/icons/detailed/more-vertical.svg +1 -0
- package/src/assets/icons/detailed/news.svg +1 -0
- package/src/assets/icons/detailed/no-prerequisites.svg +1 -0
- package/src/assets/icons/detailed/notes.svg +1 -0
- package/src/assets/icons/detailed/number-code.svg +1 -0
- package/src/assets/icons/detailed/numbered-list.svg +1 -0
- package/src/assets/icons/detailed/on-site.svg +1 -0
- package/src/assets/icons/detailed/order-down.svg +1 -0
- package/src/assets/icons/detailed/order-up.svg +1 -0
- package/src/assets/icons/detailed/paste.svg +1 -0
- package/src/assets/icons/detailed/pausa.svg +1 -0
- package/src/assets/icons/detailed/pdf.svg +1 -0
- package/src/assets/icons/detailed/phone.svg +1 -0
- package/src/assets/icons/detailed/pin-map.svg +1 -0
- package/src/assets/icons/detailed/pin.svg +1 -0
- package/src/assets/icons/detailed/pizza.svg +1 -0
- package/src/assets/icons/detailed/play.svg +1 -0
- package/src/assets/icons/detailed/plug-in.svg +1 -0
- package/src/assets/icons/detailed/pointer.svg +1 -0
- package/src/assets/icons/detailed/printer.svg +1 -0
- package/src/assets/icons/detailed/profile-add.svg +1 -0
- package/src/assets/icons/detailed/profile.svg +1 -0
- package/src/assets/icons/detailed/push-pin-off.svg +1 -0
- package/src/assets/icons/detailed/push-pin-on.svg +1 -0
- package/src/assets/icons/detailed/qrcode.svg +1 -0
- package/src/assets/icons/detailed/question-badge.svg +1 -0
- package/src/assets/icons/detailed/radio.svg +1 -0
- package/src/assets/icons/detailed/redo.svg +1 -0
- package/src/assets/icons/detailed/relations.svg +1 -0
- package/src/assets/icons/detailed/reload.svg +1 -0
- package/src/assets/icons/detailed/remove-circle.svg +1 -0
- package/src/assets/icons/detailed/remove.svg +1 -0
- package/src/assets/icons/detailed/reorder.svg +1 -0
- package/src/assets/icons/detailed/repeat.svg +1 -0
- package/src/assets/icons/detailed/repository.svg +1 -0
- package/src/assets/icons/detailed/request-form.svg +1 -0
- package/src/assets/icons/detailed/resize-100%.svg +1 -0
- package/src/assets/icons/detailed/resize-height.svg +1 -0
- package/src/assets/icons/detailed/resize-width.svg +1 -0
- package/src/assets/icons/detailed/search.svg +1 -0
- package/src/assets/icons/detailed/sequential-prerequisites.svg +1 -0
- package/src/assets/icons/detailed/settings.svg +1 -0
- package/src/assets/icons/detailed/share.svg +1 -0
- package/src/assets/icons/detailed/sketch.svg +1 -0
- package/src/assets/icons/detailed/skills.svg +1 -0
- package/src/assets/icons/detailed/skip-back.svg +1 -0
- package/src/assets/icons/detailed/skip-forward.svg +1 -0
- package/src/assets/icons/detailed/sms.svg +1 -0
- package/src/assets/icons/detailed/sso-access.svg +1 -0
- package/src/assets/icons/detailed/star-active.svg +1 -0
- package/src/assets/icons/detailed/star.svg +1 -0
- package/src/assets/icons/detailed/success.svg +1 -0
- package/src/assets/icons/detailed/sun.svg +1 -0
- package/src/assets/icons/detailed/sunrise.svg +1 -0
- package/src/assets/icons/detailed/support.svg +1 -0
- package/src/assets/icons/detailed/survey.svg +1 -0
- package/src/assets/icons/detailed/table.svg +1 -0
- package/src/assets/icons/detailed/tematic-channels.svg +1 -0
- package/src/assets/icons/detailed/test.svg +1 -0
- package/src/assets/icons/detailed/text-body.svg +1 -0
- package/src/assets/icons/detailed/text-edit.svg +1 -0
- package/src/assets/icons/detailed/text-style.svg +1 -0
- package/src/assets/icons/detailed/time.svg +1 -0
- package/src/assets/icons/detailed/toilet-piper.svg +1 -0
- package/src/assets/icons/detailed/training-points.svg +1 -0
- package/src/assets/icons/detailed/trash.svg +1 -0
- package/src/assets/icons/detailed/underline.svg +1 -0
- package/src/assets/icons/detailed/undo.svg +1 -0
- package/src/assets/icons/detailed/unlock.svg +1 -0
- package/src/assets/icons/detailed/upload.svg +1 -0
- package/src/assets/icons/detailed/user-add.svg +1 -0
- package/src/assets/icons/detailed/user-badge.svg +1 -0
- package/src/assets/icons/detailed/user.svg +1 -0
- package/src/assets/icons/detailed/video-off.svg +1 -0
- package/src/assets/icons/detailed/video-on.svg +1 -0
- package/src/assets/icons/detailed/video-rec.svg +1 -0
- package/src/assets/icons/detailed/view-card.svg +1 -0
- package/src/assets/icons/detailed/view-list.svg +1 -0
- package/src/assets/icons/detailed/view.svg +1 -0
- package/src/assets/icons/detailed/voice-off.svg +1 -0
- package/src/assets/icons/detailed/voice-on.svg +1 -0
- package/src/assets/icons/detailed/volume-down.svg +1 -0
- package/src/assets/icons/detailed/volume-off.svg +1 -0
- package/src/assets/icons/detailed/volume-up.svg +1 -0
- package/src/assets/icons/detailed/warning.svg +1 -0
- package/src/assets/icons/detailed/webinar.svg +1 -0
- package/src/assets/icons/detailed/whiteboard.svg +1 -0
- package/src/assets/icons/detailed/wine.svg +1 -0
- package/src/assets/icons/detailed/zip.svg +1 -0
- package/src/assets/icons/detailed/zoom-in.svg +1 -0
- package/src/assets/icons/detailed/zoom-out.svg +1 -0
- package/src/assets/icons/detailed.json +1 -0
- package/src/assets/icons/index.js +7 -0
- package/src/assets/icons/normal/add-circle.svg +1 -0
- package/src/assets/icons/normal/add.svg +1 -0
- package/src/assets/icons/normal/align-center.svg +1 -0
- package/src/assets/icons/normal/align-justify.svg +1 -0
- package/src/assets/icons/normal/align-left.svg +1 -0
- package/src/assets/icons/normal/align-right.svg +1 -0
- package/src/assets/icons/normal/analysis-2.svg +1 -0
- package/src/assets/icons/normal/analysis-3.svg +1 -0
- package/src/assets/icons/normal/analysis.svg +1 -0
- package/src/assets/icons/normal/apple.svg +1 -0
- package/src/assets/icons/normal/arrow-down.svg +1 -0
- package/src/assets/icons/normal/arrow-left.svg +1 -0
- package/src/assets/icons/normal/arrow-right.svg +1 -0
- package/src/assets/icons/normal/arrow-up.svg +1 -0
- package/src/assets/icons/normal/attachment.svg +1 -0
- package/src/assets/icons/normal/back-to-front.svg +1 -0
- package/src/assets/icons/normal/bell-active.svg +1 -0
- package/src/assets/icons/normal/bell.svg +1 -0
- package/src/assets/icons/normal/bold.svg +1 -0
- package/src/assets/icons/normal/bookmark active.svg +1 -0
- package/src/assets/icons/normal/bookmark.svg +1 -0
- package/src/assets/icons/normal/building.svg +1 -0
- package/src/assets/icons/normal/bulleted-list.svg +1 -0
- package/src/assets/icons/normal/calendar.svg +1 -0
- package/src/assets/icons/normal/camera-off.svg +1 -0
- package/src/assets/icons/normal/camera-on.svg +1 -0
- package/src/assets/icons/normal/catalog.svg +1 -0
- package/src/assets/icons/normal/certificate.svg +1 -0
- package/src/assets/icons/normal/chat.svg +1 -0
- package/src/assets/icons/normal/check-badge.svg +1 -0
- package/src/assets/icons/normal/check-circle.svg +1 -0
- package/src/assets/icons/normal/check.svg +1 -0
- package/src/assets/icons/normal/checkbox.svg +1 -0
- package/src/assets/icons/normal/chevron-down-circle.svg +1 -0
- package/src/assets/icons/normal/chevron-down.svg +1 -0
- package/src/assets/icons/normal/chevron-left-circle.svg +1 -0
- package/src/assets/icons/normal/chevron-left.svg +1 -0
- package/src/assets/icons/normal/chevron-right-circle.svg +1 -0
- package/src/assets/icons/normal/chevron-right.svg +1 -0
- package/src/assets/icons/normal/chevron-up-circle.svg +1 -0
- package/src/assets/icons/normal/chevron-up.svg +1 -0
- package/src/assets/icons/normal/classroom.svg +1 -0
- package/src/assets/icons/normal/clear-field.svg +1 -0
- package/src/assets/icons/normal/clear-style.svg +1 -0
- package/src/assets/icons/normal/close-circle.svg +1 -0
- package/src/assets/icons/normal/close-loader.svg +1 -0
- package/src/assets/icons/normal/close.svg +1 -0
- package/src/assets/icons/normal/coffee.svg +1 -0
- package/src/assets/icons/normal/color.svg +1 -0
- package/src/assets/icons/normal/contact-us.svg +1 -0
- package/src/assets/icons/normal/copy.svg +1 -0
- package/src/assets/icons/normal/courses.svg +1 -0
- package/src/assets/icons/normal/dashboard.svg +1 -0
- package/src/assets/icons/normal/download.svg +1 -0
- package/src/assets/icons/normal/drag.svg +1 -0
- package/src/assets/icons/normal/dulicate.svg +1 -0
- package/src/assets/icons/normal/edit.svg +1 -0
- package/src/assets/icons/normal/elearning.svg +1 -0
- package/src/assets/icons/normal/email.svg +1 -0
- package/src/assets/icons/normal/error-2.svg +1 -0
- package/src/assets/icons/normal/error.svg +1 -0
- package/src/assets/icons/normal/exercise.svg +1 -0
- package/src/assets/icons/normal/external-link.svg +1 -0
- package/src/assets/icons/normal/extract.svg +1 -0
- package/src/assets/icons/normal/eye-off.svg +1 -0
- package/src/assets/icons/normal/eye-on.svg +1 -0
- package/src/assets/icons/normal/fail.svg +1 -0
- package/src/assets/icons/normal/fast-back.svg +1 -0
- package/src/assets/icons/normal/fast-forward.svg +1 -0
- package/src/assets/icons/normal/file-add.svg +1 -0
- package/src/assets/icons/normal/file-duplicate.svg +1 -0
- package/src/assets/icons/normal/file-remove.svg +1 -0
- package/src/assets/icons/normal/file-required.svg +1 -0
- package/src/assets/icons/normal/file.svg +1 -0
- package/src/assets/icons/normal/filter-2.svg +1 -0
- package/src/assets/icons/normal/filter-active.svg +1 -0
- package/src/assets/icons/normal/filter.svg +1 -0
- package/src/assets/icons/normal/flag.svg +1 -0
- package/src/assets/icons/normal/folder.svg +1 -0
- package/src/assets/icons/normal/full-width.svg +1 -0
- package/src/assets/icons/normal/go-to-back.svg +1 -0
- package/src/assets/icons/normal/grid.svg +1 -0
- package/src/assets/icons/normal/group-add.svg +1 -0
- package/src/assets/icons/normal/group.svg +1 -0
- package/src/assets/icons/normal/heart-active.svg +1 -0
- package/src/assets/icons/normal/heart.svg +1 -0
- package/src/assets/icons/normal/highlighter.svg +1 -0
- package/src/assets/icons/normal/home.svg +1 -0
- package/src/assets/icons/normal/hourglass.svg +1 -0
- package/src/assets/icons/normal/image.svg +1 -0
- package/src/assets/icons/normal/info-badge.svg +1 -0
- package/src/assets/icons/normal/information.svg +1 -0
- package/src/assets/icons/normal/italic.svg +1 -0
- package/src/assets/icons/normal/key.svg +1 -0
- package/src/assets/icons/normal/language.svg +1 -0
- package/src/assets/icons/normal/learning-path.svg +1 -0
- package/src/assets/icons/normal/light-off.svg +1 -0
- package/src/assets/icons/normal/light-on.svg +1 -0
- package/src/assets/icons/normal/link.svg +1 -0
- package/src/assets/icons/normal/lock.svg +1 -0
- package/src/assets/icons/normal/login.svg +1 -0
- package/src/assets/icons/normal/logout.svg +1 -0
- package/src/assets/icons/normal/maximize.svg +1 -0
- package/src/assets/icons/normal/menu.svg +1 -0
- package/src/assets/icons/normal/merge.svg +1 -0
- package/src/assets/icons/normal/minimize.svg +1 -0
- package/src/assets/icons/normal/mixed-class.svg +1 -0
- package/src/assets/icons/normal/more-horizontal.svg +1 -0
- package/src/assets/icons/normal/more-vertical.svg +1 -0
- package/src/assets/icons/normal/news.svg +1 -0
- package/src/assets/icons/normal/no-prerequisites.svg +1 -0
- package/src/assets/icons/normal/notes.svg +1 -0
- package/src/assets/icons/normal/number-code.svg +1 -0
- package/src/assets/icons/normal/numbered-list.svg +1 -0
- package/src/assets/icons/normal/on-site.svg +1 -0
- package/src/assets/icons/normal/order-down.svg +1 -0
- package/src/assets/icons/normal/order-up.svg +1 -0
- package/src/assets/icons/normal/paste.svg +1 -0
- package/src/assets/icons/normal/pausa.svg +1 -0
- package/src/assets/icons/normal/pdf.svg +1 -0
- package/src/assets/icons/normal/phone.svg +1 -0
- package/src/assets/icons/normal/pin-map.svg +1 -0
- package/src/assets/icons/normal/pin.svg +1 -0
- package/src/assets/icons/normal/pizza.svg +1 -0
- package/src/assets/icons/normal/play.svg +1 -0
- package/src/assets/icons/normal/plug-in.svg +1 -0
- package/src/assets/icons/normal/pointer.svg +1 -0
- package/src/assets/icons/normal/printer.svg +1 -0
- package/src/assets/icons/normal/profile-add.svg +1 -0
- package/src/assets/icons/normal/profile.svg +1 -0
- package/src/assets/icons/normal/push pin on.svg +1 -0
- package/src/assets/icons/normal/push-pin-off.svg +1 -0
- package/src/assets/icons/normal/qrcode.svg +1 -0
- package/src/assets/icons/normal/question-badge.svg +1 -0
- package/src/assets/icons/normal/radio.svg +1 -0
- package/src/assets/icons/normal/redo.svg +1 -0
- package/src/assets/icons/normal/relations.svg +1 -0
- package/src/assets/icons/normal/reload.svg +1 -0
- package/src/assets/icons/normal/remove-circle.svg +1 -0
- package/src/assets/icons/normal/remove.svg +1 -0
- package/src/assets/icons/normal/reorder.svg +1 -0
- package/src/assets/icons/normal/repeat.svg +1 -0
- package/src/assets/icons/normal/repository.svg +1 -0
- package/src/assets/icons/normal/request-form.svg +1 -0
- package/src/assets/icons/normal/resize-100%.svg +1 -0
- package/src/assets/icons/normal/resize-height.svg +1 -0
- package/src/assets/icons/normal/resize-width.svg +1 -0
- package/src/assets/icons/normal/search.svg +1 -0
- package/src/assets/icons/normal/sequential-prerequisites.svg +1 -0
- package/src/assets/icons/normal/settings.svg +1 -0
- package/src/assets/icons/normal/share.svg +1 -0
- package/src/assets/icons/normal/sketch.svg +1 -0
- package/src/assets/icons/normal/skills.svg +1 -0
- package/src/assets/icons/normal/skip-back.svg +1 -0
- package/src/assets/icons/normal/skip-forward.svg +1 -0
- package/src/assets/icons/normal/sms.svg +1 -0
- package/src/assets/icons/normal/sso-access.svg +1 -0
- package/src/assets/icons/normal/star-active.svg +1 -0
- package/src/assets/icons/normal/star.svg +1 -0
- package/src/assets/icons/normal/success.svg +1 -0
- package/src/assets/icons/normal/sun.svg +1 -0
- package/src/assets/icons/normal/sunrise.svg +1 -0
- package/src/assets/icons/normal/support.svg +1 -0
- package/src/assets/icons/normal/survey.svg +1 -0
- package/src/assets/icons/normal/table.svg +1 -0
- package/src/assets/icons/normal/tematic-channels.svg +1 -0
- package/src/assets/icons/normal/test.svg +1 -0
- package/src/assets/icons/normal/text-body.svg +1 -0
- package/src/assets/icons/normal/text-edit.svg +1 -0
- package/src/assets/icons/normal/text-style.svg +1 -0
- package/src/assets/icons/normal/time.svg +1 -0
- package/src/assets/icons/normal/toilet-paper.svg +1 -0
- package/src/assets/icons/normal/training-points.svg +1 -0
- package/src/assets/icons/normal/trash.svg +1 -0
- package/src/assets/icons/normal/underline.svg +1 -0
- package/src/assets/icons/normal/undo.svg +1 -0
- package/src/assets/icons/normal/unlock.svg +1 -0
- package/src/assets/icons/normal/upload.svg +1 -0
- package/src/assets/icons/normal/user-add.svg +1 -0
- package/src/assets/icons/normal/user-badge.svg +1 -0
- package/src/assets/icons/normal/user.svg +1 -0
- package/src/assets/icons/normal/video-off.svg +1 -0
- package/src/assets/icons/normal/video-on.svg +1 -0
- package/src/assets/icons/normal/video-rec.svg +1 -0
- package/src/assets/icons/normal/view-card.svg +1 -0
- package/src/assets/icons/normal/view-list.svg +1 -0
- package/src/assets/icons/normal/view.svg +1 -0
- package/src/assets/icons/normal/voice-off.svg +1 -0
- package/src/assets/icons/normal/voice-on.svg +1 -0
- package/src/assets/icons/normal/volume-down.svg +1 -0
- package/src/assets/icons/normal/volume-off.svg +1 -0
- package/src/assets/icons/normal/volume-up.svg +1 -0
- package/src/assets/icons/normal/warning.svg +1 -0
- package/src/assets/icons/normal/webinar.svg +1 -0
- package/src/assets/icons/normal/whiteboard.svg +1 -0
- package/src/assets/icons/normal/wine.svg +1 -0
- package/src/assets/icons/normal/zip.svg +1 -0
- package/src/assets/icons/normal/zoom-in.svg +1 -0
- package/src/assets/icons/normal/zoom-out.svg +1 -0
- package/src/assets/icons/normal.json +1 -0
- package/src/assets/icons/simple/add-circle.svg +1 -0
- package/src/assets/icons/simple/add.svg +1 -0
- package/src/assets/icons/simple/align-center.svg +1 -0
- package/src/assets/icons/simple/align-justify.svg +1 -0
- package/src/assets/icons/simple/align-left.svg +1 -0
- package/src/assets/icons/simple/align-right.svg +1 -0
- package/src/assets/icons/simple/analysis-2.svg +1 -0
- package/src/assets/icons/simple/analysis-3.svg +1 -0
- package/src/assets/icons/simple/analysis.svg +1 -0
- package/src/assets/icons/simple/apple.svg +1 -0
- package/src/assets/icons/simple/arrow-down.svg +1 -0
- package/src/assets/icons/simple/arrow-left.svg +1 -0
- package/src/assets/icons/simple/arrow-right.svg +1 -0
- package/src/assets/icons/simple/arrow-up.svg +1 -0
- package/src/assets/icons/simple/attachment.svg +1 -0
- package/src/assets/icons/simple/bck-to-front.svg +1 -0
- package/src/assets/icons/simple/bell-active.svg +1 -0
- package/src/assets/icons/simple/bell.svg +1 -0
- package/src/assets/icons/simple/bold.svg +1 -0
- package/src/assets/icons/simple/bookmark-active.svg +1 -0
- package/src/assets/icons/simple/bookmark.svg +1 -0
- package/src/assets/icons/simple/building.svg +1 -0
- package/src/assets/icons/simple/bulleted-list.svg +1 -0
- package/src/assets/icons/simple/calendar.svg +1 -0
- package/src/assets/icons/simple/camera-off.svg +1 -0
- package/src/assets/icons/simple/camera-on.svg +1 -0
- package/src/assets/icons/simple/catalog.svg +1 -0
- package/src/assets/icons/simple/certificate.svg +1 -0
- package/src/assets/icons/simple/chat.svg +1 -0
- package/src/assets/icons/simple/check-badge.svg +1 -0
- package/src/assets/icons/simple/check-circle.svg +1 -0
- package/src/assets/icons/simple/check.svg +1 -0
- package/src/assets/icons/simple/checkbox.svg +1 -0
- package/src/assets/icons/simple/chevron-down-circle.svg +1 -0
- package/src/assets/icons/simple/chevron-down.svg +1 -0
- package/src/assets/icons/simple/chevron-left-circle.svg +1 -0
- package/src/assets/icons/simple/chevron-left.svg +1 -0
- package/src/assets/icons/simple/chevron-right-circle.svg +1 -0
- package/src/assets/icons/simple/chevron-right.svg +1 -0
- package/src/assets/icons/simple/chevron-up-circle.svg +1 -0
- package/src/assets/icons/simple/chevron-up.svg +1 -0
- package/src/assets/icons/simple/classroom.svg +1 -0
- package/src/assets/icons/simple/clear-field.svg +1 -0
- package/src/assets/icons/simple/clear-style.svg +1 -0
- package/src/assets/icons/simple/close-circle.svg +1 -0
- package/src/assets/icons/simple/close-loader.svg +1 -0
- package/src/assets/icons/simple/close.svg +1 -0
- package/src/assets/icons/simple/coffee.svg +1 -0
- package/src/assets/icons/simple/color.svg +1 -0
- package/src/assets/icons/simple/contact-us.svg +1 -0
- package/src/assets/icons/simple/copy.svg +1 -0
- package/src/assets/icons/simple/courses.svg +1 -0
- package/src/assets/icons/simple/dashboard.svg +1 -0
- package/src/assets/icons/simple/download.svg +1 -0
- package/src/assets/icons/simple/drag.svg +1 -0
- package/src/assets/icons/simple/duplicate.svg +1 -0
- package/src/assets/icons/simple/edit.svg +1 -0
- package/src/assets/icons/simple/elearning.svg +1 -0
- package/src/assets/icons/simple/email.svg +1 -0
- package/src/assets/icons/simple/error-2.svg +1 -0
- package/src/assets/icons/simple/error.svg +1 -0
- package/src/assets/icons/simple/exercise.svg +1 -0
- package/src/assets/icons/simple/external-link.svg +1 -0
- package/src/assets/icons/simple/extract.svg +1 -0
- package/src/assets/icons/simple/eye-off.svg +1 -0
- package/src/assets/icons/simple/eye-on.svg +1 -0
- package/src/assets/icons/simple/fail.svg +1 -0
- package/src/assets/icons/simple/fast-back.svg +1 -0
- package/src/assets/icons/simple/fast-forward.svg +1 -0
- package/src/assets/icons/simple/file-add.svg +1 -0
- package/src/assets/icons/simple/file-duplicate.svg +1 -0
- package/src/assets/icons/simple/file-remove.svg +1 -0
- package/src/assets/icons/simple/file-required.svg +1 -0
- package/src/assets/icons/simple/file.svg +1 -0
- package/src/assets/icons/simple/filter-2.svg +1 -0
- package/src/assets/icons/simple/filter-active.svg +1 -0
- package/src/assets/icons/simple/filter.svg +1 -0
- package/src/assets/icons/simple/flag.svg +1 -0
- package/src/assets/icons/simple/folder.svg +1 -0
- package/src/assets/icons/simple/full-width.svg +1 -0
- package/src/assets/icons/simple/go-to-back.svg +1 -0
- package/src/assets/icons/simple/grid.svg +1 -0
- package/src/assets/icons/simple/group-add.svg +1 -0
- package/src/assets/icons/simple/group.svg +1 -0
- package/src/assets/icons/simple/heart-active.svg +1 -0
- package/src/assets/icons/simple/heart.svg +1 -0
- package/src/assets/icons/simple/highlighter.svg +1 -0
- package/src/assets/icons/simple/home.svg +1 -0
- package/src/assets/icons/simple/hourglass.svg +1 -0
- package/src/assets/icons/simple/image.svg +1 -0
- package/src/assets/icons/simple/info-badge.svg +1 -0
- package/src/assets/icons/simple/information.svg +1 -0
- package/src/assets/icons/simple/italic.svg +1 -0
- package/src/assets/icons/simple/key.svg +1 -0
- package/src/assets/icons/simple/language.svg +1 -0
- package/src/assets/icons/simple/learning-path.svg +1 -0
- package/src/assets/icons/simple/light-off.svg +1 -0
- package/src/assets/icons/simple/light-on.svg +1 -0
- package/src/assets/icons/simple/link.svg +1 -0
- package/src/assets/icons/simple/lock.svg +1 -0
- package/src/assets/icons/simple/login.svg +1 -0
- package/src/assets/icons/simple/logout.svg +1 -0
- package/src/assets/icons/simple/maximaze.svg +1 -0
- package/src/assets/icons/simple/menu.svg +1 -0
- package/src/assets/icons/simple/merge.svg +1 -0
- package/src/assets/icons/simple/minimaze.svg +1 -0
- package/src/assets/icons/simple/mixed-class.svg +1 -0
- package/src/assets/icons/simple/more-horizontal.svg +1 -0
- package/src/assets/icons/simple/more-vertical.svg +1 -0
- package/src/assets/icons/simple/news.svg +1 -0
- package/src/assets/icons/simple/no-prerequisites.svg +1 -0
- package/src/assets/icons/simple/notes.svg +1 -0
- package/src/assets/icons/simple/number-code.svg +1 -0
- package/src/assets/icons/simple/numbered-list.svg +1 -0
- package/src/assets/icons/simple/on-site.svg +1 -0
- package/src/assets/icons/simple/order-down.svg +1 -0
- package/src/assets/icons/simple/order-up.svg +1 -0
- package/src/assets/icons/simple/paste.svg +1 -0
- package/src/assets/icons/simple/pausa.svg +1 -0
- package/src/assets/icons/simple/pdf.svg +1 -0
- package/src/assets/icons/simple/phone.svg +1 -0
- package/src/assets/icons/simple/pin-map.svg +1 -0
- package/src/assets/icons/simple/pin.svg +1 -0
- package/src/assets/icons/simple/pizza.svg +1 -0
- package/src/assets/icons/simple/play.svg +1 -0
- package/src/assets/icons/simple/plug-in.svg +1 -0
- package/src/assets/icons/simple/pointer.svg +1 -0
- package/src/assets/icons/simple/printer.svg +1 -0
- package/src/assets/icons/simple/profile-add.svg +1 -0
- package/src/assets/icons/simple/profile.svg +1 -0
- package/src/assets/icons/simple/push-pin-off.svg +1 -0
- package/src/assets/icons/simple/push-pin-on.svg +1 -0
- package/src/assets/icons/simple/qrcode.svg +1 -0
- package/src/assets/icons/simple/question-badge.svg +1 -0
- package/src/assets/icons/simple/radio.svg +1 -0
- package/src/assets/icons/simple/redo.svg +1 -0
- package/src/assets/icons/simple/relations.svg +1 -0
- package/src/assets/icons/simple/reload.svg +1 -0
- package/src/assets/icons/simple/remove-circle.svg +1 -0
- package/src/assets/icons/simple/remove.svg +1 -0
- package/src/assets/icons/simple/repeart.svg +1 -0
- package/src/assets/icons/simple/repository.svg +1 -0
- package/src/assets/icons/simple/request-form.svg +1 -0
- package/src/assets/icons/simple/resize-100%.svg +1 -0
- package/src/assets/icons/simple/resize-height.svg +1 -0
- package/src/assets/icons/simple/resize-width.svg +1 -0
- package/src/assets/icons/simple/search.svg +1 -0
- package/src/assets/icons/simple/sequential-prerequisites.svg +1 -0
- package/src/assets/icons/simple/settings.svg +1 -0
- package/src/assets/icons/simple/share.svg +1 -0
- package/src/assets/icons/simple/sketch.svg +1 -0
- package/src/assets/icons/simple/skills.svg +1 -0
- package/src/assets/icons/simple/skip-back.svg +1 -0
- package/src/assets/icons/simple/skip-forward.svg +1 -0
- package/src/assets/icons/simple/sms.svg +1 -0
- package/src/assets/icons/simple/sso-access.svg +1 -0
- package/src/assets/icons/simple/star-active.svg +1 -0
- package/src/assets/icons/simple/star.svg +1 -0
- package/src/assets/icons/simple/success.svg +1 -0
- package/src/assets/icons/simple/sun.svg +1 -0
- package/src/assets/icons/simple/sunrise.svg +1 -0
- package/src/assets/icons/simple/support.svg +1 -0
- package/src/assets/icons/simple/survey.svg +1 -0
- package/src/assets/icons/simple/table.svg +1 -0
- package/src/assets/icons/simple/tematic-channels.svg +1 -0
- package/src/assets/icons/simple/test.svg +1 -0
- package/src/assets/icons/simple/text-body.svg +1 -0
- package/src/assets/icons/simple/text-edit.svg +1 -0
- package/src/assets/icons/simple/text-style.svg +1 -0
- package/src/assets/icons/simple/time.svg +1 -0
- package/src/assets/icons/simple/toilet-paper.svg +1 -0
- package/src/assets/icons/simple/training-points.svg +1 -0
- package/src/assets/icons/simple/trash.svg +1 -0
- package/src/assets/icons/simple/underline.svg +1 -0
- package/src/assets/icons/simple/undo.svg +1 -0
- package/src/assets/icons/simple/unlock.svg +1 -0
- package/src/assets/icons/simple/upload.svg +1 -0
- package/src/assets/icons/simple/user-add.svg +1 -0
- package/src/assets/icons/simple/user-badge.svg +1 -0
- package/src/assets/icons/simple/user.svg +1 -0
- package/src/assets/icons/simple/video-off.svg +1 -0
- package/src/assets/icons/simple/video-on.svg +1 -0
- package/src/assets/icons/simple/video-rec.svg +1 -0
- package/src/assets/icons/simple/view-card.svg +1 -0
- package/src/assets/icons/simple/view-list.svg +1 -0
- package/src/assets/icons/simple/view.svg +1 -0
- package/src/assets/icons/simple/voice-off.svg +1 -0
- package/src/assets/icons/simple/voice-on.svg +1 -0
- package/src/assets/icons/simple/volume-down.svg +1 -0
- package/src/assets/icons/simple/volume-off.svg +1 -0
- package/src/assets/icons/simple/volume-up.svg +1 -0
- package/src/assets/icons/simple/warning.svg +1 -0
- package/src/assets/icons/simple/webinar.svg +1 -0
- package/src/assets/icons/simple/whiteboard.svg +1 -0
- package/src/assets/icons/simple/wine.svg +1 -0
- package/src/assets/icons/simple/zip.svg +1 -0
- package/src/assets/icons/simple/zoom-in.svg +1 -0
- package/src/assets/icons/simple/zoom-out.svg +1 -0
- package/src/assets/icons/simple.json +1 -0
- package/src/components/VvAccordion/VvAccordion.ts +34 -0
- package/src/components/VvAccordion/VvAccordion.vue +92 -0
- package/src/components/VvAccordion/useAccordionProps.ts +45 -0
- package/src/components/VvAccordionGroup/VvAccordionGroup.ts +36 -0
- package/src/components/VvAccordionGroup/VvAccordionGroup.vue +63 -0
- package/src/components/VvBadge/VvBadge.ts +4 -0
- package/src/components/VvBadge/VvBadge.vue +12 -0
- package/src/components/VvBreadcrumb/VvBreadcrumb.ts +14 -0
- package/src/components/VvBreadcrumb/VvBreadcrumb.vue +52 -0
- package/src/components/VvButton/VvButton.ts +117 -0
- package/src/components/VvButton/VvButton.vue +189 -0
- package/src/components/VvButton/useButtonGroupProps.ts +51 -0
- package/src/components/VvButtonGroup/VvButtonGroup.ts +37 -0
- package/src/components/VvButtonGroup/VvButtonGroup.vue +55 -0
- package/src/components/VvCard/VvCard.ts +4 -0
- package/src/components/VvCard/VvCard.vue +37 -0
- package/src/components/VvCheck/VvCheck.ts +48 -0
- package/src/components/VvCheck/VvCheck.vue +147 -0
- package/src/components/VvCheck/useCheckProps.ts +41 -0
- package/src/components/VvCheckGroup/VvCheckGroup.ts +34 -0
- package/src/components/VvCheckGroup/VvCheckGroup.vue +84 -0
- package/src/components/VvDialog/VvDialog.ts +17 -0
- package/src/components/VvDialog/VvDialog.vue +91 -0
- package/src/components/VvDialog/constants.ts +5 -0
- package/src/components/VvDropdown/VvDropdown.ts +46 -0
- package/src/components/VvDropdown/VvDropdown.vue +130 -0
- package/src/components/VvIcon/VvIcon.ts +94 -0
- package/src/components/VvIcon/VvIcon.vue +124 -0
- package/src/components/VvInputText/VvInputText.ts +66 -0
- package/src/components/VvInputText/VvInputText.vue +249 -0
- package/src/components/VvInputText/VvInputTextActions.ts +151 -0
- package/src/components/VvInputText/constants.ts +34 -0
- package/src/components/VvNativeSelect/VvNativeSelect.ts +70 -0
- package/src/components/VvNativeSelect/VvNativeSelect.vue +106 -0
- package/src/components/VvProgress/VvProgress.ts +28 -0
- package/src/components/VvProgress/VvProgress.vue +34 -0
- package/src/components/VvRadio/VvRadio.ts +25 -0
- package/src/components/VvRadio/VvRadio.vue +130 -0
- package/src/components/VvRadio/useRadioProps.ts +40 -0
- package/src/components/VvRadioGroup/VvRadioGroup.ts +25 -0
- package/src/components/VvRadioGroup/VvRadioGroup.vue +80 -0
- package/src/components/VvSelect/VvSelect.ts +91 -0
- package/src/components/VvSelect/VvSelect.vue +194 -0
- package/src/components/VvTextarea/VvTextarea.ts +64 -0
- package/src/components/VvTextarea/VvTextarea.vue +184 -0
- package/src/components/VvTextarea/constants.ts +14 -0
- package/src/components/common/HintSlot.ts +187 -0
- package/src/components/index.ts +12 -0
- package/src/composables/debouncedInput/useDebouncedInput.ts +19 -0
- package/src/composables/focus/useComponentFocus.ts +22 -0
- package/src/composables/group/types/IAccordionGroupState.ts +12 -0
- package/src/composables/group/types/IButtonGroupState.ts +21 -0
- package/src/composables/group/types/IGroupState.ts +12 -0
- package/src/composables/group/types/IInputGroup.ts +13 -0
- package/src/composables/group/useInjectedGroupState.ts +62 -0
- package/src/composables/group/useProvideGroupState.ts +22 -0
- package/src/composables/icons/useComponentIcons.ts +87 -0
- package/src/composables/options/useOptions.ts +27 -0
- package/src/composables/textLimit/useTextLimit.ts +44 -0
- package/src/composables/useModifiers.ts +100 -0
- package/src/constants.ts +7 -0
- package/src/directives/.README +0 -0
- package/src/index.ts +15 -0
- package/src/props/index.ts +84 -0
- package/src/stories/Accordion/Accordion.stories.mdx +37 -0
- package/src/stories/Accordion/AccordionBordered.stories.mdx +26 -0
- package/src/stories/Accordion/AccordionIconRight.stories.mdx +32 -0
- package/src/stories/Accordion/AccordionSlots.stories.mdx +82 -0
- package/src/stories/Accordion/accordionTest.js +36 -0
- package/src/stories/AccordionGroup/Accordion.stories.mdx +42 -0
- package/src/stories/AccordionGroup/AccordionGroup.stories.mdx +43 -0
- package/src/stories/AccordionGroup/AccordionItems.stories.mdx +51 -0
- package/src/stories/AccordionGroup/accordionGroupTest.js +51 -0
- package/src/stories/Badge/Badge.stories.mdx +38 -0
- package/src/stories/Badge/BadgeColor.stories.mdx +54 -0
- package/src/stories/Badge/BadgeDot.stories.mdx +20 -0
- package/src/stories/Badge/BadgeTest.js +21 -0
- package/src/stories/Breadcrumb/Breadcrumb.stories.mdx +45 -0
- package/src/stories/Breadcrumb/BreadcrumbMultiline.stories.mdx +41 -0
- package/src/stories/Button/Button.stories.mdx +65 -0
- package/src/stories/Button/Button.test.ts +61 -0
- package/src/stories/Button/ButtonBadge.stories.mdx +34 -0
- package/src/stories/Button/ButtonIcon.stories.mdx +43 -0
- package/src/stories/Button/ButtonIconPosition.stories.mdx +106 -0
- package/src/stories/Button/ButtonLink.stories.mdx +125 -0
- package/src/stories/Button/ButtonLoading.stories.mdx +81 -0
- package/src/stories/Button/ButtonModifiers.stories.mdx +180 -0
- package/src/stories/Button/ButtonSlots.stories.mdx +123 -0
- package/src/stories/Button/ButtonVariant.stories.mdx +205 -0
- package/src/stories/Button/test.js +41 -0
- package/src/stories/ButtonGroup/ButtonGroup.stories.mdx +39 -0
- package/src/stories/ButtonGroup/ButtonGroupAction.stories.mdx +83 -0
- package/src/stories/ButtonGroup/ButtonGroupActionQuiet.stories.mdx +50 -0
- package/src/stories/ButtonGroup/ButtonGroupBlock.stories.mdx +40 -0
- package/src/stories/ButtonGroup/ButtonGroupCompact.stories.mdx +38 -0
- package/src/stories/ButtonGroup/ButtonGroupRounded.stories.mdx +77 -0
- package/src/stories/ButtonGroup/ButtonGroupTest.js +61 -0
- package/src/stories/ButtonGroup/ButtonGroupToggle.stories.mdx +131 -0
- package/src/stories/ButtonGroup/ButtonGroupVertical.stories.mdx +38 -0
- package/src/stories/Card/Card.stories.mdx +23 -0
- package/src/stories/Card/CardSlots.stories.mdx +42 -0
- package/src/stories/Card/CardVariant.stories.mdx +37 -0
- package/src/stories/Check/Check.stories.mdx +62 -0
- package/src/stories/Check/CheckBinary.stories.mdx +75 -0
- package/src/stories/Check/CheckDisabled.stories.mdx +30 -0
- package/src/stories/Check/CheckError.stories.mdx +64 -0
- package/src/stories/Check/CheckErrorTests.js +74 -0
- package/src/stories/Check/CheckHintLabel.stories.mdx +30 -0
- package/src/stories/Check/CheckPropertyTest.js +102 -0
- package/src/stories/Check/CheckReadonly.stories.mdx +30 -0
- package/src/stories/Check/CheckSlots.stories.mdx +51 -0
- package/src/stories/Check/CheckSwitch.stories.mdx +30 -0
- package/src/stories/CheckGroup/CheckGroup.stories.mdx +69 -0
- package/src/stories/CheckGroup/CheckGroupDisabled.stories.mdx +26 -0
- package/src/stories/CheckGroup/CheckGroupError.stories.mdx +28 -0
- package/src/stories/CheckGroup/CheckGroupHintLabel.stories.mdx +27 -0
- package/src/stories/CheckGroup/CheckGroupLabel.stories.mdx +26 -0
- package/src/stories/CheckGroup/CheckGroupOptionLabel.stories.mdx +48 -0
- package/src/stories/CheckGroup/CheckGroupOptionValue.stories.mdx +48 -0
- package/src/stories/CheckGroup/CheckGroupOptions.stories.mdx +40 -0
- package/src/stories/CheckGroup/CheckGroupReadonly.stories.mdx +26 -0
- package/src/stories/CheckGroup/CheckGroupSlots.stories.mdx +152 -0
- package/src/stories/CheckGroup/CheckGroupValid.stories.mdx +28 -0
- package/src/stories/CheckGroup/CheckGroupVertical.stories.mdx +26 -0
- package/src/stories/Dialog/Dialog.stories.mdx +29 -0
- package/src/stories/Dialog/DialogAutoClose.stories.mdx +18 -0
- package/src/stories/Dialog/DialogSize.stories.mdx +36 -0
- package/src/stories/Dropdown/Dropdown.stories.mdx +50 -0
- package/src/stories/Dropdown/DropdownDisabled.stories.mdx +25 -0
- package/src/stories/Dropdown/DropdownLabelNoResults.stories.mdx +25 -0
- package/src/stories/Dropdown/DropdownMaxValues.stories.mdx +26 -0
- package/src/stories/Dropdown/DropdownMultiple.stories.mdx +56 -0
- package/src/stories/Dropdown/DropdownOptions.stories.mdx +76 -0
- package/src/stories/Dropdown/DropdownUseObject.stories.mdx +58 -0
- package/src/stories/Icon/Icon.stories.mdx +73 -0
- package/src/stories/Icon/IconList.vue +34 -0
- package/src/stories/Icon/IconPrefix.stories.mdx +79 -0
- package/src/stories/Icon/IconRemote.stories.mdx +39 -0
- package/src/stories/Icon/IconTest.js +27 -0
- package/src/stories/Icon/IconsList.stories.mdx +35 -0
- package/src/stories/InputText/InputText.stories.mdx +94 -0
- package/src/stories/InputText/InputTextAutocomplete.stories.mdx +15 -0
- package/src/stories/InputText/InputTextAutofocus.stories.mdx +20 -0
- package/src/stories/InputText/InputTextDisabled.stories.mdx +19 -0
- package/src/stories/InputText/InputTextError.stories.mdx +19 -0
- package/src/stories/InputText/InputTextFloating.stories.mdx +20 -0
- package/src/stories/InputText/InputTextHintLabel.stories.mdx +18 -0
- package/src/stories/InputText/InputTextIcon.stories.mdx +18 -0
- package/src/stories/InputText/InputTextIconPosition.stories.mdx +31 -0
- package/src/stories/InputText/InputTextLabel.stories.mdx +15 -0
- package/src/stories/InputText/InputTextLoading.stories.mdx +19 -0
- package/src/stories/InputText/InputTextMax.stories.mdx +31 -0
- package/src/stories/InputText/InputTextMaxLength.stories.mdx +36 -0
- package/src/stories/InputText/InputTextMin.stories.mdx +31 -0
- package/src/stories/InputText/InputTextMinLength.stories.mdx +15 -0
- package/src/stories/InputText/InputTextPlaceholder.stories.mdx +15 -0
- package/src/stories/InputText/InputTextReadonly.stories.mdx +19 -0
- package/src/stories/InputText/InputTextSlots.stories.mdx +30 -0
- package/src/stories/InputText/InputTextStep.stories.mdx +31 -0
- package/src/stories/InputText/InputTextType.stories.mdx +81 -0
- package/src/stories/InputText/InputTextValid.stories.mdx +19 -0
- package/src/stories/NativeSelect/NativeSelect.stories.mdx +53 -0
- package/src/stories/NativeSelect/NativeSelectDisabled.stories.mdx +32 -0
- package/src/stories/NativeSelect/NativeSelectError.stories.mdx +36 -0
- package/src/stories/NativeSelect/NativeSelectHintLabel.stories.mdx +34 -0
- package/src/stories/NativeSelect/NativeSelectIconLeftRight.stories.mdx +42 -0
- package/src/stories/NativeSelect/NativeSelectLoading.stories.mdx +27 -0
- package/src/stories/NativeSelect/NativeSelectOptions.stories.mdx +78 -0
- package/src/stories/NativeSelect/NativeSelectReadonly.stories.mdx +34 -0
- package/src/stories/NativeSelect/NativeSelectUseObject.stories.mdx +66 -0
- package/src/stories/NativeSelect/NativeSelectValid.stories.mdx +36 -0
- package/src/stories/NativeSelect/NativeSelectValueKey.stories.mdx +66 -0
- package/src/stories/Progress/Progress.stories.mdx +40 -0
- package/src/stories/Progress/ProgressDeterminate.stories.mdx +19 -0
- package/src/stories/Progress/ProgressTest.js +28 -0
- package/src/stories/Radio/Radio.stories.mdx +67 -0
- package/src/stories/Radio/RadioDisabled.stories.mdx +30 -0
- package/src/stories/Radio/RadioError.stories.mdx +64 -0
- package/src/stories/Radio/RadioHintLabel.stories.mdx +30 -0
- package/src/stories/Radio/RadioSlots.stories.mdx +29 -0
- package/src/stories/Radio/RadioTest.js +90 -0
- package/src/stories/RadioGroup/RadioGroup.stories.mdx +73 -0
- package/src/stories/RadioGroup/RadioGroupDisabled.stories.mdx +33 -0
- package/src/stories/RadioGroup/RadioGroupError.stories.mdx +35 -0
- package/src/stories/RadioGroup/RadioGroupHintLabel.stories.mdx +33 -0
- package/src/stories/RadioGroup/RadioGroupLabel.stories.mdx +29 -0
- package/src/stories/RadioGroup/RadioGroupOptionLabel.stories.mdx +65 -0
- package/src/stories/RadioGroup/RadioGroupOptionValue.stories.mdx +65 -0
- package/src/stories/RadioGroup/RadioGroupOptions.stories.mdx +58 -0
- package/src/stories/RadioGroup/RadioGroupReadonly.stories.mdx +29 -0
- package/src/stories/RadioGroup/RadioGroupSlots.stories.mdx +162 -0
- package/src/stories/RadioGroup/RadioGroupValid.stories.mdx +35 -0
- package/src/stories/RadioGroup/RadioGroupVertical.stories.mdx +33 -0
- package/src/stories/RadioGroup/RadioOptionsTest.js +78 -0
- package/src/stories/RadioGroup/RadioProperty.test.ts +87 -0
- package/src/stories/RadioGroup/RadioPropertyTest.js +131 -0
- package/src/stories/RadioGroup/RadioSlotsTest.js +20 -0
- package/src/stories/Select/Select.stories.mdx +55 -0
- package/src/stories/Select/SelectDisabled.stories.mdx +32 -0
- package/src/stories/Select/SelectMaxValues.stories.mdx +33 -0
- package/src/stories/Select/SelectMultiple.stories.mdx +64 -0
- package/src/stories/Select/SelectOptions.stories.mdx +78 -0
- package/src/stories/Select/SelectSearchable.stories.mdx +80 -0
- package/src/stories/Select/SelectSeparator.stories.mdx +64 -0
- package/src/stories/Select/SelectUseObject.stories.mdx +66 -0
- package/src/stories/Textarea/Textarea.stories.mdx +66 -0
- package/src/stories/Textarea/TextareaAutoclear.stories.mdx +23 -0
- package/src/stories/Textarea/TextareaAutocomplete.stories.mdx +23 -0
- package/src/stories/Textarea/TextareaAutofocus.stories.mdx +24 -0
- package/src/stories/Textarea/TextareaDebounce.stories.mdx +23 -0
- package/src/stories/Textarea/TextareaDisabled.stories.mdx +23 -0
- package/src/stories/Textarea/TextareaError.stories.mdx +22 -0
- package/src/stories/Textarea/TextareaErrorLabel.stories.mdx +37 -0
- package/src/stories/Textarea/TextareaFloating.stories.mdx +25 -0
- package/src/stories/Textarea/TextareaHintLabel.stories.mdx +22 -0
- package/src/stories/Textarea/TextareaIcon.stories.mdx +22 -0
- package/src/stories/Textarea/TextareaIconPosition.stories.mdx +39 -0
- package/src/stories/Textarea/TextareaId.stories.mdx +19 -0
- package/src/stories/Textarea/TextareaLabel.stories.mdx +19 -0
- package/src/stories/Textarea/TextareaLimit.stories.mdx +50 -0
- package/src/stories/Textarea/TextareaLoading.stories.mdx +22 -0
- package/src/stories/Textarea/TextareaLoadingLabel.stories.mdx +23 -0
- package/src/stories/Textarea/TextareaMaxLength.stories.mdx +19 -0
- package/src/stories/Textarea/TextareaMinLength.stories.mdx +19 -0
- package/src/stories/Textarea/TextareaModifiers.stories.mdx +24 -0
- package/src/stories/Textarea/TextareaName.stories.mdx +23 -0
- package/src/stories/Textarea/TextareaPlaceholder.stories.mdx +19 -0
- package/src/stories/Textarea/TextareaReadonly.stories.mdx +23 -0
- package/src/stories/Textarea/TextareaRequired.stories.mdx +22 -0
- package/src/stories/Textarea/TextareaResizable.stories.mdx +22 -0
- package/src/stories/Textarea/TextareaRowsCols.stories.mdx +39 -0
- package/src/stories/Textarea/TextareaSlots.stories.mdx +31 -0
- package/src/stories/Textarea/TextareaValid.stories.mdx +22 -0
- package/src/stories/Textarea/TextareaValidLabel.stories.mdx +35 -0
- package/src/stories/stories.scss +35 -0
- package/src/stories/utils.ts +12 -0
- package/src/stories/volver-ui-vue.stories.mdx +77 -0
- package/src/test/expect.ts +52 -0
- package/src/test/types.d.ts +4 -0
- package/src/types/.README +0 -0
- package/src/types/generic.d.ts +1 -0
- package/src/utils/ObjectUtilities.ts +275 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(0 0.529)"><path d="M72.624,2.243,74.161.937a.975.975,0,0,1,1.58.537l.509,2a1,1,0,0,0,1.009.768l1.977-.112a1.028,1.028,0,0,1,.977,1.406L79.5,7.469a1.061,1.061,0,0,0,.386,1.242l1.662,1.125a1.061,1.061,0,0,1,0,1.738L79.886,12.7A1.061,1.061,0,0,0,79.5,13.94l.713,1.932a1.028,1.028,0,0,1-.977,1.406l-1.977-.112a1,1,0,0,0-1.009.768l-.509,2a.975.975,0,0,1-1.58.537l-1.537-1.306a.955.955,0,0,0-1.248,0l-1.537,1.306a.975.975,0,0,1-1.58-.537l-.509-2a1,1,0,0,0-1.009-.768l-1.977.112a1.028,1.028,0,0,1-.977-1.406L64.5,13.94a1.061,1.061,0,0,0-.386-1.242l-1.662-1.125a1.061,1.061,0,0,1,0-1.738l1.662-1.125A1.061,1.061,0,0,0,64.5,7.469l-.713-1.932a1.028,1.028,0,0,1,.977-1.406l1.977.112a1,1,0,0,0,1.009-.768l.509-2a.975.975,0,0,1,1.58-.537l1.537,1.306A.955.955,0,0,0,72.624,2.243Z" transform="translate(-60 0.767)"/><path d="M11.744,17.773l2,2,4-4" transform="translate(-2.744 -6.302)" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2.25 2.25)"><g transform="translate(-0.25 -0.25)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9" fill="none"/></g><path d="M11.744,17.773l2,2,4-4" transform="translate(-4.994 -8.023)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><path d="M-426,77.5l4,4,7-7" transform="translate(432.996 -65.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(-1 -1)"><g transform="translate(3 3)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="20" height="20" rx="3" stroke="none"/><rect x="1" y="1" width="18" height="18" rx="2" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2 2)"><g fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9" fill="none"/></g><path d="M11,13.5l4,4,4-4" transform="translate(-5 -4.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(6 10)"><path d="M6,0,0,6l6,6" transform="translate(0 6) rotate(-90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2 2)"><g fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9" fill="none"/></g><path d="M203.5,11l-4,4,4,4" transform="translate(-191.5 -5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(9 6)"><path d="M132-49l-6,6,6,6" transform="translate(-126 49)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2 2)"><g fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9" fill="none"/></g><path d="M-420.432,72.942l3.814,4.1-4,3.9" transform="translate(428.619 -66.942)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" transform="translate(0 24) rotate(-90)" fill="#fff" opacity="0"/><g transform="translate(9 18) rotate(-90)"><path d="M0,0,6,6l6-6" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2.25 2.25)"><g transform="translate(-0.25 -0.25)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9" fill="none"/></g><path d="M-609,79.5l4-4,4,4" transform="translate(614.75 -67.75)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(6 10)"><path d="M6,0,0,6l6,6" transform="translate(12) rotate(90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(3 3)"><line x2="18" transform="translate(0 7)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="18" transform="translate(0 18)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><g transform="translate(-4.002 -11.811)"><path d="M0,0A2,2,0,0,1,2,2,2,2,0,0,1,0,4" transform="translate(7.002 17.81) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><g transform="translate(-14.998 -3.869)" fill="none" stroke-miterlimit="10"><path d="M22,16.679a2,2,0,1,1,.586,1.414A2,2,0,0,1,22,16.679Z" stroke="none"/><path d="M 24.00000190734863 14.67900276184082 C 24.55300140380859 14.67900276184082 25.05100250244141 14.90200233459473 25.41400146484375 15.26400184631348 C 25.77700233459473 15.62700271606445 26.00000190734863 16.12600326538086 26.00000190734863 16.67900276184082 C 26.00000190734863 17.23200225830078 25.77700233459473 17.73000335693359 25.41400146484375 18.09300231933594 C 25.05100250244141 18.45500183105469 24.55300140380859 18.67900276184082 24.00000190734863 18.67900276184082 C 23.44700241088867 18.67900276184082 22.94900131225586 18.45500183105469 22.58600234985352 18.09300231933594 C 22.22400283813477 17.73000335693359 22.00000190734863 17.23200225830078 22.00000190734863 16.67900276184082 C 22.00000190734863 16.12600326538086 22.22400283813477 15.62700271606445 22.58600234985352 15.26400184631348 C 22.94900131225586 14.90200233459473 23.44700241088867 14.67900276184082 24.00000190734863 14.67900276184082 Z" stroke="none" fill="#000"/></g></g><g transform="translate(-0.002 -0.811)"><path d="M0,0A2,2,0,0,1,2,2,2,2,0,0,1,0,4" transform="translate(7.002 17.81) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><g transform="translate(-14.998 -3.869)" fill="none" stroke-miterlimit="10"><path d="M22,16.679a2,2,0,1,1,.586,1.414A2,2,0,0,1,22,16.679Z" stroke="none"/><path d="M 24.00000190734863 14.67900276184082 C 24.55300140380859 14.67900276184082 25.05100250244141 14.90200233459473 25.41400146484375 15.26400184631348 C 25.77700233459473 15.62700271606445 26.00000190734863 16.12600326538086 26.00000190734863 16.67900276184082 C 26.00000190734863 17.23200225830078 25.77700233459473 17.73000335693359 25.41400146484375 18.09300231933594 C 25.05100250244141 18.45500183105469 24.55300140380859 18.67900276184082 24.00000190734863 18.67900276184082 C 23.44700241088867 18.67900276184082 22.94900131225586 18.45500183105469 22.58600234985352 18.09300231933594 C 22.22400283813477 17.73000335693359 22.00000190734863 17.23200225830078 22.00000190734863 16.67900276184082 C 22.00000190734863 16.12600326538086 22.22400283813477 15.62700271606445 22.58600234985352 15.26400184631348 C 22.94900131225586 14.90200233459473 23.44700241088867 14.67900276184082 24.00000190734863 14.67900276184082 Z" stroke="none" fill="#000"/></g></g><g transform="translate(3.998 -11.811)"><path d="M0,0A2,2,0,0,1,2,2,2,2,0,0,1,0,4" transform="translate(7.002 17.81) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><g transform="translate(-14.998 -3.869)" fill="none" stroke-miterlimit="10"><path d="M22,16.679a2,2,0,1,1,.586,1.414A2,2,0,0,1,22,16.679Z" stroke="none"/><path d="M 24.00000190734863 14.67900276184082 C 24.55300140380859 14.67900276184082 25.05100250244141 14.90200233459473 25.41400146484375 15.26400184631348 C 25.77700233459473 15.62700271606445 26.00000190734863 16.12600326538086 26.00000190734863 16.67900276184082 C 26.00000190734863 17.23200225830078 25.77700233459473 17.73000335693359 25.41400146484375 18.09300231933594 C 25.05100250244141 18.45500183105469 24.55300140380859 18.67900276184082 24.00000190734863 18.67900276184082 C 23.44700241088867 18.67900276184082 22.94900131225586 18.45500183105469 22.58600234985352 18.09300231933594 C 22.22400283813477 17.73000335693359 22.00000190734863 17.23200225830078 22.00000190734863 16.67900276184082 C 22.00000190734863 16.12600326538086 22.22400283813477 15.62700271606445 22.58600234985352 15.26400184631348 C 22.94900131225586 14.90200233459473 23.44700241088867 14.67900276184082 24.00000190734863 14.67900276184082 Z" stroke="none" fill="#000"/></g></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2.25 2.25)"><g transform="translate(0.75 0.75)" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="9" cy="9" r="9" stroke="none"/><circle cx="9" cy="9" r="8" fill="none"/></g><g transform="translate(5.75 5.75)"><line y1="6" x2="6" transform="translate(1 1)" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="6" y2="6" transform="translate(1 1)" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 24 24"><defs><clipPath id="a"><rect width="10" height="16" stroke="rgba(0,0,0,0)" stroke-width="1"/></clipPath></defs><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(5 4)"><g clip-path="url(#a)"><path d="M1,4A1,1,0,0,0,2,3H6V4.758L9.758,1H2A1,1,0,0,0,0,1V3A1,1,0,0,0,1,4" stroke="rgba(0,0,0,0)" stroke-width="1"/><path d="M9,14H8V11.242l-2,2V14H5.242l-1.2,1.2A.985.985,0,0,0,5,16H9a1,1,0,0,0,0-2" stroke="rgba(0,0,0,0)" stroke-width="1"/></g></g><line y1="16" x2="16" transform="translate(4 4)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2.25 2.25)"><g transform="translate(-0.25 -0.25)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9" fill="none"/></g><g transform="translate(6.75 6.75)"><line y1="4" x2="4" transform="translate(1 1)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="4" y2="4" transform="translate(1 1)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(9 9)"><line y1="6" x2="6" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="6" y2="6" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(5 5)"><line y1="12" x2="12" transform="translate(1 1)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="12" y2="12" transform="translate(1 1)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25"><g transform="translate(0.5 0.5)"><rect width="24" height="24" fill="#fff" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1" opacity="0"/><g transform="translate(3.75 3.001)"><g transform="translate(0.25 6)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"><path d="M.873,0H13.127A.873.873,0,0,1,14,.873V4a7,7,0,0,1-7,7H7A7,7,0,0,1,0,4V.873A.873.873,0,0,1,.873,0Z" stroke="none"/><path d="M1,1H13a0,0,0,0,1,0,0V4a6,6,0,0,1-6,6H7A6,6,0,0,1,1,4V1A0,0,0,0,1,1,1Z" fill="none"/></g><g transform="translate(12.25 13) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"><path d="M0,0H7A0,0,0,0,1,7,0V2A3,3,0,0,1,4,5H3A3,3,0,0,1,0,2V0A0,0,0,0,1,0,0Z" stroke="none"/><path d="M1,1H6A0,0,0,0,1,6,1V2A2,2,0,0,1,4,4H3A2,2,0,0,1,1,2V1A0,0,0,0,1,1,1Z" fill="none"/></g><line x2="16" transform="translate(-0.75 17)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y1="2" transform="translate(3.25 1)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line y1="2" transform="translate(7.25 1)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line y1="2" transform="translate(11.25 1)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 24 24"><defs><radialGradient id="a" cx="0.5" cy="0.5" r="0.5" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="red"/><stop offset="0.148" stop-color="#ff9d00"/><stop offset="0.32" stop-color="#ffe200"/><stop offset="0.493" stop-color="#00ff27"/><stop offset="0.66" stop-color="blue"/><stop offset="0.833" stop-color="#f0f"/><stop offset="1" stop-color="red"/></radialGradient></defs><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2 2)" stroke="#fff" stroke-width="1" fill="url(#a)"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9.5" fill="none"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(3.75 3.764)"><path d="M1287.176,6.648V4.109c0-2.623-2.635-5.461-6-5.461s-6,2.838-6,5.461v1.2" transform="translate(-1272.927 0.588)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><g transform="translate(-0.169 -1.365)"><path d="M1288.747,10.3l0,1.251a4.847,4.847,0,0,1-1.5,3.75" transform="translate(-1276.333 -2.697)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M1280.029,1.385c0,2.571,6,6,9,6" transform="translate(-1274.611 0.217)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M1280.08,4.471a5.966,5.966,0,0,0-2.5,4v1a4.76,4.76,0,0,0,2.5,4" transform="translate(-1273.162 0.131)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g><path d="M1285.752,19.12a1.113,1.113,0,0,1-1.2,1h-.6a1.113,1.113,0,0,1-1.2-1h0a1.112,1.112,0,0,1,1.2-1h.6a1.114,1.114,0,0,1,1.2,1Z" transform="translate(-1276.504 -2.883)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M1286.128,19.7h.469c2.493.013,4.522-2.587,4.531-5.8,0-.066,0-.131,0-.2" transform="translate(-1276.88 -3.468)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M1292.693,8.08h-.5v4h.5c.276,0,.5-.4.5-.889V8.968C1293.193,8.478,1292.969,8.081,1292.693,8.08Z" transform="translate(-1277.943 -1.842)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M1273.185,8.08h.5v4h-.5c-.276,0-.5-.4-.5-.887V8.97c0-.491.223-.889.5-.89h0Z" transform="translate(-1271.435 -1.842)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(3.5 2.25)"><g transform="translate(4.5 -0.25)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="12" height="16" rx="2" stroke="none"/><rect x="1" y="1" width="10" height="14" rx="1" fill="none"/></g><path d="M12.5,21.5H4.877C3.564,21.5,2.5,20.116,2.5,18.41V8.5" transform="translate(-1 -2.75)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(3 4.996)"><g transform="translate(53 -7.663)" fill="none" stroke-miterlimit="10"><path d="M-35.305,12.181l-8.427-4.452a.573.573,0,0,0-.535,0l-8.427,4.452a.572.572,0,0,0,0,1.013L-50,14.666v5a1.849,1.849,0,0,0,2,2h8a1.849,1.849,0,0,0,2-2v-5l2.695-1.472A.572.572,0,0,0-35.305,12.181Z" stroke="none"/><path d="M -44.00006866455078 9.849349975585938 L -49.41168975830078 12.70842361450195 L -48.00000381469727 13.47967052459717 L -48.00000381469727 19.66601943969727 L -40.00000381469727 19.66601943969727 L -40.00000381469727 13.47969055175781 L -38.58838653564453 12.70844459533691 L -44.00006866455078 9.849349975585938 M -44.00006484985352 7.662494659423828 C -43.90800094604492 7.662494659423828 -43.81594085693359 7.684610366821289 -43.73231506347656 7.728839874267578 L -35.30531311035156 12.18099021911621 C -34.89806365966797 12.3961296081543 -34.89806365966797 12.97861099243164 -35.30531311035156 13.19375991821289 L -38.00000381469727 14.66602039337158 L -38.00000381469727 19.66601943969727 C -38.00000381469727 20.90592956542969 -38.75875473022461 21.66601943969727 -40.00000381469727 21.66601943969727 L -48.00000381469727 21.66601943969727 C -49.24050521850586 21.66601943969727 -50.00000381469727 20.90592956542969 -50.00000381469727 19.66601943969727 L -50.00000381469727 14.66602039337158 L -52.69480514526367 13.19375991821289 C -53.10206604003906 12.97861099243164 -53.10206604003906 12.3961296081543 -52.69480514526367 12.18099021911621 L -44.26781463623047 7.728839874267578 C -44.18418884277344 7.684610366821289 -44.09212875366211 7.662494659423828 -44.00006484985352 7.662494659423828 Z" stroke="none" fill="#000"/></g><g transform="translate(53 -7.663)" fill="none" stroke-miterlimit="10"><path d="M-44.268,17.6l-8.427-4.43a.568.568,0,0,1,0-1.008l8.427-4.43a.576.576,0,0,1,.535,0l8.427,4.43a.568.568,0,0,1,0,1.008l-8.427,4.43A.576.576,0,0,1-44.268,17.6Z" stroke="none"/><path d="M -44.00006103515625 15.47771453857422 L -38.64492416381836 12.66249752044678 L -44.00006484985352 9.847285270690918 L -49.35519790649414 12.66250324249268 L -44.00006103515625 15.47771453857422 M -44.00006484985352 17.66250228881836 C -44.09212875366211 17.66250228881836 -44.18418884277344 17.64049530029297 -44.26781463623047 17.59648132324219 L -52.69480514526367 13.16637992858887 C -53.10206604003906 12.95230007171631 -53.10206604003906 12.37270069122314 -52.69480514526367 12.15862083435059 L -44.26781463623047 7.728520393371582 C -44.10056304931641 7.640500068664551 -43.89956665039062 7.640500068664551 -43.73231506347656 7.728520393371582 L -35.30531311035156 12.15862083435059 C -34.89806365966797 12.37270069122314 -34.89806365966797 12.95230007171631 -35.30531311035156 13.16637992858887 L -43.73231506347656 17.59648132324219 C -43.81594085693359 17.64049530029297 -43.90800094604492 17.66250228881836 -44.00006484985352 17.66250228881836 Z" stroke="none" fill="#000"/></g><path d="M0,0H2A0,0,0,0,1,2,0V5A1,1,0,0,1,1,6H1A1,1,0,0,1,0,5V0A0,0,0,0,1,0,0Z" transform="translate(16 5.004)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(4 3)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="7" height="6" rx="2" stroke="none"/><rect x="1" y="1" width="5" height="4" rx="1" fill="none"/></g><g transform="translate(13 15)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="7" height="6" rx="2" stroke="none"/><rect x="1" y="1" width="5" height="4" rx="1" fill="none"/></g><g transform="translate(13 3)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="7" height="10" rx="2" stroke="none"/><rect x="1" y="1" width="5" height="8" rx="1" fill="none"/></g><g transform="translate(4 11)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="7" height="10" rx="2" stroke="none"/><rect x="1" y="1" width="5" height="8" rx="1" fill="none"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(5.25 3.25)"><path d="M135.648,24.4l3,3,3-3" transform="translate(-131.898 -16.649)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y1="10" transform="translate(6.75 0.75)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M17-3V0H1V-3" transform="translate(-2.25 14.75)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><line y2="16" transform="translate(16 4)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line y2="16" transform="translate(12 4)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line y2="16" transform="translate(8 4)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2.537 2.537)"><g transform="translate(3035 -679)" fill="rgba(0,0,0,0)" stroke-miterlimit="10"><path d="M -3024.537353515625 697.4630126953125 L -3032.537353515625 697.4630126953125 C -3033.64013671875 697.4630126953125 -3034.537109375 696.5659790039062 -3034.537109375 695.4633178710938 L -3034.537109375 687.4631958007812 C -3034.537109375 686.360107421875 -3033.64013671875 685.462646484375 -3032.537353515625 685.462646484375 L -3029.536865234375 685.462646484375 L -3028.536865234375 685.462646484375 L -3028.536865234375 684.462646484375 L -3028.536865234375 681.462890625 C -3028.536865234375 680.3602294921875 -3027.639892578125 679.4631958007812 -3026.537109375 679.4631958007812 L -3018.537109375 679.4631958007812 C -3017.434326171875 679.4631958007812 -3016.537353515625 680.3602294921875 -3016.537353515625 681.462890625 L -3016.537353515625 689.4630126953125 C -3016.537353515625 690.565673828125 -3017.434326171875 691.4627075195312 -3018.537109375 691.4627075195312 L -3021.536865234375 691.4627075195312 L -3022.536865234375 691.4627075195312 L -3022.536865234375 692.4627075195312 L -3022.536865234375 695.4633178710938 C -3022.536865234375 696.5659790039062 -3023.434326171875 697.4630126953125 -3024.537353515625 697.4630126953125 Z" stroke="none"/><path d="M -3024.537353515625 696.4630126953125 C -3023.985595703125 696.4630126953125 -3023.536865234375 696.0145263671875 -3023.536865234375 695.4633178710938 L -3023.536865234375 690.4627075195312 L -3018.537109375 690.4627075195312 C -3017.98583984375 690.4627075195312 -3017.537353515625 690.0142211914062 -3017.537353515625 689.4630126953125 L -3017.537353515625 681.462890625 C -3017.537353515625 680.9116821289062 -3017.98583984375 680.4631958007812 -3018.537109375 680.4631958007812 L -3026.537109375 680.4631958007812 C -3027.08837890625 680.4631958007812 -3027.536865234375 680.9116821289062 -3027.536865234375 681.462890625 L -3027.536865234375 686.462646484375 L -3032.537353515625 686.462646484375 C -3033.088623046875 686.462646484375 -3033.537109375 686.9114990234375 -3033.537109375 687.4631958007812 L -3033.537109375 695.4633178710938 C -3033.537109375 696.0145263671875 -3033.088623046875 696.4630126953125 -3032.537353515625 696.4630126953125 L -3024.537353515625 696.4630126953125 M -3024.537353515625 698.4630126953125 L -3032.537353515625 698.4630126953125 C -3034.193359375 698.4630126953125 -3035.537109375 697.1202392578125 -3035.537109375 695.4633178710938 L -3035.537109375 687.4631958007812 C -3035.537109375 685.8063354492188 -3034.193359375 684.462646484375 -3032.537353515625 684.462646484375 L -3029.536865234375 684.462646484375 L -3029.536865234375 681.462890625 C -3029.536865234375 679.8060302734375 -3028.194091796875 678.4631958007812 -3026.537109375 678.4631958007812 L -3018.537109375 678.4631958007812 C -3016.880126953125 678.4631958007812 -3015.537353515625 679.8060302734375 -3015.537353515625 681.462890625 L -3015.537353515625 689.4630126953125 C -3015.537353515625 691.1199340820312 -3016.880126953125 692.4627075195312 -3018.537109375 692.4627075195312 L -3021.536865234375 692.4627075195312 L -3021.536865234375 695.4633178710938 C -3021.536865234375 697.1202392578125 -3022.88037109375 698.4630126953125 -3024.537353515625 698.4630126953125 Z" stroke="none" fill="#000"/></g><g transform="translate(9.463 3.463)"><line x2="4" transform="translate(1 3)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y2="4" transform="translate(3 1)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g><g transform="translate(5.463 -0.537)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="14" height="14" rx="3" stroke="none"/><rect x="1" y="1" width="12" height="12" rx="2" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(3 3)"><g transform="translate(181.318 -66.664)" fill="none" stroke-miterlimit="10"><path d="M-166,67.129l2.2,2.194a1.641,1.641,0,0,1,.006,2.318L-175.38,83.327a1.64,1.64,0,0,1-.832.453l-4.151.868a.792.792,0,0,1-.938-.938l.9-4.233a1.641,1.641,0,0,1,.454-.829l11.708-11.527A1.592,1.592,0,0,1-166,67.129Z" stroke="none"/><path d="M -167.1242370605469 68.83084869384766 L -178.4664154052734 79.99774932861328 L -178.9582366943359 82.31038665771484 L -176.7261657714844 81.84373474121094 L -165.4659271240234 70.48597717285156 L -167.1242370605469 68.83084869384766 M -167.1219787597656 66.66448974609375 C -166.7149353027344 66.66448974609375 -166.3082122802734 66.81947326660156 -165.9978485107422 67.12935638427734 L -163.7999267578125 69.32306671142578 C -163.1597900390625 69.96299743652344 -163.1574096679688 70.99833679199219 -163.7943725585938 71.64064025878906 L -175.3803405761719 83.32695007324219 C -175.6069793701172 83.556396484375 -175.8964233398438 83.71360778808594 -176.2121124267578 83.77950286865234 L -180.3630218505859 84.64732360839844 C -180.9237976074219 84.76399230957031 -181.4190368652344 84.26778411865234 -181.300537109375 83.70964050292969 L -180.4004058837891 79.47704315185547 C -180.3336029052734 79.16182708740234 -180.1753540039062 78.87362670898438 -179.9463348388672 78.64813995361328 L -168.2386932373047 67.12142181396484 C -167.9288177490234 66.8167724609375 -167.5252532958984 66.66448974609375 -167.1219787597656 66.66448974609375 Z" stroke="none" fill="#000"/></g><line x2="4" y2="4" transform="translate(11 3)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><line x2="3" y2="3" transform="translate(4 10.998)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2.998 4.313)"><g transform="translate(-0.998 -2.313)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="20" height="14" rx="3" stroke="none"/><rect x="1" y="1" width="18" height="12" rx="2" fill="none"/></g><line x2="14" transform="translate(2.002 15.687)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(4.002 13.687)" fill="none" stroke="#000" stroke-width="1"><circle cx="2" cy="2" r="2" stroke="none"/><circle cx="2" cy="2" r="1.5" fill="none"/></g><path d="M2.106,1.789a1,1,0,0,1,1.789,0L5.276,4.553A1,1,0,0,1,4.382,6H1.618A1,1,0,0,1,.724,4.553Z" transform="translate(13.002 1.688) rotate(90)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(3.375 6.375)"><g transform="translate(18.625 -1.375) rotate(90)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="14" height="20" rx="3" stroke="none"/><rect x="1" y="1" width="12" height="18" rx="2" fill="none"/></g><path d="M378.1-362.461l7.986,4.985,8.014-5" transform="translate(-377.48 363.101)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2.25 4.344)"><line y2="9" transform="translate(9.75 -0.344)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="2" transform="translate(9.75 13.656)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2.25 3.344)"><line y2="5" transform="translate(9.75 3.656)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="1" transform="translate(9.75 12.656)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><g transform="translate(-0.25 -1.344)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(4.25 3.75)"><g transform="translate(-42.918 2.975)" fill="none" stroke-miterlimit="10"><path d="M46.327,14a.926.926,0,0,1-1.318,0c-.883-.94-2.341-2.581-2.341-3.175v-13a1.637,1.637,0,0,1,1.715-1.545h2.569A1.637,1.637,0,0,1,48.668-2.18v13C48.668,11.419,47.21,13.06,46.327,14Z" stroke="none"/><path d="M 45.66798782348633 11.75089454650879 C 46.21406173706055 11.12509822845459 46.52383041381836 10.70869255065918 46.66800308227539 10.48307991027832 L 46.66800308227539 -1.725004553794861 L 44.66800308227539 -1.725004553794861 L 44.66800308227539 10.48308086395264 C 44.81219100952148 10.70872116088867 45.12200546264648 11.12519359588623 45.66798782348633 11.75089454650879 M 45.66767501831055 14.27539539337158 C 45.42456817626953 14.27539539337158 45.18156814575195 14.18355560302734 45.00885391235352 13.99987506866455 C 44.12600326538086 13.05979537963867 42.66800308227539 11.41935539245605 42.66800308227539 10.82454586029053 L 42.66800308227539 -2.180294513702393 C 42.66800308227539 -3.033644437789917 43.43600463867188 -3.725004434585571 44.38314437866211 -3.725004434585571 L 46.95200347900391 -3.725004434585571 C 47.90000152587891 -3.725004434585571 48.66800308227539 -3.033644437789917 48.66800308227539 -2.180294513702393 L 48.66800308227539 10.82454586029053 C 48.66800308227539 11.41935539245605 47.21000289916992 13.05979537963867 46.32714462280273 13.99987506866455 C 46.15399932861328 14.18355560302734 45.91078186035156 14.27539539337158 45.66767501831055 14.27539539337158 Z" stroke="none" fill="#000"/></g><line x2="4" transform="translate(0.75 4.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><g transform="translate(8.25 0)"><g transform="translate(-0.5 -0.75)" fill="none"><path d="M0,0H8V18H0Z" stroke="none"/><path d="M 2 2 L 2 16 L 6 16 L 6 2 L 2 2 M 0 0 L 8 0 L 8 18 L 0 18 L 0 0 Z" stroke="none" fill="#000"/></g><line x2="2" transform="translate(0.5 4.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="2" transform="translate(0.5 8.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="2" transform="translate(0.5 12.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(4.5 3)"><path d="M-539,78.667v4a2.1,2.1,0,0,1-2,2h-10a2.1,2.1,0,0,1-2-2v-10a2.1,2.1,0,0,1,2-2h4" transform="translate(553.5 -68.667)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-538.333,67h5v5" transform="translate(549.833 -67)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y1="8" x2="8" transform="translate(8.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="none"/><line x2="8" transform="translate(8 10)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="5" transform="translate(8 14)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><path d="M-2871.324,225.505v-4h-4" transform="translate(2891.325 -216.506)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-2875.273,239.905h4v-4" transform="translate(2891.273 -220.902)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-2892.122,221.558h-4v4" transform="translate(2900.122 -216.557)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-2896.071,235.958v4h4" transform="translate(2900.07 -220.955)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><circle cx="2" cy="2" r="2" transform="translate(18 17)"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(3.375 3.375)"><g transform="translate(-0.375 2.325)"><path d="M10.5,1.111A10.1,10.1,0,0,0,9.058,1H9.047a9.124,9.124,0,0,0-3.87.8,8.187,8.187,0,0,0-3.25,2.727,7.261,7.261,0,0,0-.9,1.663.448.448,0,0,0,0,.282A7.584,7.584,0,0,0,2.57,9" transform="translate(0 -0.699)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><path d="M8.353,11.914a10.438,10.438,0,0,0,1.47.111,9.252,9.252,0,0,0,3.919-.8,7.919,7.919,0,0,0,3.226-2.736,6.94,6.94,0,0,0,.865-1.671.456.456,0,0,0,0-.283A8,8,0,0,0,16.25,4.025" transform="translate(-0.854 0.275)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/></g><line y1="16" x2="16" transform="translate(0.625 0.625)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(3.375 6.375)"><g transform="translate(-4.879 -8.875)" fill="none" stroke-linejoin="round"><path d="M22.477,14.336A8.925,8.925,0,0,0,20.6,11.4a9.017,9.017,0,0,0-2.764-2A10.152,10.152,0,0,0,13.5,8.5a10.15,10.15,0,0,0-4.332.9,9.161,9.161,0,0,0-3.634,3.064,8.142,8.142,0,0,0-1.007,1.868.51.51,0,0,0,0,.317A8.512,8.512,0,0,0,6.351,17.6a8.8,8.8,0,0,0,2.76,2,10.364,10.364,0,0,0,4.393.9,10.364,10.364,0,0,0,4.393-.9,8.883,8.883,0,0,0,3.615-3.07,7.788,7.788,0,0,0,.969-1.874A.51.51,0,0,0,22.477,14.336Z" stroke="none"/><path d="M 13.4981861114502 10.5 C 12.21042633056641 10.5 11.03885650634766 10.74132919311523 10.01446723937988 11.21801948547363 C 8.878686904907227 11.74534034729004 7.923385620117188 12.5527286529541 7.175537109375 13.61714935302734 C 6.932460784912109 13.96340084075928 6.75494384765625 14.27742481231689 6.63348388671875 14.51736164093018 C 6.837301254272461 14.9383430480957 7.208690643310547 15.58102035522461 7.81486701965332 16.23326873779297 C 8.423505783081055 16.88708877563477 9.141845703125 17.40787887573242 9.949926376342773 17.78115844726562 C 10.98249626159668 18.25814819335938 12.17823600769043 18.5 13.50392627716064 18.5 C 14.82961654663086 18.5 16.02535629272461 18.25814819335938 17.05804634094238 17.78109931945801 C 18.4756965637207 17.12635040283203 19.36442565917969 16.12408065795898 19.8603458404541 15.39857959747314 C 20.09241676330566 15.05906391143799 20.25979423522949 14.75262832641602 20.37409591674805 14.51704978942871 C 20.15699195861816 14.08838653564453 19.76565742492676 13.43246269226074 19.14518737792969 12.77429962158203 C 18.52470588684082 12.1168098449707 17.80051612854004 11.59309959411621 16.99227523803711 11.21749877929688 C 15.96852588653564 10.74143028259277 14.79679679870605 10.50002861022949 13.50966644287109 10.5 L 13.4981861114502 10.5 M 13.4981861114502 8.499998092651367 C 13.50208282470703 8.499998092651367 13.50576972961426 8.499998092651367 13.50966644287109 8.499998092651367 C 15.23262023925781 8.500034332275391 16.66541481018066 8.859830856323242 17.83560562133789 9.403999328613281 C 19.00793647766113 9.948799133300781 19.91496658325195 10.67599868774414 20.59973526000977 11.4015998840332 C 21.97007751464844 12.85519981384277 22.46154594421387 14.29439926147461 22.47719573974609 14.33599948883057 C 22.51162719726562 14.43839931488037 22.51319694519043 14.55039978027344 22.48032569885254 14.65279960632324 C 22.4693660736084 14.68639945983887 22.2103271484375 15.50479984283447 21.51146697998047 16.52719879150391 C 20.81260681152344 17.54959869384766 19.66688537597656 18.77919960021973 17.89664649963379 19.59679985046387 C 16.71727752685547 20.14159965515137 15.26476669311523 20.5 13.50392627716064 20.5 C 11.74307632446289 20.5 10.29057693481445 20.14159965515137 9.1112060546875 19.59679985046387 C 7.931825637817383 19.05199813842773 7.027925491333008 18.32320022583008 6.350976943969727 17.59600067138672 C 4.997085571289062 16.13919830322266 4.542396545410156 14.69679927825928 4.52752685546875 14.65279960632324 C 4.49543571472168 14.55039978027344 4.4962158203125 14.43839931488037 4.531436920166016 14.33599948883057 C 4.542396545410156 14.30399990081787 4.822566986083984 13.48799991607666 5.538637161254883 12.46799850463867 C 6.254716873168945 11.44879913330078 7.412965774536133 10.22080039978027 9.172246932983398 9.403999328613281 C 10.34172058105469 8.859798431396484 11.77508926391602 8.499998092651367 13.4981861114502 8.499998092651367 Z" stroke="none" fill="#000"/></g><g transform="translate(5.625 2.625)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" transform="translate(24 24) rotate(180)" fill="#fff" opacity="0"/><g transform="translate(3.998 4.004)"><rect width="4" height="10" rx="2" transform="translate(13.002 0)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><path d="M11.971,12.09h.885l-.069.48h-.816a1.188,1.188,0,0,0,0,2.375h1.961L16.785,15s-.617,4.308,2,5.754c1.683.834,2-.754,2-.754V17l1-1s2-1.856,2-3.019V6a1.868,1.868,0,0,0-2-2H13.6a1.188,1.188,0,0,0,0,2.375h.08l-.069.481h-.825a1.187,1.187,0,0,0,0,2.375h.482l-.069.481H11.971a1.188,1.188,0,0,0,0,2.375Z" transform="translate(-10.786 -4.003)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2.001 5.004)"><g transform="translate(18.993 13.995) rotate(180)" fill="none"><path d="M7,2.277v.379L3,.275a2.049,2.049,0,0,0-3,2v9.443a2.051,2.051,0,0,0,3,2l4-2.389v.385a2.054,2.054,0,0,0,3,2L17.92,9a2.4,2.4,0,0,0,0-4L10,.275A1.867,1.867,0,0,0,9.039,0,2.165,2.165,0,0,0,7,2.277Z" stroke="none"/><path d="M 9.055684089660645 2.039679527282715 C 9.027189254760742 2.084717750549316 8.998047828674316 2.161330223083496 8.998047828674316 2.27734375 L 8.998047828674316 6.174153327941895 L 2.055826187133789 2.042037963867188 C 2.027931213378906 2.087655067443848 1.999998092651367 2.163721084594727 1.999998092651367 2.27734375 L 1.999998092651367 11.720703125 C 1.999998092651367 11.8352632522583 2.028411865234375 11.91170024871826 2.056636810302734 11.95731544494629 L 8.998047828674316 7.81212329864502 L 8.998047828674316 11.720703125 C 8.998047828674316 11.83768844604492 9.02762508392334 11.9147367477417 9.056386947631836 11.9598217010498 L 16.89679718017578 7.279553413391113 C 16.95271682739258 7.246253490447998 16.99498748779297 7.125283241271973 16.9951171875 6.998153209686279 C 16.99524688720703 6.868993282318115 16.95148849487305 6.745353221893311 16.89603805541992 6.712183475494385 L 9.055684089660645 2.039679527282715 M 9.039057731628418 0.001953125 C 9.359377861022949 0.001953125 9.687498092651367 0.08789348602294922 10.00195789337158 0.2753934860229492 L 17.91991806030273 4.994143486022949 C 19.35351753234863 5.851563453674316 19.35351753234863 8.144533157348633 17.91991806030273 8.998043060302734 L 10.00195789337158 13.72461318969727 C 8.640625 14.53515338897705 6.998046875 13.439453125 6.998047828674316 11.720703125 L 6.998047828674316 11.33593368530273 L 2.998046875 13.72461318969727 C 1.642589569091797 14.53514957427979 -1.9073486328125e-06 13.43945598602295 -1.9073486328125e-06 11.720703125 L -1.9073486328125e-06 2.27734375 C -3.814697265625e-06 0.55859375 1.642580032348633 -0.5371074676513672 2.998046875 0.2753934860229492 L 6.998047828674316 2.656253814697266 L 6.998047828674316 2.27734375 C 6.998047828674316 0.955073356628418 7.970707893371582 0.001953125 9.039057731628418 0.001953125 Z" stroke="none" fill="#000"/></g><g transform="translate(18.996 0.002) rotate(90)" fill="none"><path d="M5,10.923a2.4,2.4,0,0,0,4,0L13.722,3a2.053,2.053,0,0,0-2-3H2.274a2.053,2.053,0,0,0-2,3Z" stroke="none"/><path d="M 6.997231483459473 9.99941349029541 C 7.124821662902832 9.99941349029541 7.246941566467285 9.955984115600586 7.281291484832764 9.898384094238281 L 11.95705127716064 2.058027982711792 C 11.91227722167969 2.029367923736572 11.83599376678467 2.000003814697266 11.72038173675537 2.000003814697266 L 2.274081468582153 2.000003814697266 C 2.158389329910278 2.000003814697266 2.082086324691772 2.029404878616333 2.037326812744141 2.058083772659302 L 6.713161468505859 9.898364067077637 C 6.74752140045166 9.955973625183105 6.869641304016113 9.99941349029541 6.997231483459473 9.99941349029541 M 6.997235774993896 11.99941253662109 C 6.210372924804688 11.99941158294678 5.423506259918213 11.64053916931152 4.9954514503479 10.92279434204102 L 0.2723014950752258 3.003193855285645 C -0.5381385087966919 1.64427387714386 0.5578615069389343 3.905639459844679e-06 2.274081468582153 3.905639459844679e-06 L 11.72038173675537 3.905639459844679e-06 C 13.43661117553711 3.905639459844679e-06 14.53260135650635 1.64427387714386 13.72216129302979 3.003193855285645 L 8.999011039733887 10.92280387878418 C 8.570956230163574 11.64054393768311 7.784098148345947 11.99941349029541 6.997235774993896 11.99941253662109 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(-17189 -18886)" fill="none"><path d="M17199,18902.719v-.381l-4,2.383a2.049,2.049,0,0,1-3-2v-9.445a2.051,2.051,0,0,1,3-2l4,2.389v-.385a2.054,2.054,0,0,1,3-2l7.918,4.727a2.4,2.4,0,0,1,0,4l-7.918,4.721a1.867,1.867,0,0,1-.963.273A2.165,2.165,0,0,1,17199,18902.719Z" stroke="none"/><path d="M 17201.05859375 18902.95703125 L 17208.89453125 18898.283203125 C 17208.953125 18898.248046875 17208.998046875 18898.125 17208.99609375 18897.99609375 C 17208.99609375 18897.869140625 17208.955078125 18897.748046875 17208.896484375 18897.712890625 L 17201.05859375 18893.03515625 C 17201.029296875 18893.080078125 17201 18893.15625 17201 18893.2734375 L 17201 18897.181640625 L 17194.05859375 18893.037109375 C 17194.03125 18893.08203125 17194.001953125 18893.158203125 17194.001953125 18893.2734375 L 17194.001953125 18902.71875 C 17194.001953125 18902.83203125 17194.029296875 18902.908203125 17194.05859375 18902.953125 L 17201 18898.818359375 L 17201 18902.71875 C 17201 18902.833984375 17201.029296875 18902.912109375 17201.05859375 18902.95703125 M 17201.041015625 18904.994140625 C 17199.97265625 18904.994140625 17199 18904.041015625 17199 18902.71875 L 17199 18902.337890625 L 17195 18904.720703125 C 17194.6875 18904.908203125 17194.359375 18904.994140625 17194.0390625 18904.994140625 C 17192.974609375 18904.994140625 17192.001953125 18904.041015625 17192.001953125 18902.71875 L 17192.001953125 18893.2734375 C 17192.001953125 18891.951171875 17192.974609375 18890.998046875 17194.041015625 18890.998046875 C 17194.359375 18890.998046875 17194.6875 18891.08203125 17195 18891.26953125 L 17199 18893.658203125 L 17199 18893.2734375 C 17199 18891.951171875 17199.97265625 18890.998046875 17201.041015625 18890.998046875 C 17201.361328125 18890.998046875 17201.689453125 18891.08203125 17202.00390625 18891.26953125 L 17209.921875 18895.99609375 C 17211.35546875 18896.849609375 17211.35546875 18899.142578125 17209.921875 18900 L 17202.00390625 18904.720703125 C 17201.689453125 18904.908203125 17201.361328125 18904.994140625 17201.041015625 18904.994140625 Z" stroke="none" fill="#000"/></g><g transform="translate(17.234 3.662) rotate(90)" fill="none"><path d="M6.333,3.312a2.4,2.4,0,0,1,4,0l4.723,7.92a2.054,2.054,0,0,1-2,3H3.612a2.054,2.054,0,0,1-2-3Z" stroke="none"/><path d="M 8.335285186767578 4.235296249389648 C 8.207634925842285 4.235296249389648 8.085454940795898 4.278766632080078 8.051074981689453 4.336406707763672 L 3.374958992004395 12.17719841003418 C 3.419744491577148 12.20589160919189 3.496073722839355 12.23529624938965 3.611804962158203 12.23529624938965 L 13.05876541137695 12.23529624938965 C 13.17456531524658 12.23529624938965 13.25092601776123 12.20585060119629 13.29570198059082 12.1771411895752 L 8.619504928588867 4.336416244506836 C 8.585124969482422 4.278766632080078 8.462935447692871 4.235296249389648 8.335285186767578 4.235296249389648 M 8.335285186767578 2.235296249389648 C 9.12220287322998 2.235296249389648 9.909120559692383 2.594186782836914 10.33720588684082 3.311966896057129 L 15.06068515777588 11.23196601867676 C 15.87117481231689 12.59094619750977 14.77510547637939 14.23529624938965 13.05876541137695 14.23529624938965 L 3.611804962158203 14.23529624938965 C 1.895464897155762 14.23529624938965 0.7993955612182617 12.59094619750977 1.609885215759277 11.23196601867676 L 6.333365440368652 3.311966896057129 C 6.761449813842773 2.594186782836914 7.548367500305176 2.235296249389648 8.335285186767578 2.235296249389648 Z" stroke="none" fill="#000"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(5.486 3.75)"><g transform="translate(-131.8 -5.75)" fill="none" stroke-linejoin="round"><path d="M145.314,9.629V21a1.856,1.856,0,0,1-2,2h-10a1.856,1.856,0,0,1-2-2V7a1.856,1.856,0,0,1,2-2h7.158Z" stroke="none"/><path d="M 133.314453125 7 L 133.314453125 21 L 143.314453125 21 L 143.314453125 10.484130859375 L 139.6702423095703 7 L 133.314453125 7 M 133.314453125 5 L 140.4724884033203 5 L 145.314453125 9.629270553588867 L 145.314453125 21 C 145.314453125 22.24282073974609 144.5386352539062 23 143.314453125 23 L 133.314453125 23 C 132.0902709960938 23 131.314453125 22.24282073974609 131.314453125 21 L 131.314453125 7 C 131.314453125 5.757179260253906 132.0902709960938 5 133.314453125 5 Z" stroke="none" fill="#000"/></g><path d="M145.478,8.917h-3v-3Z" transform="translate(-133.964 -4.667)" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g><path d="M1,0H5" transform="translate(9 13)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line y2="4" transform="translate(12 11)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(-87 -1594)"><path d="M17901.715,20504c-.354,0-.715-.094-.715-.777v-12.447c0-.686.361-.777.715-.777H17905v-3.221c0-.686.365-.777.715-.777h5.729l3.561,3.529v9.689c0,.689-.365.777-.715.777H17911v3.227c0,.684-.359.777-.709.777Z" transform="translate(-17809 -18889)" fill="rgba(0,0,0,0)" stroke="#000" stroke-linejoin="round" stroke-width="2"/><g transform="translate(91.486 1600.75)"><g transform="translate(-131.8 -5.75)" fill="none" stroke-linejoin="round"><path d="M143.314,9.115V19.222A1.621,1.621,0,0,1,141.6,21h-8.571a1.621,1.621,0,0,1-1.714-1.778V6.778A1.621,1.621,0,0,1,133.029,5h6.135Z" stroke="none"/><path d="M 133.314453125 7 L 133.314453125 19 L 141.314453125 19 L 141.314453125 9.948348999023438 L 138.3407897949219 7 L 133.314453125 7 M 133.0287322998047 5 L 139.1641998291016 5 L 143.314453125 9.114910125732422 L 143.314453125 19.22221946716309 C 143.314453125 20.32695007324219 142.6494598388672 21 141.6001586914062 21 L 133.0287322998047 21 C 131.9794311523438 21 131.314453125 20.32695007324219 131.314453125 19.22221946716309 L 131.314453125 6.777780532836914 C 131.314453125 5.673049926757812 131.9794311523438 5 133.0287322998047 5 Z" stroke="none" fill="#000"/></g><path d="M145.05,8.583h-2.571V5.917Z" transform="translate(-135.249 -4.889)" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g><path d="M145.05,8.583h-2.571V5.917Z" transform="translate(-39.764 1591.861)" fill="rgba(0,0,0,0)" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(5.486 3.75)"><g transform="translate(-131.8 -5.75)" fill="none" stroke-linejoin="round"><path d="M145.314,9.629V21a1.856,1.856,0,0,1-2,2h-10a1.856,1.856,0,0,1-2-2V7a1.856,1.856,0,0,1,2-2h7.158Z" stroke="none"/><path d="M 133.314453125 7 L 133.314453125 21 L 143.314453125 21 L 143.314453125 10.484130859375 L 139.6702423095703 7 L 133.314453125 7 M 133.314453125 5 L 140.4724884033203 5 L 145.314453125 9.629270553588867 L 145.314453125 21 C 145.314453125 22.24282073974609 144.5386352539062 23 143.314453125 23 L 133.314453125 23 C 132.0902709960938 23 131.314453125 22.24282073974609 131.314453125 21 L 131.314453125 7 C 131.314453125 5.757179260253906 132.0902709960938 5 133.314453125 5 Z" stroke="none" fill="#000"/></g><path d="M145.478,8.917h-3v-3Z" transform="translate(-133.964 -4.667)" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g><path d="M1,0H5" transform="translate(9 13)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(6.486)"><g transform="translate(-2 6.75)"><g transform="translate(-131.8 -5.75)" fill="none" stroke-linejoin="round"><path d="M143.314,9.115V19.222A1.621,1.621,0,0,1,141.6,21h-8.571a1.621,1.621,0,0,1-1.714-1.778V6.778A1.621,1.621,0,0,1,133.029,5h6.135Z" stroke="none"/><path d="M 133.314453125 7 L 133.314453125 19 L 141.314453125 19 L 141.314453125 9.948348999023438 L 138.3407897949219 7 L 133.314453125 7 M 133.0287322998047 5 L 139.1641998291016 5 L 143.314453125 9.114910125732422 L 143.314453125 19.22221946716309 C 143.314453125 20.32695007324219 142.6494598388672 21 141.6001586914062 21 L 133.0287322998047 21 C 131.9794311523438 21 131.314453125 20.32695007324219 131.314453125 19.22221946716309 L 131.314453125 6.777780532836914 C 131.314453125 5.673049926757812 131.9794311523438 5 133.0287322998047 5 Z" stroke="none" fill="#000"/></g><path d="M145.05,8.583h-2.571V5.917Z" transform="translate(-135.249 -4.889)" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g><g transform="translate(-1.5 -6)"><line y2="6" transform="translate(13.514 9)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="5" y2="3" transform="translate(11.014 10.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="5" y1="3" transform="translate(11.014 10.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(5.485 3.75)"><g transform="translate(-131.8 -5.75)" fill="none" stroke-linejoin="round"><path d="M145.314,9.629V21a1.856,1.856,0,0,1-2,2h-10a1.856,1.856,0,0,1-2-2V7a1.856,1.856,0,0,1,2-2h7.158Z" stroke="none"/><path d="M 133.314453125 7 L 133.314453125 21 L 143.314453125 21 L 143.314453125 10.484130859375 L 139.6702423095703 7 L 133.314453125 7 M 133.314453125 5 L 140.4724884033203 5 L 145.314453125 9.629270553588867 L 145.314453125 21 C 145.314453125 22.24282073974609 144.5386352539062 23 143.314453125 23 L 133.314453125 23 C 132.0902709960938 23 131.314453125 22.24282073974609 131.314453125 21 L 131.314453125 7 C 131.314453125 5.757179260253906 132.0902709960938 5 133.314453125 5 Z" stroke="none" fill="#000"/></g><path d="M145.478,8.917h-3v-3Z" transform="translate(-133.964 -4.667)" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><line x2="14" transform="translate(5 6)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="14" transform="translate(5 12)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="14" transform="translate(5 18)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(6 4)" fill="none" stroke="#000" stroke-width="1"><circle cx="2" cy="2" r="2" stroke="none"/><circle cx="2" cy="2" r="1.5" fill="none"/></g><g transform="translate(14 10)" fill="none" stroke="#000" stroke-width="1"><circle cx="2" cy="2" r="2" stroke="none"/><circle cx="2" cy="2" r="1.5" fill="none"/></g><g transform="translate(10 16)" fill="none" stroke="#000" stroke-width="1"><circle cx="2" cy="2" r="2" stroke="none"/><circle cx="2" cy="2" r="1.5" fill="none"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(5.371 3)"><g transform="translate(674.381 -65.96)" stroke-linejoin="round"><path d="M -665.7757568359375 82.95999145507812 C -665.7868041992188 82.95999145507812 -665.7927856445312 82.95783996582031 -665.8024291992188 82.95042419433594 L -665.8245849609375 82.93327331542969 L -665.8477172851562 82.91740417480469 L -669.447265625 80.44577026367188 C -669.6571655273438 80.27554321289062 -669.7770385742188 80.03659820556641 -669.7770385742188 79.78675079345703 L -669.7770385742188 74.9862060546875 C -669.7770385742188 74.69108581542969 -669.8472900390625 74.08649444580078 -670.1088256835938 73.66751098632812 L -673.66064453125 67.72922515869141 L -673.6691284179688 67.71510314941406 L -673.6780395507812 67.70127105712891 C -673.7938842773438 67.52125549316406 -673.7520751953125 67.36220550537109 -673.696533203125 67.26045989990234 C -673.658447265625 67.19068145751953 -673.5064697265625 66.96298217773438 -673.1489868164062 66.96298217773438 L -662.3554077148438 66.95999145507812 C -661.9974975585938 66.95999145507812 -661.8453979492188 67.18861389160156 -661.8073120117188 67.25868988037109 C -661.7520141601562 67.36045074462891 -661.71044921875 67.51939392089844 -661.82666015625 67.69863128662109 L -661.8356323242188 67.71249389648438 L -661.8441772460938 67.72665405273438 L -665.4227905273438 73.66916656494141 C -665.6426391601562 74.01490020751953 -665.7587280273438 74.41164398193359 -665.7587280273438 74.81776428222656 L -665.7587280273438 82.95798492431641 C -665.7640380859375 82.95920562744141 -665.7698364257812 82.95999145507812 -665.7757568359375 82.95999145507812 Z" stroke="none"/><path d="M -663.1521606445312 67.96021270751953 L -672.355712890625 67.96276092529297 L -669.2547607421875 73.14724731445312 C -668.8004150390625 73.88265991210938 -668.7770385742188 74.80559539794922 -668.7770385742188 74.9862060546875 L -668.7770385742188 79.69293975830078 L -666.7587280273438 81.07881164550781 L -666.7587280273438 74.81776428222656 C -666.7587280273438 74.22563934326172 -666.5912475585938 73.64788055419922 -666.2739868164062 73.14421081542969 L -663.1521606445312 67.96021270751953 M -662.355712890625 65.95999145507812 C -661.1072998046875 65.95999145507812 -660.3388671875 67.2418212890625 -660.9874877929688 68.24253082275391 L -664.5733642578125 74.19709014892578 C -664.69482421875 74.38450622558594 -664.7587280273438 74.598876953125 -664.7587280273438 74.81776428222656 L -664.7587280273438 83.0086669921875 C -664.7587280273438 83.81150817871094 -665.75390625 84.25144958496094 -666.4137573242188 83.74177551269531 L -670.04052734375 81.25146484375 C -670.5069580078125 80.89089965820312 -670.7770385742188 80.35344696044922 -670.7770385742188 79.78675079345703 L -670.7770385742188 74.9862060546875 C -670.7770385742188 74.76806640625 -670.8401489257812 74.37729644775391 -670.960693359375 74.19138336181641 L -674.5188598632812 68.24253082275391 C -675.1635131835938 67.24105072021484 -674.3959350585938 65.96298217773438 -673.1489868164062 65.96298217773438 L -662.355712890625 65.95999145507812 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(5.371 3)"><g transform="translate(674.381 -65.96)" fill="none" stroke-linejoin="round"><path d="M-673.149,65.963l10.793,0a1.5,1.5,0,0,1,1.368,2.283l-3.586,5.955a1.139,1.139,0,0,0-.185.621v8.191a1.019,1.019,0,0,1-1.655.733l-3.627-2.49a1.854,1.854,0,0,1-.737-1.465v-4.8a1.8,1.8,0,0,0-.184-.795l-3.558-5.949A1.5,1.5,0,0,1-673.149,65.963Z" stroke="none"/><path d="M -663.1521606445312 67.96021270751953 L -672.355712890625 67.96276092529297 L -669.2547607421875 73.14724731445312 C -668.8004150390625 73.88265991210938 -668.7770385742188 74.80559539794922 -668.7770385742188 74.9862060546875 L -668.7770385742188 79.69293975830078 L -666.7587280273438 81.07881164550781 L -666.7587280273438 74.81776428222656 C -666.7587280273438 74.22563934326172 -666.5912475585938 73.64788055419922 -666.2739868164062 73.14421081542969 L -663.1521606445312 67.96021270751953 M -662.355712890625 65.95999145507812 C -661.1072998046875 65.95999145507812 -660.3388671875 67.2418212890625 -660.9874877929688 68.24253082275391 L -664.5733642578125 74.19709014892578 C -664.69482421875 74.38450622558594 -664.7587280273438 74.598876953125 -664.7587280273438 74.81776428222656 L -664.7587280273438 83.0086669921875 C -664.7587280273438 83.81150817871094 -665.75390625 84.25144958496094 -666.4137573242188 83.74177551269531 L -670.04052734375 81.25146484375 C -670.5069580078125 80.89089965820312 -670.7770385742188 80.35344696044922 -670.7770385742188 79.78675079345703 L -670.7770385742188 74.9862060546875 C -670.7770385742188 74.76806640625 -670.8401489257812 74.37729644775391 -670.960693359375 74.19138336181641 L -674.5188598632812 68.24253082275391 C -675.1635131835938 67.24105072021484 -674.3959350585938 65.96298217773438 -673.1489868164062 65.96298217773438 L -662.355712890625 65.95999145507812 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(4.549 4.621)"><path d="M10.461-830.507c2.289.538,3.6,1.754,3.6,3.338,0,2.053-3.075,3.662-7,3.662s-7-1.608-7-3.662c0-1.584,1.314-2.8,3.6-3.338" transform="translate(0.387 839.888)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M7.451,13.379v-13h8l-3,3,3,3h-8" transform="translate(0 -1)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(-17430 -18770)" fill="none"><path d="M17434,18789a2,2,0,0,1-2-2v-11a2.018,2.018,0,0,1,1.711-2l6,0,.834,0,1.377,2H17450a2,2,0,0,1,2,2v9a2,2,0,0,1-2,2Z" stroke="none"/><path d="M 17450 18787 C 17450 18787 17450 18787 17450 18787 L 17450.001953125 18778.001953125 C 17450 18778.001953125 17450 18778 17450 18778 L 17440.876953125 18778 L 17439.49609375 18775.99609375 L 17434.009765625 18776 C 17434.005859375 18776.005859375 17434.00390625 18776.013671875 17434.001953125 18776.01953125 L 17434.001953125 18787 L 17450 18787 M 17450 18789 L 17434.001953125 18789 C 17432.892578125 18789 17432.001953125 18788.103515625 17432.001953125 18787 L 17432.001953125 18778 C 17432.001953125 18777.3515625 17432.001953125 18776.53515625 17432.001953125 18776 C 17432.001953125 18775 17432.85546875 18774.005859375 17433.712890625 18774 L 17439.716796875 18773.99609375 L 17440.55078125 18774 L 17441.927734375 18776 L 17450 18776 C 17451.103515625 18776 17452 18776.896484375 17452 18778 L 17452 18787 C 17452 18788.103515625 17451.103515625 18789 17450 18789 Z" stroke="none" fill="#000"/></g><path d="M3.662,17.768l3-7h13" transform="translate(0.338 0.232)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><line y2="10" transform="translate(15 7)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><g transform="translate(4 6)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><rect width="16" height="12" stroke="none"/><rect x="1" y="1" width="14" height="10" fill="none"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(3 4.971)"><path d="M-53,68.915h-3a1.881,1.881,0,0,0-1.5.5,1.883,1.883,0,0,0-.5,1.5v8a1.886,1.886,0,0,0,.5,1.5,1.881,1.881,0,0,0,1.5.5h14a1.881,1.881,0,0,0,1.5-.5,1.881,1.881,0,0,0,.5-1.5v-8a1.881,1.881,0,0,0-.5-1.5,1.881,1.881,0,0,0-1.5-.5h-3" transform="translate(58 -67.885)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(57.1 -70.386)" fill="none" stroke-miterlimit="10"><path d="M-51.465,84.416h6.724l.575,1.062c.245.452-.224.938-.906.938h-6.057c-.68,0-1.149-.484-.907-.936Z" stroke="none"/><path d="M -51.46474075317383 84.41600799560547 L -44.7411003112793 84.41600799560547 L -44.16604995727539 85.47847747802734 C -43.92147064208984 85.93023681640625 -44.39030075073242 86.416015625 -45.07157897949219 86.416015625 L -51.12902069091797 86.416015625 C -51.80897903442383 86.416015625 -52.27780914306641 85.93209838867188 -52.03585815429688 85.4803466796875 L -51.46474075317383 84.41600799560547 Z" stroke="none" fill="#000"/></g><path d="M-49.5,74.181l3,3,3-3" transform="translate(55.5 -68.151)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y1="7" transform="translate(9 1.03)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(4.5 4.5)"><g transform="translate(-0.5 -0.5)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="7" height="7" rx="2" stroke="none"/><rect x="1" y="1" width="5" height="5" rx="1" fill="none"/></g><g transform="translate(-0.5 8.5)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="7" height="7" rx="2" stroke="none"/><rect x="1" y="1" width="5" height="5" rx="1" fill="none"/></g><g transform="translate(8.5 -0.5)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="7" height="7" rx="2" stroke="none"/><rect x="1" y="1" width="5" height="5" rx="1" fill="none"/></g><g transform="translate(8.5 8.5)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="7" height="7" rx="2" stroke="none"/><rect x="1" y="1" width="5" height="5" rx="1" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><line x2="6" transform="translate(15 6)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y2="6" transform="translate(18 3)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(11 11)" fill="none" stroke="#000" stroke-width="2"><rect width="7" height="7" rx="3.5" stroke="none"/><rect x="1" y="1" width="5" height="5" rx="2.5" fill="none"/></g><path d="M0,0C1.657,0,3,.865,3,2.5S1.657,5,0,5" transform="translate(12 22) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><g transform="translate(2 10)" fill="none" stroke="#000" stroke-width="2"><rect width="8" height="8" rx="4" stroke="none"/><rect x="1" y="1" width="6" height="6" rx="3" fill="none"/></g><path d="M0,0A3,3,0,0,1,3,3,3,3,0,0,1,0,6" transform="translate(3 22) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2 5)" fill="none" stroke="#000" stroke-width="2"><rect width="10" height="10" rx="5" stroke="none"/><rect x="1" y="1" width="8" height="8" rx="4" fill="none"/></g><path d="M0,0A4,4,0,0,1,4,4,4,4,0,0,1,0,8" transform="translate(3 20) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><path d="M0,0A3,3,0,0,1,3,3,3,3,0,0,1,0,6" transform="translate(15 20) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><g transform="translate(14 8)" fill="none" stroke="#000" stroke-width="2"><rect width="8.001" height="8.001" rx="4" stroke="none"/><rect x="1" y="1" width="6.001" height="6.001" rx="3" fill="none"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(557 -62.531)" stroke-miterlimit="10"><path d="M -545 81.53102111816406 C -545.0001831054688 81.53102111816406 -545.0003051757812 81.53102111816406 -545.0004272460938 81.53101348876953 L -551.8378295898438 75.00063323974609 C -552.5872192382812 74.28474426269531 -553 73.33634185791016 -553 72.33017730712891 C -553 71.32399749755859 -552.5872802734375 70.37561798095703 -551.8377685546875 69.65972137451172 C -551.0758666992188 68.93185424804688 -550.0594482421875 68.53101348876953 -548.9757080078125 68.53101348876953 C -547.89208984375 68.53101348876953 -546.875732421875 68.93185424804688 -546.1138305664062 69.65968322753906 L -545.6906127929688 70.06385040283203 L -544.9998168945312 70.7235107421875 L -544.3092041015625 70.06369018554688 L -543.8862915039062 69.65965270996094 C -543.1243286132812 68.93186187744141 -542.10791015625 68.53101348876953 -541.0242919921875 68.53101348876953 C -539.940673828125 68.53101348876953 -538.9242553710938 68.93186187744141 -538.1622314453125 69.65972900390625 C -537.4127807617188 70.37564849853516 -537 71.32405090332031 -537 72.33017730712891 C -537 73.3363037109375 -537.4127807617188 74.28471374511719 -538.1622314453125 75.00070190429688 L -544.9987182617188 81.53086853027344 L -545 81.53102111816406 Z" stroke="none"/><path d="M -548.9757080078125 69.53101348876953 C -549.8009033203125 69.53101348876953 -550.572021484375 69.83350372314453 -551.1470336914062 70.38284301757812 C -551.6970825195312 70.90823364257812 -552 71.59980773925781 -552 72.33017730712891 C -552 73.06055450439453 -551.6970825195312 73.75214385986328 -551.1471557617188 74.27747344970703 L -544.9996948242188 80.14890289306641 L -538.85302734375 74.27761077880859 C -538.3029174804688 73.75212097167969 -538 73.06050872802734 -538 72.33017730712891 C -538 71.59983825683594 -538.3029174804688 70.90824890136719 -538.8529052734375 70.38285827636719 C -539.4280395507812 69.83353424072266 -540.1991577148438 69.53101348876953 -541.0242919921875 69.53101348876953 C -541.8494262695312 69.53101348876953 -542.6205444335938 69.83353424072266 -543.1954956054688 70.38271331787109 L -544.9996948242188 72.10639190673828 L -546.8046264648438 70.38277435302734 C -547.3795776367188 69.83350372314453 -548.150634765625 69.53101348876953 -548.9757080078125 69.53101348876953 M -548.9757080078125 67.53101348876953 C -547.634033203125 67.53101348876953 -546.3717651367188 68.03034210205078 -545.423095703125 68.93659973144531 L -545 69.34064483642578 L -544.5770874023438 68.93659973144531 C -543.6282958984375 68.03034210205078 -542.365966796875 67.53101348876953 -541.0242919921875 67.53101348876953 C -539.6824951171875 67.53101348876953 -538.4202880859375 68.03034210205078 -537.4714965820312 68.93659973144531 C -536.5228271484375 69.84283447265625 -536 71.04782104492188 -536 72.33017730712891 C -536 73.61182403564453 -536.5228271484375 74.81752014160156 -537.4714965820312 75.72377777099609 L -544.3137817382812 82.25949859619141 C -544.4959716796875 82.43357849121094 -544.7427978515625 82.53102111816406 -545 82.53102111816406 C -545.2572631835938 82.53102111816406 -545.5040283203125 82.43357849121094 -545.685546875 82.25949859619141 L -552.5285034179688 75.72377777099609 C -553.4772338867188 74.81752014160156 -554 73.61253356933594 -554 72.33017730712891 C -554 71.04853820800781 -553.4772338867188 69.84283447265625 -552.5285034179688 68.93659973144531 C -551.579833984375 68.03034210205078 -550.3175048828125 67.53101348876953 -548.9757080078125 67.53101348876953 Z" stroke="none" fill="#000"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(557 -62.531)" fill="none" stroke-miterlimit="10"><path d="M-541.024,67.531a5.114,5.114,0,0,0-3.553,1.406l-.423.4-.423-.4a5.113,5.113,0,0,0-3.553-1.406,5.113,5.113,0,0,0-3.553,1.406A4.663,4.663,0,0,0-554,72.33a4.662,4.662,0,0,0,1.471,3.394l6.843,6.536a.991.991,0,0,0,.686.272.994.994,0,0,0,.686-.272l6.842-6.536A4.663,4.663,0,0,0-536,72.33a4.662,4.662,0,0,0-1.471-3.394A5.114,5.114,0,0,0-541.024,67.531Z" stroke="none"/><path d="M -548.9757080078125 69.53101348876953 C -549.8009033203125 69.53101348876953 -550.572021484375 69.83350372314453 -551.1470336914062 70.38284301757812 C -551.6970825195312 70.90823364257812 -552 71.59980773925781 -552 72.33017730712891 C -552 73.06055450439453 -551.6970825195312 73.75214385986328 -551.1471557617188 74.27747344970703 L -544.9996948242188 80.14890289306641 L -538.85302734375 74.27761077880859 C -538.3029174804688 73.75212097167969 -538 73.06050872802734 -538 72.33017730712891 C -538 71.59983825683594 -538.3029174804688 70.90824890136719 -538.8529052734375 70.38285827636719 C -539.4280395507812 69.83353424072266 -540.1991577148438 69.53101348876953 -541.0242919921875 69.53101348876953 C -541.8494262695312 69.53101348876953 -542.6205444335938 69.83353424072266 -543.1954956054688 70.38271331787109 L -544.9996948242188 72.10639190673828 L -546.8046264648438 70.38277435302734 C -547.3795776367188 69.83350372314453 -548.150634765625 69.53101348876953 -548.9757080078125 69.53101348876953 M -548.9757080078125 67.53101348876953 C -547.634033203125 67.53101348876953 -546.3717651367188 68.03034210205078 -545.423095703125 68.93659973144531 L -545 69.34064483642578 L -544.5770874023438 68.93659973144531 C -543.6282958984375 68.03034210205078 -542.365966796875 67.53101348876953 -541.0242919921875 67.53101348876953 C -539.6824951171875 67.53101348876953 -538.4202880859375 68.03034210205078 -537.4714965820312 68.93659973144531 C -536.5228271484375 69.84283447265625 -536 71.04782104492188 -536 72.33017730712891 C -536 73.61182403564453 -536.5228271484375 74.81752014160156 -537.4714965820312 75.72377777099609 L -544.3137817382812 82.25949859619141 C -544.4959716796875 82.43357849121094 -544.7427978515625 82.53102111816406 -545 82.53102111816406 C -545.2572631835938 82.53102111816406 -545.5040283203125 82.43357849121094 -545.685546875 82.25949859619141 L -552.5285034179688 75.72377777099609 C -553.4772338867188 74.81752014160156 -554 73.61253356933594 -554 72.33017730712891 C -554 71.04853820800781 -553.4772338867188 69.84283447265625 -552.5285034179688 68.93659973144531 C -551.579833984375 68.03034210205078 -550.3175048828125 67.53101348876953 -548.9757080078125 67.53101348876953 Z" stroke="none" fill="#000"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="none"/><g transform="translate(2.711 5.201)"><path d="M.289,2.8l5,5,9-9-5-5Z" transform="translate(3 5)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><path d="M5.289,7.8l3,3-2,2h-2l-1-1v-2Z" transform="translate(-1 1)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><path d="M1.789,11.8l-1.5,1.333,1.5.667,1.5-1.333Z" transform="translate(0 1)" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2 3)"><g transform="translate(1835 -914)" fill="rgba(0,0,0,0)" stroke-miterlimit="10"><path d="M -1827.000122070312 931.0010986328125 L -1829.380249023438 931.0004272460938 C -1830.275268554688 930.998779296875 -1831.005615234375 930.2679443359375 -1831.006713867188 929.3712768554688 L -1831.006713867188 922.9122314453125 L -1831.006713867188 921.9122314453125 L -1832.006713867188 921.9122314453125 L -1833.804077148438 921.9122314453125 C -1833.813598632812 921.9121704101562 -1833.822998046875 921.912109375 -1833.832153320312 921.9119262695312 C -1833.82470703125 921.9055786132812 -1833.81689453125 921.8989868164062 -1833.808837890625 921.8922729492188 L -1825.774780273438 915.2575073242188 C -1825.573364257812 915.0927734375 -1825.296997070312 915.0004272460938 -1825.000244140625 915.0004272460938 C -1824.702880859375 915.0004272460938 -1824.426025390625 915.0929565429688 -1824.220825195312 915.260986328125 L -1816.188720703125 921.8932495117188 C -1816.181030273438 921.8995361328125 -1816.173706054688 921.9057006835938 -1816.166748046875 921.9117431640625 C -1816.177490234375 921.9119873046875 -1816.188720703125 921.9121704101562 -1816.200317382812 921.9122314453125 L -1817.992797851562 921.9122314453125 L -1818.992797851562 921.9122314453125 L -1818.992797851562 922.9122314453125 L -1818.992797851562 929.3724365234375 C -1818.993896484375 930.2678833007812 -1819.724243164062 930.998779296875 -1820.620849609375 931.0004272460938 L -1823.000366210938 931.0004272460938 L -1823.000366210938 927 L -1823.000366210938 926.0004272460938 L -1823.999877929688 926 L -1825.999633789062 925.9991455078125 L -1827.000122070312 925.9987182617188 L -1827.000122070312 926.9991455078125 L -1827.000122070312 931.0010986328125 Z" stroke="none"/><path d="M -1828.000122070312 930.0008544921875 L -1828.000122070312 924.998291015625 L -1822.000366210938 925.0008544921875 L -1822.000366210938 930.0004272460938 L -1820.622680664062 930.0004272460938 C -1820.275756835938 929.999755859375 -1819.993286132812 929.7169189453125 -1819.992797851562 929.3724365234375 L -1819.992797851562 920.9122314453125 L -1818.947387695312 920.9122314453125 L -1824.855224609375 916.0340576171875 C -1824.867553710938 916.024658203125 -1824.917236328125 916.0004272460938 -1825.000244140625 916.0004272460938 C -1825.08251953125 916.0004272460938 -1825.1318359375 916.0244140625 -1825.144165039062 916.03369140625 L -1831.051635742188 920.9122314453125 L -1830.006713867188 920.9122314453125 L -1830.006713867188 929.3700561523438 C -1830.00634765625 929.7169799804688 -1829.723754882812 929.999755859375 -1829.3798828125 930.0004272460938 L -1828.000122070312 930.0008544921875 M -1826.000122070312 932.0014038085938 L -1829.380493164062 932.0004272460938 C -1830.826904296875 931.9977416992188 -1832.005004882812 930.81884765625 -1832.006713867188 929.3724365234375 L -1832.006713867188 922.9122314453125 L -1833.804077148438 922.9122314453125 C -1834.033813476562 922.9111938476562 -1834.216796875 922.8857421875 -1834.380004882812 922.8321533203125 C -1834.59716796875 922.759765625 -1834.756713867188 922.646728515625 -1834.867797851562 922.4865112304688 C -1834.952514648438 922.3656005859375 -1835.001953125 922.2054443359375 -1835.000122070312 922.05810546875 C -1834.99853515625 921.8764038085938 -1834.941162109375 921.7020874023438 -1834.824584960938 921.5253295898438 C -1834.731689453125 921.3867797851562 -1834.611572265625 921.2587280273438 -1834.446655273438 921.1221313476562 L -1826.411499023438 914.4864501953125 C -1826.028442382812 914.1730346679688 -1825.527221679688 914.0004272460938 -1825.000244140625 914.0004272460938 C -1824.472534179688 914.0004272460938 -1823.970703125 914.17333984375 -1823.587280273438 914.4873046875 L -1815.552001953125 921.1221313476562 C -1815.389892578125 921.25634765625 -1815.270385742188 921.3844604492188 -1815.175903320312 921.5253295898438 C -1815.059326171875 921.7020874023438 -1815.001953125 921.8764038085938 -1815.000366210938 922.05810546875 C -1814.99853515625 922.2054443359375 -1815.047973632812 922.3656005859375 -1815.132690429688 922.4865112304688 C -1815.21044921875 922.599609375 -1815.3154296875 922.6910400390625 -1815.444946289062 922.75830078125 C -1815.651611328125 922.8640747070312 -1815.876220703125 922.9100952148438 -1816.196411132812 922.9122314453125 L -1817.992797851562 922.9122314453125 L -1817.992797851562 929.3724365234375 C -1817.99462890625 930.81884765625 -1819.172729492188 931.9977416992188 -1820.619018554688 932.0004272460938 L -1824.000366210938 932.0004272460938 L -1824.000366210938 927 L -1826.000122070312 926.9991455078125 L -1826.000122070312 932.0014038085938 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><path d="M196.434,253.189c0-.4,1.311-1.236,2-2a7.576,7.576,0,0,0,2-5v-2h-12v2a7.572,7.572,0,0,0,2,5c.689.765,2,1.6,2,2s-1.311,1.235-2,2a7.573,7.573,0,0,0-2,5v2h12v-2a7.58,7.58,0,0,0-2-5C197.745,254.424,196.434,253.586,196.434,253.189Z" transform="translate(-182.434 -241.189)" fill="none" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/><line x1="12" transform="translate(6 7)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><ellipse cx="3" cy="2" rx="3" ry="2" transform="translate(9 18)"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(3.375 5.25)"><g transform="translate(18.625 -1.25) rotate(90)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="16" height="20" rx="2" stroke="none"/><rect x="1" y="1" width="14" height="18" rx="1" fill="none"/></g><path d="M-549.534,84.089l9-9,6,6" transform="translate(552.159 -70.339)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><circle cx="1" cy="1" r="1" transform="translate(3.625 3.75)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-541.622,78.592l2,2,3-3" transform="translate(550.247 -69.842)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(3 3)"><circle cx="10" cy="10" r="10" transform="translate(-1 -1)"/><line y1="7" transform="translate(9 8)" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y1="1" transform="translate(9 3)" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2.25 3.344)"><line y2="1" transform="translate(9.75 3.656)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="5" transform="translate(9.75 8.656)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><g transform="translate(-0.25 -1.344)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(6.199 4.8)"><line x1="8" transform="translate(3.801 0.2)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="8" transform="translate(-0.199 14.2)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="4" y2="14" transform="translate(3.801 0.2)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(-945.502 -1893.502)"><path d="M17551.5,24962.506l7.076-7.076a6.1,6.1,0,1,1,4,4l-1.076,1.078-1,1h-2.006v2h-2v2.006l-1,1-4,.006Z" transform="translate(-16603.004 -23052.002)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><circle cx="1.5" cy="1.5" r="1.5" transform="translate(960.502 1899.502)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(3 3)"><g fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="9" cy="9" r="9" stroke="none"/><circle cx="9" cy="9" r="8" fill="none"/></g><line x2="16" transform="translate(1 6)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><line x2="16" transform="translate(1 12)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><path d="M0,2S4-1,8-1s8,3,8,3" transform="translate(6 17) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><path d="M0,0S4,3,8,3s8-3,8-3" transform="translate(10 17) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(4 4)"><path d="M3.4,16.34l1.151-4.282a.184.184,0,0,1,.331-.053,2.041,2.041,0,1,0,.8-2.961.183.183,0,0,1-.259-.211L6.574,4.55l4.3,1.148a.183.183,0,0,0,.212-.26,2.021,2.021,0,0,1-.141-1.428,2.045,2.045,0,1,1,3.113,2.221.183.183,0,0,0,.053.33L18.4,7.71,15.236,19.5Z" transform="translate(-3.405 -2.5)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><path d="M11,2.227A6.485,6.485,0,0,0,7.176,1,6.435,6.435,0,0,0,2.82,2.656,5.462,5.462,0,0,0,1,6.691a9,9,0,0,0,.906,3.9c.066.139.144.272.215.408" transform="translate(5 2)" fill="none" stroke="#040405" stroke-miterlimit="10" stroke-width="2"/><path d="M4.529,18.1a2.972,2.972,0,0,0,.884,1.3,3.868,3.868,0,0,0,4.889,0,2.86,2.86,0,0,0,1.05-2.181V15.13A15.222,15.222,0,0,0,13.589,11.8a9.881,9.881,0,0,0,.94-3.527" transform="translate(4.471 0.729)" fill="none" stroke="#040405" stroke-miterlimit="10" stroke-width="2"/><line y1="16" x2="16" transform="translate(4 4)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(5 2)"><g transform="translate(178 -66.5)" fill="none" stroke-miterlimit="10"><path d="M-164,73.03a6.3,6.3,0,0,0-2.063-4.63A7.243,7.243,0,0,0-171,66.5a7.243,7.243,0,0,0-4.937,1.9A6.3,6.3,0,0,0-178,73.03a10.429,10.429,0,0,0,1.027,4.475,16.335,16.335,0,0,0,2.328,3.526v2.234a3.061,3.061,0,0,0,1.095,2.313A3.883,3.883,0,0,0-171,86.5a3.883,3.883,0,0,0,2.55-.923,3.061,3.061,0,0,0,1.095-2.313V81.047a16.179,16.179,0,0,0,2.334-3.535A10.478,10.478,0,0,0-164,73.03Z" stroke="none"/><path d="M -170.9999847412109 68.49998474121094 C -172.3569488525391 68.49998474121094 -173.6270599365234 68.98511505126953 -174.5773773193359 69.86698150634766 C -175.4953460693359 70.71761322021484 -176.0005798339844 71.84042358398438 -175.9999847412109 73.03067779541016 C -176.0006713867188 74.26495361328125 -175.7264862060547 75.45067596435547 -175.1621246337891 76.65485382080078 C -174.6987762451172 77.64244842529297 -174.0282592773438 78.6531982421875 -173.1122589111328 79.74486541748047 L -172.6443634033203 80.30249786376953 L -172.6443634033203 83.26624298095703 C -172.6447296142578 83.65766143798828 -172.3924560546875 83.93415832519531 -172.2386779785156 84.06705474853516 C -171.9170684814453 84.34623718261719 -171.4771575927734 84.49998474121094 -170.9999847412109 84.49998474121094 C -170.5228271484375 84.49998474121094 -170.0829162597656 84.34623718261719 -169.7579345703125 84.06413269042969 C -169.6075134277344 83.93415832519531 -169.3552398681641 83.65766143798828 -169.3556213378906 83.26434326171875 L -169.3556213378906 80.31732177734375 L -168.8858032226562 79.75910186767578 C -167.9685516357422 78.66924285888672 -167.2973785400391 77.65732574462891 -166.8343048095703 76.66624450683594 C -166.272216796875 75.46205139160156 -165.9993133544922 74.27284240722656 -165.9999847412109 73.02858734130859 C -165.9994049072266 71.84042358398438 -166.5046234130859 70.71761322021484 -167.4236755371094 69.86600494384766 C -168.3729248046875 68.98511505126953 -169.6430053710938 68.49998474121094 -170.9999847412109 68.49998474121094 M -170.9999847412109 66.49998474121094 C -169.0793609619141 66.49998474121094 -167.3319854736328 67.22259521484375 -166.063232421875 68.39998626708984 C -164.7944946289062 69.57564544677734 -163.9990997314453 71.21739196777344 -163.9999847412109 73.02956390380859 C -163.9990997314453 74.66346740722656 -164.3876037597656 76.15303802490234 -165.0220031738281 77.51216125488281 C -165.6204986572266 78.79304504394531 -166.4386138916016 79.95737457275391 -167.3556213378906 81.04694366455078 L -167.3556213378906 83.26434326171875 C -167.354736328125 84.18000793457031 -167.7861022949219 85.00347137451172 -168.4502410888672 85.577392578125 C -169.1143798828125 86.15390777587891 -170.0156097412109 86.49998474121094 -170.9999847412109 86.49998474121094 C -171.9843597412109 86.49998474121094 -172.8856048583984 86.15390777587891 -173.5497436523438 85.577392578125 C -174.2138824462891 85.00347137451172 -174.6452331542969 84.18000793457031 -174.6443634033203 83.26434326171875 L -174.6443634033203 81.03042602539062 C -175.557861328125 79.94173431396484 -176.3742523193359 78.77999114990234 -176.9727478027344 77.50434112548828 C -177.6097412109375 76.14521789550781 -178.0008850097656 74.65737152099609 -177.9999847412109 73.02956390380859 C -178.0008850097656 71.21739196777344 -177.2054901123047 69.57564544677734 -175.9367523193359 68.39998626708984 C -174.6679840087891 67.22259521484375 -172.9206237792969 66.49998474121094 -170.9999847412109 66.49998474121094 Z" stroke="none" fill="#000"/></g><line x2="6" transform="translate(4 14)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><line x1="2" y2="3" transform="translate(7 8)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-172.261,76.4l2,3v3" transform="translate(177.261 -68.397)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(4 4)"><path d="M-606.212,77.152a4.584,4.584,0,0,0,6.446.936,4.555,4.555,0,0,0,.5-.434l2.762-2.783a4.659,4.659,0,0,0-.113-6.557,4.582,4.582,0,0,0-6.4,0L-604.6,69.9" transform="translate(612.212 -68.012)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-604,76.536a4.584,4.584,0,0,0-6.446-.936,4.56,4.56,0,0,0-.5.434l-2.762,2.783a4.659,4.659,0,0,0,.113,6.557,4.582,4.582,0,0,0,6.4,0l1.575-1.585" transform="translate(614 -69.676)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(4.5 3.75)"><line y2="2" transform="translate(7.5 11.248)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(-0.5 6.25)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="16" height="12" rx="3" stroke="none"/><rect x="1" y="1" width="14" height="10" rx="2" fill="none"/></g><path d="M259.1,11V8.4c0-1.878,1.791-3.4,4-3.4h0c2.209,0,4,1.523,4,3.4V11" transform="translate(-255.595 -4.75)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(3.375 3.375)"><path d="M763.833,4.5h4a2.406,2.406,0,0,1,2,2v14a2.41,2.41,0,0,1-2,2h-4" transform="translate(-752.208 -4.875)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M757.444,19.611l5-5-5-5" transform="translate(-750.819 -5.986)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="11" transform="translate(-0.375 8.625)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(3.375 3.375)"><path d="M769.833,4.5h-4a2.406,2.406,0,0,0-2,2v14a2.41,2.41,0,0,0,2,2h4" transform="translate(-764.208 -4.875)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M757.444,19.611l5-5-5-5" transform="translate(-744.819 -5.986)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="11" transform="translate(5.625 8.625)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2 4)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"><rect width="20" height="16" rx="2" stroke="none"/><rect x="1" y="1" width="18" height="14" rx="1" fill="none"/></g><path d="M21.05,6.008v2h2" transform="translate(-14.051 6.992)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M21.05,6.008v2h2" transform="translate(38.051 17.008) rotate(180)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><line x2="11" transform="translate(5 16)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="8" transform="translate(5 12)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="14" transform="translate(5 8)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(4.19 3.441)"><g transform="translate(-0.19 11.559)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2" fill="none"/></g><g transform="translate(9.81 11.559)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2" fill="none"/></g><path d="M81.125,8.588l-4-4-4,4" transform="translate(-69.315 -4.029)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="9" transform="translate(7.81 0.559)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M74.091,19.976l3-3,3,3" transform="translate(-69.282 -7.417)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2 14)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"><rect width="9" height="6" rx="1" stroke="none"/><rect x="1" y="1" width="7" height="4" fill="none"/></g><path d="M22.05,9.008v-3h-4" transform="translate(-1.051 -1.008)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M3,4V0H0" transform="translate(21 16) rotate(90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M0,0V4H3" transform="translate(7 5) rotate(90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2.998 3.19)"><path d="M68,16.487a1.845,1.845,0,0,1-2-2v-8a1.845,1.845,0,0,1,2-2H82a1.845,1.845,0,0,1,2,2v8a1.845,1.845,0,0,1-2,2" transform="translate(-65.997 -4.677)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M0,0A2,2,0,0,1,2,2,2,2,0,0,1,0,4" transform="translate(7.002 17.81) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><g transform="translate(-14.998 -3.869)" fill="none" stroke-miterlimit="10"><path d="M22,16.679a2,2,0,1,1,.586,1.414A2,2,0,0,1,22,16.679Z" stroke="none"/><path d="M 24.00000190734863 14.67900276184082 C 24.55300140380859 14.67900276184082 25.05100250244141 14.90200233459473 25.41400146484375 15.26400184631348 C 25.77700233459473 15.62700271606445 26.00000190734863 16.12600326538086 26.00000190734863 16.67900276184082 C 26.00000190734863 17.23200225830078 25.77700233459473 17.73000335693359 25.41400146484375 18.09300231933594 C 25.05100250244141 18.45500183105469 24.55300140380859 18.67900276184082 24.00000190734863 18.67900276184082 C 23.44700241088867 18.67900276184082 22.94900131225586 18.45500183105469 22.58600234985352 18.09300231933594 C 22.22400283813477 17.73000335693359 22.00000190734863 17.23200225830078 22.00000190734863 16.67900276184082 C 22.00000190734863 16.12600326538086 22.22400283813477 15.62700271606445 22.58600234985352 15.26400184631348 C 22.94900131225586 14.90200233459473 23.44700241088867 14.67900276184082 24.00000190734863 14.67900276184082 Z" stroke="none" fill="#000"/></g><g transform="translate(4 -8)"><path d="M0,0A2,2,0,0,1,2,2,2,2,0,0,1,0,4" transform="translate(7.002 17.81) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><g transform="translate(-14.998 -3.869)" fill="none" stroke-miterlimit="10"><path d="M22,16.679a2,2,0,1,1,.586,1.414A2,2,0,0,1,22,16.679Z" stroke="none"/><path d="M 24.00000190734863 14.67900276184082 C 24.55300140380859 14.67900276184082 25.05100250244141 14.90200233459473 25.41400146484375 15.26400184631348 C 25.77700233459473 15.62700271606445 26.00000190734863 16.12600326538086 26.00000190734863 16.67900276184082 C 26.00000190734863 17.23200225830078 25.77700233459473 17.73000335693359 25.41400146484375 18.09300231933594 C 25.05100250244141 18.45500183105469 24.55300140380859 18.67900276184082 24.00000190734863 18.67900276184082 C 23.44700241088867 18.67900276184082 22.94900131225586 18.45500183105469 22.58600234985352 18.09300231933594 C 22.22400283813477 17.73000335693359 22.00000190734863 17.23200225830078 22.00000190734863 16.67900276184082 C 22.00000190734863 16.12600326538086 22.22400283813477 15.62700271606445 22.58600234985352 15.26400184631348 C 22.94900131225586 14.90200233459473 23.44700241088867 14.67900276184082 24.00000190734863 14.67900276184082 Z" stroke="none" fill="#000"/></g></g><g transform="translate(-4 -8)"><path d="M0,0A2,2,0,0,1,2,2,2,2,0,0,1,0,4" transform="translate(7.002 17.81) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><g transform="translate(-14.998 -3.869)" fill="none" stroke-miterlimit="10"><path d="M22,16.679a2,2,0,1,1,.586,1.414A2,2,0,0,1,22,16.679Z" stroke="none"/><path d="M 24.00000190734863 14.67900276184082 C 24.55300140380859 14.67900276184082 25.05100250244141 14.90200233459473 25.41400146484375 15.26400184631348 C 25.77700233459473 15.62700271606445 26.00000190734863 16.12600326538086 26.00000190734863 16.67900276184082 C 26.00000190734863 17.23200225830078 25.77700233459473 17.73000335693359 25.41400146484375 18.09300231933594 C 25.05100250244141 18.45500183105469 24.55300140380859 18.67900276184082 24.00000190734863 18.67900276184082 C 23.44700241088867 18.67900276184082 22.94900131225586 18.45500183105469 22.58600234985352 18.09300231933594 C 22.22400283813477 17.73000335693359 22.00000190734863 17.23200225830078 22.00000190734863 16.67900276184082 C 22.00000190734863 16.12600326538086 22.22400283813477 15.62700271606445 22.58600234985352 15.26400184631348 C 22.94900131225586 14.90200233459473 23.44700241088867 14.67900276184082 24.00000190734863 14.67900276184082 Z" stroke="none" fill="#000"/></g></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(18.75 10.5) rotate(90)"><ellipse cx="2" cy="2" rx="2" ry="2" transform="translate(-0.5 -1.25)"/><ellipse cx="2" cy="2" rx="2" ry="2" transform="translate(-0.5 4.75)"/><ellipse cx="2" cy="2" rx="2" ry="2" transform="translate(-0.5 10.75)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(10.5 5.25)"><ellipse cx="2" cy="2" rx="2" ry="2" transform="translate(-0.5 -1.25)"/><ellipse cx="2" cy="2" rx="2" ry="2" transform="translate(-0.5 4.75)"/><ellipse cx="2" cy="2" rx="2" ry="2" transform="translate(-0.5 10.75)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(9.75 9)"><path d="M14,13l-4,.041v9.6C10,24.052,10.759,25,12,25a1.773,1.773,0,0,0,2-2V9H28V23s.317,2-2,2H12" transform="translate(-16.75 -13)" fill="none" stroke="#000" stroke-width="2"/><line x2="3" transform="translate(1.25 8)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="6" transform="translate(1.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="6" transform="translate(1.25 4)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(4.883 7)"><rect width="8" height="4" rx="0.5" transform="translate(7.117 -1.998)" fill="none" stroke="#000" stroke-width="2"/><rect width="8" height="4" rx="0.5" transform="translate(7.117 8)" fill="none" stroke="#000" stroke-width="2"/><path d="M812.988,73.812h.944V70.946L812.9,71.2v-.976l2.165-.5v4.091h.835v.909h-2.911Z" transform="translate(-813.783 -71.721)"/><path d="M812.708,80.3a1.333,1.333,0,0,1,.858-1.385l.908-.456a.481.481,0,0,0,.271-.514v-.263c0-.257-.109-.373-.338-.373h-.44c-.231,0-.341.112-.341.373v.533h-.93v-.479a1.2,1.2,0,0,1,1.318-1.384h.341a1.2,1.2,0,0,1,1.317,1.367v.264a1.322,1.322,0,0,1-.857,1.368l-.9.458a.446.446,0,0,0-.279.456v.16H815.7v.926h-2.988Z" transform="translate(-813.58 -68.35)"/></g></svg>
|