@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="none"/><g transform="translate(3.75 3.75)"><line x2="8" transform="translate(4.25 4.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x2="5" transform="translate(4.25 8.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><g transform="translate(-0.75 -0.75)" fill="none" stroke="#000" stroke-width="2"><rect width="18" height="18" rx="2" stroke="none"/><rect x="1" y="1" width="16" height="16" rx="1" fill="none"/></g><path d="M5.031,25.873c2.65,0,4-4,4-4l10,3.945-14,.055Z" transform="translate(-3.781 -9.623)" 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 0.75)"><g transform="translate(2.5 5.25)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="10" height="8" rx="3" stroke="none"/><rect x="1" y="1" width="8" height="6" rx="2" fill="none"/></g><path d="M259.1,8V6.7a1.869,1.869,0,0,1,2-1.7h0a1.869,1.869,0,0,1,2,1.7V8" transform="translate(-253.595 -2.75)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g><g transform="translate(-7.014 7)"><line y2="5" transform="translate(13.014 9)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="4" y2="2.5" transform="translate(11.014 10.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="4" y1="2.5" transform="translate(11.014 10.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g><g transform="translate(-1.014 7)"><line y2="5" transform="translate(13.014 9)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="4" y2="2.5" transform="translate(11.014 10.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="4" y1="2.5" transform="translate(11.014 10.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g><g transform="translate(4.986 7)"><line y2="5" transform="translate(13.014 9)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="4" y2="2.5" transform="translate(11.014 10.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="4" y1="2.5" transform="translate(11.014 10.25)" fill="none" stroke="#000" stroke-linecap="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="none"/><g transform="translate(4.949 5.924)"><line x2="5" transform="translate(3.05 11.074)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="12" transform="translate(3.05 6.075)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="8" transform="translate(3.05 1.076)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M812.943,72.176h.472v-1.72l-.516.151v-.585l1.083-.3v2.455h.417v.545h-1.456Z" transform="translate(-813.848 -70.645)" stroke="rgba(0,0,0,0)" stroke-width="1"/><path d="M812.7,78.718a.824.824,0,0,1,.429-.831l.454-.274c.1-.063.135-.14.135-.308v-.158c0-.154-.055-.224-.169-.224h-.22c-.116,0-.171.067-.171.224v.32H812.7V77.18c0-.558.235-.83.659-.83h.171c.427,0,.658.276.658.82v.159a.816.816,0,0,1-.428.821l-.452.275a.277.277,0,0,0-.139.274v.1H814.2v.556H812.7Z" transform="translate(-813.645 -72.273)" stroke="rgba(0,0,0,0)" stroke-width="1"/><path d="M814.187,85.026v.09c0,.545-.225.817-.649.817h-.2c-.425,0-.65-.271-.65-.806v-.242h.456v.276c0,.14.057.21.169.21h.245c.111,0,.17-.073.17-.22v-.257c0-.142-.05-.215-.158-.215h-.363v-.519h.337c.107,0,.157-.07.157-.214v-.236c0-.145-.057-.215-.165-.215h-.206c-.107,0-.163.068-.163.205v.251h-.458v-.216c0-.533.224-.8.648-.8h.157c.423,0,.647.269.647.817v.074c0,.314-.118.531-.344.59C814.063,84.458,814.187,84.7,814.187,85.026Z" transform="translate(-813.637 -73.855)" stroke="rgba(0,0,0,0)" 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.998 3.365)"><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.852)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M70.452,11.373l2-2h3l3-3" transform="translate(-65.45 -2.738)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" 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.635) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><g transform="translate(-14.998 -4.044)" 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></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 6)"><line x2="14" transform="translate(0 0)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="10" transform="translate(0 4)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="7" transform="translate(0 8)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="3" transform="translate(0 12)" 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 6)"><line x2="14" transform="translate(0 12)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="10" transform="translate(0 8)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="7" transform="translate(0 4)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="3" 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.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"/><line x2="2" transform="translate(9.5 4.75)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="2" transform="translate(9.5 8.75)" 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(9 5)"><line y2="14" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y2="14" transform="translate(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(3.6 8.049)"><line x1="8" transform="translate(9.4 -0.049)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x1="8" transform="translate(9.4 3.95)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x1="18" transform="translate(-0.6 8.951)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><rect width="6" height="6" transform="translate(-0.6 -1.049)" 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(5.42 2)"><g transform="translate(-0.42)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="14" height="20" rx="2.999" stroke="none"/><rect x="1" y="1" width="12" height="18" rx="1.999" fill="none"/></g><circle cx="2" cy="2" r="2" transform="translate(4.58 13)"/><rect width="6" height="3" rx="1" transform="translate(3.58)"/></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(-16707 -19833)"><path d="M 16719.001953125 19853.53515625 C 16718.345703125 19852.80859375 16717.32421875 19851.611328125 16716.322265625 19850.177734375 C 16713.576171875 19846.263671875 16713 19843.5703125 16713 19842 C 16713 19838.69140625 16715.693359375 19835.998046875 16719.001953125 19835.998046875 C 16722.310546875 19835.998046875 16725.001953125 19838.69140625 16725.001953125 19842 C 16725.001953125 19843.5703125 16724.42578125 19846.263671875 16721.68359375 19850.1796875 C 16720.681640625 19851.609375 16719.658203125 19852.80859375 16719.001953125 19853.53515625 Z M 16719.001953125 19838 C 16716.796875 19838 16715.001953125 19839.794921875 16715.001953125 19842 C 16715.001953125 19844.205078125 16716.796875 19846 16719.001953125 19846 C 16721.20703125 19846 16723 19844.205078125 16723 19842 C 16723 19839.794921875 16721.20703125 19838 16719.001953125 19838 Z" stroke="none"/><path d="M 16719.001953125 19852.015625 C 16719.556640625 19851.357421875 16720.216796875 19850.53125 16720.86328125 19849.607421875 C 16722.88671875 19846.716796875 16724.001953125 19844.015625 16724.001953125 19842 C 16724.001953125 19839.2421875 16721.759765625 19836.998046875 16719.001953125 19836.998046875 C 16716.244140625 19836.998046875 16714 19839.2421875 16714 19842 C 16714 19844.015625 16715.115234375 19846.71484375 16717.140625 19849.603515625 C 16717.7890625 19850.53125 16718.447265625 19851.359375 16719.001953125 19852.015625 M 16719.001953125 19837 C 16721.7578125 19837 16724 19839.2421875 16724 19842 C 16724 19844.7578125 16721.7578125 19847 16719.001953125 19847 C 16716.244140625 19847 16714.001953125 19844.7578125 16714.001953125 19842 C 16714.001953125 19839.2421875 16716.244140625 19837 16719.001953125 19837 M 16719.001953125 19855 L 16719.001953125 19854.998046875 C 16718.984375 19854.98046875 16717.224609375 19853.21484375 16715.501953125 19850.75 C 16713.904296875 19848.47265625 16712 19845.10546875 16712 19842 C 16712 19838.138671875 16715.140625 19834.998046875 16719.001953125 19834.998046875 C 16722.861328125 19834.998046875 16726.001953125 19838.138671875 16726.001953125 19842 C 16726.001953125 19845.1015625 16724.099609375 19848.47265625 16722.501953125 19850.75390625 C 16720.783203125 19853.208984375 16719.01953125 19854.98046875 16719.001953125 19854.998046875 L 16719.001953125 19855 Z M 16719.001953125 19839 C 16717.34765625 19839 16716.001953125 19840.345703125 16716.001953125 19842 C 16716.001953125 19843.654296875 16717.34765625 19845 16719.001953125 19845 C 16720.65625 19845 16722 19843.654296875 16722 19842 C 16722 19840.345703125 16720.65625 19839 16719.001953125 19839 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(9 6)" fill="none" stroke="#000" 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(5 2)" fill="none"><path d="M7,0a7,7,0,0,1,7,7c0,6.009-7,13-7,13S0,13.005,0,7A7,7,0,0,1,7,0Z" stroke="none"/><path d="M 7 2 C 4.242989540100098 2 2 4.242989540100098 2 7 C 2 9.029939651489258 3.072680473327637 11.64173030853271 5.102089881896973 14.55300998687744 C 5.767276763916016 15.5072546005249 6.438339710235596 16.35145568847656 7.000837802886963 17.01765441894531 C 7.55104923248291 16.36596488952637 8.206266403198242 15.54201602935791 8.861770629882812 14.60598945617676 C 10.91481971740723 11.67432975769043 12 9.044219970703125 12 7 C 12 4.242989540100098 9.757009506225586 2 7 2 M 7 0 C 10.86598968505859 0 14 3.134010314941406 14 7 C 14 13.0086498260498 7 20 7 20 C 7 20 0 13.00533008575439 0 7 C 0 3.134010314941406 3.134010314941406 0 7 0 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(3 3)"><path d="M16.023,4.408l5.989,18-17.966-6S2.753,4.408,16.023,4.408Z" transform="translate(-4.013 -4.408)" fill="rgba(0,0,0,0)" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M6.263,16.84a9.664,9.664,0,0,1,.016-2.2,9.591,9.591,0,0,1,.981-1.986,9.765,9.765,0,0,1,1.018-1.97A10.428,10.428,0,0,1,10.063,9.3a10.291,10.291,0,0,1,1.809-1.356,10.872,10.872,0,0,1,2.239-.506,10.571,10.571,0,0,1,2.247-.47" transform="translate(-4.586 -5.049)" fill="rgba(0,0,0,0)" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M6.938,21.2c.3-1.14,2.338-1.365,3.387-1a2.773,2.773,0,0,1,1.613,3" transform="translate(-3.938 -9.204)" fill="rgba(0,0,0,0)" stroke="#000" stroke-width="2"/><path d="M24.282,20.4c-.661.308-1.484-.321-1.839-1.4s-.106-2.21.555-2.518" transform="translate(-8.282 -7.476)" fill="rgba(0,0,0,0)" stroke="#000" stroke-width="2"/><path d="M16.439,12.729a1.885,1.885,0,0,0-2.578,2.58.627.627,0,0,0,.465.3.644.644,0,0,0,.539-.184l.144-.123.811,1.164L17.6,14.686l-1.166-.83.123-.127a.645.645,0,0,0,.184-.54.626.626,0,0,0-.3-.464Z" transform="translate(-6.604 -7.47)"/></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(22 3) rotate(90)" fill="none"><path d="M7.257,3.1a2,2,0,0,1,3.486,0l5.58,9.921A2,2,0,0,1,14.58,16H3.42a2,2,0,0,1-1.743-2.981Z" stroke="none"/><path d="M 9 4.07945728302002 L 9.000000953674316 4.079455375671387 L 3.41969108581543 13.99999618530273 L 14.58030128479004 13.99999618530273 L 9.00001049041748 4.079475402832031 C 9.000007629394531 4.079469680786133 9.000003814697266 4.079463005065918 9 4.07945728302002 M 9.000000953674316 2.079461097717285 C 9.680423736572266 2.079461097717285 10.3608455657959 2.419285774230957 10.74315071105957 3.098936080932617 L 16.32345008850098 13.01947593688965 C 17.07339096069336 14.35268592834473 16.10996055603027 15.99999618530273 14.58030128479004 15.99999618530273 L 3.41969108581543 15.99999618530273 C 1.890041351318359 15.99999618530273 0.9266109466552734 14.35268592834473 1.676540374755859 13.01947593688965 L 7.256851196289062 3.098936080932617 C 7.639156341552734 2.419285774230957 8.319578170776367 2.079461097717285 9.000000953674316 2.079461097717285 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(-17897.998 -20480)" fill="none"><path d="M17902,20499a2,2,0,0,1-2-2v-7a2,2,0,0,1,2-2v-1a2,2,0,0,1,2-2h3a2,2,0,0,1,2,2v1h2v-1a2,2,0,0,1,2-2h3a2,2,0,0,1,2,2v1a2,2,0,0,1,2,2v7a2,2,0,0,1-2,2Z" stroke="none"/><path d="M 17918 20497 L 17918 20490.001953125 L 17916 20490.001953125 L 17916 20487.001953125 C 17916 20487.001953125 17915.998046875 20487.001953125 17915.998046875 20487.001953125 L 17912.998046875 20487.001953125 L 17912.998046875 20490.001953125 L 17907.001953125 20490.001953125 L 17907.001953125 20487.001953125 C 17907.001953125 20487.001953125 17907 20487.001953125 17907 20487.001953125 L 17904.001953125 20487.001953125 C 17904.001953125 20487.001953125 17904 20487.001953125 17904 20487.001953125 L 17904 20488.001953125 L 17903.99609375 20490.00390625 L 17901.998046875 20490.00390625 L 17902 20497 L 17918 20497 M 17918 20499 L 17902 20499 C 17900.89453125 20499 17899.998046875 20498.10546875 17899.998046875 20497 L 17899.998046875 20489.998046875 C 17899.998046875 20488.896484375 17900.89453125 20488.001953125 17902 20488.001953125 L 17902 20486.998046875 C 17902 20485.892578125 17902.89453125 20485.001953125 17904.001953125 20485.001953125 L 17907 20485.001953125 C 17908.107421875 20485.001953125 17909.001953125 20485.892578125 17909.001953125 20486.998046875 L 17909.001953125 20488.001953125 L 17910.998046875 20488.001953125 L 17910.998046875 20486.998046875 C 17910.998046875 20485.892578125 17911.892578125 20485.001953125 17912.998046875 20485.001953125 L 17915.998046875 20485.001953125 C 17917.103515625 20485.001953125 17918 20485.892578125 17918 20486.998046875 L 17918 20488.001953125 C 17919.10546875 20488.001953125 17920 20488.896484375 17920 20489.998046875 L 17920 20497 C 17920 20498.10546875 17919.10546875 20499 17918 20499 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.25 5.25)"><g transform="translate(-1.25 -1.25)" fill="none" stroke="#000" stroke-width="2"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7" fill="none"/></g><g transform="translate(3.75 3.75)" stroke="#000" stroke-width="1"><circle cx="3" cy="3" r="3" stroke="none"/><circle cx="3" cy="3" r="2.5" 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 4.439)"><g transform="translate(-4 -7.016)" fill="none" stroke-miterlimit="10"><path d="M20.553,10.577H5.5a1.524,1.524,0,0,0-1.5,1.5v7a1.5,1.5,0,0,0,1.5,1.5H7v1.5a1.527,1.527,0,0,0,1.5,1.5H17.5a1.525,1.525,0,0,0,1.5-1.5v-1.5h1.5a1.526,1.526,0,0,0,1.5-1.5V12.066A1.469,1.469,0,0,0,20.553,10.577Z" stroke="none"/><path d="M 6 12.57619857788086 L 6 18.576171875 L 9 18.576171875 L 9 21.576171875 L 17 21.576171875 L 17 18.576171875 L 20 18.576171875 L 20 12.57697105407715 L 6 12.57619857788086 M 5.5 10.576171875 L 20.55324935913086 10.57700157165527 C 21.35200119018555 10.57700157165527 22 11.24410247802734 22 12.06639099121094 L 22 19.07226181030273 C 22 19.89533233642578 21.29874992370605 20.576171875 20.5 20.576171875 L 19 20.576171875 L 19 22.076171875 C 19 22.89383316040039 18.29912948608398 23.576171875 17.50487899780273 23.576171875 L 8.4970703125 23.576171875 C 7.70281982421875 23.576171875 7 22.89383316040039 7 22.076171875 L 7 20.576171875 L 5.5 20.576171875 C 4.6650390625 20.57422256469727 4 19.89923095703125 4 19.076171875 L 4 12.076171875 C 4 11.25388145446777 4.701250076293945 10.576171875 5.5 10.576171875 Z" stroke="none" fill="#000"/></g><g transform="translate(-4.635 -7.424)" fill="none" stroke-miterlimit="10"><path d="M7.635,16.984h12V22.7a1.333,1.333,0,0,1-1.375,1.287H9.01A1.333,1.333,0,0,1,7.635,22.7Z" stroke="none"/><path d="M 9.635000228881836 18.98400115966797 L 9.635000228881836 21.98361968994141 L 17.63500022888184 21.98361968994141 L 17.63500022888184 18.98400115966797 L 9.635000228881836 18.98400115966797 M 7.635000228881836 16.98400115966797 L 19.63500022888184 16.98400115966797 L 19.63500022888184 22.69699096679688 C 19.63500022888184 23.40776062011719 19.01958084106445 23.98361968994141 18.25997924804688 23.98361968994141 L 9.010009765625 23.98361968994141 C 8.250419616699219 23.98361968994141 7.635000228881836 23.40776062011719 7.635000228881836 22.69699096679688 L 7.635000228881836 16.98400115966797 Z" stroke="none" fill="#000"/></g><line x2="2" transform="translate(11 7.561)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(5 -0.439)"><path d="M20.627,6.587h-2v-2Z" transform="translate(-12.626 -4.589)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><path d="M10.726,9.587V5.782a1.2,1.2,0,0,1,1.21-1.195h4.912L18.726,6.4V9.587" transform="translate(-10.726 -4.587)" fill="none" stroke="#000" 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(3.938 3.375)"><g transform="translate(9.063 -0.375)"><line x2="6" transform="translate(2 3)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y2="6" transform="translate(5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g><g transform="translate(2555.002 -910)" fill="rgba(0,0,0,0)"><path d="M -2550.939453125 922.6259155273438 C -2552.281494140625 922.6259155273438 -2553.527587890625 921.957275390625 -2554.27294921875 920.8372802734375 L -2554.439453125 920.5870971679688 L -2554.716064453125 920.4701538085938 C -2555.458251953125 920.156494140625 -2555.937744140625 919.4327392578125 -2555.937744140625 918.6264038085938 C -2555.937744140625 917.81884765625 -2555.4580078125 917.0952758789062 -2554.7158203125 916.7821044921875 L -2554.4384765625 916.6650390625 L -2554.271728515625 916.4142456054688 C -2553.527099609375 915.2939453125 -2552.28125 914.6251220703125 -2550.939453125 914.6251220703125 C -2549.595458984375 914.6251220703125 -2548.348388671875 915.2942504882812 -2547.603515625 916.4151000976562 L -2547.437255859375 916.6654663085938 L -2547.160400390625 916.7825927734375 C -2546.41845703125 917.0964965820312 -2545.93896484375 917.8198852539062 -2545.93896484375 918.6255493164062 C -2545.93896484375 919.43212890625 -2546.41845703125 920.155517578125 -2547.16064453125 920.4694213867188 L -2547.4375 920.5864868164062 L -2547.60400390625 920.8367919921875 C -2548.348876953125 921.9570922851562 -2549.595703125 922.6259155273438 -2550.939453125 922.6259155273438 Z" stroke="none"/><path d="M -2550.939453125 921.6259155273438 C -2549.931396484375 921.6259155273438 -2548.99560546875 921.1239624023438 -2548.436767578125 920.283203125 L -2548.10400390625 919.7825317382812 L -2547.55029296875 919.5484008789062 C -2547.178955078125 919.391357421875 -2546.93896484375 919.0294189453125 -2546.93896484375 918.6255493164062 C -2546.93896484375 918.2225341796875 -2547.1787109375 917.860595703125 -2547.550048828125 917.70361328125 L -2548.103759765625 917.4693603515625 L -2548.4365234375 916.9686279296875 C -2548.99560546875 916.1273193359375 -2549.93115234375 915.6251220703125 -2550.939453125 915.6251220703125 C -2551.945556640625 915.6251220703125 -2552.880126953125 916.1270751953125 -2553.43896484375 916.9678344726562 L -2553.772216796875 917.4693603515625 L -2554.3271484375 917.7034301757812 C -2554.697998046875 917.8599243164062 -2554.937744140625 918.2218627929688 -2554.937744140625 918.6264038085938 C -2554.937744140625 919.030029296875 -2554.697998046875 919.3921508789062 -2554.326904296875 919.5490112304688 L -2553.773193359375 919.7830200195312 L -2553.4404296875 920.2833251953125 C -2552.881103515625 921.1240234375 -2551.946044921875 921.6259155273438 -2550.939453125 921.6259155273438 M -2550.939453125 923.6259155273438 C -2552.67822265625 923.6259155273438 -2554.208984375 922.738525390625 -2555.10546875 921.3912353515625 C -2556.182861328125 920.9358520507812 -2556.937744140625 919.8702392578125 -2556.937744140625 918.6264038085938 L -2556.937744140625 918.6255493164062 C -2556.937744140625 917.3826293945312 -2556.181884765625 916.3152465820312 -2555.1044921875 915.8607177734375 C -2554.208984375 914.513427734375 -2552.67822265625 913.6251220703125 -2550.939453125 913.6251220703125 C -2549.19873046875 913.6251220703125 -2547.66650390625 914.5137329101562 -2546.770751953125 915.8616333007812 C -2545.6943359375 916.3170166015625 -2544.93896484375 917.3829345703125 -2544.93896484375 918.6255493164062 L -2544.93896484375 918.6264038085938 C -2544.93896484375 919.8690795898438 -2545.694580078125 920.9351196289062 -2546.771240234375 921.3904418945312 C -2547.6669921875 922.7378540039062 -2549.198974609375 923.6259155273438 -2550.939453125 923.6259155273438 Z" stroke="none" fill="#000"/></g><path d="M-2,6A4,4,0,0,1,6,6" transform="translate(2.063 12.625)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><g transform="translate(-1.938 5.625)" fill="none" stroke="#000" stroke-width="2"><rect width="6" height="6.001" rx="3" stroke="none"/><rect x="1" y="1" width="4" height="4.001" rx="2" fill="none"/></g><g transform="translate(4.063 5.625)" fill="none" stroke="#000" stroke-width="2"><rect width="6" height="6.001" rx="3" stroke="none"/><rect x="1" y="1" width="4" height="4.001" 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"/><path d="M-2425,927a4.963,4.963,0,0,1-4-2,3,3,0,0,0,3-3,3,3,0,0,0-3-3,4.963,4.963,0,0,1,4-2,4.964,4.964,0,0,1,4,2,3.006,3.006,0,0,0-3,3,3,3,0,0,0,3,3A4.958,4.958,0,0,1-2425,927Z" transform="translate(2437 -913)" fill="rgba(0,0,0,0)" stroke="#000" stroke-width="2"/><path d="M0,0A6,6,0,0,1,6,6a6,6,0,0,1-6,6" transform="translate(6 22) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><g transform="translate(4 5)" fill="rgba(0,0,0,0)" stroke="#000" stroke-width="2"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="3" fill="none"/></g><g transform="translate(12 5)" fill="none" stroke="#000" stroke-width="2"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="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(5 5)"><path d="M22.486,14.137c-2.283-1.92-4.212-1.7-5.044-1.466a.818.818,0,0,1-.806-.206L12.921,8.751a.816.816,0,0,1-.24-.574l0-1.006A.4.4,0,0,0,12,6.892L6.892,12a.4.4,0,0,0,.279.68l1.006,0a.816.816,0,0,1,.574.239l3.715,3.715a.818.818,0,0,1,.206.806c-.235.832-.454,2.762,1.466,5.044a.823.823,0,0,0,1.207.049l7.191-7.191A.823.823,0,0,0,22.486,14.137Z" transform="translate(-7.775 -7.775)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><line x2="3" y2="3" transform="translate(12 12)" 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" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 24 24"><defs><clipPath id="a"><rect width="17.997" height="17.996" transform="translate(0 0)" fill="none" stroke="#000" stroke-width="1"/></clipPath></defs><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(3 3)"><g clip-path="url(#a)"><path d="M8.955,4.786,7.143,2.975A.821.821,0,0,1,6.9,2.4V1.395a.4.4,0,0,0-.681-.279L1.114,6.224a.4.4,0,0,0,.279.68H2.4a.808.808,0,0,1,.574.239L4.786,8.955" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><path d="M7.249,14.976A7.548,7.548,0,0,0,8.36,16.707a.822.822,0,0,0,1.16.092.63.63,0,0,0,.047-.043l7.191-7.191a.824.824,0,0,0,0-1.164l-.045-.041a7.552,7.552,0,0,0-1.732-1.111" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/></g><line x2="3" y2="3" transform="translate(14 14)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y1="16" x2="16" 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="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(-1.375 -1.375)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="6" height="6" rx="2" stroke="none"/><rect x="1" y="1" width="4" height="4" rx="1" fill="none"/></g><g transform="translate(-1.375 12.625)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="6" height="6" rx="2" stroke="none"/><rect x="1" y="1" width="4" height="4" rx="1" fill="none"/></g><g transform="translate(12.625 -1.375)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="6" height="6" rx="2" stroke="none"/><rect x="1" y="1" width="4" height="4" rx="1" fill="none"/></g><path d="M128.927,78h8v2" transform="translate(-129.302 -69.375)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="5" transform="translate(8.625 -0.375)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M138.927,85.75v2h4v-6" transform="translate(-131.302 -70.125)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M143.5,78h4v3" transform="translate(-129.875 -69.375)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M147.5,85.5v2h2" transform="translate(-69.875 165.125) 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)"><circle cx="10" cy="10" r="10"/><path d="M10.943,9.781a4.15,4.15,0,0,1,5.25-2.444,4.005,4.005,0,0,1,2.75,3.777c0,2.665-4.116,4-4.116,4" transform="translate(-4.943 -3.11)" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y1="1" transform="translate(10 16)" 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(-0.999 -0.999)"><g transform="translate(3 2.999)" 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 5)"><path d="M20.833,10.7H11.87a5.011,5.011,0,0,0-5.036,4.986v.027A5.011,5.011,0,0,0,11.87,20.7h3.981" transform="translate(-6.834 -7.7)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M6.127,7.285l3,3-3,3" transform="translate(6.873 -7.285)" 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.75)"><g transform="translate(-1 3)"><line x2="2" y2="2" transform="translate(3 1.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><circle cx="1" cy="1" r="1" transform="translate(1 -0.75)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g><g transform="translate(7 1)"><line y2="2" transform="translate(2 2.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><circle cx="1" cy="1" r="1" transform="translate(1 -0.75)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g><g transform="translate(14 2.25)"><line x1="2" y2="2" transform="translate(0 2)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><circle cx="1" cy="1" r="1" transform="translate(2)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g><path d="M0,0A3,3,0,0,1,3,3,3,3,0,0,1,0,6" transform="translate(6 18.25) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><g transform="translate(6 8.25)" fill="none" stroke="#000" stroke-width="2"><rect width="6.001" height="6.001" rx="3" stroke="none"/><rect x="1" y="1" width="4.001" height="4.001" 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.625 5.101)"><path d="M18.732,20.754A6.869,6.869,0,0,1,13.652,23a6.96,6.96,0,0,1-6.92-7" transform="translate(-4.357 -9.101)" fill="none" stroke="#000" stroke-width="1"/><path d="M9.767,8.549a7.252,7.252,0,0,1,4.826-1.82,7.089,7.089,0,0,1,7.174,7" transform="translate(-5.392 -6.83)" fill="none" stroke="#000" stroke-width="1"/><path d="M7.5,16.387l-2-2-2,2" transform="translate(-3.125 -8.488)" fill="none" stroke="#000" stroke-width="1"/><path d="M22.047,14.387l2,2,2-2" transform="translate(-7.672 -8.488)" fill="none" stroke="#000" 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.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><line x2="10" transform="translate(4.75 9.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"/><line x2="16" transform="translate(4 12)" 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(-60 3)"><line x2="16" transform="translate(64 11)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="16" transform="translate(64 7)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M73.813,4.868l-2-2-2,2" transform="translate(0.188 -1.867)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M73.813,4.868l-2-2-2,2" transform="translate(143.813 19.867) rotate(180)" 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(5.25 3.75)"><path d="M-351,67l3,3-3,3" transform="translate(362.75 -66.75)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-348,73l-3-3,3-3" transform="translate(349.75 -56.75)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-365,75V73a2.184,2.184,0,0,1,2.332-2H-351" transform="translate(363.75 -67.75)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-351,71v2a2.184,2.184,0,0,1-2.332,2H-365" transform="translate(365.75 -61.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(0 1)"><g transform="translate(-17430 -18770.998)" fill="none"><path d="M17434,18791a2,2,0,0,1-2-2v-12.732c0-1.133.859-2.26,1.717-2.264l6-.006.834.006,1.379,2.264H17450a2,2,0,0,1,2,2V18789a2,2,0,0,1-2,2Z" stroke="none"/><path d="M 17450 18789 C 17450 18789 17450 18789 17450 18789 L 17450.001953125 18778.26953125 C 17450 18778.26953125 17450 18778.267578125 17450 18778.267578125 L 17440.8046875 18778.267578125 L 17440.21875 18777.30859375 L 17439.421875 18775.998046875 L 17434.076171875 18776.00390625 C 17434.033203125 18776.083984375 17433.998046875 18776.18359375 17433.998046875 18776.267578125 L 17433.99609375 18788.998046875 C 17433.998046875 18788.998046875 17433.998046875 18789 17433.998046875 18789 L 17450 18789 M 17450 18791 L 17433.998046875 18791 C 17432.89453125 18791 17431.998046875 18790.103515625 17431.998046875 18789 L 17431.998046875 18778.267578125 C 17431.998046875 18777.5859375 17431.998046875 18776.80078125 17431.998046875 18776.267578125 C 17431.998046875 18775.134765625 17432.857421875 18774.0078125 17433.71484375 18774.00390625 L 17439.71484375 18773.998046875 L 17440.548828125 18774.00390625 L 17441.927734375 18776.267578125 L 17450 18776.267578125 C 17451.103515625 18776.267578125 17452 18777.1640625 17452 18778.267578125 L 17452 18789 C 17452 18790.103515625 17451.103515625 18791 17450 18791 Z" stroke="none" fill="#000"/></g><g transform="translate(9.25 2)"><path d="M0,0,2,2,4,0" transform="translate(7.75 11) rotate(180)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="4" transform="translate(5.75 10)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="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(3.5 3.5)"><path d="M1223.935,8.963a4.163,4.163,0,0,1-2.866,2.866m0-8a4.165,4.165,0,0,1,2.866,2.868m-8,0a4.166,4.166,0,0,1,2.866-2.867m0,8a4.161,4.161,0,0,1-2.868-2.866" transform="translate(-1211.435 0.669)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><path d="M1225.807,8.7c-.518,3.465-2.1,4.465-5,5m0-14a5.77,5.77,0,0,1,5,5m-14,0a5.777,5.777,0,0,1,5-5m0,14a5.629,5.629,0,0,1-5-5" transform="translate(-1210.308 1.803)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><rect width="4" height="5" rx="1.333" transform="translate(6.5 12.5)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><rect width="5" height="4" rx="1.333" transform="translate(12.5 6.5)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><rect width="5" height="4" rx="1.333" transform="translate(-0.5 6.5)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><rect width="4" height="5" rx="1.333" transform="translate(6.5 -0.5)" 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.4 4.799)"><path d="M-2871.324,225.505v-4h-4" transform="translate(2889.925 -221.306)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-2875.273,239.905h4v-4" transform="translate(2889.873 -225.703)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-2892.122,221.558h-4v4" transform="translate(2896.722 -221.358)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-2896.071,235.958v4h4" transform="translate(2896.67 -225.755)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-2891.2,234.307h3.877v-1.243h-1.211v-6.757l-2.789.824v1.333l1.494-.461v5.062h-1.371Z" transform="translate(2894.921 -223.106)"/><path d="M-2891.2,234.307h3.877v-1.243h-1.211v-6.757l-2.789.824v1.333l1.494-.461v5.062h-1.371Z" transform="translate(2902.919 -223.106)"/><path d="M-2884.119,229.37h1v-1.463h-1Zm0,3.537h1v-1.464h-1Z" transform="translate(2892.719 -223.205)"/></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.2 4.199)"><path d="M-2075.62,160.412l-2-2-2,2" transform="translate(2085.42 -155.611)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-2079.594,167.06l2,2,2-2" transform="translate(2085.393 -156.257)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x2="16" transform="translate(-0.2 -1.199)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="16" transform="translate(-0.2 16.801)" 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(19.801 4.2) rotate(90)"><path d="M-2075.62,160.412l-2-2-2,2" transform="translate(2085.42 -155.611)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-2079.594,167.06l2,2,2-2" transform="translate(2085.393 -156.257)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x2="16" transform="translate(-0.2 -1.199)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="16" transform="translate(-0.2 16.801)" 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.375 4.375)"><line x2="6" y2="6" transform="translate(10.625 10.625)" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(-1.375 -1.375)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="7" cy="7" r="7" stroke="none"/><circle cx="7" cy="7" r="6" 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.884 5.999)"><rect width="8" height="4" rx="0.5" transform="translate(7.117 -1.998)" 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 transform="translate(6.615 5.295)"><g transform="translate(0.5 3.705)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="8" height="6" rx="2" stroke="none"/><rect x="1" y="1" width="6" height="4" rx="1" fill="none"/></g><path d="M259.1,8V6.7a1.869,1.869,0,0,1,2-1.7h0a1.869,1.869,0,0,1,2,1.7V8" transform="translate(-256.595 -4.295)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="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(3.75 3.762)"><g transform="translate(-4.75 -4.778)" fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M11.985,21.016h2.029l.248-1.992.344-.095a6.075,6.075,0,0,0,1.436-.595l.311-.18,1.585,1.237,1.437-1.437-1.237-1.585.18-.312a6.093,6.093,0,0,0,.595-1.436l.095-.343L21,14.031V12l-1.991-.247-.095-.344a6.082,6.082,0,0,0-.6-1.436l-.18-.311,1.237-1.585L17.939,6.639,16.353,7.877l-.311-.18A6.087,6.087,0,0,0,14.607,7.1l-.344-.095-.248-1.991H11.985l-.248,1.991-.344.095A6.087,6.087,0,0,0,9.958,7.7l-.311.18L8.061,6.639,6.624,8.076,7.861,9.662l-.18.312a6.071,6.071,0,0,0-.6,1.435l-.095.345L5,12v2.03l1.991.248.095.344a6.071,6.071,0,0,0,.6,1.435l.18.312L6.624,17.955l1.437,1.437,1.585-1.237.311.18a6.087,6.087,0,0,0,1.436.595l.344.095Z" stroke="none"/><path d="M 14.01455116271973 21.01600074768066 L 14.26254081726074 19.02400016784668 L 14.60654067993164 18.92945098876953 C 15.11854076385498 18.78909111022949 15.60218048095703 18.58909034729004 16.04218101501465 18.33454132080078 L 16.35346031188965 18.15491104125977 L 17.93891143798828 19.39200019836426 L 19.37600135803223 17.95491027832031 L 18.1389102935791 16.36945152282715 L 18.31927108764648 16.05745124816895 C 18.57309150695801 15.61745071411133 18.7738208770752 15.13455104827881 18.91418075561523 14.6218204498291 L 19.00873184204102 14.27855110168457 L 21 14.03054046630859 L 21 12.00073051452637 L 19.00873184204102 11.75345039367676 L 18.91418075561523 11.40945053100586 C 18.7738208770752 10.89673042297363 18.57309150695801 10.41382122039795 18.31855010986328 9.973091125488281 L 18.1389102935791 9.661820411682129 L 19.37600135803223 8.076360702514648 L 17.93891143798828 6.639270782470703 L 16.35346031188965 7.877090930938721 L 16.04218101501465 7.696730613708496 C 15.60145092010498 7.442180633544922 15.11854076385498 7.242180824279785 14.60654067993164 7.101820945739746 L 14.26254081726074 7.007270812988281 L 14.01455116271973 5.016000747680664 L 11.98545074462891 5.016000747680664 L 11.73745059967041 7.007270812988281 L 11.39345073699951 7.101820945739746 C 10.88145065307617 7.242180824279785 10.39855098724365 7.442180633544922 9.957820892333984 7.696730613708496 L 9.646540641784668 7.877090930938721 L 8.061091423034668 6.639270782470703 L 6.624001026153564 8.076360702514648 L 7.861091136932373 9.661820411682129 L 7.681450843811035 9.973820686340332 C 7.426910877227783 10.41382122039795 7.226181030273438 10.89673042297363 7.085821151733398 11.40873050689697 L 6.991271018981934 11.75345039367676 L 5.000000953674316 12.00073051452637 L 5.000000953674316 14.03054046630859 L 6.991271018981934 14.27855110168457 L 7.085821151733398 14.62255096435547 C 7.226181030273438 15.13455104827881 7.426910877227783 15.61745071411133 7.681450843811035 16.05745124816895 L 7.861091136932373 16.36945152282715 L 6.624001026153564 17.95491027832031 L 8.061091423034668 19.39200019836426 L 9.646540641784668 18.15491104125977 L 9.957820892333984 18.33454132080078 C 10.39855098724365 18.58909034729004 10.88145065307617 18.78909111022949 11.39345073699951 18.92945098876953 L 11.73745059967041 19.02400016784668 L 11.98545074462891 21.01600074768066 L 14.01455116271973 21.01600074768066 M 14.01455116271973 23.01600074768066 L 11.98545074462891 23.01600074768066 C 10.97643089294434 23.01600074768066 10.12543106079102 22.26438140869141 10.00077056884766 21.26309013366699 L 9.909932136535645 20.53345108032227 C 9.896685600280762 20.52801704406738 9.883544921875 20.52258491516113 9.870335578918457 20.5170841217041 L 9.291431427001953 20.96879005432129 C 8.495281219482422 21.59001541137695 7.360940933227539 21.5202693939209 6.646881103515625 20.80621147155762 L 5.20979118347168 19.36912155151367 C 4.495730876922607 18.65507125854492 4.425991058349609 17.52073097229004 5.047201156616211 16.72458076477051 L 5.498655796051025 16.14599418640137 C 5.493119239807129 16.13271713256836 5.487592697143555 16.11936187744141 5.482123374938965 16.10604476928711 L 4.752810955047607 16.01521110534668 C 3.751560926437378 15.89050102233887 3.000000953674316 15.03953075408936 3.000000953674316 14.03054046630859 L 3.000000953674316 12.00073051452637 C 3.000000953674316 10.99147033691406 3.75196099281311 10.14035034179688 4.753530979156494 10.01598072052002 L 5.482071399688721 9.925509452819824 C 5.4875807762146 9.912097930908203 5.493123054504395 9.898709297180176 5.498701572418213 9.885335922241211 L 5.047201156616211 9.30669116973877 C 4.425991058349609 8.510540962219238 4.495730876922607 7.376200675964355 5.20979118347168 6.662150859832764 L 6.646881103515625 5.225060939788818 C 7.361090660095215 4.510840892791748 8.495732307434082 4.441249847412109 9.29188060760498 5.062830924987793 L 9.870174407958984 5.514326095581055 C 9.883441925048828 5.508800029754639 9.89667797088623 5.503329277038574 9.909982681274414 5.497870445251465 L 10.00078105926514 4.768820762634277 C 10.12548065185547 3.767570734024048 10.97646141052246 3.016000747680664 11.98545074462891 3.016000747680664 L 14.01455116271973 3.016000747680664 C 15.02354049682617 3.016000747680664 15.87452125549316 3.767570734024048 15.9992208480835 4.7688307762146 L 16.09000587463379 5.497793674468994 C 16.10333061218262 5.503259658813477 16.11660194396973 5.508744716644287 16.1298885345459 5.514277935028076 L 16.70812034606934 5.062830924987793 C 17.5042724609375 4.441251277923584 18.6389102935791 4.510839939117432 19.35312080383301 5.225060939788818 L 20.79021072387695 6.662150859832764 C 21.50427055358887 7.376200675964355 21.57401084899902 8.510540962219238 20.95280075073242 9.30669116973877 L 20.50129127502441 9.885348320007324 C 20.50686645507812 9.898724555969238 20.51239776611328 9.912091255187988 20.51790428161621 9.925505638122559 L 21.2464714050293 10.01598072052002 C 22.2480411529541 10.14035034179688 23 10.99147033691406 23 12.00073051452637 L 23 14.03054046630859 C 23 15.03953075408936 22.24844169616699 15.89050102233887 21.24719047546387 16.01521110534668 L 20.51790428161621 16.10604286193848 C 20.51242256164551 16.11939239501953 20.50691413879395 16.13270568847656 20.50136375427246 16.14601707458496 L 20.95280075073242 16.72458076477051 C 21.57401084899902 17.52073097229004 21.50427055358887 18.65507125854492 20.79021072387695 19.36912155151367 L 19.35312080383301 20.80621147155762 C 18.63906097412109 21.5202693939209 17.50472068786621 21.59000968933105 16.70857048034668 20.96879005432129 L 16.12980079650879 20.51719093322754 C 16.11654663085938 20.52270698547363 16.10334014892578 20.52816009521484 16.09004402160645 20.53361129760742 L 15.99923133850098 21.26308059692383 C 15.87457084655762 22.26438140869141 15.02358055114746 23.01600074768066 14.01455116271973 23.01600074768066 Z" stroke="none" fill="#000"/></g><circle cx="3" cy="3" r="3" transform="translate(5.25 5.238)" 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.207 3.75)"><g transform="translate(-0.207 5.25)" fill="none" stroke="#000" 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.793 11.25)" fill="none" stroke="#000" 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.793 -0.75)" fill="none" stroke="#000" 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><line x1="6" y1="4" transform="translate(4.793 9.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="6" y2="4" transform="translate(4.793 3.25)" 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"/><g transform="translate(3 4)" fill="none"><path d="M12.33,0a2,2,0,0,1,1.743,1.019l3.375,6a2,2,0,0,1,0,1.961l-3.375,6A2,2,0,0,1,12.33,16H5.67a2,2,0,0,1-1.743-1.019l-3.375-6a2,2,0,0,1,0-1.961l3.375-6A2,2,0,0,1,5.67,0Z" stroke="none"/><path d="M 5.669698715209961 2 L 2.294689178466797 8 L 5.669698715209961 14 L 12.33030891418457 14 L 15.70530891418457 8 L 12.33030891418457 2 L 5.669698715209961 2 M 5.669698715209961 0 L 12.33030891418457 0 C 13.05284881591797 0 13.71921920776367 0.3897199630737305 14.07345962524414 1.019479751586914 L 17.44845962524414 7.019479751586914 C 17.79091835021973 7.628299713134766 17.79091835021973 8.371700286865234 17.44845962524414 8.980520248413086 L 14.07345962524414 14.98052024841309 C 13.71921920776367 15.61028003692627 13.05284881591797 16 12.33030891418457 16 L 5.669698715209961 16 C 4.947149276733398 16 4.280778884887695 15.61028003692627 3.926539421081543 14.98052024841309 L 0.5515384674072266 8.980520248413086 C 0.2090797424316406 8.371689796447754 0.2090797424316406 7.628299713134766 0.5515384674072266 7.019479751586914 L 3.926548957824707 1.019479751586914 C 4.280778884887695 0.3897199630737305 4.947149276733398 0 5.669698715209961 0 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(2.988 2.25)"><path d="M0,0A3,3,0,0,1,3,3,3,3,0,0,1,0,6" transform="translate(6.012 19.75) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><g transform="translate(6.012 9.75)" fill="none" stroke="#000" stroke-width="2"><rect width="6.001" height="6.001" rx="3" stroke="none"/><rect x="1" y="1" width="4.001" height="4.001" rx="2" fill="none"/></g><rect width="5" height="5" rx="1" transform="translate(-0.988 3.75)"/><path d="M2.636,1.481a1,1,0,0,1,1.728,0L6.123,4.5A1,1,0,0,1,5.259,6H1.741A1,1,0,0,1,.877,4.5Z" transform="translate(12.012 2.75)"/><path d="M2.393.464a1,1,0,0,1,1.214,0l1.839,1.4a1,1,0,0,1,.348,1.09L5.072,5.3a1,1,0,0,1-.955.7H1.884a1,1,0,0,1-.955-.7L.206,2.958a1,1,0,0,1,.348-1.09Z" transform="translate(6.012 -0.25)"/></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(1 4)"><g transform="translate(1 16) rotate(-90)" fill="none"><path d="M6.264,3.039a2,2,0,0,1,3.473,0l4.554,7.969A2,2,0,0,1,12.554,14H3.446A2,2,0,0,1,1.71,11.008Z" stroke="none"/><path d="M 7.999999046325684 4.031130790710449 L 3.446358680725098 12.00000095367432 L 12.55363845825195 12.00000095367432 L 8.000009536743164 4.031130790710449 C 8.000005722045898 4.031130790710449 8.000001907348633 4.031130790710449 7.999999046325684 4.031130790710449 M 7.999999046325684 2.031128883361816 C 8.676296234130859 2.031128883361816 9.352594375610352 2.367035865783691 9.736488342285156 3.038850784301758 L 14.29012870788574 11.00772094726562 C 15.0520191192627 12.34103107452393 14.08928871154785 14.00000095367432 12.55363845825195 14.00000095367432 L 3.446358680725098 14.00000095367432 C 1.910709381103516 14.00000095367432 0.9479789733886719 12.34103107452393 1.709869384765625 11.00772094726562 L 6.263508796691895 3.038850784301758 C 6.647403717041016 2.367035865783691 7.323701858520508 2.031128883361816 7.999999046325684 2.031128883361816 Z" stroke="none" fill="#000"/></g><line y2="12" transform="translate(18 2)" 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.389 5.953)"><g transform="translate(18.611 -1.953) rotate(90)" fill="none"><path d="M6.264,3.039a2,2,0,0,1,3.473,0l4.554,7.969A2,2,0,0,1,12.554,14H3.446A2,2,0,0,1,1.71,11.008Z" stroke="none"/><path d="M 7.999999046325684 4.031130790710449 L 3.446358680725098 12.00000095367432 L 12.55363845825195 12.00000095367432 L 8.000009536743164 4.031130790710449 C 8.000005722045898 4.031130790710449 8.000001907348633 4.031130790710449 7.999999046325684 4.031130790710449 M 7.999999046325684 2.031128883361816 C 8.676296234130859 2.031128883361816 9.352594375610352 2.367035865783691 9.736488342285156 3.038850784301758 L 14.29012870788574 11.00772094726562 C 15.0520191192627 12.34103107452393 14.08928871154785 14.00000095367432 12.55363845825195 14.00000095367432 L 3.446358680725098 14.00000095367432 C 1.910709381103516 14.00000095367432 0.9479789733886719 12.34103107452393 1.709869384765625 11.00772094726562 L 6.263508796691895 3.038850784301758 C 6.647403717041016 2.367035865783691 7.323701858520508 2.031128883361816 7.999999046325684 2.031128883361816 Z" stroke="none" fill="#000"/></g><line y2="12" transform="translate(1.611 0.047)" 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(1.999 3.54)"><g transform="translate(0.001 0.46)" fill="none"><path d="M3,0H17a3,3,0,0,1,3,3v8a3,3,0,0,1-3,3H3a3,3,0,0,1-3-3V3A3,3,0,0,1,3,0Z" stroke="none"/><path d="M 2.999822616577148 2.000349998474121 C 2.448423385620117 2.000349998474121 1.999822616577148 2.448949813842773 1.999822616577148 3.000349998474121 L 1.999822616577148 11.00037002563477 C 1.999822616577148 11.55177021026611 2.448423385620117 12.00037002563477 2.999822616577148 12.00037002563477 L 17.00010299682617 12.00037002563477 C 17.5515022277832 12.00037002563477 18.00010299682617 11.55177021026611 18.00010299682617 11.00037002563477 L 18.00010299682617 3.000349998474121 C 18.00010299682617 2.448949813842773 17.5515022277832 2.000349998474121 17.00010299682617 2.000349998474121 L 2.999822616577148 2.000349998474121 M 2.999822616577148 0.0003499984741210938 L 17.00010299682617 0.0003499984741210938 C 18.65695190429688 0.0003499984741210938 20.00010299682617 1.343500137329102 20.00010299682617 3.000349998474121 L 20.00010299682617 11.00037002563477 C 20.00010299682617 12.65721988677979 18.65695190429688 14.00037002563477 17.00010299682617 14.00037002563477 L 2.999822616577148 14.00037002563477 C 1.342962265014648 14.00037002563477 -0.0001773834228515625 12.65721988677979 -0.0001773834228515625 11.00037002563477 L -0.0001773834228515625 3.000349998474121 C -0.0001773834228515625 1.343500137329102 1.342962265014648 0.0003499984741210938 2.999822616577148 0.0003499984741210938 Z" stroke="none" fill="#000"/></g><line x2="8" transform="translate(6.001 5.46)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x2="5" transform="translate(6.001 9.461)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><g transform="translate(2.132 13.054)" fill="none"><path d="M1.869.406h4l-4,4Z" stroke="none"/><path d="M 1.86865234375 0.40631103515625 L 5.86865234375 0.40631103515625 L 1.868662357330322 4.40631103515625 L 1.86865234375 0.40631103515625 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(-1070 -1896.998)"><g transform="translate(-16481.998 -23051)" fill="none" stroke-linecap="round"><path d="M17570,24966h-12a4,4,0,0,1-1.977-7.479,5,5,0,0,1,4.977-4.52,4.783,4.783,0,0,1,.5.025A6,6,0,0,1,17572,24958c0,.176-.008.35-.021.521A4,4,0,0,1,17570,24966Z" stroke="none"/><path d="M 17569.998046875 24963.998046875 C 17571.099609375 24963.998046875 17571.99609375 24963.103515625 17571.99609375 24962.001953125 C 17571.99609375 24961.28125 17571.609375 24960.61328125 17570.984375 24960.2578125 L 17569.880859375 24959.62890625 L 17569.98046875 24958.361328125 C 17569.990234375 24958.232421875 17569.99609375 24958.11328125 17569.99609375 24957.998046875 C 17569.99609375 24955.794921875 17568.203125 24954.001953125 17566 24954.001953125 C 17564.853515625 24954.001953125 17563.759765625 24954.494140625 17563.001953125 24955.3515625 L 17562.318359375 24956.123046875 L 17561.29296875 24956.013671875 C 17561.203125 24956.00390625 17561.10546875 24956 17561 24956 C 17559.4453125 24956 17558.162109375 24957.1640625 17558.013671875 24958.708984375 L 17557.916015625 24959.7421875 L 17557.015625 24960.255859375 C 17556.390625 24960.61328125 17556.001953125 24961.28125 17556.001953125 24962.001953125 C 17556.001953125 24963.103515625 17556.8984375 24963.998046875 17558 24963.998046875 L 17569.998046875 24963.998046875 M 17569.998046875 24965.998046875 L 17558 24965.998046875 C 17555.79296875 24965.998046875 17554.001953125 24964.20703125 17554.001953125 24962.001953125 C 17554.001953125 24960.509765625 17554.81640625 24959.208984375 17556.0234375 24958.51953125 C 17556.265625 24955.982421875 17558.3984375 24954 17561 24954 C 17561.169921875 24954 17561.337890625 24954.0078125 17561.50390625 24954.025390625 C 17562.603515625 24952.783203125 17564.2109375 24952.001953125 17566 24952.001953125 C 17569.30859375 24952.001953125 17571.99609375 24954.68359375 17571.99609375 24957.998046875 C 17571.99609375 24958.173828125 17571.98828125 24958.34765625 17571.974609375 24958.51953125 C 17573.181640625 24959.20703125 17573.99609375 24960.5078125 17573.99609375 24962.001953125 C 17573.99609375 24964.20703125 17572.208984375 24965.998046875 17569.998046875 24965.998046875 Z" stroke="none" fill="#000"/></g><g transform="translate(1079.749 1904.748)"><line y2="3" transform="translate(2.25 3.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(0.25 0.25)" fill="none" stroke="#000" stroke-width="2"><circle cx="2" cy="2" r="2" stroke="none"/><circle cx="2" cy="2" r="1" fill="none"/></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"/><path d="M8,0,9.889,6.111H16L11.056,9.889,12.944,16,8,12.223,3.056,16,4.944,9.889,0,6.111H6.111Z" transform="translate(4 4)" 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"/><path d="M8,0,9.889,6.111H16L11.056,9.889,12.944,16,8,12.223,3.056,16,4.944,9.889,0,6.111H6.111Z" transform="translate(4 4)" fill="none" stroke="#000" stroke-width="1"/></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.751 3)"><rect width="4" height="10" rx="2" transform="translate(0.25 7.001)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><path d="M22.6,12.914h-.885l.069-.48H22.6a1.188,1.188,0,0,0,0-2.375H20.641L17.787,10s.617-4.309-2-5.754c-1.683-.834-2,.754-2,.754V8l-1,1s-2,1.856-2,3.019V19a1.868,1.868,0,0,0,2,2h8.185a1.188,1.188,0,0,0,0-2.375h-.08l.069-.481h.825a1.187,1.187,0,0,0,0-2.375H21.3l.069-.481H22.6a1.188,1.188,0,0,0,0-2.375Z" transform="translate(-6.534 -4)" 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)"><g transform="translate(4 4)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="5" cy="5" r="5" stroke="none"/><circle cx="5" cy="5" r="4" fill="none"/></g><line y1="1" transform="translate(9)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y1="1" transform="translate(9 17)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="1" transform="translate(17 9)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="1" transform="translate(0 9)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="1" y2="1" transform="translate(15 15.001)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="1" y2="1" transform="translate(2 1.999)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y1="1" x2="1" transform="translate(15 1.999)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y1="1" x2="1" transform="translate(2 15.001)" 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.051 7.5)"><g transform="translate(-564.658 49.961)" fill="none" stroke-miterlimit="10"><path d="M567.607-40.461a6,6,0,0,1,6-6,6,6,0,0,1,6,6Z" stroke="none"/><path d="M 577.0711059570312 -42.46057510375977 C 576.37841796875 -43.65546798706055 575.085205078125 -44.46099472045898 573.6074829101562 -44.46099472045898 C 572.1296997070312 -44.46099472045898 570.83642578125 -43.65546798706055 570.1437377929688 -42.46057510375977 L 577.0711059570312 -42.46057510375977 M 579.6078491210938 -40.46057510375977 L 567.6069946289062 -40.46057510375977 C 567.6069946289062 -43.77515411376953 570.2929077148438 -46.46099472045898 573.6074829101562 -46.46099472045898 C 576.9220581054688 -46.46099472045898 579.6078491210938 -43.77515411376953 579.6078491210938 -40.46057510375977 Z" stroke="none" fill="#000"/></g><line y1="1" transform="translate(8.949 -0.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="18" transform="translate(-0.051 8.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="1" y2="1" transform="translate(1.95 1.499)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y1="1" x2="1" transform="translate(14.949 1.499)" 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.25 4.75)"><path d="M9,9.872a5,5,0,0,1,10,0" transform="translate(-7.25 -5.621)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><g transform="translate(-1.25 4.25)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"><rect width="6" height="7" rx="2.004" stroke="none"/><rect x="1" y="1" width="4" height="5" rx="1.004" fill="none"/></g><g transform="translate(8.75 4.25)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"><rect width="6" height="7" rx="2.004" stroke="none"/><rect x="1" y="1" width="4" height="5" rx="1.004" fill="none"/></g><path d="M21.16,19.35v2a2.8,2.8,0,0,1-2.522,3h-.475" transform="translate(-9.413 -9.1)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><circle cx="1" cy="1" r="1" transform="translate(6.75 14.25)" stroke="#000" stroke-linecap="round" 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(3 2.25)"><g transform="translate(-434.5 364.02)" fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M451.5-364.27h-12a.881.881,0,0,0-1,1v6a.88.88,0,0,0,1,1h2l.5,1.5c.266.7.573.528.8.3l1.7-1.8h7a.88.88,0,0,0,1-1v-6A.881.881,0,0,0,451.5-364.27Z" stroke="none"/><path d="M 440.5 -362.26953125 L 440.5 -358.26953125 L 441.5 -358.26953125 C 442.086181640625 -358.26953125 442.6274719238281 -358.01416015625 442.9992065429688 -357.5934448242188 L 443.0484313964844 -357.6453857421875 C 443.4261169433594 -358.0438537597656 443.9509887695312 -358.26953125 444.5 -358.26953125 L 450.5 -358.26953125 L 450.5 -362.26953125 L 440.5 -362.26953125 M 439.5 -364.26953125 L 451.5 -364.26953125 C 452.1731872558594 -364.26953125 452.5 -363.9382019042969 452.5 -363.26953125 L 452.5 -357.26953125 C 452.5 -356.6002197265625 452.1731872558594 -356.26953125 451.5 -356.26953125 L 444.5 -356.26953125 L 442.796875 -354.47265625 C 442.5685729980469 -354.2459411621094 442.2617492675781 -354.0694885253906 441.99609375 -354.7734375 L 441.5 -356.26953125 L 439.5 -356.26953125 C 438.8268127441406 -356.26953125 438.5 -356.6002197265625 438.5 -357.26953125 L 438.5 -363.26953125 C 438.5 -363.9382019042969 438.8268127441406 -364.26953125 439.5 -364.26953125 Z" stroke="none" fill="#000"/></g><path d="M-428.011,67.24a.123.123,0,0,0-.049-.053.175.175,0,0,0-.065-.022l-.421-.064a.2.2,0,0,1-.085-.04.211.211,0,0,1-.063-.072l-.188-.4a.183.183,0,0,0-.045-.062A.112.112,0,0,0-429,66.5a.112.112,0,0,0-.073.029.184.184,0,0,0-.045.062l-.188.4a.212.212,0,0,1-.063.072.2.2,0,0,1-.085.04l-.421.064a.162.162,0,0,0-.084.036.118.118,0,0,0-.03.039.117.117,0,0,0-.011.05.137.137,0,0,0,.015.061.2.2,0,0,0,.036.049l.3.31a.205.205,0,0,1,.041.07.26.26,0,0,1,.017.088.142.142,0,0,1,0,.024l-.072.438h0a.217.217,0,0,0,0,.037.143.143,0,0,0,.029.091.108.108,0,0,0,.04.031.112.112,0,0,0,.047.01.166.166,0,0,0,.079-.023l.376-.207a.2.2,0,0,1,.091-.02.2.2,0,0,1,.091.02l.377.207a.165.165,0,0,0,.079.023.112.112,0,0,0,.047-.01.112.112,0,0,0,.053-.052.154.154,0,0,0,.015-.07.222.222,0,0,0,0-.037l-.072-.438h0a.143.143,0,0,1,0-.023.262.262,0,0,1,.017-.088.2.2,0,0,1,.041-.07l.3-.31a.2.2,0,0,0,.036-.049.137.137,0,0,0,.015-.061A.119.119,0,0,0-428.011,67.24Z" transform="translate(438.001 -63.75)"/><path d="M-428.011,67.24a.123.123,0,0,0-.049-.053.175.175,0,0,0-.065-.022l-.421-.064a.2.2,0,0,1-.085-.04.211.211,0,0,1-.063-.072l-.188-.4a.183.183,0,0,0-.045-.062A.112.112,0,0,0-429,66.5a.112.112,0,0,0-.073.029.184.184,0,0,0-.045.062l-.188.4a.212.212,0,0,1-.063.072.2.2,0,0,1-.085.04l-.421.064a.162.162,0,0,0-.084.036.118.118,0,0,0-.03.039.117.117,0,0,0-.011.05.137.137,0,0,0,.015.061.2.2,0,0,0,.036.049l.3.31a.205.205,0,0,1,.041.07.26.26,0,0,1,.017.088.142.142,0,0,1,0,.024l-.072.438h0a.217.217,0,0,0,0,.037.143.143,0,0,0,.029.091.108.108,0,0,0,.04.031.112.112,0,0,0,.047.01.166.166,0,0,0,.079-.023l.376-.207a.2.2,0,0,1,.091-.02.2.2,0,0,1,.091.02l.377.207a.165.165,0,0,0,.079.023.112.112,0,0,0,.047-.01.112.112,0,0,0,.053-.052.154.154,0,0,0,.015-.07.222.222,0,0,0,0-.037l-.072-.438h0a.143.143,0,0,1,0-.023.262.262,0,0,1,.017-.088.2.2,0,0,1,.041-.07l.3-.31a.2.2,0,0,0,.036-.049.137.137,0,0,0,.015-.061A.119.119,0,0,0-428.011,67.24Z" transform="translate(442.001 -63.75)"/><path d="M0,0A3,3,0,0,1,3,3,3,3,0,0,1,0,6" transform="translate(1 19.75) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><g transform="translate(1 9.75)" fill="none" stroke="#000" stroke-width="2"><rect width="6.001" height="6.001" rx="3" stroke="none"/><rect x="1" y="1" width="4.001" height="4.001" 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(1.5 4.5)"><g transform="translate(0.5 0.5)" fill="none" stroke="#000" stroke-width="2"><rect width="20" height="14" rx="2" stroke="none"/><rect x="1" y="1" width="18" height="12" rx="1" fill="none"/></g><line y2="13" transform="translate(7.5 0.5)" fill="none" stroke="#000" stroke-width="2"/><line x2="20" transform="translate(0.5 5.5)" fill="none" stroke="#000" stroke-width="2"/><line x2="20" transform="translate(0.5 9.5)" 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(3.75 3)"><line y2="17" transform="translate(8.25 1)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x1="8" transform="translate(4.25 18)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><path d="M0,0H6.412L8,1.833,6.412,4H0Z" transform="translate(8.25 2)" fill="none" stroke="#000" stroke-width="2"/><path d="M0,0H6.412L8,1.833,6.412,4H0Z" transform="translate(8.25 9) rotate(180)" 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(5.797 3.375)"><g transform="translate(-2.797 0.625)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="7" height="7" rx="1.996" stroke="none"/><rect x="1" y="1" width="5" height="5" rx="0.996" fill="none"/></g><g transform="translate(-2.797 9.625)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="7" height="7" rx="1.996" stroke="none"/><rect x="1" y="1" width="5" height="5" rx="0.996" fill="none"/></g><path d="M-17286-18887v11l1.5,3,1.5-3v-11Z" transform="matrix(0.966, 0.259, -0.259, 0.966, 11819.505, 22719.012)" 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"/><g transform="translate(5.1 6.262)"><path d="M7.954,21.419h2.953v-10.4l-3.217.992V9.941L13.1,8.35V21.419H15.69V23.35H7.954Z" transform="translate(-9.789 -9.611)"/><path d="M7.954,21.419h2.953v-10.4l-3.217.992V9.941L13.1,8.35V21.419H15.69V23.35H7.954Z" transform="translate(0.211 -9.611)"/></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 5.625)"><path d="M11.148,17.524H8.033l-.578,2.049H5.588l2.706-9h2.593l2.7,9H11.721Zm-.38-1.35-.551-1.961c-.209-.76-.4-1.459-.63-2.34-.221.882-.42,1.581-.624,2.34l-.55,1.961Z" transform="translate(-5.838 -8.198)"/><path d="M20.653,15.176v5.351H19.372l-.156-.642-1.013.426a3.829,3.829,0,0,1-1.47.326,2.015,2.015,0,0,1-2.079-2.28v-.129c0-1.345.851-2.121,2.757-2.121h1.552V14.985c0-.585-.209-.912-.863-.912h-.561c-.556,0-.857.179-.857.689v.562H14.966v-.462c0-1.423.956-2.225,2.594-2.225h.51C19.668,12.637,20.653,13.321,20.653,15.176Zm-1.691,2.188H17.369c-.667,0-.979.2-.979.685v.461c0,.487.248.729.672.729a2.017,2.017,0,0,0,.77-.167l1.124-.339Z" transform="translate(-5.902 -9.261)"/><path d="M25.077,9.238h2v16h-2Z" transform="translate(-7.326 -10.863)"/></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 5)"><path d="M11.646,18.391H7.363l-.8,2.959H4l3.721-13h3.566L15,21.35H12.434Zm-.523-1.95-.756-2.832c-.288-1.1-.553-2.108-.866-3.381-.3,1.273-.577,2.283-.858,3.381l-.756,2.832Z" transform="translate(-4 -8.35)"/><path d="M26.4,14.8v6.688H24.694l-.208-.8-1.351.532a5.372,5.372,0,0,1-1.961.408,2.592,2.592,0,0,1-2.771-2.85v-.161c0-1.68,1.135-2.651,3.674-2.651h2.068v-1.4c0-.731-.278-1.14-1.15-1.14h-.748c-.742,0-1.142.224-1.142.863v.7H18.821v-.576c0-1.78,1.274-2.782,3.458-2.782h.678C25.088,11.629,26.4,12.485,26.4,14.8Zm-2.254,2.736H22.024c-.887,0-1.3.246-1.3.855v.577a.811.811,0,0,0,.895.91,2.832,2.832,0,0,0,1.027-.209l1.5-.423Z" transform="translate(-6.401 -8.629)"/></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="M12,8l-2,2,3,3" 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.709 3.6)"><ellipse cx="2.5" cy="6" rx="2.5" ry="6" transform="translate(12.291 0.4)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><path d="M19.946,4.8h-12a2.652,2.652,0,0,0-3,3v14h13v-10" transform="translate(-5.655 -4.4)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x2="1" transform="translate(5.291 10.4)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="1" transform="translate(2.291 10.4)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="1" transform="translate(8.291 10.4)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><ellipse cx="0.5" cy="1" rx="0.5" ry="1" transform="translate(14.291 5.401)"/></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.357 1.178)"><g transform="translate(-0.357 4.822)" fill="none" stroke="#000" stroke-width="2"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7" fill="none"/></g><g transform="translate(3.643 8.822)" fill="none" stroke="#000" stroke-width="2"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="3" fill="none"/></g><line y1="7" x2="7" transform="translate(7.643 5.822)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><path d="M.244-.244V2.585L1.658,4,3.072,2.585V-.244Z" transform="translate(16.298 1.822) rotate(45)" 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"/><g transform="translate(4.5 3)"><g transform="translate(0.5 1.999)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><path d="M0,0H14a0,0,0,0,1,0,0V13a3,3,0,0,1-3,3H3a3,3,0,0,1-3-3V0A0,0,0,0,1,0,0Z" stroke="none"/><path d="M2,1H12a1,1,0,0,1,1,1V13a2,2,0,0,1-2,2H3a2,2,0,0,1-2-2V2A1,1,0,0,1,2,1Z" fill="none"/></g><line x2="16" transform="translate(-0.5 3)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(10.498 3) rotate(-180)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><path d="M0,0H6A0,0,0,0,1,6,0V2A1,1,0,0,1,5,3H1A1,1,0,0,1,0,2V0A0,0,0,0,1,0,0Z" stroke="none"/><path d="M1,1H5A0,0,0,0,1,5,1V2A0,0,0,0,1,5,2H1A0,0,0,0,1,1,2V1A0,0,0,0,1,1,1Z" fill="none"/></g><line y2="6" transform="translate(5.5 7)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y2="6" transform="translate(9.5 7)" 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(7 7)"><path d="M445.2,71v5a4,4,0,1,0,8,0V71" transform="translate(-444.2 -72)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x2="12" transform="translate(-1 12)" 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.596 5.465)"><path d="M6.834,10.7H15.8a5.012,5.012,0,0,1,5.036,4.986v.027A5.012,5.012,0,0,1,15.8,20.7H11.816" transform="translate(-4.429 -8.164)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M9.127,7.285l-3,3,3,3" transform="translate(-5.723 -7.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(4.5 3.464)"><path d="M320.237,11.572l-.993-.993a3.484,3.484,0,0,1,0-4.966h0a3.484,3.484,0,0,1,4.967,0l.993.993" transform="translate(-316.704 -4.036)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="2" transform="translate(7.5 11.534)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(-0.5 6.536)" 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></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 5)"><path d="M0,0,3,3,6,0" transform="translate(9.75 2) rotate(180)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y1="10" transform="translate(6.75 9) rotate(180)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M17-3V0H1V-3" transform="translate(-2.25 13)" 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(13 3)"><line x2="6" transform="translate(2 3)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y2="6" transform="translate(5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g><g transform="translate(3 7)" fill="none" stroke="#000" stroke-width="2"><rect width="10" height="10.001" rx="5" stroke="none"/><rect x="1" y="1" width="8" height="8.001" rx="4" fill="none"/></g><path d="M-2,6A4,4,0,0,1,6,6" transform="translate(6 16)" 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(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="M3,0A3,3,0,1,1,0,3,3,3,0,0,1,3,0Z" transform="translate(9 6.471)" fill="none" stroke="#fff" stroke-width="2"/><path d="M0,0A3,3,0,0,1,3,3,3,3,0,0,1,0,6" transform="translate(9 16.471) rotate(-90)" fill="none" stroke="#fff" 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"/><rect width="10" height="10" rx="5" transform="translate(7 4)" fill="none" stroke="#000" stroke-width="2"/><path d="M0,0A6,6,0,0,1,6,6a6,6,0,0,1-6,6" transform="translate(6 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(3 6)"><path d="M2,9.242V2H9.243l2-2H1.868A1.8,1.8,0,0,0,0,1.715v8.569a1.584,1.584,0,0,0,.2.758Z" fill="#040405"/><path d="M12,7.727V10H9.727l-2,2h4.4A1.8,1.8,0,0,0,14,10.284V5.727Z" fill="#040405"/><path d="M18.351,2a.642.642,0,0,0-.373.121l-1.3.925L13.238,6.489c.013.01.018.026.031.035L17.978,9.88A.646.646,0,0,0,19,9.356V2.646A.646.646,0,0,0,18.351,2" fill="#040405"/><line y1="16" x2="16" transform="translate(1 -2)" 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.748 6.75)"><g transform="translate(-71.607 -9.898)" stroke-linecap="round" stroke-linejoin="round"><path d="M 86.85825347900391 17.81435394287109 L 83.11704254150391 15.14837074279785 L 86.85825347900391 12.48239898681641 L 86.85825347900391 17.81435394287109 Z" stroke="none"/><path d="M 85.85825347900391 14.42291736602783 L 84.8402099609375 15.1483678817749 L 85.85825347900391 15.87382030487061 L 85.85825347900391 14.42291736602783 M 87.21023559570312 11.14837455749512 C 87.54531860351562 11.14841842651367 87.85825347900391 11.41340065002441 87.85825347900391 11.79362487792969 L 87.85825347900391 18.50312423706055 C 87.85825347900391 19.02666473388672 87.26509857177734 19.33171081542969 86.83750152587891 19.02748489379883 L 82.12856292724609 15.67190456390381 C 81.76815032958984 15.41550445556641 81.76815032958984 14.88124465942383 82.12856292724609 14.62483501434326 L 86.83750152587891 11.26926422119141 C 86.95455169677734 11.18598365783691 87.08393096923828 11.14835929870605 87.21023559570312 11.14837455749512 Z" stroke="none" fill="#000"/></g><g transform="translate(-69.748 -9.751)" fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M68.868,9H79.132A1.8,1.8,0,0,1,81,10.715v8.57A1.8,1.8,0,0,1,79.132,21H68.868A1.8,1.8,0,0,1,67,19.285v-8.57A1.8,1.8,0,0,1,68.868,9Z" stroke="none"/><path d="M 69 11 L 69 19 L 79.00000762939453 19 L 79.00000762939453 11 L 69 11 M 68.86773681640625 9 L 79.13226318359375 9 C 80.16396331787109 9 81.00000762939453 9.767999649047852 81.00000762939453 10.71513938903809 L 81.00000762939453 19.28485870361328 C 81.00000762939453 20.23200035095215 80.16396331787109 21 79.13226318359375 21 L 68.86773681640625 21 C 67.83603668212891 21 67 20.23200035095215 67 19.28485870361328 L 67 10.71513938903809 C 67 9.767999649047852 67.83603668212891 9 68.86773681640625 9 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(3.709 5.695)"><g transform="translate(2.039 1.055)"><g transform="translate(-71.607 -9.898)" stroke-linecap="round" stroke-linejoin="round"><path d="M 86.85825347900391 17.81435394287109 L 83.11704254150391 15.14837074279785 L 86.85825347900391 12.48239898681641 L 86.85825347900391 17.81435394287109 Z" stroke="none"/><path d="M 85.85825347900391 14.42291736602783 L 84.8402099609375 15.1483678817749 L 85.85825347900391 15.87382030487061 L 85.85825347900391 14.42291736602783 M 87.21023559570312 11.14837455749512 C 87.54531860351562 11.14841842651367 87.85825347900391 11.41340065002441 87.85825347900391 11.79362487792969 L 87.85825347900391 18.50312423706055 C 87.85825347900391 19.02666473388672 87.26509857177734 19.33171081542969 86.83750152587891 19.02748489379883 L 82.12856292724609 15.67190456390381 C 81.76815032958984 15.41550445556641 81.76815032958984 14.88124465942383 82.12856292724609 14.62483501434326 L 86.83750152587891 11.26926422119141 C 86.95455169677734 11.18598365783691 87.08393096923828 11.14835929870605 87.21023559570312 11.14837455749512 Z" stroke="none" fill="#000"/></g><g transform="translate(-69.748 -9.751)" fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M68.868,9H79.132A1.8,1.8,0,0,1,81,10.715v8.57A1.8,1.8,0,0,1,79.132,21H68.868A1.8,1.8,0,0,1,67,19.285v-8.57A1.8,1.8,0,0,1,68.868,9Z" stroke="none"/><path d="M 69 11 L 69 19 L 79.00000762939453 19 L 79.00000762939453 11 L 69 11 M 68.86773681640625 9 L 79.13226318359375 9 C 80.16396331787109 9 81.00000762939453 9.767999649047852 81.00000762939453 10.71513938903809 L 81.00000762939453 19.28485870361328 C 81.00000762939453 20.23200035095215 80.16396331787109 21 79.13226318359375 21 L 68.86773681640625 21 C 67.83603668212891 21 67 20.23200035095215 67 19.28485870361328 L 67 10.71513938903809 C 67 9.767999649047852 67.83603668212891 9 68.86773681640625 9 Z" stroke="none" fill="#000"/></g></g><circle cx="2.5" cy="2.5" r="2.5" transform="translate(-1.709 -0.695)" fill="#cb000f"/></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 8)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="11" height="9" rx="2" stroke="none"/><rect x="1" y="1" width="9" height="7" rx="1" fill="none"/></g><g transform="translate(15 8)" 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></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-miterlimit="10" stroke-width="2"><rect width="6" height="6" rx="2" stroke="none"/><rect x="1" y="1" width="4" height="4" rx="1" fill="none"/></g><g transform="translate(2 13)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="6" height="6" rx="2" stroke="none"/><rect x="1" y="1" width="4" height="4" rx="1" fill="none"/></g><line x2="5" transform="translate(11 10)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="5" transform="translate(11 18)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="10" transform="translate(11 6)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="10" transform="translate(11 14)" 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(5.25 6.75)"><path d="M-2663.25,807.25h-8a3,3,0,0,1-3-3v-1h7a3,3,0,0,0,3-3v-4h1a3,3,0,0,1,3,3v5A3,3,0,0,1-2663.25,807.25Z" transform="translate(2676 -794)" fill="none" stroke="#000" stroke-width="2"/><rect width="14" height="11" rx="3" transform="translate(-2.25 -1.75)" 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(6.001 2)"><line y2="3.5" transform="translate(6 15.5)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><line x2="6" transform="translate(3 19)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M5,6.743V3A1,1,0,0,1,7,3V4.743L8.976,2.767A2.992,2.992,0,0,0,3,3V8.743Z" stroke="rgba(0,0,0,0)" stroke-width="1"/><path d="M8.047,12.181c.046-.043.091-.088.134-.134Z" stroke="rgba(0,0,0,0)" stroke-width="1"/><path d="M.17,11.573,2,9.743V9A1,1,0,0,0,0,9v1.386a5.867,5.867,0,0,0,.17,1.188" stroke="rgba(0,0,0,0)" stroke-width="1"/><path d="M10,10.227v.083a3.835,3.835,0,0,1-3.755,3.672L4.4,15.827A5.521,5.521,0,0,0,5.765,16c.067,0,.133,0,.2,0A5.862,5.862,0,0,0,12,10.347V9a.978.978,0,0,0-.2-.571Z" stroke="rgba(0,0,0,0)" stroke-width="1"/></g><line y1="16" x2="16" transform="translate(4.001 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(6.983 3.699)"><g transform="translate(2.017 -1.698)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="6" height="13" rx="3" stroke="none"/><rect x="1" y="1" width="4" height="11" rx="2" fill="none"/></g><path d="M143.311,14.492V15.84a4.836,4.836,0,0,1-5,4.653h0a4.836,4.836,0,0,1-5-4.653V14.492" transform="translate(-133.294 -7.191)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y2="3" transform="translate(5.017 13.302)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><line x2="6" transform="translate(2.017 17.302)" 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.908 6.736)"><path d="M-472.8,76.031a2.552,2.552,0,0,1,0,4" transform="translate(485.894 -72.768)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(485.211 -72.719)" fill="none" stroke-linejoin="round"><path d="M-488.119,80.5a1.671,1.671,0,0,0,1.479,1.48h4.76a1.387,1.387,0,0,1,.837.276l3.776,2.446a1.326,1.326,0,0,0,2.148-.925v-11.6a1.326,1.326,0,0,0-2.148-.925l-3.776,2.446a1.387,1.387,0,0,1-.837.276h-4.76a1.688,1.688,0,0,0-1.479,1.5Z" stroke="none"/><path d="M -477.1190185546875 82.41788482666016 L -477.1190185546875 73.54720306396484 L -479.9079895019531 75.35395812988281 C -480.4757080078125 75.75991058349609 -481.1723022460938 75.9825439453125 -481.8800354003906 75.9825439453125 L -486.119140625 75.9825439453125 L -486.119140625 79.9825439453125 L -481.8800354003906 79.9825439453125 C -481.1723022460938 79.9825439453125 -480.4757080078125 80.20517730712891 -479.9079895019531 80.61112976074219 L -477.1190185546875 82.41788482666016 M -476.4376831054688 84.98252105712891 C -476.7225646972656 84.98249053955078 -477.0141906738281 84.89634704589844 -477.2673645019531 84.70478057861328 L -481.04296875 82.25886535644531 C -481.2783813476562 82.08030700683594 -481.5738220214844 81.9825439453125 -481.8800354003906 81.9825439453125 L -486.6400146484375 81.9825439453125 C -487.3648681640625 81.9825439453125 -488.119140625 81.16507720947266 -488.119140625 80.50271606445312 L -488.119140625 75.4794921875 C -488.119140625 74.81713104248047 -487.3648681640625 73.9825439453125 -486.6400146484375 73.9825439453125 L -481.8800354003906 73.9825439453125 C -481.5738220214844 73.9825439453125 -481.2783813476562 73.88478088378906 -481.04296875 73.70622253417969 L -477.2673645019531 71.26030731201172 C -476.4117126464844 70.61286926269531 -475.1190185546875 71.16954803466797 -475.1190185546875 72.18499755859375 L -475.1190185546875 83.78010559082031 C -475.1190185546875 84.49509429931641 -475.7597351074219 84.98260498046875 -476.4376831054688 84.98252105712891 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(3.389 6.736)"><g transform="translate(486.731 -70.725)" fill="none" stroke-linejoin="round"><path d="M-488.119,77.842a1.886,1.886,0,0,0,1.5,1.384h3.5a1.227,1.227,0,0,1,.708.219l3.292,2.32c.724.513,2,.086,2-.719V70.936c0-.8-1.276-1.239-2-.726l-3,2.332a2.338,2.338,0,0,1-1,.214h-3.5a1.882,1.882,0,0,0-1.5,1.385Z" stroke="none"/><path d="M -479.119140625 79.31855010986328 L -479.119140625 72.74303436279297 L -480.8917846679688 74.12082672119141 C -480.9144592285156 74.13845825195312 -480.9375 74.15559387207031 -480.9609375 74.17223358154297 C -481.7431335449219 74.72785949707031 -482.8959655761719 74.75599670410156 -483.119140625 74.75599670410156 L -486.119140625 74.75599670410156 L -486.119140625 77.22634887695312 L -483.119140625 77.22634887695312 C -482.4518432617188 77.22634887695312 -481.7910461425781 77.43400573730469 -481.2577819824219 77.81114959716797 L -479.119140625 79.31855010986328 M -478.3686218261719 81.98844146728516 C -478.6355590820312 81.98843383789062 -478.9021606445312 81.91913604736328 -479.119140625 81.76542663574219 L -482.410888671875 79.44526672363281 C -482.6100463867188 79.30378723144531 -482.8600463867188 79.22634887695312 -483.119140625 79.22634887695312 L -486.615234375 79.22634887695312 C -487.2285766601562 79.22634887695312 -488.119140625 78.36721801757812 -488.119140625 77.84243774414062 L -488.119140625 74.14134979248047 C -488.119140625 73.6165771484375 -487.2322387695312 72.75599670410156 -486.618896484375 72.75599670410156 L -483.119140625 72.75599670410156 C -482.8600463867188 72.75599670410156 -482.3182983398438 72.68319702148438 -482.119140625 72.54172515869141 L -479.119140625 70.20995330810547 C -478.3951416015625 69.69705200195312 -477.119140625 70.13112640380859 -477.119140625 70.93568420410156 L -477.119140625 81.04670715332031 C -477.119140625 81.61016082763672 -477.744873046875 81.98847198486328 -478.3686218261719 81.98844146728516 Z" stroke="none" fill="#000"/></g><g transform="translate(11.611 2.264)"><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(3.389 6.736)"><path d="M-411.694,74.031a5.075,5.075,0,0,1,0,6" transform="translate(423.306 -71.768)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M-409.3,72.031a8.593,8.593,0,0,1,0,8" transform="translate(424.913 -70.768)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(486.731 -70.725)" fill="none" stroke-linejoin="round"><path d="M-488.119,77.842a1.886,1.886,0,0,0,1.5,1.384h3.5a1.227,1.227,0,0,1,.708.219l3.292,2.32c.724.513,2,.086,2-.719V70.936c0-.8-1.276-1.239-2-.726l-3,2.332a2.338,2.338,0,0,1-1,.214h-3.5a1.882,1.882,0,0,0-1.5,1.385Z" stroke="none"/><path d="M -479.119140625 79.31855010986328 L -479.119140625 72.74303436279297 L -480.8917846679688 74.12082672119141 C -480.9144592285156 74.13845825195312 -480.9375 74.15559387207031 -480.9609375 74.17223358154297 C -481.7431335449219 74.72785949707031 -482.8959655761719 74.75599670410156 -483.119140625 74.75599670410156 L -486.119140625 74.75599670410156 L -486.119140625 77.22634887695312 L -483.119140625 77.22634887695312 C -482.4518432617188 77.22634887695312 -481.7910461425781 77.43400573730469 -481.2577819824219 77.81114959716797 L -479.119140625 79.31855010986328 M -478.3686218261719 81.98844146728516 C -478.6355590820312 81.98843383789062 -478.9021606445312 81.91913604736328 -479.119140625 81.76542663574219 L -482.410888671875 79.44526672363281 C -482.6100463867188 79.30378723144531 -482.8600463867188 79.22634887695312 -483.119140625 79.22634887695312 L -486.615234375 79.22634887695312 C -487.2285766601562 79.22634887695312 -488.119140625 78.36721801757812 -488.119140625 77.84243774414062 L -488.119140625 74.14134979248047 C -488.119140625 73.6165771484375 -487.2322387695312 72.75599670410156 -486.618896484375 72.75599670410156 L -483.119140625 72.75599670410156 C -482.8600463867188 72.75599670410156 -482.3182983398438 72.68319702148438 -482.119140625 72.54172515869141 L -479.119140625 70.20995330810547 C -478.3951416015625 69.69705200195312 -477.119140625 70.13112640380859 -477.119140625 70.93568420410156 L -477.119140625 81.04670715332031 C -477.119140625 81.61016082763672 -477.744873046875 81.98847198486328 -478.3686218261719 81.98844146728516 Z" stroke="none" fill="#000"/></g></g></svg>
|