@volverjs/ui-vue 0.0.1-beta.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +91 -0
- package/dist/Volver.d.ts +58 -0
- package/dist/components/VvAccordion/VvAccordion.d.ts +32 -0
- package/dist/components/VvAccordion/VvAccordion.es.js +260 -0
- package/dist/components/VvAccordion/VvAccordion.umd.js +1 -0
- package/dist/components/VvAccordion/VvAccordion.vue.d.ts +104 -0
- package/dist/components/VvAccordion/useAccordionProps.d.ts +16 -0
- package/dist/components/VvAccordionGroup/VvAccordionGroup.d.ts +50 -0
- package/dist/components/VvAccordionGroup/VvAccordionGroup.es.js +313 -0
- package/dist/components/VvAccordionGroup/VvAccordionGroup.umd.js +1 -0
- package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +170 -0
- package/dist/components/VvBadge/VvBadge.d.ts +4 -0
- package/dist/components/VvBadge/VvBadge.es.js +18 -0
- package/dist/components/VvBadge/VvBadge.umd.js +1 -0
- package/dist/components/VvBadge/VvBadge.vue.d.ts +56 -0
- package/dist/components/VvBreadcrumb/VvBreadcrumb.d.ts +26 -0
- package/dist/components/VvBreadcrumb/VvBreadcrumb.es.js +206 -0
- package/dist/components/VvBreadcrumb/VvBreadcrumb.umd.js +1 -0
- package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +118 -0
- package/dist/components/VvButton/VvButton.d.ts +115 -0
- package/dist/components/VvButton/VvButton.es.js +420 -0
- package/dist/components/VvButton/VvButton.umd.js +1 -0
- package/dist/components/VvButton/VvButton.vue.d.ts +228 -0
- package/dist/components/VvButton/useButtonGroupProps.d.ts +23 -0
- package/dist/components/VvButtonGroup/VvButtonGroup.d.ts +57 -0
- package/dist/components/VvButtonGroup/VvButtonGroup.es.js +210 -0
- package/dist/components/VvButtonGroup/VvButtonGroup.umd.js +1 -0
- package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +210 -0
- package/dist/components/VvCard/VvCard.d.ts +4 -0
- package/dist/components/VvCard/VvCard.es.js +188 -0
- package/dist/components/VvCard/VvCard.umd.js +1 -0
- package/dist/components/VvCard/VvCard.vue.d.ts +63 -0
- package/dist/components/VvCheck/VvCheck.d.ts +47 -0
- package/dist/components/VvCheck/VvCheck.es.js +318 -0
- package/dist/components/VvCheck/VvCheck.umd.js +1 -0
- package/dist/components/VvCheck/VvCheck.vue.d.ts +165 -0
- package/dist/components/VvCheck/useCheckProps.d.ts +16 -0
- package/dist/components/VvCheckGroup/VvCheckGroup.d.ts +65 -0
- package/dist/components/VvCheckGroup/VvCheckGroup.es.js +451 -0
- package/dist/components/VvCheckGroup/VvCheckGroup.umd.js +2 -0
- package/dist/components/VvCheckGroup/VvCheckGroup.vue.d.ts +272 -0
- package/dist/components/VvDialog/VvDialog.d.ts +22 -0
- package/dist/components/VvDialog/VvDialog.es.js +315 -0
- package/dist/components/VvDialog/VvDialog.umd.js +1 -0
- package/dist/components/VvDialog/VvDialog.vue.d.ts +153 -0
- package/dist/components/VvDialog/constants.d.ts +5 -0
- package/dist/components/VvDropdown/VvDropdown.d.ts +52 -0
- package/dist/components/VvDropdown/VvDropdown.es.js +236 -0
- package/dist/components/VvDropdown/VvDropdown.umd.js +1 -0
- package/dist/components/VvDropdown/VvDropdown.vue.d.ts +166 -0
- package/dist/components/VvIcon/VvIcon.d.ts +92 -0
- package/dist/components/VvIcon/VvIcon.es.js +229 -0
- package/dist/components/VvIcon/VvIcon.umd.js +1 -0
- package/dist/components/VvIcon/VvIcon.vue.d.ts +183 -0
- package/dist/components/VvInputText/VvInputText.d.ts +73 -0
- package/dist/components/VvInputText/VvInputText.es.js +727 -0
- package/dist/components/VvInputText/VvInputText.umd.js +2 -0
- package/dist/components/VvInputText/VvInputText.vue.d.ts +327 -0
- package/dist/components/VvInputText/VvInputTextActions.d.ts +3 -0
- package/dist/components/VvInputText/constants.d.ts +55 -0
- package/dist/components/VvNativeSelect/VvNativeSelect.d.ts +70 -0
- package/dist/components/VvNativeSelect/VvNativeSelect.es.js +416 -0
- package/dist/components/VvNativeSelect/VvNativeSelect.umd.js +2 -0
- package/dist/components/VvNativeSelect/VvNativeSelect.vue.d.ts +228 -0
- package/dist/components/VvProgress/VvProgress.d.ts +29 -0
- package/dist/components/VvProgress/VvProgress.es.js +188 -0
- package/dist/components/VvProgress/VvProgress.umd.js +1 -0
- package/dist/components/VvProgress/VvProgress.vue.d.ts +117 -0
- package/dist/components/VvRadio/VvRadio.d.ts +22 -0
- package/dist/components/VvRadio/VvRadio.es.js +307 -0
- package/dist/components/VvRadio/VvRadio.umd.js +1 -0
- package/dist/components/VvRadio/VvRadio.vue.d.ts +136 -0
- package/dist/components/VvRadio/useRadioProps.d.ts +15 -0
- package/dist/components/VvRadioGroup/VvRadioGroup.d.ts +54 -0
- package/dist/components/VvRadioGroup/VvRadioGroup.es.js +441 -0
- package/dist/components/VvRadioGroup/VvRadioGroup.umd.js +2 -0
- package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +264 -0
- package/dist/components/VvSelect/VvSelect.d.ts +99 -0
- package/dist/components/VvSelect/VvSelect.es.js +447 -0
- package/dist/components/VvSelect/VvSelect.umd.js +2 -0
- package/dist/components/VvSelect/VvSelect.vue.d.ts +294 -0
- package/dist/components/VvTextarea/VvTextarea.d.ts +88 -0
- package/dist/components/VvTextarea/VvTextarea.es.js +550 -0
- package/dist/components/VvTextarea/VvTextarea.umd.js +2 -0
- package/dist/components/VvTextarea/VvTextarea.vue.d.ts +369 -0
- package/dist/components/VvTextarea/constants.d.ts +19 -0
- package/dist/components/common/HintSlot.d.ts +25 -0
- package/dist/components/index.d.ts +12 -0
- package/dist/components/index.es.js +1120 -0
- package/dist/components/index.umd.js +2 -0
- package/dist/composables/debouncedInput/useDebouncedInput.d.ts +2 -0
- package/dist/composables/focus/useComponentFocus.d.ts +7 -0
- package/dist/composables/group/types/IAccordionGroupState.d.ts +10 -0
- package/dist/composables/group/types/IButtonGroupState.d.ts +19 -0
- package/dist/composables/group/types/IGroupState.d.ts +11 -0
- package/dist/composables/group/types/IInputGroup.d.ts +11 -0
- package/dist/composables/group/useInjectedGroupState.d.ts +10 -0
- package/dist/composables/group/useProvideGroupState.d.ts +6 -0
- package/dist/composables/icons/useComponentIcons.d.ts +26 -0
- package/dist/composables/options/useOptions.d.ts +5 -0
- package/dist/composables/textLimit/useTextLimit.d.ts +14 -0
- package/dist/composables/useModifiers.d.ts +10 -0
- package/dist/constants.d.ts +4 -0
- package/dist/icons.es.js +1885 -0
- package/dist/icons.umd.js +1 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.es.js +1156 -0
- package/dist/index.umd.js +2 -0
- package/dist/props/index.d.ts +92 -0
- package/dist/stories/Button/Button.test.d.ts +11 -0
- package/dist/stories/Icon/IconList.vue.d.ts +44 -0
- package/dist/stories/RadioGroup/RadioProperty.test.d.ts +12 -0
- package/dist/stories/utils.d.ts +5 -0
- package/dist/test/expect.d.ts +13 -0
- package/dist/utils/ObjectUtilities.d.ts +96 -0
- package/package.json +216 -0
- package/src/Volver.ts +114 -0
- package/src/assets/icons/detailed/add-circle.svg +1 -0
- package/src/assets/icons/detailed/add.svg +1 -0
- package/src/assets/icons/detailed/align-center.svg +1 -0
- package/src/assets/icons/detailed/align-justify.svg +1 -0
- package/src/assets/icons/detailed/align-left.svg +1 -0
- package/src/assets/icons/detailed/align-right.svg +1 -0
- package/src/assets/icons/detailed/analysis-2.svg +1 -0
- package/src/assets/icons/detailed/analysis-3.svg +1 -0
- package/src/assets/icons/detailed/analysis.svg +1 -0
- package/src/assets/icons/detailed/apple.svg +1 -0
- package/src/assets/icons/detailed/arrow-down.svg +1 -0
- package/src/assets/icons/detailed/arrow-left.svg +1 -0
- package/src/assets/icons/detailed/arrow-right.svg +1 -0
- package/src/assets/icons/detailed/arrow-up.svg +1 -0
- package/src/assets/icons/detailed/attachment.svg +1 -0
- package/src/assets/icons/detailed/back-to-front.svg +1 -0
- package/src/assets/icons/detailed/bell-active.svg +1 -0
- package/src/assets/icons/detailed/bell.svg +1 -0
- package/src/assets/icons/detailed/bold.svg +1 -0
- package/src/assets/icons/detailed/bookmark-active.svg +1 -0
- package/src/assets/icons/detailed/bookmark.svg +1 -0
- package/src/assets/icons/detailed/building.svg +1 -0
- package/src/assets/icons/detailed/bullet-list.svg +1 -0
- package/src/assets/icons/detailed/calendar.svg +1 -0
- package/src/assets/icons/detailed/camera-off.svg +1 -0
- package/src/assets/icons/detailed/camera-on.svg +1 -0
- package/src/assets/icons/detailed/catalog.svg +1 -0
- package/src/assets/icons/detailed/certificate.svg +1 -0
- package/src/assets/icons/detailed/chat.svg +1 -0
- package/src/assets/icons/detailed/check-badge.svg +1 -0
- package/src/assets/icons/detailed/check-circle.svg +1 -0
- package/src/assets/icons/detailed/check.svg +1 -0
- package/src/assets/icons/detailed/checkbox.svg +1 -0
- package/src/assets/icons/detailed/chevron-down-circle.svg +1 -0
- package/src/assets/icons/detailed/chevron-down.svg +1 -0
- package/src/assets/icons/detailed/chevron-left-circle.svg +1 -0
- package/src/assets/icons/detailed/chevron-left.svg +1 -0
- package/src/assets/icons/detailed/chevron-right-circle.svg +1 -0
- package/src/assets/icons/detailed/chevron-up-circle.svg +1 -0
- package/src/assets/icons/detailed/chevron-up.svg +1 -0
- package/src/assets/icons/detailed/classroom.svg +1 -0
- package/src/assets/icons/detailed/clear-field.svg +1 -0
- package/src/assets/icons/detailed/clear-style.svg +1 -0
- package/src/assets/icons/detailed/close-circle.svg +1 -0
- package/src/assets/icons/detailed/close-loader.svg +1 -0
- package/src/assets/icons/detailed/close.svg +1 -0
- package/src/assets/icons/detailed/coffee.svg +1 -0
- package/src/assets/icons/detailed/color.svg +1 -0
- package/src/assets/icons/detailed/contact-us.svg +1 -0
- package/src/assets/icons/detailed/copy.svg +1 -0
- package/src/assets/icons/detailed/courses.svg +1 -0
- package/src/assets/icons/detailed/dashboard.svg +1 -0
- package/src/assets/icons/detailed/download.svg +1 -0
- package/src/assets/icons/detailed/drag.svg +1 -0
- package/src/assets/icons/detailed/duplicate.svg +1 -0
- package/src/assets/icons/detailed/edit.svg +1 -0
- package/src/assets/icons/detailed/elearning.svg +1 -0
- package/src/assets/icons/detailed/email.svg +1 -0
- package/src/assets/icons/detailed/error-2.svg +1 -0
- package/src/assets/icons/detailed/error.svg +1 -0
- package/src/assets/icons/detailed/exercise.svg +1 -0
- package/src/assets/icons/detailed/external-link.svg +1 -0
- package/src/assets/icons/detailed/extract.svg +1 -0
- package/src/assets/icons/detailed/eye-off.svg +1 -0
- package/src/assets/icons/detailed/eye-on.svg +1 -0
- package/src/assets/icons/detailed/fail.svg +1 -0
- package/src/assets/icons/detailed/fast-back.svg +1 -0
- package/src/assets/icons/detailed/fast-forward.svg +1 -0
- package/src/assets/icons/detailed/file-add.svg +1 -0
- package/src/assets/icons/detailed/file-duplicate.svg +1 -0
- package/src/assets/icons/detailed/file-remove.svg +1 -0
- package/src/assets/icons/detailed/file-required.svg +1 -0
- package/src/assets/icons/detailed/file.svg +1 -0
- package/src/assets/icons/detailed/filter-2.svg +1 -0
- package/src/assets/icons/detailed/filter-active.svg +1 -0
- package/src/assets/icons/detailed/filter.svg +1 -0
- package/src/assets/icons/detailed/flag.svg +1 -0
- package/src/assets/icons/detailed/folder.svg +1 -0
- package/src/assets/icons/detailed/full-width.svg +1 -0
- package/src/assets/icons/detailed/go-to-back.svg +1 -0
- package/src/assets/icons/detailed/grid.svg +1 -0
- package/src/assets/icons/detailed/group-add.svg +1 -0
- package/src/assets/icons/detailed/group.svg +1 -0
- package/src/assets/icons/detailed/heart-active.svg +1 -0
- package/src/assets/icons/detailed/heart.svg +1 -0
- package/src/assets/icons/detailed/highlighter.svg +1 -0
- package/src/assets/icons/detailed/home.svg +1 -0
- package/src/assets/icons/detailed/hourglass.svg +1 -0
- package/src/assets/icons/detailed/image.svg +1 -0
- package/src/assets/icons/detailed/info-badge.svg +1 -0
- package/src/assets/icons/detailed/information.svg +1 -0
- package/src/assets/icons/detailed/italic.svg +1 -0
- package/src/assets/icons/detailed/key.svg +1 -0
- package/src/assets/icons/detailed/language.svg +1 -0
- package/src/assets/icons/detailed/learning-path.svg +1 -0
- package/src/assets/icons/detailed/light-off.svg +1 -0
- package/src/assets/icons/detailed/light-on.svg +1 -0
- package/src/assets/icons/detailed/link.svg +1 -0
- package/src/assets/icons/detailed/lock.svg +1 -0
- package/src/assets/icons/detailed/login.svg +1 -0
- package/src/assets/icons/detailed/logout.svg +1 -0
- package/src/assets/icons/detailed/maximaze.svg +1 -0
- package/src/assets/icons/detailed/menu.svg +1 -0
- package/src/assets/icons/detailed/merge.svg +1 -0
- package/src/assets/icons/detailed/minimize.svg +1 -0
- package/src/assets/icons/detailed/mixed-class.svg +1 -0
- package/src/assets/icons/detailed/more-horizontal.svg +1 -0
- package/src/assets/icons/detailed/more-vertical.svg +1 -0
- package/src/assets/icons/detailed/news.svg +1 -0
- package/src/assets/icons/detailed/no-prerequisites.svg +1 -0
- package/src/assets/icons/detailed/notes.svg +1 -0
- package/src/assets/icons/detailed/number-code.svg +1 -0
- package/src/assets/icons/detailed/numbered-list.svg +1 -0
- package/src/assets/icons/detailed/on-site.svg +1 -0
- package/src/assets/icons/detailed/order-down.svg +1 -0
- package/src/assets/icons/detailed/order-up.svg +1 -0
- package/src/assets/icons/detailed/paste.svg +1 -0
- package/src/assets/icons/detailed/pausa.svg +1 -0
- package/src/assets/icons/detailed/pdf.svg +1 -0
- package/src/assets/icons/detailed/phone.svg +1 -0
- package/src/assets/icons/detailed/pin-map.svg +1 -0
- package/src/assets/icons/detailed/pin.svg +1 -0
- package/src/assets/icons/detailed/pizza.svg +1 -0
- package/src/assets/icons/detailed/play.svg +1 -0
- package/src/assets/icons/detailed/plug-in.svg +1 -0
- package/src/assets/icons/detailed/pointer.svg +1 -0
- package/src/assets/icons/detailed/printer.svg +1 -0
- package/src/assets/icons/detailed/profile-add.svg +1 -0
- package/src/assets/icons/detailed/profile.svg +1 -0
- package/src/assets/icons/detailed/push-pin-off.svg +1 -0
- package/src/assets/icons/detailed/push-pin-on.svg +1 -0
- package/src/assets/icons/detailed/qrcode.svg +1 -0
- package/src/assets/icons/detailed/question-badge.svg +1 -0
- package/src/assets/icons/detailed/radio.svg +1 -0
- package/src/assets/icons/detailed/redo.svg +1 -0
- package/src/assets/icons/detailed/relations.svg +1 -0
- package/src/assets/icons/detailed/reload.svg +1 -0
- package/src/assets/icons/detailed/remove-circle.svg +1 -0
- package/src/assets/icons/detailed/remove.svg +1 -0
- package/src/assets/icons/detailed/reorder.svg +1 -0
- package/src/assets/icons/detailed/repeat.svg +1 -0
- package/src/assets/icons/detailed/repository.svg +1 -0
- package/src/assets/icons/detailed/request-form.svg +1 -0
- package/src/assets/icons/detailed/resize-100%.svg +1 -0
- package/src/assets/icons/detailed/resize-height.svg +1 -0
- package/src/assets/icons/detailed/resize-width.svg +1 -0
- package/src/assets/icons/detailed/search.svg +1 -0
- package/src/assets/icons/detailed/sequential-prerequisites.svg +1 -0
- package/src/assets/icons/detailed/settings.svg +1 -0
- package/src/assets/icons/detailed/share.svg +1 -0
- package/src/assets/icons/detailed/sketch.svg +1 -0
- package/src/assets/icons/detailed/skills.svg +1 -0
- package/src/assets/icons/detailed/skip-back.svg +1 -0
- package/src/assets/icons/detailed/skip-forward.svg +1 -0
- package/src/assets/icons/detailed/sms.svg +1 -0
- package/src/assets/icons/detailed/sso-access.svg +1 -0
- package/src/assets/icons/detailed/star-active.svg +1 -0
- package/src/assets/icons/detailed/star.svg +1 -0
- package/src/assets/icons/detailed/success.svg +1 -0
- package/src/assets/icons/detailed/sun.svg +1 -0
- package/src/assets/icons/detailed/sunrise.svg +1 -0
- package/src/assets/icons/detailed/support.svg +1 -0
- package/src/assets/icons/detailed/survey.svg +1 -0
- package/src/assets/icons/detailed/table.svg +1 -0
- package/src/assets/icons/detailed/tematic-channels.svg +1 -0
- package/src/assets/icons/detailed/test.svg +1 -0
- package/src/assets/icons/detailed/text-body.svg +1 -0
- package/src/assets/icons/detailed/text-edit.svg +1 -0
- package/src/assets/icons/detailed/text-style.svg +1 -0
- package/src/assets/icons/detailed/time.svg +1 -0
- package/src/assets/icons/detailed/toilet-piper.svg +1 -0
- package/src/assets/icons/detailed/training-points.svg +1 -0
- package/src/assets/icons/detailed/trash.svg +1 -0
- package/src/assets/icons/detailed/underline.svg +1 -0
- package/src/assets/icons/detailed/undo.svg +1 -0
- package/src/assets/icons/detailed/unlock.svg +1 -0
- package/src/assets/icons/detailed/upload.svg +1 -0
- package/src/assets/icons/detailed/user-add.svg +1 -0
- package/src/assets/icons/detailed/user-badge.svg +1 -0
- package/src/assets/icons/detailed/user.svg +1 -0
- package/src/assets/icons/detailed/video-off.svg +1 -0
- package/src/assets/icons/detailed/video-on.svg +1 -0
- package/src/assets/icons/detailed/video-rec.svg +1 -0
- package/src/assets/icons/detailed/view-card.svg +1 -0
- package/src/assets/icons/detailed/view-list.svg +1 -0
- package/src/assets/icons/detailed/view.svg +1 -0
- package/src/assets/icons/detailed/voice-off.svg +1 -0
- package/src/assets/icons/detailed/voice-on.svg +1 -0
- package/src/assets/icons/detailed/volume-down.svg +1 -0
- package/src/assets/icons/detailed/volume-off.svg +1 -0
- package/src/assets/icons/detailed/volume-up.svg +1 -0
- package/src/assets/icons/detailed/warning.svg +1 -0
- package/src/assets/icons/detailed/webinar.svg +1 -0
- package/src/assets/icons/detailed/whiteboard.svg +1 -0
- package/src/assets/icons/detailed/wine.svg +1 -0
- package/src/assets/icons/detailed/zip.svg +1 -0
- package/src/assets/icons/detailed/zoom-in.svg +1 -0
- package/src/assets/icons/detailed/zoom-out.svg +1 -0
- package/src/assets/icons/detailed.json +1 -0
- package/src/assets/icons/index.js +7 -0
- package/src/assets/icons/normal/add-circle.svg +1 -0
- package/src/assets/icons/normal/add.svg +1 -0
- package/src/assets/icons/normal/align-center.svg +1 -0
- package/src/assets/icons/normal/align-justify.svg +1 -0
- package/src/assets/icons/normal/align-left.svg +1 -0
- package/src/assets/icons/normal/align-right.svg +1 -0
- package/src/assets/icons/normal/analysis-2.svg +1 -0
- package/src/assets/icons/normal/analysis-3.svg +1 -0
- package/src/assets/icons/normal/analysis.svg +1 -0
- package/src/assets/icons/normal/apple.svg +1 -0
- package/src/assets/icons/normal/arrow-down.svg +1 -0
- package/src/assets/icons/normal/arrow-left.svg +1 -0
- package/src/assets/icons/normal/arrow-right.svg +1 -0
- package/src/assets/icons/normal/arrow-up.svg +1 -0
- package/src/assets/icons/normal/attachment.svg +1 -0
- package/src/assets/icons/normal/back-to-front.svg +1 -0
- package/src/assets/icons/normal/bell-active.svg +1 -0
- package/src/assets/icons/normal/bell.svg +1 -0
- package/src/assets/icons/normal/bold.svg +1 -0
- package/src/assets/icons/normal/bookmark active.svg +1 -0
- package/src/assets/icons/normal/bookmark.svg +1 -0
- package/src/assets/icons/normal/building.svg +1 -0
- package/src/assets/icons/normal/bulleted-list.svg +1 -0
- package/src/assets/icons/normal/calendar.svg +1 -0
- package/src/assets/icons/normal/camera-off.svg +1 -0
- package/src/assets/icons/normal/camera-on.svg +1 -0
- package/src/assets/icons/normal/catalog.svg +1 -0
- package/src/assets/icons/normal/certificate.svg +1 -0
- package/src/assets/icons/normal/chat.svg +1 -0
- package/src/assets/icons/normal/check-badge.svg +1 -0
- package/src/assets/icons/normal/check-circle.svg +1 -0
- package/src/assets/icons/normal/check.svg +1 -0
- package/src/assets/icons/normal/checkbox.svg +1 -0
- package/src/assets/icons/normal/chevron-down-circle.svg +1 -0
- package/src/assets/icons/normal/chevron-down.svg +1 -0
- package/src/assets/icons/normal/chevron-left-circle.svg +1 -0
- package/src/assets/icons/normal/chevron-left.svg +1 -0
- package/src/assets/icons/normal/chevron-right-circle.svg +1 -0
- package/src/assets/icons/normal/chevron-right.svg +1 -0
- package/src/assets/icons/normal/chevron-up-circle.svg +1 -0
- package/src/assets/icons/normal/chevron-up.svg +1 -0
- package/src/assets/icons/normal/classroom.svg +1 -0
- package/src/assets/icons/normal/clear-field.svg +1 -0
- package/src/assets/icons/normal/clear-style.svg +1 -0
- package/src/assets/icons/normal/close-circle.svg +1 -0
- package/src/assets/icons/normal/close-loader.svg +1 -0
- package/src/assets/icons/normal/close.svg +1 -0
- package/src/assets/icons/normal/coffee.svg +1 -0
- package/src/assets/icons/normal/color.svg +1 -0
- package/src/assets/icons/normal/contact-us.svg +1 -0
- package/src/assets/icons/normal/copy.svg +1 -0
- package/src/assets/icons/normal/courses.svg +1 -0
- package/src/assets/icons/normal/dashboard.svg +1 -0
- package/src/assets/icons/normal/download.svg +1 -0
- package/src/assets/icons/normal/drag.svg +1 -0
- package/src/assets/icons/normal/dulicate.svg +1 -0
- package/src/assets/icons/normal/edit.svg +1 -0
- package/src/assets/icons/normal/elearning.svg +1 -0
- package/src/assets/icons/normal/email.svg +1 -0
- package/src/assets/icons/normal/error-2.svg +1 -0
- package/src/assets/icons/normal/error.svg +1 -0
- package/src/assets/icons/normal/exercise.svg +1 -0
- package/src/assets/icons/normal/external-link.svg +1 -0
- package/src/assets/icons/normal/extract.svg +1 -0
- package/src/assets/icons/normal/eye-off.svg +1 -0
- package/src/assets/icons/normal/eye-on.svg +1 -0
- package/src/assets/icons/normal/fail.svg +1 -0
- package/src/assets/icons/normal/fast-back.svg +1 -0
- package/src/assets/icons/normal/fast-forward.svg +1 -0
- package/src/assets/icons/normal/file-add.svg +1 -0
- package/src/assets/icons/normal/file-duplicate.svg +1 -0
- package/src/assets/icons/normal/file-remove.svg +1 -0
- package/src/assets/icons/normal/file-required.svg +1 -0
- package/src/assets/icons/normal/file.svg +1 -0
- package/src/assets/icons/normal/filter-2.svg +1 -0
- package/src/assets/icons/normal/filter-active.svg +1 -0
- package/src/assets/icons/normal/filter.svg +1 -0
- package/src/assets/icons/normal/flag.svg +1 -0
- package/src/assets/icons/normal/folder.svg +1 -0
- package/src/assets/icons/normal/full-width.svg +1 -0
- package/src/assets/icons/normal/go-to-back.svg +1 -0
- package/src/assets/icons/normal/grid.svg +1 -0
- package/src/assets/icons/normal/group-add.svg +1 -0
- package/src/assets/icons/normal/group.svg +1 -0
- package/src/assets/icons/normal/heart-active.svg +1 -0
- package/src/assets/icons/normal/heart.svg +1 -0
- package/src/assets/icons/normal/highlighter.svg +1 -0
- package/src/assets/icons/normal/home.svg +1 -0
- package/src/assets/icons/normal/hourglass.svg +1 -0
- package/src/assets/icons/normal/image.svg +1 -0
- package/src/assets/icons/normal/info-badge.svg +1 -0
- package/src/assets/icons/normal/information.svg +1 -0
- package/src/assets/icons/normal/italic.svg +1 -0
- package/src/assets/icons/normal/key.svg +1 -0
- package/src/assets/icons/normal/language.svg +1 -0
- package/src/assets/icons/normal/learning-path.svg +1 -0
- package/src/assets/icons/normal/light-off.svg +1 -0
- package/src/assets/icons/normal/light-on.svg +1 -0
- package/src/assets/icons/normal/link.svg +1 -0
- package/src/assets/icons/normal/lock.svg +1 -0
- package/src/assets/icons/normal/login.svg +1 -0
- package/src/assets/icons/normal/logout.svg +1 -0
- package/src/assets/icons/normal/maximize.svg +1 -0
- package/src/assets/icons/normal/menu.svg +1 -0
- package/src/assets/icons/normal/merge.svg +1 -0
- package/src/assets/icons/normal/minimize.svg +1 -0
- package/src/assets/icons/normal/mixed-class.svg +1 -0
- package/src/assets/icons/normal/more-horizontal.svg +1 -0
- package/src/assets/icons/normal/more-vertical.svg +1 -0
- package/src/assets/icons/normal/news.svg +1 -0
- package/src/assets/icons/normal/no-prerequisites.svg +1 -0
- package/src/assets/icons/normal/notes.svg +1 -0
- package/src/assets/icons/normal/number-code.svg +1 -0
- package/src/assets/icons/normal/numbered-list.svg +1 -0
- package/src/assets/icons/normal/on-site.svg +1 -0
- package/src/assets/icons/normal/order-down.svg +1 -0
- package/src/assets/icons/normal/order-up.svg +1 -0
- package/src/assets/icons/normal/paste.svg +1 -0
- package/src/assets/icons/normal/pausa.svg +1 -0
- package/src/assets/icons/normal/pdf.svg +1 -0
- package/src/assets/icons/normal/phone.svg +1 -0
- package/src/assets/icons/normal/pin-map.svg +1 -0
- package/src/assets/icons/normal/pin.svg +1 -0
- package/src/assets/icons/normal/pizza.svg +1 -0
- package/src/assets/icons/normal/play.svg +1 -0
- package/src/assets/icons/normal/plug-in.svg +1 -0
- package/src/assets/icons/normal/pointer.svg +1 -0
- package/src/assets/icons/normal/printer.svg +1 -0
- package/src/assets/icons/normal/profile-add.svg +1 -0
- package/src/assets/icons/normal/profile.svg +1 -0
- package/src/assets/icons/normal/push pin on.svg +1 -0
- package/src/assets/icons/normal/push-pin-off.svg +1 -0
- package/src/assets/icons/normal/qrcode.svg +1 -0
- package/src/assets/icons/normal/question-badge.svg +1 -0
- package/src/assets/icons/normal/radio.svg +1 -0
- package/src/assets/icons/normal/redo.svg +1 -0
- package/src/assets/icons/normal/relations.svg +1 -0
- package/src/assets/icons/normal/reload.svg +1 -0
- package/src/assets/icons/normal/remove-circle.svg +1 -0
- package/src/assets/icons/normal/remove.svg +1 -0
- package/src/assets/icons/normal/reorder.svg +1 -0
- package/src/assets/icons/normal/repeat.svg +1 -0
- package/src/assets/icons/normal/repository.svg +1 -0
- package/src/assets/icons/normal/request-form.svg +1 -0
- package/src/assets/icons/normal/resize-100%.svg +1 -0
- package/src/assets/icons/normal/resize-height.svg +1 -0
- package/src/assets/icons/normal/resize-width.svg +1 -0
- package/src/assets/icons/normal/search.svg +1 -0
- package/src/assets/icons/normal/sequential-prerequisites.svg +1 -0
- package/src/assets/icons/normal/settings.svg +1 -0
- package/src/assets/icons/normal/share.svg +1 -0
- package/src/assets/icons/normal/sketch.svg +1 -0
- package/src/assets/icons/normal/skills.svg +1 -0
- package/src/assets/icons/normal/skip-back.svg +1 -0
- package/src/assets/icons/normal/skip-forward.svg +1 -0
- package/src/assets/icons/normal/sms.svg +1 -0
- package/src/assets/icons/normal/sso-access.svg +1 -0
- package/src/assets/icons/normal/star-active.svg +1 -0
- package/src/assets/icons/normal/star.svg +1 -0
- package/src/assets/icons/normal/success.svg +1 -0
- package/src/assets/icons/normal/sun.svg +1 -0
- package/src/assets/icons/normal/sunrise.svg +1 -0
- package/src/assets/icons/normal/support.svg +1 -0
- package/src/assets/icons/normal/survey.svg +1 -0
- package/src/assets/icons/normal/table.svg +1 -0
- package/src/assets/icons/normal/tematic-channels.svg +1 -0
- package/src/assets/icons/normal/test.svg +1 -0
- package/src/assets/icons/normal/text-body.svg +1 -0
- package/src/assets/icons/normal/text-edit.svg +1 -0
- package/src/assets/icons/normal/text-style.svg +1 -0
- package/src/assets/icons/normal/time.svg +1 -0
- package/src/assets/icons/normal/toilet-paper.svg +1 -0
- package/src/assets/icons/normal/training-points.svg +1 -0
- package/src/assets/icons/normal/trash.svg +1 -0
- package/src/assets/icons/normal/underline.svg +1 -0
- package/src/assets/icons/normal/undo.svg +1 -0
- package/src/assets/icons/normal/unlock.svg +1 -0
- package/src/assets/icons/normal/upload.svg +1 -0
- package/src/assets/icons/normal/user-add.svg +1 -0
- package/src/assets/icons/normal/user-badge.svg +1 -0
- package/src/assets/icons/normal/user.svg +1 -0
- package/src/assets/icons/normal/video-off.svg +1 -0
- package/src/assets/icons/normal/video-on.svg +1 -0
- package/src/assets/icons/normal/video-rec.svg +1 -0
- package/src/assets/icons/normal/view-card.svg +1 -0
- package/src/assets/icons/normal/view-list.svg +1 -0
- package/src/assets/icons/normal/view.svg +1 -0
- package/src/assets/icons/normal/voice-off.svg +1 -0
- package/src/assets/icons/normal/voice-on.svg +1 -0
- package/src/assets/icons/normal/volume-down.svg +1 -0
- package/src/assets/icons/normal/volume-off.svg +1 -0
- package/src/assets/icons/normal/volume-up.svg +1 -0
- package/src/assets/icons/normal/warning.svg +1 -0
- package/src/assets/icons/normal/webinar.svg +1 -0
- package/src/assets/icons/normal/whiteboard.svg +1 -0
- package/src/assets/icons/normal/wine.svg +1 -0
- package/src/assets/icons/normal/zip.svg +1 -0
- package/src/assets/icons/normal/zoom-in.svg +1 -0
- package/src/assets/icons/normal/zoom-out.svg +1 -0
- package/src/assets/icons/normal.json +1 -0
- package/src/assets/icons/simple/add-circle.svg +1 -0
- package/src/assets/icons/simple/add.svg +1 -0
- package/src/assets/icons/simple/align-center.svg +1 -0
- package/src/assets/icons/simple/align-justify.svg +1 -0
- package/src/assets/icons/simple/align-left.svg +1 -0
- package/src/assets/icons/simple/align-right.svg +1 -0
- package/src/assets/icons/simple/analysis-2.svg +1 -0
- package/src/assets/icons/simple/analysis-3.svg +1 -0
- package/src/assets/icons/simple/analysis.svg +1 -0
- package/src/assets/icons/simple/apple.svg +1 -0
- package/src/assets/icons/simple/arrow-down.svg +1 -0
- package/src/assets/icons/simple/arrow-left.svg +1 -0
- package/src/assets/icons/simple/arrow-right.svg +1 -0
- package/src/assets/icons/simple/arrow-up.svg +1 -0
- package/src/assets/icons/simple/attachment.svg +1 -0
- package/src/assets/icons/simple/bck-to-front.svg +1 -0
- package/src/assets/icons/simple/bell-active.svg +1 -0
- package/src/assets/icons/simple/bell.svg +1 -0
- package/src/assets/icons/simple/bold.svg +1 -0
- package/src/assets/icons/simple/bookmark-active.svg +1 -0
- package/src/assets/icons/simple/bookmark.svg +1 -0
- package/src/assets/icons/simple/building.svg +1 -0
- package/src/assets/icons/simple/bulleted-list.svg +1 -0
- package/src/assets/icons/simple/calendar.svg +1 -0
- package/src/assets/icons/simple/camera-off.svg +1 -0
- package/src/assets/icons/simple/camera-on.svg +1 -0
- package/src/assets/icons/simple/catalog.svg +1 -0
- package/src/assets/icons/simple/certificate.svg +1 -0
- package/src/assets/icons/simple/chat.svg +1 -0
- package/src/assets/icons/simple/check-badge.svg +1 -0
- package/src/assets/icons/simple/check-circle.svg +1 -0
- package/src/assets/icons/simple/check.svg +1 -0
- package/src/assets/icons/simple/checkbox.svg +1 -0
- package/src/assets/icons/simple/chevron-down-circle.svg +1 -0
- package/src/assets/icons/simple/chevron-down.svg +1 -0
- package/src/assets/icons/simple/chevron-left-circle.svg +1 -0
- package/src/assets/icons/simple/chevron-left.svg +1 -0
- package/src/assets/icons/simple/chevron-right-circle.svg +1 -0
- package/src/assets/icons/simple/chevron-right.svg +1 -0
- package/src/assets/icons/simple/chevron-up-circle.svg +1 -0
- package/src/assets/icons/simple/chevron-up.svg +1 -0
- package/src/assets/icons/simple/classroom.svg +1 -0
- package/src/assets/icons/simple/clear-field.svg +1 -0
- package/src/assets/icons/simple/clear-style.svg +1 -0
- package/src/assets/icons/simple/close-circle.svg +1 -0
- package/src/assets/icons/simple/close-loader.svg +1 -0
- package/src/assets/icons/simple/close.svg +1 -0
- package/src/assets/icons/simple/coffee.svg +1 -0
- package/src/assets/icons/simple/color.svg +1 -0
- package/src/assets/icons/simple/contact-us.svg +1 -0
- package/src/assets/icons/simple/copy.svg +1 -0
- package/src/assets/icons/simple/courses.svg +1 -0
- package/src/assets/icons/simple/dashboard.svg +1 -0
- package/src/assets/icons/simple/download.svg +1 -0
- package/src/assets/icons/simple/drag.svg +1 -0
- package/src/assets/icons/simple/duplicate.svg +1 -0
- package/src/assets/icons/simple/edit.svg +1 -0
- package/src/assets/icons/simple/elearning.svg +1 -0
- package/src/assets/icons/simple/email.svg +1 -0
- package/src/assets/icons/simple/error-2.svg +1 -0
- package/src/assets/icons/simple/error.svg +1 -0
- package/src/assets/icons/simple/exercise.svg +1 -0
- package/src/assets/icons/simple/external-link.svg +1 -0
- package/src/assets/icons/simple/extract.svg +1 -0
- package/src/assets/icons/simple/eye-off.svg +1 -0
- package/src/assets/icons/simple/eye-on.svg +1 -0
- package/src/assets/icons/simple/fail.svg +1 -0
- package/src/assets/icons/simple/fast-back.svg +1 -0
- package/src/assets/icons/simple/fast-forward.svg +1 -0
- package/src/assets/icons/simple/file-add.svg +1 -0
- package/src/assets/icons/simple/file-duplicate.svg +1 -0
- package/src/assets/icons/simple/file-remove.svg +1 -0
- package/src/assets/icons/simple/file-required.svg +1 -0
- package/src/assets/icons/simple/file.svg +1 -0
- package/src/assets/icons/simple/filter-2.svg +1 -0
- package/src/assets/icons/simple/filter-active.svg +1 -0
- package/src/assets/icons/simple/filter.svg +1 -0
- package/src/assets/icons/simple/flag.svg +1 -0
- package/src/assets/icons/simple/folder.svg +1 -0
- package/src/assets/icons/simple/full-width.svg +1 -0
- package/src/assets/icons/simple/go-to-back.svg +1 -0
- package/src/assets/icons/simple/grid.svg +1 -0
- package/src/assets/icons/simple/group-add.svg +1 -0
- package/src/assets/icons/simple/group.svg +1 -0
- package/src/assets/icons/simple/heart-active.svg +1 -0
- package/src/assets/icons/simple/heart.svg +1 -0
- package/src/assets/icons/simple/highlighter.svg +1 -0
- package/src/assets/icons/simple/home.svg +1 -0
- package/src/assets/icons/simple/hourglass.svg +1 -0
- package/src/assets/icons/simple/image.svg +1 -0
- package/src/assets/icons/simple/info-badge.svg +1 -0
- package/src/assets/icons/simple/information.svg +1 -0
- package/src/assets/icons/simple/italic.svg +1 -0
- package/src/assets/icons/simple/key.svg +1 -0
- package/src/assets/icons/simple/language.svg +1 -0
- package/src/assets/icons/simple/learning-path.svg +1 -0
- package/src/assets/icons/simple/light-off.svg +1 -0
- package/src/assets/icons/simple/light-on.svg +1 -0
- package/src/assets/icons/simple/link.svg +1 -0
- package/src/assets/icons/simple/lock.svg +1 -0
- package/src/assets/icons/simple/login.svg +1 -0
- package/src/assets/icons/simple/logout.svg +1 -0
- package/src/assets/icons/simple/maximaze.svg +1 -0
- package/src/assets/icons/simple/menu.svg +1 -0
- package/src/assets/icons/simple/merge.svg +1 -0
- package/src/assets/icons/simple/minimaze.svg +1 -0
- package/src/assets/icons/simple/mixed-class.svg +1 -0
- package/src/assets/icons/simple/more-horizontal.svg +1 -0
- package/src/assets/icons/simple/more-vertical.svg +1 -0
- package/src/assets/icons/simple/news.svg +1 -0
- package/src/assets/icons/simple/no-prerequisites.svg +1 -0
- package/src/assets/icons/simple/notes.svg +1 -0
- package/src/assets/icons/simple/number-code.svg +1 -0
- package/src/assets/icons/simple/numbered-list.svg +1 -0
- package/src/assets/icons/simple/on-site.svg +1 -0
- package/src/assets/icons/simple/order-down.svg +1 -0
- package/src/assets/icons/simple/order-up.svg +1 -0
- package/src/assets/icons/simple/paste.svg +1 -0
- package/src/assets/icons/simple/pausa.svg +1 -0
- package/src/assets/icons/simple/pdf.svg +1 -0
- package/src/assets/icons/simple/phone.svg +1 -0
- package/src/assets/icons/simple/pin-map.svg +1 -0
- package/src/assets/icons/simple/pin.svg +1 -0
- package/src/assets/icons/simple/pizza.svg +1 -0
- package/src/assets/icons/simple/play.svg +1 -0
- package/src/assets/icons/simple/plug-in.svg +1 -0
- package/src/assets/icons/simple/pointer.svg +1 -0
- package/src/assets/icons/simple/printer.svg +1 -0
- package/src/assets/icons/simple/profile-add.svg +1 -0
- package/src/assets/icons/simple/profile.svg +1 -0
- package/src/assets/icons/simple/push-pin-off.svg +1 -0
- package/src/assets/icons/simple/push-pin-on.svg +1 -0
- package/src/assets/icons/simple/qrcode.svg +1 -0
- package/src/assets/icons/simple/question-badge.svg +1 -0
- package/src/assets/icons/simple/radio.svg +1 -0
- package/src/assets/icons/simple/redo.svg +1 -0
- package/src/assets/icons/simple/relations.svg +1 -0
- package/src/assets/icons/simple/reload.svg +1 -0
- package/src/assets/icons/simple/remove-circle.svg +1 -0
- package/src/assets/icons/simple/remove.svg +1 -0
- package/src/assets/icons/simple/repeart.svg +1 -0
- package/src/assets/icons/simple/repository.svg +1 -0
- package/src/assets/icons/simple/request-form.svg +1 -0
- package/src/assets/icons/simple/resize-100%.svg +1 -0
- package/src/assets/icons/simple/resize-height.svg +1 -0
- package/src/assets/icons/simple/resize-width.svg +1 -0
- package/src/assets/icons/simple/search.svg +1 -0
- package/src/assets/icons/simple/sequential-prerequisites.svg +1 -0
- package/src/assets/icons/simple/settings.svg +1 -0
- package/src/assets/icons/simple/share.svg +1 -0
- package/src/assets/icons/simple/sketch.svg +1 -0
- package/src/assets/icons/simple/skills.svg +1 -0
- package/src/assets/icons/simple/skip-back.svg +1 -0
- package/src/assets/icons/simple/skip-forward.svg +1 -0
- package/src/assets/icons/simple/sms.svg +1 -0
- package/src/assets/icons/simple/sso-access.svg +1 -0
- package/src/assets/icons/simple/star-active.svg +1 -0
- package/src/assets/icons/simple/star.svg +1 -0
- package/src/assets/icons/simple/success.svg +1 -0
- package/src/assets/icons/simple/sun.svg +1 -0
- package/src/assets/icons/simple/sunrise.svg +1 -0
- package/src/assets/icons/simple/support.svg +1 -0
- package/src/assets/icons/simple/survey.svg +1 -0
- package/src/assets/icons/simple/table.svg +1 -0
- package/src/assets/icons/simple/tematic-channels.svg +1 -0
- package/src/assets/icons/simple/test.svg +1 -0
- package/src/assets/icons/simple/text-body.svg +1 -0
- package/src/assets/icons/simple/text-edit.svg +1 -0
- package/src/assets/icons/simple/text-style.svg +1 -0
- package/src/assets/icons/simple/time.svg +1 -0
- package/src/assets/icons/simple/toilet-paper.svg +1 -0
- package/src/assets/icons/simple/training-points.svg +1 -0
- package/src/assets/icons/simple/trash.svg +1 -0
- package/src/assets/icons/simple/underline.svg +1 -0
- package/src/assets/icons/simple/undo.svg +1 -0
- package/src/assets/icons/simple/unlock.svg +1 -0
- package/src/assets/icons/simple/upload.svg +1 -0
- package/src/assets/icons/simple/user-add.svg +1 -0
- package/src/assets/icons/simple/user-badge.svg +1 -0
- package/src/assets/icons/simple/user.svg +1 -0
- package/src/assets/icons/simple/video-off.svg +1 -0
- package/src/assets/icons/simple/video-on.svg +1 -0
- package/src/assets/icons/simple/video-rec.svg +1 -0
- package/src/assets/icons/simple/view-card.svg +1 -0
- package/src/assets/icons/simple/view-list.svg +1 -0
- package/src/assets/icons/simple/view.svg +1 -0
- package/src/assets/icons/simple/voice-off.svg +1 -0
- package/src/assets/icons/simple/voice-on.svg +1 -0
- package/src/assets/icons/simple/volume-down.svg +1 -0
- package/src/assets/icons/simple/volume-off.svg +1 -0
- package/src/assets/icons/simple/volume-up.svg +1 -0
- package/src/assets/icons/simple/warning.svg +1 -0
- package/src/assets/icons/simple/webinar.svg +1 -0
- package/src/assets/icons/simple/whiteboard.svg +1 -0
- package/src/assets/icons/simple/wine.svg +1 -0
- package/src/assets/icons/simple/zip.svg +1 -0
- package/src/assets/icons/simple/zoom-in.svg +1 -0
- package/src/assets/icons/simple/zoom-out.svg +1 -0
- package/src/assets/icons/simple.json +1 -0
- package/src/components/VvAccordion/VvAccordion.ts +34 -0
- package/src/components/VvAccordion/VvAccordion.vue +92 -0
- package/src/components/VvAccordion/useAccordionProps.ts +45 -0
- package/src/components/VvAccordionGroup/VvAccordionGroup.ts +36 -0
- package/src/components/VvAccordionGroup/VvAccordionGroup.vue +63 -0
- package/src/components/VvBadge/VvBadge.ts +4 -0
- package/src/components/VvBadge/VvBadge.vue +12 -0
- package/src/components/VvBreadcrumb/VvBreadcrumb.ts +14 -0
- package/src/components/VvBreadcrumb/VvBreadcrumb.vue +52 -0
- package/src/components/VvButton/VvButton.ts +117 -0
- package/src/components/VvButton/VvButton.vue +189 -0
- package/src/components/VvButton/useButtonGroupProps.ts +51 -0
- package/src/components/VvButtonGroup/VvButtonGroup.ts +37 -0
- package/src/components/VvButtonGroup/VvButtonGroup.vue +55 -0
- package/src/components/VvCard/VvCard.ts +4 -0
- package/src/components/VvCard/VvCard.vue +37 -0
- package/src/components/VvCheck/VvCheck.ts +48 -0
- package/src/components/VvCheck/VvCheck.vue +147 -0
- package/src/components/VvCheck/useCheckProps.ts +41 -0
- package/src/components/VvCheckGroup/VvCheckGroup.ts +34 -0
- package/src/components/VvCheckGroup/VvCheckGroup.vue +84 -0
- package/src/components/VvDialog/VvDialog.ts +17 -0
- package/src/components/VvDialog/VvDialog.vue +91 -0
- package/src/components/VvDialog/constants.ts +5 -0
- package/src/components/VvDropdown/VvDropdown.ts +46 -0
- package/src/components/VvDropdown/VvDropdown.vue +130 -0
- package/src/components/VvIcon/VvIcon.ts +94 -0
- package/src/components/VvIcon/VvIcon.vue +124 -0
- package/src/components/VvInputText/VvInputText.ts +66 -0
- package/src/components/VvInputText/VvInputText.vue +249 -0
- package/src/components/VvInputText/VvInputTextActions.ts +151 -0
- package/src/components/VvInputText/constants.ts +34 -0
- package/src/components/VvNativeSelect/VvNativeSelect.ts +70 -0
- package/src/components/VvNativeSelect/VvNativeSelect.vue +106 -0
- package/src/components/VvProgress/VvProgress.ts +28 -0
- package/src/components/VvProgress/VvProgress.vue +34 -0
- package/src/components/VvRadio/VvRadio.ts +25 -0
- package/src/components/VvRadio/VvRadio.vue +130 -0
- package/src/components/VvRadio/useRadioProps.ts +40 -0
- package/src/components/VvRadioGroup/VvRadioGroup.ts +25 -0
- package/src/components/VvRadioGroup/VvRadioGroup.vue +80 -0
- package/src/components/VvSelect/VvSelect.ts +91 -0
- package/src/components/VvSelect/VvSelect.vue +194 -0
- package/src/components/VvTextarea/VvTextarea.ts +64 -0
- package/src/components/VvTextarea/VvTextarea.vue +184 -0
- package/src/components/VvTextarea/constants.ts +14 -0
- package/src/components/common/HintSlot.ts +187 -0
- package/src/components/index.ts +12 -0
- package/src/composables/debouncedInput/useDebouncedInput.ts +19 -0
- package/src/composables/focus/useComponentFocus.ts +22 -0
- package/src/composables/group/types/IAccordionGroupState.ts +12 -0
- package/src/composables/group/types/IButtonGroupState.ts +21 -0
- package/src/composables/group/types/IGroupState.ts +12 -0
- package/src/composables/group/types/IInputGroup.ts +13 -0
- package/src/composables/group/useInjectedGroupState.ts +62 -0
- package/src/composables/group/useProvideGroupState.ts +22 -0
- package/src/composables/icons/useComponentIcons.ts +87 -0
- package/src/composables/options/useOptions.ts +27 -0
- package/src/composables/textLimit/useTextLimit.ts +44 -0
- package/src/composables/useModifiers.ts +100 -0
- package/src/constants.ts +7 -0
- package/src/directives/.README +0 -0
- package/src/index.ts +15 -0
- package/src/props/index.ts +84 -0
- package/src/stories/Accordion/Accordion.stories.mdx +37 -0
- package/src/stories/Accordion/AccordionBordered.stories.mdx +26 -0
- package/src/stories/Accordion/AccordionIconRight.stories.mdx +32 -0
- package/src/stories/Accordion/AccordionSlots.stories.mdx +82 -0
- package/src/stories/Accordion/accordionTest.js +36 -0
- package/src/stories/AccordionGroup/Accordion.stories.mdx +42 -0
- package/src/stories/AccordionGroup/AccordionGroup.stories.mdx +43 -0
- package/src/stories/AccordionGroup/AccordionItems.stories.mdx +51 -0
- package/src/stories/AccordionGroup/accordionGroupTest.js +51 -0
- package/src/stories/Badge/Badge.stories.mdx +38 -0
- package/src/stories/Badge/BadgeColor.stories.mdx +54 -0
- package/src/stories/Badge/BadgeDot.stories.mdx +20 -0
- package/src/stories/Badge/BadgeTest.js +21 -0
- package/src/stories/Breadcrumb/Breadcrumb.stories.mdx +45 -0
- package/src/stories/Breadcrumb/BreadcrumbMultiline.stories.mdx +41 -0
- package/src/stories/Button/Button.stories.mdx +65 -0
- package/src/stories/Button/Button.test.ts +61 -0
- package/src/stories/Button/ButtonBadge.stories.mdx +34 -0
- package/src/stories/Button/ButtonIcon.stories.mdx +43 -0
- package/src/stories/Button/ButtonIconPosition.stories.mdx +106 -0
- package/src/stories/Button/ButtonLink.stories.mdx +125 -0
- package/src/stories/Button/ButtonLoading.stories.mdx +81 -0
- package/src/stories/Button/ButtonModifiers.stories.mdx +180 -0
- package/src/stories/Button/ButtonSlots.stories.mdx +123 -0
- package/src/stories/Button/ButtonVariant.stories.mdx +205 -0
- package/src/stories/Button/test.js +41 -0
- package/src/stories/ButtonGroup/ButtonGroup.stories.mdx +39 -0
- package/src/stories/ButtonGroup/ButtonGroupAction.stories.mdx +83 -0
- package/src/stories/ButtonGroup/ButtonGroupActionQuiet.stories.mdx +50 -0
- package/src/stories/ButtonGroup/ButtonGroupBlock.stories.mdx +40 -0
- package/src/stories/ButtonGroup/ButtonGroupCompact.stories.mdx +38 -0
- package/src/stories/ButtonGroup/ButtonGroupRounded.stories.mdx +77 -0
- package/src/stories/ButtonGroup/ButtonGroupTest.js +61 -0
- package/src/stories/ButtonGroup/ButtonGroupToggle.stories.mdx +131 -0
- package/src/stories/ButtonGroup/ButtonGroupVertical.stories.mdx +38 -0
- package/src/stories/Card/Card.stories.mdx +23 -0
- package/src/stories/Card/CardSlots.stories.mdx +42 -0
- package/src/stories/Card/CardVariant.stories.mdx +37 -0
- package/src/stories/Check/Check.stories.mdx +62 -0
- package/src/stories/Check/CheckBinary.stories.mdx +75 -0
- package/src/stories/Check/CheckDisabled.stories.mdx +30 -0
- package/src/stories/Check/CheckError.stories.mdx +64 -0
- package/src/stories/Check/CheckErrorTests.js +74 -0
- package/src/stories/Check/CheckHintLabel.stories.mdx +30 -0
- package/src/stories/Check/CheckPropertyTest.js +102 -0
- package/src/stories/Check/CheckReadonly.stories.mdx +30 -0
- package/src/stories/Check/CheckSlots.stories.mdx +51 -0
- package/src/stories/Check/CheckSwitch.stories.mdx +30 -0
- package/src/stories/CheckGroup/CheckGroup.stories.mdx +69 -0
- package/src/stories/CheckGroup/CheckGroupDisabled.stories.mdx +26 -0
- package/src/stories/CheckGroup/CheckGroupError.stories.mdx +28 -0
- package/src/stories/CheckGroup/CheckGroupHintLabel.stories.mdx +27 -0
- package/src/stories/CheckGroup/CheckGroupLabel.stories.mdx +26 -0
- package/src/stories/CheckGroup/CheckGroupOptionLabel.stories.mdx +48 -0
- package/src/stories/CheckGroup/CheckGroupOptionValue.stories.mdx +48 -0
- package/src/stories/CheckGroup/CheckGroupOptions.stories.mdx +40 -0
- package/src/stories/CheckGroup/CheckGroupReadonly.stories.mdx +26 -0
- package/src/stories/CheckGroup/CheckGroupSlots.stories.mdx +152 -0
- package/src/stories/CheckGroup/CheckGroupValid.stories.mdx +28 -0
- package/src/stories/CheckGroup/CheckGroupVertical.stories.mdx +26 -0
- package/src/stories/Dialog/Dialog.stories.mdx +29 -0
- package/src/stories/Dialog/DialogAutoClose.stories.mdx +18 -0
- package/src/stories/Dialog/DialogSize.stories.mdx +36 -0
- package/src/stories/Dropdown/Dropdown.stories.mdx +50 -0
- package/src/stories/Dropdown/DropdownDisabled.stories.mdx +25 -0
- package/src/stories/Dropdown/DropdownLabelNoResults.stories.mdx +25 -0
- package/src/stories/Dropdown/DropdownMaxValues.stories.mdx +26 -0
- package/src/stories/Dropdown/DropdownMultiple.stories.mdx +56 -0
- package/src/stories/Dropdown/DropdownOptions.stories.mdx +76 -0
- package/src/stories/Dropdown/DropdownUseObject.stories.mdx +58 -0
- package/src/stories/Icon/Icon.stories.mdx +73 -0
- package/src/stories/Icon/IconList.vue +34 -0
- package/src/stories/Icon/IconPrefix.stories.mdx +79 -0
- package/src/stories/Icon/IconRemote.stories.mdx +39 -0
- package/src/stories/Icon/IconTest.js +27 -0
- package/src/stories/Icon/IconsList.stories.mdx +35 -0
- package/src/stories/InputText/InputText.stories.mdx +94 -0
- package/src/stories/InputText/InputTextAutocomplete.stories.mdx +15 -0
- package/src/stories/InputText/InputTextAutofocus.stories.mdx +20 -0
- package/src/stories/InputText/InputTextDisabled.stories.mdx +19 -0
- package/src/stories/InputText/InputTextError.stories.mdx +19 -0
- package/src/stories/InputText/InputTextFloating.stories.mdx +20 -0
- package/src/stories/InputText/InputTextHintLabel.stories.mdx +18 -0
- package/src/stories/InputText/InputTextIcon.stories.mdx +18 -0
- package/src/stories/InputText/InputTextIconPosition.stories.mdx +31 -0
- package/src/stories/InputText/InputTextLabel.stories.mdx +15 -0
- package/src/stories/InputText/InputTextLoading.stories.mdx +19 -0
- package/src/stories/InputText/InputTextMax.stories.mdx +31 -0
- package/src/stories/InputText/InputTextMaxLength.stories.mdx +36 -0
- package/src/stories/InputText/InputTextMin.stories.mdx +31 -0
- package/src/stories/InputText/InputTextMinLength.stories.mdx +15 -0
- package/src/stories/InputText/InputTextPlaceholder.stories.mdx +15 -0
- package/src/stories/InputText/InputTextReadonly.stories.mdx +19 -0
- package/src/stories/InputText/InputTextSlots.stories.mdx +30 -0
- package/src/stories/InputText/InputTextStep.stories.mdx +31 -0
- package/src/stories/InputText/InputTextType.stories.mdx +81 -0
- package/src/stories/InputText/InputTextValid.stories.mdx +19 -0
- package/src/stories/NativeSelect/NativeSelect.stories.mdx +53 -0
- package/src/stories/NativeSelect/NativeSelectDisabled.stories.mdx +32 -0
- package/src/stories/NativeSelect/NativeSelectError.stories.mdx +36 -0
- package/src/stories/NativeSelect/NativeSelectHintLabel.stories.mdx +34 -0
- package/src/stories/NativeSelect/NativeSelectIconLeftRight.stories.mdx +42 -0
- package/src/stories/NativeSelect/NativeSelectLoading.stories.mdx +27 -0
- package/src/stories/NativeSelect/NativeSelectOptions.stories.mdx +78 -0
- package/src/stories/NativeSelect/NativeSelectReadonly.stories.mdx +34 -0
- package/src/stories/NativeSelect/NativeSelectUseObject.stories.mdx +66 -0
- package/src/stories/NativeSelect/NativeSelectValid.stories.mdx +36 -0
- package/src/stories/NativeSelect/NativeSelectValueKey.stories.mdx +66 -0
- package/src/stories/Progress/Progress.stories.mdx +40 -0
- package/src/stories/Progress/ProgressDeterminate.stories.mdx +19 -0
- package/src/stories/Progress/ProgressTest.js +28 -0
- package/src/stories/Radio/Radio.stories.mdx +67 -0
- package/src/stories/Radio/RadioDisabled.stories.mdx +30 -0
- package/src/stories/Radio/RadioError.stories.mdx +64 -0
- package/src/stories/Radio/RadioHintLabel.stories.mdx +30 -0
- package/src/stories/Radio/RadioSlots.stories.mdx +29 -0
- package/src/stories/Radio/RadioTest.js +90 -0
- package/src/stories/RadioGroup/RadioGroup.stories.mdx +73 -0
- package/src/stories/RadioGroup/RadioGroupDisabled.stories.mdx +33 -0
- package/src/stories/RadioGroup/RadioGroupError.stories.mdx +35 -0
- package/src/stories/RadioGroup/RadioGroupHintLabel.stories.mdx +33 -0
- package/src/stories/RadioGroup/RadioGroupLabel.stories.mdx +29 -0
- package/src/stories/RadioGroup/RadioGroupOptionLabel.stories.mdx +65 -0
- package/src/stories/RadioGroup/RadioGroupOptionValue.stories.mdx +65 -0
- package/src/stories/RadioGroup/RadioGroupOptions.stories.mdx +58 -0
- package/src/stories/RadioGroup/RadioGroupReadonly.stories.mdx +29 -0
- package/src/stories/RadioGroup/RadioGroupSlots.stories.mdx +162 -0
- package/src/stories/RadioGroup/RadioGroupValid.stories.mdx +35 -0
- package/src/stories/RadioGroup/RadioGroupVertical.stories.mdx +33 -0
- package/src/stories/RadioGroup/RadioOptionsTest.js +78 -0
- package/src/stories/RadioGroup/RadioProperty.test.ts +87 -0
- package/src/stories/RadioGroup/RadioPropertyTest.js +131 -0
- package/src/stories/RadioGroup/RadioSlotsTest.js +20 -0
- package/src/stories/Select/Select.stories.mdx +55 -0
- package/src/stories/Select/SelectDisabled.stories.mdx +32 -0
- package/src/stories/Select/SelectMaxValues.stories.mdx +33 -0
- package/src/stories/Select/SelectMultiple.stories.mdx +64 -0
- package/src/stories/Select/SelectOptions.stories.mdx +78 -0
- package/src/stories/Select/SelectSearchable.stories.mdx +80 -0
- package/src/stories/Select/SelectSeparator.stories.mdx +64 -0
- package/src/stories/Select/SelectUseObject.stories.mdx +66 -0
- package/src/stories/Textarea/Textarea.stories.mdx +66 -0
- package/src/stories/Textarea/TextareaAutoclear.stories.mdx +23 -0
- package/src/stories/Textarea/TextareaAutocomplete.stories.mdx +23 -0
- package/src/stories/Textarea/TextareaAutofocus.stories.mdx +24 -0
- package/src/stories/Textarea/TextareaDebounce.stories.mdx +23 -0
- package/src/stories/Textarea/TextareaDisabled.stories.mdx +23 -0
- package/src/stories/Textarea/TextareaError.stories.mdx +22 -0
- package/src/stories/Textarea/TextareaErrorLabel.stories.mdx +37 -0
- package/src/stories/Textarea/TextareaFloating.stories.mdx +25 -0
- package/src/stories/Textarea/TextareaHintLabel.stories.mdx +22 -0
- package/src/stories/Textarea/TextareaIcon.stories.mdx +22 -0
- package/src/stories/Textarea/TextareaIconPosition.stories.mdx +39 -0
- package/src/stories/Textarea/TextareaId.stories.mdx +19 -0
- package/src/stories/Textarea/TextareaLabel.stories.mdx +19 -0
- package/src/stories/Textarea/TextareaLimit.stories.mdx +50 -0
- package/src/stories/Textarea/TextareaLoading.stories.mdx +22 -0
- package/src/stories/Textarea/TextareaLoadingLabel.stories.mdx +23 -0
- package/src/stories/Textarea/TextareaMaxLength.stories.mdx +19 -0
- package/src/stories/Textarea/TextareaMinLength.stories.mdx +19 -0
- package/src/stories/Textarea/TextareaModifiers.stories.mdx +24 -0
- package/src/stories/Textarea/TextareaName.stories.mdx +23 -0
- package/src/stories/Textarea/TextareaPlaceholder.stories.mdx +19 -0
- package/src/stories/Textarea/TextareaReadonly.stories.mdx +23 -0
- package/src/stories/Textarea/TextareaRequired.stories.mdx +22 -0
- package/src/stories/Textarea/TextareaResizable.stories.mdx +22 -0
- package/src/stories/Textarea/TextareaRowsCols.stories.mdx +39 -0
- package/src/stories/Textarea/TextareaSlots.stories.mdx +31 -0
- package/src/stories/Textarea/TextareaValid.stories.mdx +22 -0
- package/src/stories/Textarea/TextareaValidLabel.stories.mdx +35 -0
- package/src/stories/stories.scss +35 -0
- package/src/stories/utils.ts +12 -0
- package/src/stories/volver-ui-vue.stories.mdx +77 -0
- package/src/test/expect.ts +52 -0
- package/src/test/types.d.ts +4 -0
- package/src/types/.README +0 -0
- package/src/types/generic.d.ts +1 -0
- package/src/utils/ObjectUtilities.ts +275 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2.25 3.344)"><g transform="translate(-313.25 -4.802)" fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M321.577,5.291a1.632,1.632,0,0,1,2.846,0l4.177,7.334,4.178,7.334a1.666,1.666,0,0,1-1.423,2.5H314.645a1.666,1.666,0,0,1-1.423-2.5l4.178-7.334Z" stroke="none"/><path d="M 322.999755859375 6.83342170715332 L 315.2396545410156 20.4580078125 L 330.7598876953125 20.4580078125 L 322.999755859375 6.83342170715332 M 322.999755859375 4.458002090454102 C 323.55322265625 4.458002090454102 324.106689453125 4.735597610473633 324.4228210449219 5.290786743164062 L 332.7772827148438 19.95887756347656 C 333.4095764160156 21.07002639770508 332.6188354492188 22.4580078125 331.3542175292969 22.4580078125 L 314.6452941894531 22.4580078125 C 313.3806762695312 22.4580078125 312.5899353027344 21.07002639770508 313.2222595214844 19.95887756347656 L 321.5766906738281 5.290786743164062 C 321.8928527832031 4.735597610473633 322.4463195800781 4.458002090454102 322.999755859375 4.458002090454102 Z" stroke="none" fill="#000"/></g><line y2="4" transform="translate(9.75 5.656)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line transform="translate(9.75 13.656)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2.998 3.136)"><g transform="translate(-9.998 -4.815)" fill="none" stroke-miterlimit="10"><path d="M22,16.179a1.5,1.5,0,1,1,.44,1.06A1.5,1.5,0,0,1,22,16.179Z" stroke="none"/><path d="M 23.5 14.67900085449219 C 23.91474914550781 14.67900085449219 24.28824996948242 14.84625053405762 24.56049919128418 15.11775016784668 C 24.83275032043457 15.39000129699707 25 15.76425170898438 25 16.17900085449219 C 25 16.59375 24.83275032043457 16.96725082397461 24.56049919128418 17.239501953125 C 24.28824996948242 17.51100158691406 23.91474914550781 17.67900085449219 23.5 17.67900085449219 C 23.08525085449219 17.67900085449219 22.71175003051758 17.51100158691406 22.43950080871582 17.239501953125 C 22.16799926757812 16.96725082397461 22 16.59375 22 16.17900085449219 C 22 15.76425170898438 22.16799926757812 15.39000129699707 22.43950080871582 15.11775016784668 C 22.71175003051758 14.84625053405762 23.08525085449219 14.67900085449219 23.5 14.67900085449219 Z" stroke="none" fill="#000"/></g><g transform="translate(-16.998 0.185)" fill="none" stroke-miterlimit="10"><path d="M22,16.179a1.5,1.5,0,1,1,.44,1.06A1.5,1.5,0,0,1,22,16.179Z" stroke="none"/><path d="M 23.5 14.67900085449219 C 23.91474914550781 14.67900085449219 24.28824996948242 14.84625053405762 24.56049919128418 15.11775016784668 C 24.83275032043457 15.39000129699707 25 15.76425170898438 25 16.17900085449219 C 25 16.59375 24.83275032043457 16.96725082397461 24.56049919128418 17.239501953125 C 24.28824996948242 17.51100158691406 23.91474914550781 17.67900085449219 23.5 17.67900085449219 C 23.08525085449219 17.67900085449219 22.71175003051758 17.51100158691406 22.43950080871582 17.239501953125 C 22.16799926757812 16.96725082397461 22 16.59375 22 16.17900085449219 C 22 15.76425170898438 22.16799926757812 15.39000129699707 22.43950080871582 15.11775016784668 C 22.71175003051758 14.84625053405762 23.08525085449219 14.67900085449219 23.5 14.67900085449219 Z" stroke="none" fill="#000"/></g><g transform="translate(-11.998 0.185)" fill="none" stroke-miterlimit="10"><path d="M22,16.179a1.5,1.5,0,1,1,.44,1.06A1.5,1.5,0,0,1,22,16.179Z" stroke="none"/><path d="M 23.5 14.67900085449219 C 23.91474914550781 14.67900085449219 24.28824996948242 14.84625053405762 24.56049919128418 15.11775016784668 C 24.83275032043457 15.39000129699707 25 15.76425170898438 25 16.17900085449219 C 25 16.59375 24.83275032043457 16.96725082397461 24.56049919128418 17.239501953125 C 24.28824996948242 17.51100158691406 23.91474914550781 17.67900085449219 23.5 17.67900085449219 C 23.08525085449219 17.67900085449219 22.71175003051758 17.51100158691406 22.43950080871582 17.239501953125 C 22.16799926757812 16.96725082397461 22 16.59375 22 16.17900085449219 C 22 15.76425170898438 22.16799926757812 15.39000129699707 22.43950080871582 15.11775016784668 C 22.71175003051758 14.84625053405762 23.08525085449219 14.67900085449219 23.5 14.67900085449219 Z" stroke="none" fill="#000"/></g><g transform="translate(-14.498 -4.815)" fill="none" stroke-miterlimit="10"><path d="M22,16.179a1.5,1.5,0,1,1,.44,1.06A1.5,1.5,0,0,1,22,16.179Z" stroke="none"/><path d="M 23.5 14.67900276184082 C 23.91474914550781 14.67900276184082 24.28824996948242 14.84625244140625 24.56049919128418 15.11775207519531 C 24.83275032043457 15.3900032043457 25 15.76425361633301 25 16.17900276184082 C 25 16.59375381469727 24.83275032043457 16.96725273132324 24.56049919128418 17.239501953125 C 24.28824996948242 17.51100158691406 23.91474914550781 17.67900276184082 23.5 17.67900276184082 C 23.08525085449219 17.67900276184082 22.71175003051758 17.51100158691406 22.43950080871582 17.239501953125 C 22.16799926757812 16.96725273132324 22 16.59375381469727 22 16.17900276184082 C 22 15.76425361633301 22.16799926757812 15.3900032043457 22.43950080871582 15.11775207519531 C 22.71175003051758 14.84625244140625 23.08525085449219 14.67900276184082 23.5 14.67900276184082 Z" stroke="none" fill="#000"/></g><g transform="translate(-18.998 -4.815)" fill="none" stroke-miterlimit="10"><path d="M22,16.179a1.5,1.5,0,1,1,.44,1.06A1.5,1.5,0,0,1,22,16.179Z" stroke="none"/><path d="M 23.5 14.67900085449219 C 23.91474914550781 14.67900085449219 24.28824996948242 14.84625053405762 24.56049919128418 15.11775016784668 C 24.83275032043457 15.39000129699707 25 15.76425170898438 25 16.17900085449219 C 25 16.59375 24.83275032043457 16.96725082397461 24.56049919128418 17.239501953125 C 24.28824996948242 17.51100158691406 23.91474914550781 17.67900085449219 23.5 17.67900085449219 C 23.08525085449219 17.67900085449219 22.71175003051758 17.51100158691406 22.43950080871582 17.239501953125 C 22.16799926757812 16.96725082397461 22 16.59375 22 16.17900085449219 C 22 15.76425170898438 22.16799926757812 15.39000129699707 22.43950080871582 15.11775016784668 C 22.71175003051758 14.84625053405762 23.08525085449219 14.67900085449219 23.5 14.67900085449219 Z" stroke="none" fill="#000"/></g><path d="M66,14.487v-8a1.845,1.845,0,0,1,2-2H82a1.845,1.845,0,0,1,2,2v8" transform="translate(-65.997 -4.623)" 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="none"/><g transform="translate(2.998 3.617)"><line y1="6" x2="4" transform="translate(1.002 10.383)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line y1="6" transform="translate(9.002 10.383)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x1="4" y1="6" transform="translate(13.002 10.383)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><g transform="translate(0 -0.617)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="18.005" height="12" rx="3" stroke="none"/><rect x="1" y="1" width="16.005" height="10" rx="2" fill="none"/></g><path d="M65.324-835.487c1.425-1,3.163-3.181,6-3.181-1.206,3.762,2.527,4.983,4,3.181" transform="translate(-61.323 842.052)" fill="none" stroke="#000" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(4.705 2.625)"><g transform="translate(9.436 6.75)"><path d="M21.175,19.486c3.067-1.347,1.838-6.986,1.838-6.986H17.5s-1.23,5.639,1.838,6.986a1.7,1.7,0,0,0,.4.014H20.8A1.46,1.46,0,0,0,21.175,19.486Z" transform="translate(-17.397 -12.875)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" fill-rule="evenodd"/><line y2="4" transform="translate(2.858 7.625)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="4" transform="translate(0.859 11.625)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g><g transform="translate(1)"><path d="M7.226,21.5a1.219,1.219,0,0,1-.652-.3,1,1,0,0,1-.3-.7v-9c.015-.318,0-1,0-1l1.5-3v-4h3v4l1.5,3c.01.009-.015.682,0,1v9a1,1,0,0,1-.3.7.851.851,0,0,1-.7.3Z" transform="translate(-7.979 -3.125)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2" fill-rule="evenodd"/><rect width="3" height="6" transform="translate(-1.705 9.376)" fill="none" stroke="#000" 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.656 4.338)"><path d="M22.876,20.716a1,1,0,1,0,1,1h0A1,1,0,0,0,22.876,20.716Z" transform="translate(-8.531 -8.054)" stroke="#000" stroke-width="1"/><line y2="4" transform="translate(0.344 0.662)" fill="#040405" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y2="4" transform="translate(4.344 0.662)" fill="#040405" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y2="4" transform="translate(8.344 0.662)" fill="#040405" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(11.344 -0.338)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="6" height="6" rx="1" stroke="none"/><rect x="1" y="1" width="4" height="4" fill="none"/></g><path d="M22.043,23.216a2.781,2.781,0,0,1-2.912-3.108l.978-4.892h4.033l.978,4.892a2.781,2.781,0,0,1-2.912,3.108Z" transform="translate(-7.781 -6.554)" 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.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 transform="translate(3.625 3.625)"><line x2="4" transform="translate(0 2)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y2="4" transform="translate(2)" 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(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 transform="translate(3.625 3.625)"><line x2="4" transform="translate(0 2)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"prefix":"normal","lastModified":1668450940,"icons":{"add":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M4 12h16m-8-8v16\"/>"},"add-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(2 2)\"><circle cx=\"10\" cy=\"10\" r=\"10\" stroke=\"none\"/><circle cx=\"10\" cy=\"10\" r=\"9\"/></g><path stroke-linecap=\"round\" d=\"M9 12h6m-3-3v6\"/></g>"},"align-center":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M17 10H7m13-4H4m16 8H4m13 4H7\"/>"},"align-justify":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M20 10H4m16-4H4m16 8H4m16 4H4\"/>"},"align-left":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M16 10H4m16-4H4m16 8H4m12 4H4\"/>"},"align-right":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M20 10H8m12-4H4m16 8H4m16 4H8\"/>"},"analysis":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(2 13)\"><rect width=\"5\" height=\"9\" rx=\"2\" stroke=\"none\"/><rect width=\"3\" height=\"7\" x=\"1\" y=\"1\" rx=\"1\"/></g><g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(9 4)\"><rect width=\"6\" height=\"18\" rx=\"2\" stroke=\"none\"/><rect width=\"4\" height=\"16\" x=\"1\" y=\"1\" rx=\"1\"/></g><g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(17 9)\"><rect width=\"5\" height=\"13\" rx=\"2\" stroke=\"none\"/><rect width=\"3\" height=\"11\" x=\"1\" y=\"1\" rx=\"1\"/></g>"},"analysis-2":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M12.515 3.973a.478.478 0 00-.335.139.476.476 0 00-.139.336v7.564h-7.57a.478.478 0 00-.335.139.475.475 0 00-.14.335A8.514 8.514 0 0012.51 21a8.513 8.513 0 008.514-8.514 8.512 8.512 0 00-8.509-8.513Z\"/><path fill=\"currentColor\" d=\"M14.04 6.153v7.859H6.182A6.524 6.524 0 0012.515 19a6.521 6.521 0 006.513-6.514c0-3.066-2.13-5.644-4.987-6.333m-1.526-2.18a8.512 8.512 0 018.513 8.513 8.514 8.514 0 01-17.027 0 .475.475 0 01.475-.474h7.565V4.448a.476.476 0 01.474-.475Z\"/></g><g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M9.866 9.865A.463.463 0 0010 9.54V2.461a.465.465 0 00-.134-.326.463.463 0 00-.325-.134 7.541 7.541 0 00-7.54 7.54.464.464 0 00.135.325.463.463 0 00.325.134h7.08a.463.463 0 00.325-.135Z\"/><path fill=\"currentColor\" d=\"M8 8V4.217a5.564 5.564 0 00-3.782 3.781H8m1.54 2H2.46A.463.463 0 012 9.54 7.54 7.54 0 019.54 2c.121 0 .24.049.326.134A.465.465 0 0110 2.46v7.08c0 .12-.049.24-.134.325a.463.463 0 01-.326.134Z\"/></g>"},"analysis-3":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-linejoin=\"round\" d=\"m3 18 7-7 2 2 4-4\"/><path stroke-miterlimit=\"10\" d=\"M21 18H3V6\"/></g>"},"apple":{"body":"<g fill=\"none\"><g stroke-miterlimit=\"10\"><path d=\"M12.011 21.212a4.412 4.412 0 01.909.112 4.909 4.909 0 01.909.362l.021.01c.112.054.228.11.347.161a1.525 1.525 0 00.616.144 2.3 2.3 0 00.953-.287 4.053 4.053 0 001.513-1.3 12.933 12.933 0 001.664-2.823c.088-.2.155-.363.212-.515a10.364 10.364 0 00.6-6.312 4.877 4.877 0 00-1.936-2.9.442.442 0 01-.042-.03 3.294 3.294 0 00-.666-.418 4 4 0 00-1.738-.41h-.1a5.715 5.715 0 00-1.978.524l-.391.152c-.17.065-.566.2-.57.2a.453.453 0 01-.156.027h-.138a.163.163 0 00-.029 0h-.198a.458.458 0 01-.155-.027s-.4-.14-.571-.206l-.386-.15a5.759 5.759 0 00-1.983-.525h-.107a4.04 4.04 0 00-1.729.411 3.322 3.322 0 00-.668.419.388.388 0 01-.04.029 4.96 4.96 0 00-1.924 2.855 10.361 10.361 0 00.578 6.322c.084.222.159.4.228.551a12.881 12.881 0 001.663 2.823 4.023 4.023 0 001.459 1.28A2.507 2.507 0 009.189 22a1.53 1.53 0 00.611-.142c.117-.05.231-.1.341-.158l.021-.01a5.022 5.022 0 01.917-.365 4.2 4.2 0 01.915-.112h.016Z\"/><path fill=\"currentColor\" d=\"M9.175 19.945c.03-.013.058-.028.087-.041l.05-.025c.335-.16.751-.358 1.269-.492a6.149 6.149 0 011.353-.174h.147a6.31 6.31 0 011.338.174c.524.135.942.336 1.278.497l.042.02.085.041.125-.056c.183-.082.375-.231.764-.721.52-.654.991-1.458 1.402-2.388a7.88 7.88 0 00.17-.412l.017-.048.021-.046c1.117-2.562.511-4.977.505-4.999l-.014-.054-.011-.055c-.204-.984-.998-1.577-1.077-1.634a2.355 2.355 0 01-.154-.11l-.062-.049a2.012 2.012 0 00-1.13-.371h-.05c-.322.008-.683.144-1.295.385l-.41.16c-.18.068-.521.188-.612.22a2.449 2.449 0 01-.827.143h-.373c-.285 0-.564-.048-.83-.144l-.03-.01a32.244 32.244 0 01-.578-.21l-.015-.005-.391-.153c-.613-.24-.977-.377-1.3-.386L8.611 9c-.265 0-.584.078-.856.211-.113.054-.2.108-.269.163a2.4 2.4 0 01-.186.14c-.072.052-.902.676-1.09 1.6l-.011.053-.014.053c-.026.1-.63 2.482.476 5.017l.02.046.018.048c.067.178.128.317.183.442l.004.009c.408.927.88 1.73 1.4 2.385.327.412.54.622.71.698l.005.002c.055.025.117.053.174.077M14.815 22c-.194 0-.39-.046-.617-.144-.119-.05-.235-.106-.347-.16l-.021-.01c-.284-.137-.577-.277-.91-.363a4.413 4.413 0 00-.909-.112h-.016a4.198 4.198 0 00-.915.112c-.334.086-.629.228-.917.365l-.021.01c-.11.054-.224.108-.341.158a1.53 1.53 0 01-.612.143c-.323 0-.61-.13-1.011-.31-.57-.256-.997-.697-1.459-1.279-.626-.788-1.186-1.739-1.663-2.823a9.693 9.693 0 01-.228-.55c-1.353-3.103-.66-6.01-.578-6.323.363-1.778 1.855-2.807 1.925-2.854a.388.388 0 00.04-.03c.191-.157.41-.294.668-.419a4.04 4.04 0 011.835-.41c.691.018 1.29.253 1.983.525l.385.15c.175.066.57.206.572.206a.447.447 0 00.155.027h.147l.03-.004.021.001a.13.13 0 01.029.003h.146a.453.453 0 00.156-.027c.004-.002.4-.14.57-.205l.39-.152c.693-.272 1.29-.507 1.978-.524h.1c.584 0 1.185.141 1.737.41.258.125.476.262.666.418.013.01.027.022.042.03.015.01 1.543.998 1.936 2.901.05.191.785 3.126-.605 6.312a9.845 9.845 0 01-.212.515c-.479 1.085-1.039 2.035-1.664 2.823-.462.582-.895 1.027-1.513 1.303-.37.167-.637.287-.953.287Z\"/></g><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12.09 8s-.5-2.968.913-4m-.007 8.001s2.075 1.039 2 3\"/></g>"},"arrow-down":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m6.001 14 6 6 6-6m-6 4V4\"/>"},"arrow-left":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m10.001 6-6 6 6 6m-4-6h14\"/>"},"arrow-right":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m14 18.001 6-6-6-6m4 6H4\"/>"},"arrow-up":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m18 10-6-6-6 6m6-4v14\"/>"},"attachment":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m21 11.439-8.51 8.025a5.8 5.8 0 01-7.862 0 5.035 5.035 0 010-7.414l8.51-8.026a3.867 3.867 0 015.242 0 3.357 3.357 0 010 4.943l-8.52 8.025a1.931 1.931 0 01-2.62 0 1.676 1.676 0 010-2.471l7.862-7.406\"/>"},"back-to-front":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M8 6H5a1.881 1.881 0 00-1.5.5A1.883 1.883 0 003 8v8a1.886 1.886 0 00.5 1.5A1.881 1.881 0 005 18h14a1.881 1.881 0 001.5-.5A1.881 1.881 0 0021 16V8a1.881 1.881 0 00-.5-1.5A1.881 1.881 0 0019 6h-3\"/><g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M8.635 19h6.724l.575 1.062c.245.452-.224.938-.906.938H8.971c-.68 0-1.149-.484-.907-.936Z\"/><path fill=\"currentColor\" d=\"M8.635 19h6.724l.575 1.062c.245.452-.224.938-.906.938H8.971c-.68 0-1.149-.484-.907-.936L8.635 19Z\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m16.999 3-3 3 3 3\"/>"},"bell":{"body":"<path fill=\"currentColor\" d=\"M10 19.106A1.949 1.949 0 0012 21a1.949 1.949 0 002-1.894V19h-4Z\"/><g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M13.514 2.21a5.68 5.68 0 014.407 5.431v3.016a6.969 6.969 0 002.652 5.533l.128.106a.974.974 0 01.3.7 1.036 1.036 0 01-1.062 1.007H4.062A1.036 1.036 0 013 16.996a.974.974 0 01.3-.7l.128-.106a6.97 6.97 0 002.654-5.532V7.641a5.668 5.668 0 014.25-5.389 5.843 5.843 0 013.182-.042Z\"/><path fill=\"currentColor\" d=\"M12.092 4c-.586 0-1.084.138-1.154.158l-.018.006-.054.015C9.226 4.636 8.08 6.06 8.08 7.641v3.017c0 1.398-.296 2.72-.878 3.928A8.865 8.865 0 016.35 16h11.3a8.87 8.87 0 01-.852-1.414 8.978 8.978 0 01-.878-3.928V7.64c0-1.629-1.189-3.064-2.892-3.49l-.07-.018-.068-.022a2.582 2.582 0 00-.798-.11m0-2c.451 0 .944.054 1.422.21 2.536.635 4.406 2.826 4.406 5.431v3.017c0 2.207.927 4.11 2.654 5.532l.128.106c.184.18.298.425.298.697 0 .556-.476 1.007-1.062 1.007H4.062C3.476 18 3 17.55 3 16.993c0-.272.114-.517.298-.697l.128-.106c1.727-1.421 2.654-3.325 2.654-5.532V7.64c0-2.55 1.794-4.704 4.25-5.388 0 0 .783-.253 1.762-.253Z\"/></g>"},"bell-active":{"body":"<g fill=\"currentColor\"><path d=\"M10 19.106A1.949 1.949 0 0012 21a1.949 1.949 0 002-1.894V19h-4Z\"/><g stroke-miterlimit=\"10\"><path d=\"M19.938 17H4.062a.11.11 0 01-.039-.007l.037-.03c1.976-1.626 3.02-3.806 3.02-6.305V7.64c0-1.008.34-1.965.984-2.769a4.975 4.975 0 012.534-1.656l.02-.005.019-.007A5.459 5.459 0 0112.092 3c.412 0 .786.054 1.11.16l.034.011.035.01c2.149.537 3.65 2.372 3.65 4.46v3.017c0 2.499 1.043 4.679 3.018 6.304l.038.031a.11.11 0 01-.039.007Z\"/><path d=\"M12.092 4c-.586 0-1.084.138-1.154.158l-.018.006-.054.015C9.226 4.636 8.08 6.06 8.08 7.641v3.017c0 1.398-.296 2.72-.878 3.928A8.864 8.864 0 016.35 16h11.3a8.87 8.87 0 01-.852-1.414 8.978 8.978 0 01-.878-3.928V7.64c0-1.629-1.189-3.064-2.892-3.49l-.07-.018-.068-.022a2.582 2.582 0 00-.798-.11m0-2c.451 0 .944.054 1.422.21 2.536.635 4.406 2.826 4.406 5.431v3.017c0 2.207.927 4.11 2.654 5.532l.128.106a.97.97 0 01.298.696C21 17.55 20.524 18 19.938 18H4.062C3.476 18 3 17.55 3 16.992c0-.27.114-.516.298-.696l.128-.106c1.727-1.421 2.654-3.325 2.654-5.532V7.64c0-2.55 1.794-4.704 4.25-5.388 0 0 .783-.253 1.762-.253Z\"/></g></g>"},"bold":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M7 4.999h6.722a3.5 3.5 0 010 7H7Zm0 7h7.615a3.5 3.5 0 010 7H7Z\"/>"},"bookmark":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M7 4.526v16.24a.257.257 0 00.439.159l4.436-4.351a.18.18 0 01.249 0l4.437 4.351a.257.257 0 00.439-.159V4.526a1.6 1.6 0 00-1.664-1.527H8.664A1.6 1.6 0 007 4.526Z\"/><path fill=\"currentColor\" d=\"M9 4.999v11.594l1.472-1.445A2.17 2.17 0 0112 14.524c.576 0 1.119.222 1.525.622L15 16.593V5H9m-.336-2h6.672C16.255 3 17 3.684 17 4.527v16.24c0 .211-.282.314-.44.16l-4.436-4.352a.18.18 0 00-.249 0l-4.436 4.351c-.157.155-.439.052-.439-.159V4.526C7 3.683 7.745 3 8.664 3Z\"/></g>"},"bookmark-active":{"body":"<g fill=\"currentColor\" stroke-miterlimit=\"10\"><path d=\"m16 18.977-3.176-3.115a1.169 1.169 0 00-.824-.336c-.313 0-.606.12-.827.338L8 18.976V4.528c0-.285.304-.527.664-.527h6.672c.36 0 .664.242.664.527v14.449Z\"/><path d=\"M9 5.001v11.594l1.472-1.445A2.17 2.17 0 0112 14.526c.576 0 1.119.222 1.525.622L15 16.595V5.001H9m-.336-2h6.672c.919 0 1.664.684 1.664 1.527v16.24c0 .211-.282.314-.44.16l-4.436-4.352a.18.18 0 00-.249 0l-4.436 4.351c-.157.155-.439.052-.439-.159V4.528c0-.843.745-1.527 1.664-1.527Z\"/></g>"},"building":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M4 21h16M14 4V3h-4v1\"/><path stroke-linecap=\"round\" d=\"M12 21v-3M9 9h1m-1 4h1m4-4h1m-1 4h1\"/><g transform=\"translate(5 4)\"><rect width=\"14\" height=\"18\" rx=\"2\" stroke=\"none\"/><rect width=\"12\" height=\"16\" x=\"1\" y=\"1\" rx=\"1\"/></g></g>"},"bulleted-list":{"body":"<path fill=\"none\" d=\"M0 0h24v24H0z\"/><g fill=\"none\" stroke=\"currentColor\"><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M8 15.998h5m-5-3.999h12M8 8h8\"/><g transform=\"translate(4.95 6.924) translate(-1.95 .076)\"><circle cx=\"1\" cy=\"1\" r=\"1\" stroke=\"none\"/><circle cx=\"1\" cy=\"1\" r=\".5\"/></g><g transform=\"translate(4.95 6.924) translate(-1.95 4.076)\"><circle cx=\"1\" cy=\"1\" r=\"1\" stroke=\"none\"/><circle cx=\"1\" cy=\"1\" r=\".5\"/></g><g transform=\"translate(4.95 6.924) translate(-1.95 8.076)\"><circle cx=\"1\" cy=\"1\" r=\"1\" stroke=\"none\"/><circle cx=\"1\" cy=\"1\" r=\".5\"/></g></g>"},"calendar":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M8 3v2m8-2v2M3 8h18M7 12h2m-2 4h2m6-4h2m-2 4h2\"/><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(2 3)\"><rect width=\"20\" height=\"18\" rx=\"3\" stroke=\"none\"/><rect width=\"18\" height=\"16\" x=\"1\" y=\"1\" rx=\"2\"/></g>"},"camera-off":{"body":"<path fill=\"currentColor\" d=\"M3.293 19.278a.986.986 0 00-.218.328 1 1 0 01.218-.328M20 8.228v9.721a.251.251 0 01-.052.051h-9.72l-2 2H20a2.087 2.087 0 002-2V8a1.958 1.958 0 00-.506-1.266ZM4 15.743V8.051A.251.251 0 014.052 8h2.776l2-2h4.566l.21.14 1.442-1.44L14 4H8L6 6H4a2.087 2.087 0 00-2 2v9.743Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M10.617 9.126a3.487 3.487 0 00-2.491 2.491m4.215 4.269a3.486 3.486 0 002.545-2.545\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M4 20 20 4\"/>"},"camera-on":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M20 6h-3l-3-2H8L6 6H4a2.087 2.087 0 00-2 2v10a2.087 2.087 0 002 2h16a2.087 2.087 0 002-2V8a2.087 2.087 0 00-2-2Z\"/><path fill=\"currentColor\" d=\"m8.828 6-2 2H4.052A.235.235 0 004 8.051v9.898a.234.234 0 00.052.051h15.896a.235.235 0 00.052-.05v-9.9a.235.235 0 00-.052-.05h-3.554l-3-2H8.828M8 4h6l3 2h3c1.034 0 1.998.947 2 2v10c-.002 1.05-.966 1.997-2 2H4c-1.034-.003-1.998-.95-2-2V8c.002-1.053.966-2 2-2h2l2-2Z\"/><g stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(7 8)\"><circle cx=\"4.5\" cy=\"4.5\" r=\"4.5\" stroke=\"none\"/><circle cx=\"4.5\" cy=\"4.5\" r=\"3.5\"/></g></g>"},"catalog":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\"><path d=\"M7 2h11a1 1 0 011 1v18a1 1 0 01-1 1H7a3 3 0 01-3-3V5a3 3 0 013-3Z\" stroke=\"none\"/><path d=\"M7 3h11v18H7a2 2 0 01-2-2V5a2 2 0 012-2Z\"/></g><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M9.001 11h5m-5 4h2\"/><path d=\"M5 7h13\"/></g>"},"certificate":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-miterlimit=\"22.926\" d=\"M12.002 2.999a6 6 0 11-6 6 6 6 0 016-6Z\"/><path stroke-miterlimit=\"22.926\" d=\"M12 7.002a2 2 0 11-2 2 2 2 0 012-2Z\"/><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M6.758 13.292 4 18.411h1.964l.793 1.428H8.37L9.204 21l2.759-4.378L14.722 21l1.015-1.161h1.474l1.048-1.428 1.741.018L17.211 13\"/></g>"},"chat":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M10.997 15.998h-2c-3.391 0-6-1.906-6-5s2.609-5 6-5h6c3.391 0 6 1.918 6 5s-3.021 5-6 5l-1 3Z\"/>"},"check":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m6.996 12 4 4 7-7\"/>"},"check-badge":{"body":"<path fill=\"currentColor\" d=\"m12.624 3.539 1.537-1.306a.975.975 0 011.58.537l.509 2a1 1 0 001.009.768l1.977-.112a1.028 1.028 0 01.977 1.406L19.5 8.765a1.061 1.061 0 00.386 1.242l1.662 1.125a1.061 1.061 0 010 1.738l-1.662 1.126a1.061 1.061 0 00-.386 1.24l.713 1.932a1.028 1.028 0 01-.977 1.406l-1.977-.112a1 1 0 00-1.009.768l-.509 2a.975.975 0 01-1.58.537l-1.537-1.306a.955.955 0 00-1.248 0l-1.537 1.306a.975.975 0 01-1.58-.537l-.509-2a1 1 0 00-1.009-.768l-1.977.112a1.028 1.028 0 01-.977-1.406l.713-1.932a1.061 1.061 0 00-.386-1.242l-1.662-1.125a1.061 1.061 0 010-1.738l1.662-1.125A1.061 1.061 0 004.5 8.765l-.713-1.932a1.028 1.028 0 01.977-1.406l1.977.112a1 1 0 001.009-.768l.509-2a.975.975 0 011.58-.537l1.537 1.306a.955.955 0 001.248-.001Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m9 12 2 2 4-4\"/>"},"check-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"10\" cy=\"10\" r=\"10\" stroke=\"none\"/><circle cx=\"10\" cy=\"10\" r=\"9\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m9 12 2 2 4-4\"/></g>"},"checkbox":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(2 2)\"><rect width=\"20\" height=\"20\" rx=\"3\" stroke=\"none\"/><rect width=\"18\" height=\"18\" x=\"1\" y=\"1\" rx=\"2\"/></g>"},"chevron-down":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m6 10 6 6 6-6\"/>"},"chevron-down-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"10\" cy=\"10\" r=\"10\" stroke=\"none\"/><circle cx=\"10\" cy=\"10\" r=\"9\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m8 11 4 4 4-4\"/></g>"},"chevron-left":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m15 6-6 6 6 6\"/>"},"chevron-left-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"10\" cy=\"10\" r=\"10\" stroke=\"none\"/><circle cx=\"10\" cy=\"10\" r=\"9\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m14 8-4 4 4 4\"/></g>"},"chevron-right":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m9 18 6-6-6-6\"/>"},"chevron-right-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"10\" cy=\"10\" r=\"10\" stroke=\"none\"/><circle cx=\"10\" cy=\"10\" r=\"9\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m10.187 8 3.814 4.1-4 3.9\"/></g>"},"chevron-up":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m18 16-6-6-6 6\"/>"},"chevron-up-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"10\" cy=\"10\" r=\"10\" stroke=\"none\"/><circle cx=\"10\" cy=\"10\" r=\"9\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m8 14 4-4 4 4\"/></g>"},"classroom":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M3 10h18M3 21h18\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M6 8.999a2 2 0 012-2 2 2 0 012 2\"/><g stroke-miterlimit=\"10\"><path d=\"M6 3.999a2 2 0 11.586 1.414A2 2 0 016 3.999Z\"/><path fill=\"currentColor\" d=\"M8 1.999c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414A1.994 1.994 0 018 5.999a1.994 1.994 0 01-1.414-.586A1.996 1.996 0 018 1.999Z\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M10 19.999a2 2 0 012-2 2 2 0 012 2\"/><g stroke-miterlimit=\"10\"><path d=\"M10 14.999a2 2 0 11.586 1.414A2 2 0 0110 14.999Z\"/><path fill=\"currentColor\" d=\"M12 12.999c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414 1.994 1.994 0 01-1.414.586 1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0112 12.999Z\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M14 8.999a2 2 0 012-2 2 2 0 012 2\"/><g stroke-miterlimit=\"10\"><path d=\"M14 3.999a2 2 0 11.586 1.414A2 2 0 0114 3.999Z\"/><path fill=\"currentColor\" d=\"M16 1.999c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414A1.994 1.994 0 0116 5.999a1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0116 1.999Z\"/></g></g>"},"clear-field":{"body":"<g stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(3 3)\"><circle cx=\"9\" cy=\"9\" r=\"9\" fill=\"currentColor\" stroke=\"none\"/><circle cx=\"9\" cy=\"9\" r=\"8\" fill=\"none\"/></g><path fill=\"none\" stroke-linecap=\"round\" d=\"m9 15 6-6M9 9l6 6\"/></g>"},"clear-style":{"body":"<defs><clipPath id=\"svgIDa\"><path stroke=\"rgba(0,0,0,0)\" d=\"M0 0h10v16H0z\"/></clipPath></defs><g fill=\"currentColor\" stroke=\"rgba(0,0,0,0)\" clip-path=\"url(#svgIDa)\" transform=\"translate(5 4)\"><path d=\"M1 4a1 1 0 001-1h4v1.758L9.758 1H2a1 1 0 00-2 0v2a1 1 0 001 1m8 10H8v-2.758l-2 2V14h-.758l-1.2 1.2A.985.985 0 005 16h4a1 1 0 000-2\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M4 20 20 4\"/>"},"close":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M6 18 18 6M6 6l12 12\"/>"},"close-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(2 2)\"><circle cx=\"10\" cy=\"10\" r=\"10\" stroke=\"none\"/><circle cx=\"10\" cy=\"10\" r=\"9\"/></g><path stroke-linecap=\"round\" d=\"m10 14 4-4m-4 0 4 4\"/></g>"},"close-loader":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"m9 15 6-6M9 9l6 6\"/>"},"coffee":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-linejoin=\"round\"><path d=\"M5.373 9.501h12.254a.873.873 0 01.873.873v3.127a7 7 0 01-7 7 7 7 0 01-7-7v-3.127a.873.873 0 01.873-.873Z\" stroke=\"none\"/><path d=\"M5.5 10.501h12v3a6 6 0 01-6 6 6 6 0 01-6-6v-3Z\"/></g><g stroke-linejoin=\"round\"><path d=\"M16.5 16.501v-7h2a3 3 0 013 3v1a3 3 0 01-3 3h-2Z\" stroke=\"none\"/><path d=\"M17.5 15.501v-5h1a2 2 0 012 2v1a2 2 0 01-2 2h-1Z\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M3.5 20.501h16\"/><path stroke-linecap=\"round\" d=\"M7.5 6.501v-2m4 2v-2m4 2v-2\"/></g>","width":25,"height":25},"color":{"body":"<defs><radialGradient id=\"svgIDa\" cx=\".5\" cy=\".5\" r=\".5\" gradientUnits=\"objectBoundingBox\"><stop offset=\"0\" stop-color=\"currentColor\"/><stop offset=\".148\" stop-color=\"currentColor\"/><stop offset=\".32\" stop-color=\"currentColor\"/><stop offset=\".493\" stop-color=\"currentColor\"/><stop offset=\".66\" stop-color=\"currentColor\"/><stop offset=\".833\" stop-color=\"currentColor\"/><stop offset=\"1\" stop-color=\"currentColor\"/></radialGradient></defs><g fill=\"url(#svgIDa)\" stroke=\"currentColor\" transform=\"translate(2 2)\"><circle cx=\"10\" cy=\"10\" r=\"10\" stroke=\"none\"/><circle cx=\"10\" cy=\"10\" r=\"9.5\" fill=\"none\"/></g>"},"contact-us":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"M17.999 11V8.461c0-2.623-2.635-5.461-6-5.461s-6 2.838-6 5.461v1.2\"/><path d=\"M15.995 10.002v1.251a4.847 4.847 0 01-1.5 3.75M8.999 4.001c0 2.571 6 6 9 6m-7.5-3a5.966 5.966 0 00-2.5 4v1a4.76 4.76 0 002.5 4m2.499 4a1.113 1.113 0 01-1.2 1h-.6a1.113 1.113 0 01-1.2-1h0a1.112 1.112 0 011.2-1h.6a1.114 1.114 0 011.2 1Zm0-.005h.469c2.493.013 4.522-2.587 4.531-5.8v-.2m.502-3.994H18v4h.5c.276 0 .5-.4.5-.889V10.89c0-.49-.224-.887-.5-.888Zm-13 0H6v4h-.5c-.276 0-.5-.4-.5-.887v-2.223c0-.491.223-.889.5-.89h0Z\"/></g>"},"copy":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(8 2)\"><rect width=\"12\" height=\"16\" rx=\"2\" stroke=\"none\"/><rect width=\"10\" height=\"14\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" d=\"M15 21H7.377C6.064 21 5 19.616 5 17.91V8\"/></g>"},"courses":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"m20.695 9.514-8.427-4.452a.573.573 0 00-.535 0L3.306 9.514a.572.572 0 000 1.013L6 11.999v5a1.849 1.849 0 002 2h8a1.849 1.849 0 002-2v-5l2.695-1.472a.572.572 0 000-1.013Z\"/><path fill=\"currentColor\" d=\"m12 7.182-5.412 2.86 1.412.77V17h8v-6.186l1.412-.772L12 7.182m0-2.187c.092 0 .184.023.268.067l8.427 4.452a.572.572 0 010 1.013L18 11.999v5c0 1.24-.759 2-2 2H8c-1.24 0-2-.76-2-2v-5l-2.695-1.472a.572.572 0 010-1.013l8.427-4.452A.573.573 0 0112 4.995Z\"/></g><g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"m11.732 14.933-8.427-4.43a.568.568 0 010-1.008l8.427-4.43a.576.576 0 01.535 0l8.427 4.43a.568.568 0 010 1.008l-8.427 4.43a.576.576 0 01-.535 0Z\"/><path fill=\"currentColor\" d=\"m12 12.81 5.355-2.815L12 7.18 6.645 9.996 12 12.81m0 2.185a.575.575 0 01-.268-.067L3.305 10.5a.568.568 0 010-1.007l8.427-4.43a.576.576 0 01.536 0l8.427 4.43a.568.568 0 010 1.007l-8.427 4.43a.575.575 0 01-.268.067Z\"/></g><path fill=\"currentColor\" d=\"M19 10h2v5a1 1 0 01-1 1 1 1 0 01-1-1v-5Z\"/>"},"dashboard":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(4 3)\"><rect width=\"7\" height=\"6\" rx=\"2\" stroke=\"none\"/><rect width=\"5\" height=\"4\" x=\"1\" y=\"1\" rx=\"1\"/></g><g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(13 15)\"><rect width=\"7\" height=\"6\" rx=\"2\" stroke=\"none\"/><rect width=\"5\" height=\"4\" x=\"1\" y=\"1\" rx=\"1\"/></g><g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(13 3)\"><rect width=\"7\" height=\"10\" rx=\"2\" stroke=\"none\"/><rect width=\"5\" height=\"8\" x=\"1\" y=\"1\" rx=\"1\"/></g><g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(4 11)\"><rect width=\"7\" height=\"10\" rx=\"2\" stroke=\"none\"/><rect width=\"5\" height=\"8\" x=\"1\" y=\"1\" rx=\"1\"/></g>"},"download":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m9 11.001 3 3 3-3M12 14V4m8 11v3H4v-3\"/>"},"drag":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M16 4v16M12 4v16M8 4v16\"/>"},"dulicate":{"body":"<g stroke-miterlimit=\"10\"><g fill=\"rgba(0,0,0,0)\"><path d=\"M13 21H5c-1.103 0-2-.897-2-2v-8c0-1.103.897-2 2-2h4V5c0-1.103.897-2 2-2h8c1.103 0 2 .897 2 2v8c0 1.103-.897 2-2 2h-4v4c0 1.103-.897 2-2 2Z\"/><path fill=\"currentColor\" d=\"M13 20c.551 0 1-.448 1-1v-5h5a1 1 0 001-1V5a1 1 0 00-1-1h-8a1 1 0 00-1 1v5H5a1 1 0 00-1 1v8a1 1 0 001 1h8m0 2H5a3 3 0 01-3-3v-8a3 3 0 013-3h3V5a3 3 0 013-3h8a3 3 0 013 3v8a3 3 0 01-3 3h-3v3a3 3 0 01-3 3Z\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M13 9h4m-2-2v4\"/><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(8 2)\"><rect width=\"14\" height=\"14\" rx=\"3\" stroke=\"none\"/><rect width=\"12\" height=\"12\" x=\"1\" y=\"1\" rx=\"2\"/></g></g>"},"edit":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"m18.318 3.465 2.2 2.194a1.641 1.641 0 01.006 2.318L8.938 19.663a1.64 1.64 0 01-.832.453l-4.151.868a.792.792 0 01-.938-.938l.9-4.233a1.641 1.641 0 01.454-.829L16.079 3.457a1.592 1.592 0 012.239.008Z\"/><path fill=\"currentColor\" d=\"M17.194 5.167 5.852 16.334l-.492 2.312 2.232-.466 11.26-11.358-1.658-1.655M17.196 3c.407 0 .814.155 1.124.465l2.198 2.194c.64.64.643 1.675.006 2.318L8.938 19.663a1.64 1.64 0 01-.832.453l-4.151.867a.792.792 0 01-.938-.937l.9-4.233c.067-.315.226-.603.455-.829L16.079 3.457A1.594 1.594 0 0117.196 3Z\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"m14 6 4 4M7 13.998l3 3\"/></g>"},"elearning":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(2 2)\"><rect width=\"20\" height=\"14\" rx=\"3\" stroke=\"none\"/><rect width=\"18\" height=\"12\" x=\"1\" y=\"1\" rx=\"2\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5 20h14\"/><g fill=\"none\" stroke=\"currentColor\" transform=\"translate(7 18)\"><circle cx=\"2\" cy=\"2\" r=\"2\" stroke=\"none\"/><circle cx=\"2\" cy=\"2\" r=\"1.5\"/></g><path fill=\"currentColor\" d=\"M14.211 8.107a1 1 0 010 1.789l-2.764 1.381A1 1 0 0110 10.383V7.619a1 1 0 011.447-.894Z\"/>"},"email":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"rotate(90 8.5 13.5)\"><rect width=\"14\" height=\"20\" rx=\"3\" stroke=\"none\"/><rect width=\"12\" height=\"18\" x=\"1\" y=\"1\" rx=\"2\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M3.995 7.015 11.981 12l8.014-5\"/></g>"},"error":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M12 7v5m0 4v1\"/><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"10\" cy=\"10\" r=\"10\" stroke=\"none\"/><circle cx=\"10\" cy=\"10\" r=\"9\"/></g></g>"},"error-2":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 4v9m0 5v2\"/>"},"exercise":{"body":"<g fill=\"none\"><g stroke-miterlimit=\"10\"><path d=\"M7.659 20.725a.926.926 0 01-1.318 0C5.458 19.785 4 18.144 4 17.55v-13a1.637 1.637 0 011.715-1.545h2.569A1.637 1.637 0 0110 4.545v13c0 .599-1.458 2.24-2.341 3.18Z\"/><path fill=\"currentColor\" d=\"M7 18.476c.546-.626.856-1.042 1-1.268V5H6v12.208c.144.226.454.642 1 1.268M7 21a.901.901 0 01-.66-.275C5.458 19.785 4 18.145 4 17.55V4.545C4 3.69 4.768 3 5.715 3h2.569C9.232 3 10 3.691 10 4.545V17.55c0 .594-1.458 2.235-2.34 3.175A.904.904 0 017 21Z\"/></g><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M5 8h4\"/><path d=\"M12 3h8v18h-8Z\"/><path fill=\"currentColor\" d=\"M14 5v14h4V5h-4m-2-2h8v18h-8V3Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M13 8h2m-2 4h2m-2 4h2\"/></g>"},"external-link":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M19 13v4a2.1 2.1 0 01-2 2H7a2.1 2.1 0 01-2-2V7a2.1 2.1 0 012-2h4m5-2h5v5m-8 3 8-8\"/>"},"extract":{"body":"<path fill=\"none\" d=\"M0 0h24v24H0z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M8 10h8m-8 4h5\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M20.001 8.999v-4h-4M16 19.003h4v-4M8 5.001H4v4m-.001 6.002v4h4\"/><circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"currentColor\" transform=\"translate(18 17)\"/>"},"eye-off":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M13.5 6.112a10.1 10.1 0 00-1.442-.111h-.011a9.124 9.124 0 00-3.87.8 8.187 8.187 0 00-3.25 2.727 7.261 7.261 0 00-.9 1.663.448.448 0 000 .282 7.584 7.584 0 001.543 2.528m4.929 3.888a10.438 10.438 0 001.47.111 9.252 9.252 0 003.919-.8 7.919 7.919 0 003.226-2.736 6.94 6.94 0 00.865-1.671.456.456 0 000-.283A8 8 0 0018.396 10\"/><path stroke-linecap=\"round\" d=\"M4 20 20 4\"/></g>"},"eye-on":{"body":"<g fill=\"none\" stroke-linejoin=\"round\"><path d=\"M20.973 11.836A8.925 8.925 0 0019.096 8.9a9.017 9.017 0 00-2.764-2 10.152 10.152 0 00-4.336-.9 10.15 10.15 0 00-4.332.9A9.161 9.161 0 004.03 9.964a8.142 8.142 0 00-1.007 1.868.51.51 0 000 .317A8.512 8.512 0 004.847 15.1a8.8 8.8 0 002.76 2A10.364 10.364 0 0012 18a10.364 10.364 0 004.393-.9 8.883 8.883 0 003.615-3.07 7.788 7.788 0 00.969-1.874.51.51 0 00-.004-.32Z\"/><path fill=\"currentColor\" d=\"M11.994 8c-1.288 0-2.46.241-3.484.718a7.094 7.094 0 00-2.838 2.4c-.244.345-.421.66-.543.9a7.1 7.1 0 001.182 1.715 6.8 6.8 0 002.135 1.548C9.478 15.758 10.674 16 12 16c1.326 0 2.521-.242 3.554-.719a6.93 6.93 0 002.802-2.382c.232-.34.4-.646.514-.882a7.55 7.55 0 00-1.229-1.743 7.015 7.015 0 00-2.153-1.557C14.465 8.241 13.293 8 12.006 8h-.012m0-2h.012c1.723 0 3.155.36 4.326.904a9.017 9.017 0 012.764 1.998c1.37 1.453 1.862 2.892 1.877 2.934a.51.51 0 01.003.317c-.01.033-.27.852-.969 1.874a8.883 8.883 0 01-3.614 3.07C15.213 17.642 13.76 18 12 18c-1.76 0-3.213-.358-4.393-.903a8.8 8.8 0 01-2.76-2.001c-1.354-1.457-1.809-2.9-1.823-2.943a.51.51 0 01.003-.317c.011-.032.292-.848 1.008-1.868a9.16 9.16 0 013.633-3.064C8.838 6.36 10.271 6 11.994 6Z\"/><g stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(9 9)\"><circle cx=\"3\" cy=\"3\" r=\"3\" stroke=\"none\"/><circle cx=\"3\" cy=\"3\" r=\"2\"/></g></g>"},"fail":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" transform=\"translate(3.998 4.004)\"><rect width=\"4\" height=\"10\" rx=\"2\" transform=\"translate(13.002)\"/><path stroke-linecap=\"round\" d=\"M1.185 8.087h.885l-.069.48h-.816a1.188 1.188 0 000 2.375h1.961l2.853.055s-.617 4.308 2 5.754c1.683.834 2-.754 2-.754v-3l1-1s2-1.856 2-3.019V1.997a1.868 1.868 0 00-2-2H2.814a1.188 1.188 0 000 2.375h.08l-.069.481H2a1.188 1.188 0 000 2.375h.482l-.069.481H1.185a1.188 1.188 0 000 2.375Z\"/></g>"},"fast-back":{"body":"<g fill=\"none\"><path d=\"M13.993 16.723v-.379l4 2.381a2.049 2.049 0 003-2V7.282a2.051 2.051 0 00-3-2l-4 2.389v-.385a2.054 2.054 0 00-3-2L3.073 10a2.4 2.4 0 000 4l7.92 4.725a1.867 1.867 0 00.961.275 2.165 2.165 0 002.039-2.277Z\"/><path fill=\"currentColor\" d=\"M11.937 16.96a.441.441 0 00.058-.237v-3.897l6.942 4.132a.448.448 0 00.056-.235V7.279a.447.447 0 00-.057-.236l-6.941 4.145V7.279a.441.441 0 00-.058-.239l-7.84 4.68c-.057.034-.099.155-.1.282 0 .129.045.253.1.286l7.84 4.672m.017 2.038c-.32 0-.648-.086-.963-.273l-7.918-4.72c-1.434-.857-1.434-3.15 0-4.003l7.918-4.727c1.361-.81 3.004.286 3.004 2.004v.385l4-2.389c1.355-.81 2.998.286 2.998 2.004v9.444c0 1.718-1.643 2.814-2.998 2.002l-4-2.381v.379c0 1.322-.973 2.275-2.041 2.275Z\"/><path d=\"M10.074 10.006a2.4 2.4 0 000 4l7.923 4.722a2.053 2.053 0 003-2V7.28a2.053 2.053 0 00-3-2Z\"/><path fill=\"currentColor\" d=\"M10.998 12.003c0 .128.043.25.1.284l7.841 4.676a.436.436 0 00.058-.237V7.28a.436.436 0 00-.058-.237l-7.84 4.676c-.058.035-.101.157-.101.284m-2 0c0-.787.358-1.573 1.076-2.002l7.92-4.723c1.359-.81 3.003.286 3.003 2.002v9.446c0 1.717-1.644 2.813-3.003 2.002l-7.92-4.723c-.718-.428-1.076-1.215-1.076-2.002Z\"/></g>"},"fast-forward":{"body":"<g fill=\"none\"><path d=\"M10 16.719v-.381l-4 2.383a2.049 2.049 0 01-3-2V7.276a2.051 2.051 0 013-2l4 2.389V7.28a2.054 2.054 0 013-2l7.918 4.727a2.4 2.4 0 010 4L13 18.728a1.867 1.867 0 01-.963.273A2.165 2.165 0 0110 16.719Z\"/><path fill=\"currentColor\" d=\"m12.059 16.957 7.836-4.674c.058-.035.103-.158.101-.287 0-.127-.04-.248-.1-.283L12.06 7.035a.432.432 0 00-.059.238v3.909L5.059 7.037a.45.45 0 00-.057.236v9.446c0 .113.027.19.057.234L12 12.818v3.9c0 .116.03.194.059.239m-.018 2.037c-1.068 0-2.041-.953-2.041-2.275v-.381L6 18.72c-.313.187-.64.273-.96.273-1.065 0-2.038-.953-2.038-2.275V7.273c0-1.322.973-2.275 2.039-2.275.318 0 .646.084.959.272l4 2.388v-.385c0-1.322.973-2.275 2.041-2.275.32 0 .648.084.963.272l7.918 4.726c1.433.854 1.433 3.147 0 4.004l-7.918 4.72a1.867 1.867 0 01-.963.274Z\"/></g><g fill=\"none\"><path d=\"M13.922 9.995a2.4 2.4 0 010 4l-7.92 4.723a2.054 2.054 0 01-3-2V7.274a2.054 2.054 0 013-2Z\"/><path fill=\"currentColor\" d=\"M12.999 11.997c0-.127-.044-.25-.101-.284L5.057 7.037a.436.436 0 00-.058.237v9.447c0 .116.03.192.058.237l7.84-4.676c.058-.035.102-.157.102-.285m2 0c0 .787-.36 1.574-1.077 2.002l-7.92 4.724c-1.359.81-3.003-.286-3.003-2.002V7.274c0-1.717 1.644-2.813 3.003-2.002l7.92 4.723c.718.428 1.077 1.215 1.077 2.002Z\"/></g>"},"file":{"body":"<g stroke-linejoin=\"round\"><g fill=\"none\"><path d=\"M18.999 7.629V19a1.856 1.856 0 01-2 2h-10a1.856 1.856 0 01-2-2V5a1.856 1.856 0 012-2h7.158Z\"/><path fill=\"currentColor\" d=\"M7 5v14h10V8.484L13.354 5H7m0-2h7.158L19 7.63V19c0 1.243-.775 2-2 2H7c-1.224 0-2-.757-2-2V5c0-1.243.776-2 2-2Z\"/></g><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M16.999 8h-3V5Z\"/></g>"},"file-add":{"body":"<g stroke-linejoin=\"round\"><g fill=\"none\"><path d=\"M19 7.629V19a1.856 1.856 0 01-2 2H7a1.856 1.856 0 01-2-2V5a1.856 1.856 0 012-2h7.158Z\"/><path fill=\"currentColor\" d=\"M7 5v14h10V8.484L13.356 5H7m0-2h7.158L19 7.63V19c0 1.243-.775 2-2 2H7c-1.224 0-2-.757-2-2V5c0-1.243.776-2 2-2Z\"/></g><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M17 8h-3V5Z\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M10 13h4\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M12 11v4\"/>"},"file-duplicate":{"body":"<g stroke-linejoin=\"round\"><path fill=\"rgba(0,0,0,0)\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M5.715 21C5.361 21 5 20.906 5 20.223V7.776c0-.686.361-.777.715-.777H9V3.778c0-.686.365-.777.715-.777h5.729l3.561 3.529v9.689c0 .689-.365.777-.715.777H15v3.227c0 .684-.359.777-.709.777Z\"/><g fill=\"none\"><path d=\"M16 10.115v10.107A1.621 1.621 0 0114.286 22H5.715a1.621 1.621 0 01-1.714-1.778V7.778A1.621 1.621 0 015.715 6h6.135Z\"/><path fill=\"currentColor\" d=\"M6 8v12h8v-9.052L11.027 8H6m-.285-2h6.135L16 10.115v10.107C16 21.327 15.335 22 14.286 22H5.715C4.665 22 4 21.327 4 20.222V7.778C4 6.673 4.665 6 5.715 6Z\"/></g><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M14.287 10.444h-2.571V7.778Z\"/><path fill=\"rgba(0,0,0,0)\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M18.286 6.444h-2.571V3.778Z\"/></g>"},"file-remove":{"body":"<g stroke-linejoin=\"round\"><g fill=\"none\"><path d=\"M19 7.629V19a1.856 1.856 0 01-2 2H7a1.856 1.856 0 01-2-2V5a1.856 1.856 0 012-2h7.158Z\"/><path fill=\"currentColor\" d=\"M7 5v14h10V8.484L13.356 5H7m0-2h7.158L19 7.63V19c0 1.243-.775 2-2 2H7c-1.224 0-2-.757-2-2V5c0-1.243.776-2 2-2Z\"/></g><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M17 8h-3V5Z\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M10 13h4\"/>"},"file-required":{"body":"<g stroke-linejoin=\"round\"><g fill=\"none\"><path d=\"M16 10.115v10.107A1.621 1.621 0 0114.286 22H5.715a1.621 1.621 0 01-1.714-1.778V7.778A1.621 1.621 0 015.715 6h6.135Z\"/><path fill=\"currentColor\" d=\"M6 8v12h8v-9.052L11.027 8H6m-.285-2h6.135L16 10.115v10.107C16 21.327 15.335 22 14.286 22H5.715C4.665 22 4 21.327 4 20.222V7.778C4 6.673 4.665 6 5.715 6Z\"/></g><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M14.287 10.444h-2.571V7.778Z\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M18.5 3v6M21 4.5l-5 3m5 0-5-3\"/>"},"filter":{"body":"<g fill=\"none\" stroke-linejoin=\"round\"><path d=\"M6.603 3.003h10.793a1.5 1.5 0 011.368 2.283l-3.586 5.955a1.139 1.139 0 00-.185.621v8.191a1.019 1.019 0 01-1.655.733l-3.627-2.49a1.854 1.854 0 01-.737-1.465v-4.8a1.8 1.8 0 00-.184-.795L5.232 5.287a1.5 1.5 0 011.371-2.284Z\"/><path fill=\"currentColor\" d=\"m16.6 5-9.204.003 3.101 5.184c.455.736.478 1.659.478 1.84v4.706l2.018 1.386v-6.261c0-.592.168-1.17.485-1.674L16.6 5m.796-2c1.249 0 2.017 1.282 1.369 2.283l-3.586 5.954a1.139 1.139 0 00-.186.62v8.192c0 .803-.995 1.242-1.655.733l-3.627-2.49a1.854 1.854 0 01-.736-1.465v-4.8c0-.219-.063-.61-.184-.796L5.233 5.283c-.645-1.002.123-2.28 1.37-2.28L17.396 3Z\"/></g>"},"filter-2":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5 6h14M5 12h14M5 18h14\"/><g fill=\"none\" stroke=\"currentColor\" transform=\"translate(6 4)\"><circle cx=\"2\" cy=\"2\" r=\"2\" stroke=\"none\"/><circle cx=\"2\" cy=\"2\" r=\"1.5\"/></g><g fill=\"none\" stroke=\"currentColor\" transform=\"translate(14 10)\"><circle cx=\"2\" cy=\"2\" r=\"2\" stroke=\"none\"/><circle cx=\"2\" cy=\"2\" r=\"1.5\"/></g><g fill=\"none\" stroke=\"currentColor\" transform=\"translate(10 16)\"><circle cx=\"2\" cy=\"2\" r=\"2\" stroke=\"none\"/><circle cx=\"2\" cy=\"2\" r=\"1.5\"/></g>"},"filter-active":{"body":"<g fill=\"currentColor\" stroke-linejoin=\"round\"><path d=\"M13.976 20a.037.037 0 01-.026-.01l-.023-.017-.023-.016-3.6-2.471a.852.852 0 01-.329-.66v-4.8c0-.295-.07-.9-.332-1.318L6.091 4.769l-.008-.014-.009-.014a.41.41 0 01-.019-.44.6.6 0 01.548-.298L17.397 4a.6.6 0 01.548.299.41.41 0 01-.02.44l-.009.013-.008.015-3.579 5.942c-.22.346-.336.743-.336 1.149v8.14a.077.077 0 01-.017.002Z\"/><path d=\"m16.6 5-9.204.003 3.101 5.184c.455.736.478 1.659.478 1.84v4.706l2.018 1.386v-6.261c0-.592.168-1.17.485-1.674L16.6 5m.796-2c1.249 0 2.017 1.282 1.369 2.283l-3.586 5.954a1.139 1.139 0 00-.186.62v8.192c0 .803-.995 1.242-1.655.733l-3.627-2.49a1.854 1.854 0 01-.736-1.465v-4.8c0-.219-.063-.61-.184-.796L5.233 5.283c-.645-1.002.123-2.28 1.37-2.28L17.396 3Z\"/></g>"},"flag":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M15.397 14.002c2.289.538 3.6 1.754 3.6 3.338 0 2.053-3.075 3.662-7 3.662s-7-1.608-7-3.662c0-1.584 1.314-2.8 3.6-3.338\"/><path stroke-linejoin=\"round\" d=\"M12 17V4h8l-3 3 3 3h-8\"/></g>"},"folder":{"body":"<g fill=\"none\"><path d=\"M4 19a2 2 0 01-2-2V6a2.018 2.018 0 011.711-2h6.834l1.377 2H20a2 2 0 012 2v9a2 2 0 01-2 2Z\"/><path fill=\"currentColor\" d=\"m20 17 .002-8.998C20 8.002 20 8 20 8h-9.123l-1.38-2.004L4.01 6c-.004.006-.006.014-.008.02V17H20m0 2H4.002c-1.11 0-2-.896-2-2V6c0-1 .853-1.994 1.71-2l6.005-.004.834.004 1.377 2H20a2 2 0 012 2v9a2 2 0 01-2 2Z\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m4 18 3-7h13\"/>"},"full-width":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M15 7v10\"/><g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"M4 6h16v12H4z\" stroke=\"none\"/><path d=\"M5 7h14v10H5z\"/></g>"},"go-to-back":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M8 6.001H5a1.881 1.881 0 00-1.5.5 1.883 1.883 0 00-.5 1.5v8a1.886 1.886 0 00.5 1.5 1.881 1.881 0 001.5.5h14a1.881 1.881 0 001.5-.5 1.881 1.881 0 00.5-1.5v-8a1.881 1.881 0 00-.5-1.5 1.881 1.881 0 00-1.5-.5h-3\"/><g stroke-miterlimit=\"10\"><path d=\"M8.635 19.001h6.724l.575 1.062c.245.452-.224.938-.906.938H8.971c-.68 0-1.149-.484-.907-.936Z\"/><path fill=\"currentColor\" d=\"M8.635 19.001h6.724l.575 1.062c.245.452-.224.938-.906.938H8.971c-.68 0-1.149-.484-.907-.936l.571-1.064Z\"/></g><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m9 11.001 3 3 3-3m-3 2v-7\"/></g>"},"grid":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(4 4)\"><rect width=\"7\" height=\"7\" rx=\"2\" stroke=\"none\"/><rect width=\"5\" height=\"5\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(4 13)\"><rect width=\"7\" height=\"7\" rx=\"2\" stroke=\"none\"/><rect width=\"5\" height=\"5\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(13 4)\"><rect width=\"7\" height=\"7\" rx=\"2\" stroke=\"none\"/><rect width=\"5\" height=\"5\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(13 13)\"><rect width=\"7\" height=\"7\" rx=\"2\" stroke=\"none\"/><rect width=\"5\" height=\"5\" x=\"1\" y=\"1\" rx=\"1\"/></g></g>"},"group":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(2 5)\"><rect width=\"10\" height=\"10\" rx=\"5\" stroke=\"none\"/><rect width=\"8\" height=\"8\" x=\"1\" y=\"1\" rx=\"4\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M3 20a4 4 0 014-4 4 4 0 014 4m4 0a3 3 0 013-3 3 3 0 013 3\"/><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(14 8)\"><rect width=\"8.001\" height=\"8.001\" rx=\"4\" stroke=\"none\"/><rect width=\"6.001\" height=\"6.001\" x=\"1\" y=\"1\" rx=\"3\"/></g>"},"group-add":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M15 6h6m-3-3v6\"/><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(11 11)\"><rect width=\"7\" height=\"7\" rx=\"3.5\" stroke=\"none\"/><rect width=\"5\" height=\"5\" x=\"1\" y=\"1\" rx=\"2.5\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M12 22c0-1.657.865-3 2.5-3s2.5 1.343 2.5 3\"/><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(2 10)\"><rect width=\"8\" height=\"8\" rx=\"4\" stroke=\"none\"/><rect width=\"6\" height=\"6\" x=\"1\" y=\"1\" rx=\"3\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M3 22a3 3 0 013-3 3 3 0 013 3\"/>"},"heart":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M15.976 5a5.114 5.114 0 00-3.553 1.406l-.423.4-.423-.4A5.113 5.113 0 008.024 5a5.113 5.113 0 00-3.553 1.406A4.663 4.663 0 003 9.799a4.662 4.662 0 001.471 3.394l6.843 6.536a.991.991 0 00.686.272.994.994 0 00.686-.272l6.842-6.536A4.663 4.663 0 0021 9.799a4.662 4.662 0 00-1.471-3.394A5.114 5.114 0 0015.976 5Z\"/><path fill=\"currentColor\" d=\"M8.024 7c-.825 0-1.596.303-2.171.852A2.68 2.68 0 005 9.799c0 .73.303 1.422.853 1.947L12 17.618l6.147-5.871A2.68 2.68 0 0019 9.799a2.68 2.68 0 00-.853-1.947A3.122 3.122 0 0015.976 7a3.12 3.12 0 00-2.171.852L12 9.575l-1.805-1.723A3.121 3.121 0 008.025 7m0-2c1.341 0 2.603.5 3.552 1.406L12 6.81l.423-.404A5.114 5.114 0 0115.976 5c1.342 0 2.604.5 3.553 1.406.948.906 1.471 2.11 1.471 3.393a4.665 4.665 0 01-1.471 3.394l-6.843 6.535A.994.994 0 0112 20a.99.99 0 01-.686-.272l-6.843-6.535C3.523 12.287 3 11.082 3 9.799c0-1.281.523-2.487 1.471-3.393A5.113 5.113 0 018.024 5Z\"/></g>"},"heart-active":{"body":"<g fill=\"currentColor\" stroke-miterlimit=\"10\"><path d=\"m12 19-6.838-6.53A3.671 3.671 0 014 9.8c0-1.007.413-1.955 1.162-2.671A4.117 4.117 0 018.024 6c1.084 0 2.1.4 2.862 1.129l.423.404.691.66.69-.66.424-.404A4.117 4.117 0 0115.976 6c1.083 0 2.1.4 2.862 1.129A3.671 3.671 0 0120 9.799a3.672 3.672 0 01-1.162 2.67L12 19Z\"/><path d=\"M8.024 7c-.825 0-1.596.303-2.171.852A2.68 2.68 0 005 9.799c0 .73.303 1.422.853 1.947L12 17.618l6.147-5.871A2.68 2.68 0 0019 9.799a2.68 2.68 0 00-.853-1.947A3.122 3.122 0 0015.976 7a3.12 3.12 0 00-2.171.852L12 9.575l-1.805-1.723A3.121 3.121 0 008.025 7m0-2c1.341 0 2.603.5 3.552 1.406L12 6.81l.423-.404A5.114 5.114 0 0115.976 5c1.342 0 2.604.5 3.553 1.406.948.906 1.471 2.11 1.471 3.393a4.665 4.665 0 01-1.471 3.394l-6.843 6.535A.994.994 0 0112 20a.99.99 0 01-.686-.272l-6.843-6.535C3.523 12.287 3 11.082 3 9.799c0-1.281.523-2.487 1.471-3.393A5.113 5.113 0 018.024 5Z\"/></g>"},"highlighter":{"body":"<path fill=\"none\" d=\"M0 0h24v24H0z\"/><g stroke=\"currentColor\" stroke-linejoin=\"round\"><path fill=\"none\" stroke-width=\"2\" d=\"m6 13.001 5 5 9-9-5-5Z\"/><path fill=\"none\" stroke-width=\"2\" d=\"m7 14.001 3 3-2 2H6l-1-1v-2Z\"/><path fill=\"currentColor\" d=\"M4.5 18.001 3 19.334l1.5.667L6 18.668Z\"/></g>"},"home":{"body":"<g fill=\"rgba(0,0,0,0)\" stroke-miterlimit=\"10\"><path d=\"M10 20.001H7.62a1.634 1.634 0 01-1.627-1.63v-7.459H3.168l.023-.02 8.034-6.634C11.427 4.093 11.703 4 12 4c.297 0 .574.093.78.261l8.031 6.632a.965.965 0 01.022.019h-2.826v7.46A1.634 1.634 0 0116.38 20H14v-5h-3l-1-.001V20Z\"/><path fill=\"currentColor\" d=\"M9 19v-5.002l6 .003v5h1.377a.632.632 0 00.63-.629v-8.46h1.046l-5.908-4.878A.267.267 0 0012 5a.266.266 0 00-.144.034L5.948 9.912h1.045v8.458c0 .347.283.63.627.63H9m2 2.001H7.62a2.636 2.636 0 01-2.627-2.629v-6.46H3.196a1.842 1.842 0 01-.576-.08.919.919 0 01-.488-.345.758.758 0 01-.132-.429.966.966 0 01.175-.533c.093-.138.213-.266.378-.403l8.036-6.636A2.228 2.228 0 0111.999 3c.528 0 1.03.173 1.414.487l8.035 6.635c.162.134.282.262.376.403a.966.966 0 01.176.533.758.758 0 01-.133.429.846.846 0 01-.312.271c-.207.106-.431.152-.751.154h-1.797v6.46A2.636 2.636 0 0116.381 21H13v-5h-2v5Z\"/></g>"},"hourglass":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M14 12c0-.4 1.311-1.236 2-2a7.576 7.576 0 002-5V3H6v2a7.572 7.572 0 002 5c.689.765 2 1.6 2 2s-1.311 1.235-2 2a7.573 7.573 0 00-2 5v2h12v-2a7.58 7.58 0 00-2-5c-.689-.765-2-1.603-2-2Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M18 7H6\"/><ellipse cx=\"3\" cy=\"2\" fill=\"currentColor\" rx=\"3\" ry=\"2\" transform=\"translate(9 18)\"/>"},"image":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(3.375 5.25)\"><g stroke-miterlimit=\"10\" transform=\"rotate(90 9.938 8.688)\"><rect width=\"16\" height=\"20\" rx=\"2\" stroke=\"none\"/><rect width=\"14\" height=\"18\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m2.625 13.75 9-9 6 6\"/><circle cx=\"1\" cy=\"1\" r=\"1\" stroke-linecap=\"round\" stroke-linejoin=\"round\" transform=\"translate(3.625 3.75)\"/><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m8.625 8.75 2 2 3-3\"/></g>"},"info-badge":{"body":"<g transform=\"translate(3 3)\"><circle cx=\"10\" cy=\"10\" r=\"10\" fill=\"currentColor\" transform=\"translate(-1 -1)\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M9 15V8m0-4V3\"/></g>"},"information":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M12 7v1m0 4v5\"/><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"10\" cy=\"10\" r=\"10\" stroke=\"none\"/><circle cx=\"10\" cy=\"10\" r=\"9\"/></g></g>"},"italic":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M18 5h-8m4 14H6m8-14-4 14\"/>"},"key":{"body":"<g transform=\"translate(-945.502 -1893.502)\"><path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m948.496 1910.504 7.076-7.076a6.1 6.1 0 114 4l-1.076 1.078-1 1h-2.006v2h-2v2.006l-1 1-4 .006Z\"/><circle cx=\"1.5\" cy=\"1.5\" r=\"1.5\" fill=\"currentColor\" transform=\"translate(960.502 1899.502)\"/></g>"},"language":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(3 3)\"><circle cx=\"9\" cy=\"9\" r=\"9\" stroke=\"none\"/><circle cx=\"9\" cy=\"9\" r=\"8\"/></g><path stroke-miterlimit=\"10\" d=\"M4 9h16M4 15h16\"/><path d=\"M11 20s-3-4-3-8 3-8 3-8m2 16s3-4 3-8-3-8-3-8\"/></g>"},"learning-path":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m3.995 17.84 1.151-4.282a.184.184 0 01.331-.053 2.041 2.041 0 10.8-2.961.183.183 0 01-.259-.211L7.169 6.05l4.3 1.148a.183.183 0 00.212-.26 2.021 2.021 0 01-.141-1.428 2.045 2.045 0 113.113 2.221.183.183 0 00.053.33l4.289 1.149L15.831 21Z\"/>"},"light-off":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M16 4.227A6.485 6.485 0 0012.176 3 6.435 6.435 0 007.82 4.656 5.462 5.462 0 006 8.691a9 9 0 00.906 3.9c.066.139.144.272.215.408M9 18.829a2.972 2.972 0 00.884 1.3 3.868 3.868 0 004.889 0 2.86 2.86 0 001.05-2.181v-2.089a15.222 15.222 0 002.237-3.33A9.881 9.881 0 0019 9.002\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M4 20 20 4\"/>"},"light-on":{"body":"<g fill=\"none\"><g stroke-miterlimit=\"10\"><path d=\"M19 8.53a6.3 6.3 0 00-2.063-4.63A7.243 7.243 0 0012 2a7.243 7.243 0 00-4.937 1.9A6.3 6.3 0 005 8.53a10.429 10.429 0 001.027 4.475 16.335 16.335 0 002.328 3.526v2.234a3.061 3.061 0 001.095 2.313A3.883 3.883 0 0012 22a3.883 3.883 0 002.55-.923 3.061 3.061 0 001.095-2.313v-2.217a16.179 16.179 0 002.334-3.535A10.478 10.478 0 0019 8.53Z\"/><path fill=\"currentColor\" d=\"M12 4c-1.357 0-2.627.485-3.577 1.367C7.505 6.217 6.999 7.34 7 8.531c0 1.234.274 2.42.838 3.624.463.987 1.134 1.998 2.05 3.09l.468.557v2.964c0 .392.252.668.405.801.322.28.762.433 1.239.433.477 0 .917-.154 1.242-.436.15-.13.403-.406.402-.8v-2.947l.47-.558c.917-1.09 1.589-2.102 2.052-3.093.562-1.204.835-2.393.834-3.637 0-1.189-.505-2.311-1.424-3.163C14.627 4.486 13.357 4 12 4m0-2c1.92 0 3.668.723 4.937 1.9C18.206 5.076 19 6.717 19 8.53c0 1.633-.388 3.123-1.022 4.482-.598 1.281-1.417 2.445-2.334 3.535v2.217c.001.916-.43 1.74-1.094 2.313-.664.577-1.566.923-2.55.923-.984 0-1.886-.346-2.55-.923-.664-.574-1.095-1.397-1.094-2.313V16.53c-.914-1.088-1.73-2.25-2.329-3.526C5.39 11.645 5 10.157 5 8.53c0-1.813.795-3.454 2.063-4.63C8.332 2.723 10.08 2 12 2Z\"/></g><path stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M9 16h6\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m14 10-2 3m-2-2.997 2 3v3\"/></g>"},"link":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"M10 13.14a4.584 4.584 0 006.446.936 4.555 4.555 0 00.5-.434l2.762-2.783a4.659 4.659 0 00-.113-6.557 4.582 4.582 0 00-6.4 0l-1.583 1.586\"/><path d=\"M14 10.86a4.584 4.584 0 00-6.446-.936 4.56 4.56 0 00-.5.434l-2.762 2.783a4.659 4.659 0 00.113 6.557 4.582 4.582 0 006.4 0l1.575-1.585\"/></g>"},"lock":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M12 14.998v2\"/><g stroke-miterlimit=\"10\" transform=\"translate(4 10)\"><rect width=\"16\" height=\"12\" rx=\"3\" stroke=\"none\"/><rect width=\"14\" height=\"10\" x=\"1\" y=\"1\" rx=\"2\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M8.005 10V7.4c0-1.878 1.791-3.4 4-3.4h0c2.209 0 4 1.523 4 3.4V10\"/></g>"},"login":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M15 3h4a2.406 2.406 0 012 2v14a2.41 2.41 0 01-2 2h-4m-5-4 5-5-5-5m4 5H3\"/>"},"logout":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9 3H5a2.406 2.406 0 00-2 2v14a2.41 2.41 0 002 2h4m7-4 5-5-5-5m4 5H9\"/>"},"maximize":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" transform=\"translate(2 4)\"><rect width=\"20\" height=\"16\" rx=\"2\" stroke=\"none\"/><rect width=\"18\" height=\"14\" x=\"1\" y=\"1\" rx=\"1\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6.999 13v2h2m8.003-4V9h-2\"/>"},"menu":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5 16h11M5 12h8M5 8h14\"/>"},"merge":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(4 15)\"><circle cx=\"3\" cy=\"3\" r=\"3\" stroke=\"none\"/><circle cx=\"3\" cy=\"3\" r=\"2\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(14 15)\"><circle cx=\"3\" cy=\"3\" r=\"3\" stroke=\"none\"/><circle cx=\"3\" cy=\"3\" r=\"2\"/></g><path stroke-linejoin=\"round\" d=\"m16 8-4-4-4 4m4-4v9\"/><path stroke-miterlimit=\"10\" d=\"m8.999 16 3-3 3 3\"/></g>"},"minimize":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" transform=\"translate(2 14)\"><rect width=\"9\" height=\"6\" rx=\"1\" stroke=\"none\"/><path d=\"M1 1h7v4H1z\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M20.999 8V5h-4M17 19h4v-3M7 5H3v3\"/>"},"mixed-class":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5.001 15a1.845 1.845 0 01-2-2V5a1.845 1.845 0 012-2h14a1.845 1.845 0 012 2v8a1.845 1.845 0 01-2 2\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M10 21a2 2 0 012-2 2 2 0 012 2\"/><g stroke-miterlimit=\"10\"><path d=\"M10 16a2 2 0 11.586 1.414A2 2 0 0110 16Z\"/><path fill=\"currentColor\" d=\"M12 14c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414A1.994 1.994 0 0112 18a1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0112 14Z\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M14 13a2 2 0 012-2 2 2 0 012 2\"/><g stroke-miterlimit=\"10\"><path d=\"M14 8a2 2 0 11.586 1.414A2 2 0 0114 8Z\"/><path fill=\"currentColor\" d=\"M16 6c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414A1.994 1.994 0 0116 10a1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0116 6Z\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M6 13a2 2 0 012-2 2 2 0 012 2\"/><g stroke-miterlimit=\"10\"><path d=\"M6 8a2 2 0 11.586 1.414A2 2 0 016 8Z\"/><path fill=\"currentColor\" d=\"M8 6c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414A1.994 1.994 0 018 10a1.994 1.994 0 01-1.414-.586A1.996 1.996 0 018 6Z\"/></g></g>"},"more-horizontal":{"body":"<g fill=\"currentColor\" transform=\"rotate(90 4.125 14.625)\"><circle cx=\"2\" cy=\"2\" r=\"2\" transform=\"translate(-.5 -1.25)\"/><circle cx=\"2\" cy=\"2\" r=\"2\" transform=\"translate(-.5 4.75)\"/><circle cx=\"2\" cy=\"2\" r=\"2\" transform=\"translate(-.5 10.75)\"/></g>"},"more-vertical":{"body":"<g fill=\"currentColor\" transform=\"translate(10.5 5.25)\"><circle cx=\"2\" cy=\"2\" r=\"2\" transform=\"translate(-.5 -1.25)\"/><circle cx=\"2\" cy=\"2\" r=\"2\" transform=\"translate(-.5 4.75)\"/><circle cx=\"2\" cy=\"2\" r=\"2\" transform=\"translate(-.5 10.75)\"/></g>"},"news":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path d=\"m7 9-4 .041v9.6C3 20.052 3.759 21 5 21a1.773 1.773 0 002-2V5h14v14s.317 2-2 2H5\"/><path stroke-linecap=\"round\" d=\"M11 17h3m-3-8h6m-6 4h6\"/></g>"},"no-prerequisites":{"body":"<g transform=\"translate(4.883 7)\"><rect width=\"8\" height=\"4\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" rx=\".5\" transform=\"translate(7.117 -1.998)\"/><rect width=\"8\" height=\"4\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" rx=\".5\" transform=\"translate(7.117 8)\"/><path fill=\"currentColor\" d=\"M-.795 2.091h.944V-.775l-1.032.254v-.976l2.165-.5v4.091h.835v.909H-.794Zm-.077 9.859a1.333 1.333 0 01.858-1.385l.908-.456a.481.481 0 00.271-.514v-.263c0-.257-.109-.373-.338-.373h-.44c-.231 0-.341.112-.341.373v.533h-.93v-.479A1.2 1.2 0 01.434 8.002h.341a1.2 1.2 0 011.317 1.367v.264a1.322 1.322 0 01-.857 1.368l-.9.458a.446.446 0 00-.279.456v.16H2.12v.926H-.868Z\"/></g>"},"notes":{"body":"<path fill=\"none\" d=\"M0 0h24v24H0z\"/><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M8 8h8m-8 4h5\"/><g transform=\"translate(3 3)\"><rect width=\"18\" height=\"18\" rx=\"2\" stroke=\"none\"/><rect width=\"16\" height=\"16\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M5 20c2.65 0 4-4 4-4l10 3.945L5 20Z\"/></g>"},"number-code":{"body":"<defs><path id=\"svgIDa\" d=\"M13.014 9v5m2-3.75-4 2.5m4 0-4-2.5\"/></defs><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(7 6)\"><rect width=\"10\" height=\"8\" rx=\"3\" stroke=\"none\"/><rect width=\"8\" height=\"6\" x=\"1\" y=\"1\" rx=\"2\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M10.005 6V4.7a1.869 1.869 0 012-1.7h0a1.869 1.869 0 012 1.7V6\"/></g><use xlink:href=\"#svgIDa\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" transform=\"translate(-7.014 7)\"/><use xlink:href=\"#svgIDa\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" transform=\"translate(-1.014 7)\"/><use xlink:href=\"#svgIDa\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" transform=\"translate(4.986 7)\"/>"},"numbered-list":{"body":"<path fill=\"none\" d=\"M0 0h24v24H0z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M7.999 16.998h5m-5-4.999h12M7.999 7h8\"/><path fill=\"currentColor\" stroke=\"rgba(0,0,0,0)\" d=\"M4.044 7.455h.472v-1.72L4 5.886v-.585l1.083-.3v2.455H5.5v.545H4.044Zm-.04 4.914a.824.824 0 01.429-.831l.454-.274c.1-.063.135-.14.135-.308v-.158c0-.154-.055-.224-.169-.224h-.22c-.116 0-.171.067-.171.224v.32h-.458v-.287c0-.558.235-.83.659-.83h.171c.427 0 .658.276.658.82v.159a.816.816 0 01-.428.821l-.452.275a.277.277 0 00-.139.274v.1h1.031v.556h-1.5Zm1.495 4.726v.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.59.246.042.37.284.37.61Z\"/>"},"on-site":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5.001 15a1.845 1.845 0 01-2-2V5a1.845 1.845 0 012-2h14a1.845 1.845 0 012 2v8a1.845 1.845 0 01-2 2\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m8 12 2-2h3l3-3\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M10 21.001a2 2 0 012-2 2 2 0 012 2\"/><g stroke-miterlimit=\"10\"><path d=\"M10 16a2 2 0 11.586 1.414A2 2 0 0110 16Z\"/><path fill=\"currentColor\" d=\"M12 14c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414A1.994 1.994 0 0112 18a1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0112 14Z\"/></g></g>"},"order-down":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5 6h14M5 10h10M5 14h7m-7 4h3\"/>"},"order-up":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5 18h14M5 14h10M5 10h7M5 6h3\"/>"},"paste":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(8 2)\"><rect width=\"12\" height=\"16\" rx=\"2\" stroke=\"none\"/><rect width=\"10\" height=\"14\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M15 21H7.377C6.064 21 5 19.616 5 17.91V8\"/><path stroke-linecap=\"round\" d=\"M13 7h2m-2 4h2\"/></g>"},"pausa":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M9 5v14m6-14v14\"/>"},"pdf":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M21 8h-8m8 3.999h-8M21 17H3\"/><path stroke-linejoin=\"round\" d=\"M3 7h6v6H3z\"/></g>"},"phone":{"body":"<g transform=\"translate(5.42 2)\"><g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(-.42)\"><rect width=\"14\" height=\"20\" rx=\"2.999\" stroke=\"none\"/><rect width=\"12\" height=\"18\" x=\"1\" y=\"1\" rx=\"1.999\"/></g><circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"currentColor\" transform=\"translate(4.58 13)\"/><rect width=\"6\" height=\"3\" fill=\"currentColor\" rx=\"1\" transform=\"translate(3.58)\"/></g>"},"pin":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(9 6)\"><circle cx=\"3\" cy=\"3\" r=\"3\" stroke=\"none\"/><circle cx=\"3\" cy=\"3\" r=\"2\"/></g><g fill=\"none\"><path d=\"M12 2a7 7 0 017 7c0 6.009-7 13-7 13S5 15.005 5 9a7 7 0 017-7Z\"/><path fill=\"currentColor\" d=\"M12 4C9.243 4 7 6.243 7 9c0 2.03 1.073 4.642 3.102 7.553a34.014 34.014 0 001.899 2.465 34.08 34.08 0 001.86-2.412C15.916 13.674 17 11.044 17 9c0-2.757-2.243-5-5-5m0-2a7 7 0 017 7c0 6.009-7 13-7 13S5 15.005 5 9a7 7 0 017-7Z\"/></g>"},"pin-map":{"body":"<g fill=\"currentColor\"><path d=\"M12.002 20.535a35.386 35.386 0 01-2.68-3.357C6.576 13.264 6 10.57 6 9a6.01 6.01 0 016.002-6.002c3.309 0 6 2.693 6 6.002 0 1.57-.576 4.264-3.318 8.18a35.794 35.794 0 01-2.682 3.355Zm0-15.535c-2.205 0-4 1.795-4 4s1.795 4 4 4A4.004 4.004 0 0016 9c0-2.205-1.793-4-3.998-4Z\"/><path d=\"M12.002 19.016a34.253 34.253 0 001.861-2.409c2.024-2.89 3.139-5.591 3.139-7.607a5.006 5.006 0 00-5-5.002A5.008 5.008 0 007 9c0 2.016 1.115 4.715 3.14 7.604a33.634 33.634 0 001.862 2.412m0-15.016A5.004 5.004 0 0117 9c0 2.758-2.242 5-4.998 5-2.758 0-5-2.242-5-5s2.242-5 5-5m0 18v-.002a35.204 35.204 0 01-3.5-4.248C6.904 15.473 5 12.105 5 9a7.01 7.01 0 017.002-7.002c3.86 0 7 3.14 7 7.002 0 3.102-1.902 6.473-3.5 8.754a35.478 35.478 0 01-3.5 4.244V22Zm0-16c-1.654 0-3 1.346-3 3s1.346 3 3 3A3.002 3.002 0 0015 9c0-1.654-1.344-3-2.998-3Z\"/></g>"},"pizza":{"body":"<path fill=\"rgba(0,0,0,0)\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m15.01 3 5.989 18-17.966-6S1.74 3 15.01 3Z\"/><path fill=\"rgba(0,0,0,0)\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M4.677 14.791a9.664 9.664 0 01.016-2.2 9.591 9.591 0 01.981-1.986 9.765 9.765 0 011.018-1.97 10.428 10.428 0 011.785-1.384 10.291 10.291 0 011.809-1.356 10.872 10.872 0 012.239-.506 10.571 10.571 0 012.247-.47\"/><path fill=\"rgba(0,0,0,0)\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M6 14.996c.3-1.14 2.338-1.365 3.387-1a2.773 2.773 0 011.613 3m8-1.072c-.661.308-1.484-.321-1.839-1.4s-.106-2.21.555-2.518\"/><path fill=\"currentColor\" d=\"M12.835 8.259a1.885 1.885 0 00-2.578 2.58.627.627 0 00.465.3.644.644 0 00.539-.184l.144-.123.811 1.164 1.78-1.78-1.166-.83.123-.127a.645.645 0 00.184-.54.626.626 0 00-.3-.464Z\"/>"},"play":{"body":"<g fill=\"none\"><path d=\"M18.9 10.257a2 2 0 010 3.486l-9.921 5.58A2 2 0 016 17.58V6.42a2 2 0 012.981-1.743Z\"/><path fill=\"currentColor\" d=\"M17.92 12 8 6.42v11.16L17.92 12m2 0c0 .68-.34 1.36-1.019 1.743l-9.92 5.58C7.647 20.073 6 19.11 6 17.58V6.42c0-1.53 1.647-2.493 2.98-1.743l9.921 5.58A1.98 1.98 0 0119.921 12Z\"/></g>"},"plug-in":{"body":"<g fill=\"none\"><path d=\"M4.002 19a2 2 0 01-2-2v-7a2 2 0 012-2V7a2 2 0 012-2h3a2 2 0 012 2v1h2V7a2 2 0 012-2h3a2 2 0 012 2v1a2 2 0 012 2v7a2 2 0 01-2 2Z\"/><path fill=\"currentColor\" d=\"M20.002 17v-6.998h-2v-3H15v3H9.004v-3H6.002v1l-.004 2.002H4L4.002 17h16m0 2h-16A2 2 0 012 17V9.998a2 2 0 012.002-1.996V6.998c0-1.105.895-1.996 2.002-1.996h2.998c1.107 0 2.002.89 2.002 1.996v1.004H13V6.998c0-1.105.895-1.996 2-1.996h3c1.106 0 2.002.89 2.002 1.996v1.004c1.105 0 2 .894 2 1.996V17a2 2 0 01-2 2Z\"/></g>"},"pointer":{"body":"<g stroke=\"currentColor\"><g fill=\"none\" stroke-width=\"2\" transform=\"translate(4 4)\"><circle cx=\"8\" cy=\"8\" r=\"8\" stroke=\"none\"/><circle cx=\"8\" cy=\"8\" r=\"7\"/></g><g transform=\"translate(9 9)\"><circle cx=\"3\" cy=\"3\" r=\"3\" fill=\"currentColor\" stroke=\"none\"/><circle cx=\"3\" cy=\"3\" r=\"2.5\" fill=\"none\"/></g></g>"},"printer":{"body":"<g fill=\"none\"><g stroke-miterlimit=\"10\"><path d=\"M19.553 8H4.5A1.524 1.524 0 003 9.5v7A1.5 1.5 0 004.5 18H6v1.5A1.527 1.527 0 007.5 21h9a1.525 1.525 0 001.5-1.5V18h1.5a1.526 1.526 0 001.5-1.5V9.489A1.469 1.469 0 0019.553 8Z\"/><path fill=\"currentColor\" d=\"M5 9.999v6h3v3h8v-3h3V10H5m-.5-2h15.053C20.352 8 21 8.667 21 9.49v7.005c0 .823-.701 1.504-1.5 1.504H18v1.5c0 .818-.7 1.5-1.495 1.5H7.497c-.794 0-1.497-.682-1.497-1.5v-1.5H4.5a1.5 1.5 0 01-1.5-1.5v-7c0-.822.701-1.5 1.5-1.5Z\"/></g><g stroke-miterlimit=\"10\"><path d=\"M6 13.999h12v5.716a1.333 1.333 0 01-1.375 1.287h-9.25A1.333 1.333 0 016 19.715Z\"/><path fill=\"currentColor\" d=\"M8 15.999v3h8v-3H8m-2-2h12v5.713c0 .71-.615 1.287-1.375 1.287h-9.25c-.76 0-1.375-.576-1.375-1.287v-5.713Z\"/></g><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M14 12h2\"/><g stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linejoin=\"round\" d=\"M16.001 5.998h-2v-2Z\"/><path stroke-miterlimit=\"10\" d=\"M8 9V5.195A1.2 1.2 0 019.21 4h4.912L16 5.813V9\"/></g></g>"},"profile":{"body":"<path fill=\"rgba(0,0,0,0)\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M12 14a4.963 4.963 0 01-4-2 3 3 0 003-3 3 3 0 00-3-3 4.963 4.963 0 014-2 4.964 4.964 0 014 2 3.006 3.006 0 00-3 3 3 3 0 003 3 4.958 4.958 0 01-4 2Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6 22a6 6 0 016-6 6 6 0 016 6\"/><g fill=\"rgba(0,0,0,0)\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(4 5)\"><circle cx=\"4\" cy=\"4\" r=\"4\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3\" fill=\"none\"/></g><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(12 5)\"><circle cx=\"4\" cy=\"4\" r=\"4\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3\"/></g>"},"profile-add":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M15.001 6h6m-3-3v6\"/><g fill=\"rgba(0,0,0,0)\"><path d=\"M8 16a3.997 3.997 0 01-3.333-1.788l-.166-.25-.277-.117a1.998 1.998 0 01-1.222-1.844c0-.807.48-1.53 1.222-1.844l.278-.117.166-.25A3.994 3.994 0 018.001 8c1.344 0 2.59.67 3.335 1.79l.167.25.277.118A1.998 1.998 0 0113 12c0 .806-.48 1.53-1.222 1.843l-.276.117-.167.25A3.997 3.997 0 018 16Z\"/><path fill=\"currentColor\" d=\"M8 15a3 3 0 002.503-1.342l.333-.5.554-.235a1 1 0 000-1.844l-.554-.235-.333-.5a3 3 0 00-5.002-.001l-.333.501-.555.234a.999.999 0 00-.61.923 1 1 0 00.61.923l.554.234.333.5A2.999 2.999 0 008 15.001m0 2a4.995 4.995 0 01-4.165-2.235 3 3 0 01.001-5.53A4.993 4.993 0 018 7c1.74 0 3.272.889 4.168 2.237a3 3 0 010 5.529A4.996 4.996 0 018 17Z\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4.001 22a4 4 0 018 0\"/><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(2 9)\"><rect width=\"6\" height=\"6.001\" rx=\"3\" stroke=\"none\"/><rect width=\"4\" height=\"4.001\" x=\"1\" y=\"1\" rx=\"2\"/></g><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(8.001 9)\"><rect width=\"6\" height=\"6.001\" rx=\"3\" stroke=\"none\"/><rect width=\"4\" height=\"4.001\" x=\"1\" y=\"1\" rx=\"2\"/></g>"},"push-pin-off":{"body":"<defs><clipPath id=\"svgIDa\"><path fill=\"none\" stroke=\"#000\" d=\"M0 0h17.997v17.996H0z\"/></clipPath></defs><g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g clip-path=\"url(#svgIDa)\" transform=\"translate(3 3)\"><path d=\"M8.955 4.786 7.143 2.975A.821.821 0 016.9 2.4V1.395a.4.4 0 00-.681-.279L1.114 6.224a.4.4 0 00.279.68H2.4a.808.808 0 01.574.239l1.812 1.812m2.463 6.021a7.548 7.548 0 001.111 1.731.822.822 0 001.16.092.63.63 0 00.047-.043l7.191-7.191a.824.824 0 000-1.164l-.045-.041a7.552 7.552 0 00-1.732-1.111\"/></g><path stroke-linecap=\"round\" d=\"m17 17 3 3M4 20 20 4\"/></g>"},"push-pin-on":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><path d=\"M19.711 11.362c-2.283-1.92-4.212-1.7-5.044-1.466a.818.818 0 01-.806-.206l-3.715-3.714a.816.816 0 01-.24-.574V4.396a.4.4 0 00-.681-.279L4.117 9.225a.4.4 0 00.279.68h1.006a.816.816 0 01.574.239l3.715 3.715a.818.818 0 01.206.806c-.235.832-.454 2.762 1.466 5.044a.823.823 0 001.207.049l7.191-7.191a.823.823 0 00-.05-1.205Z\"/><path stroke-linecap=\"round\" d=\"m17 17 3 3\"/></g>"},"qrcode":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><rect width=\"6\" height=\"6\" rx=\"2\" stroke=\"none\"/><rect width=\"4\" height=\"4\" x=\"1\" y=\"1\" rx=\"1\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(2 16)\"><rect width=\"6\" height=\"6\" rx=\"2\" stroke=\"none\"/><rect width=\"4\" height=\"4\" x=\"1\" y=\"1\" rx=\"1\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(16 2)\"><rect width=\"6\" height=\"6\" rx=\"2\" stroke=\"none\"/><rect width=\"4\" height=\"4\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M3 12h8v2m1-11v5m-1 11v2h4v-6m2-3h4v3m-2 6h2v-2\"/></g>"},"question-badge":{"body":"<g transform=\"translate(2 2)\"><circle cx=\"10\" cy=\"10\" r=\"10\" fill=\"currentColor\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6 6.671a4.15 4.15 0 015.25-2.444A4.005 4.005 0 0114 8.004c0 2.665-4.116 4-4.116 4\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M10 17v-1\"/></g>"},"radio":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(2.001 2)\"><circle cx=\"10\" cy=\"10\" r=\"10\" stroke=\"none\"/><circle cx=\"10\" cy=\"10\" r=\"9\"/></g>"},"redo":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M17.999 8H9.036A5.011 5.011 0 004 12.986v.027A5.011 5.011 0 009.036 18h3.981\"/><path stroke-linejoin=\"round\" d=\"m17 5 3 3-3 3\"/></g>"},"relations":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-linecap=\"round\" stroke-miterlimit=\"10\" transform=\"translate(2 6.75)\"><path d=\"m3 1.25 2 2\"/><circle cx=\"1\" cy=\"1\" r=\"1\" transform=\"translate(1 -.75)\"/></g><g stroke-linecap=\"round\" stroke-miterlimit=\"10\" transform=\"translate(10 4.75)\"><path d=\"M2 2.25v2\"/><circle cx=\"1\" cy=\"1\" r=\"1\" transform=\"translate(1 -.75)\"/></g><g stroke-linecap=\"round\" stroke-miterlimit=\"10\" transform=\"translate(17 6)\"><path d=\"M2 2 0 4\"/><circle cx=\"1\" cy=\"1\" r=\"1\" transform=\"translate(2)\"/></g><path stroke-linejoin=\"round\" d=\"M9 22a3 3 0 013-3 3 3 0 013 3\"/><g transform=\"translate(9 12)\"><rect width=\"6.001\" height=\"6.001\" rx=\"3\" stroke=\"none\"/><rect width=\"4.001\" height=\"4.001\" x=\"1\" y=\"1\" rx=\"2\"/></g></g>"},"reload":{"body":"<g fill=\"none\" stroke=\"currentColor\"><path d=\"M17 16.754A6.869 6.869 0 0111.92 19 6.96 6.96 0 015 12m2-5.18A7.252 7.252 0 0111.826 5 7.089 7.089 0 0119 12\"/><path d=\"m7 13-2-2-2 2m14-2 2 2 2-2\"/></g>"},"remove":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M4 12h16\"/>"},"remove-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(2 2)\"><circle cx=\"10\" cy=\"10\" r=\"10\" stroke=\"none\"/><circle cx=\"10\" cy=\"10\" r=\"9\"/></g><path stroke-linecap=\"round\" d=\"M7 12h10\"/></g>"},"reorder":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M4 14h16M4 10h16\"/><path stroke-linejoin=\"round\" d=\"m14.001 6.001-2-2-2 2M9.999 18l2 2 2-2\"/></g>"},"repeat":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"m17 4 3 3-3 3M7 20l-3-3 3-3\"/><path d=\"M4 11V9a2.184 2.184 0 012.332-2H18m2 6v2a2.184 2.184 0 01-2.332 2H6\"/></g>"},"repository":{"body":"<g fill=\"none\"><path d=\"M4 21.002a2 2 0 01-2-2V6.27c0-1.133.859-2.26 1.717-2.264l6-.006.834.006L11.93 6.27H20a2 2 0 012 2v10.732a2 2 0 01-2 2Z\"/><path fill=\"currentColor\" d=\"m20 19.002.002-10.73C20 8.272 20 8.27 20 8.27h-9.195l-.586-.96L9.422 6l-5.346.006a.603.603 0 00-.078.264L3.996 19c.002 0 .002.002.002.002H20m0 2H3.998c-1.103 0-2-.896-2-2V6.27c0-1.133.86-2.26 1.717-2.264l6-.006.834.006 1.379 2.264H20a2 2 0 012 2v10.732a2 2 0 01-2 2Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m17 14-2-2-2 2m2-1v4\"/></g>"},"request-form":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(3.5 3.5)\"><path d=\"M12.5 9.632a4.163 4.163 0 01-2.866 2.866m0-8A4.165 4.165 0 0112.5 7.366m-8 0a4.166 4.166 0 012.866-2.867m0 8a4.161 4.161 0 01-2.868-2.866m11.001.87c-.518 3.465-2.1 4.465-5 5m0-14a5.77 5.77 0 015 5m-14 0a5.777 5.777 0 015-5m0 14a5.629 5.629 0 01-5-5\"/><rect width=\"4\" height=\"5\" rx=\"1.333\" transform=\"translate(6.5 12.5)\"/><rect width=\"5\" height=\"4\" rx=\"1.333\" transform=\"translate(12.5 6.5)\"/><rect width=\"5\" height=\"4\" rx=\"1.333\" transform=\"translate(-.5 6.5)\"/><rect width=\"4\" height=\"5\" rx=\"1.333\" transform=\"translate(6.5 -.5)\"/></g>"},"resize-100":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M21.001 8.998v-4h-4M17 19.001h4v-4M7 4.999H3v4m-.001 6.003v4h4\"/><path fill=\"currentColor\" d=\"M6.121 16h3.877v-1.243H8.787V8l-2.789.824v1.333l1.494-.461v5.062H6.121Zm7.998 0h3.877v-1.243h-1.211V8l-2.789.824v1.333l1.494-.461v5.062h-1.371ZM11 10.964h1V9.501h-1Zm0 3.537h1v-1.464h-1Z\"/>"},"resize-height":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-linejoin=\"round\" d=\"m14 9-2-2-2 2m-.001 6.002 2 2 2-2\"/><path d=\"M4 3h16M4 21h16\"/></g>"},"resize-width":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-linejoin=\"round\" d=\"m14.999 14 2-2-2-2m-6.002-.001-2 2 2 2\"/><path d=\"M20.999 4v16m-18-16v16\"/></g>"},"search":{"body":"<g stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><path fill=\"currentColor\" stroke-linecap=\"round\" d=\"m15 15 6 6\"/><g fill=\"none\" transform=\"translate(3 3)\"><circle cx=\"7\" cy=\"7\" r=\"7\" stroke=\"none\"/><circle cx=\"7\" cy=\"7\" r=\"6\"/></g></g>"},"sequential-prerequisites":{"body":"<g transform=\"translate(4.884 5.999)\"><rect width=\"8\" height=\"4\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" rx=\".5\" transform=\"translate(7.117 -1.998)\"/><path fill=\"currentColor\" d=\"M-.795 2.091h.944V-.775l-1.032.254v-.976l2.165-.5v4.091h.835v.909H-.794Zm-.077 9.859a1.333 1.333 0 01.858-1.385l.908-.456a.481.481 0 00.271-.514v-.263c0-.257-.109-.373-.338-.373h-.44c-.231 0-.341.112-.341.373v.533h-.93v-.479A1.2 1.2 0 01.434 8.002h.341a1.2 1.2 0 011.317 1.367v.264a1.322 1.322 0 01-.857 1.368l-.9.458a.446.446 0 00-.279.456v.16H2.12v.926H-.868Z\"/><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(7.115 9)\"><rect width=\"8\" height=\"6\" rx=\"2\" stroke=\"none\"/><rect width=\"6\" height=\"4\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9.12 9V7.7a1.869 1.869 0 012-1.7h0a1.869 1.869 0 012 1.7V9\"/></g></g>"},"settings":{"body":"<g fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\" transform=\"translate(3.75 3.762)\"><path d=\"M7.235 16.238h2.029l.248-1.992.344-.095a6.075 6.075 0 001.436-.595l.311-.18 1.585 1.237 1.437-1.437-1.237-1.585.18-.312a6.093 6.093 0 00.595-1.436l.095-.343 1.992-.247V7.222l-1.991-.247-.095-.344a6.082 6.082 0 00-.6-1.436l-.18-.311 1.237-1.585-1.432-1.438-1.586 1.238-.311-.18a6.087 6.087 0 00-1.435-.597l-.344-.095L9.265.236h-2.03l-.248 1.991-.344.095a6.087 6.087 0 00-1.435.6l-.311.18-1.586-1.241-1.437 1.437 1.237 1.586-.18.312a6.071 6.071 0 00-.6 1.435l-.095.345-1.986.246v2.03l1.991.248.095.344a6.071 6.071 0 00.6 1.435l.18.312-1.242 1.586 1.437 1.437 1.585-1.237.311.18a6.087 6.087 0 001.436.595l.344.095Z\"/><path fill=\"currentColor\" d=\"m9.265 16.238.248-1.992.344-.095c.512-.14.995-.34 1.435-.594l.311-.18 1.586 1.237 1.437-1.437-1.237-1.586.18-.312a6.06 6.06 0 00.595-1.435l.095-.343 1.991-.248v-2.03l-1.991-.248-.095-.344a6.082 6.082 0 00-.595-1.436l-.18-.311 1.237-1.586-1.437-1.437L11.603 3.1l-.31-.18a6.087 6.087 0 00-1.436-.595l-.344-.095L9.265.238h-2.03l-.248 1.991-.344.095c-.512.14-.994.34-1.435.595l-.311.18L3.31 1.861 1.874 3.298l1.237 1.586-.18.312c-.254.44-.455.923-.595 1.435l-.095.344-1.991.248v2.03l1.991.248.095.344c.14.512.34.994.595 1.434l.18.312-1.237 1.586 1.437 1.437 1.586-1.237.31.18c.442.254.924.454 1.436.594l.344.095.248 1.992h2.03m0 2h-2.03a2 2 0 01-1.984-1.753l-.091-.73a8.062 8.062 0 01-.04-.016l-.579.452a2 2 0 01-2.644-.163L.46 14.591a2 2 0 01-.163-2.644l.452-.579a8.046 8.046 0 01-.017-.04l-.73-.09A2 2 0 01-1.75 9.252v-2.03A2 2 0 01.004 5.238l.728-.09a8.03 8.03 0 01.017-.04l-.452-.58A2 2 0 01.46 1.885L1.897.447A2 2 0 014.542.285l.578.451.04-.016.09-.73a2 2 0 011.985-1.752h2.03a2 2 0 011.984 1.753l.091.729.04.016.578-.451a2 2 0 012.645.162l1.437 1.437a2 2 0 01.163 2.645l-.452.578.017.04.728.091a2 2 0 011.754 1.985v2.03a2 2 0 01-1.753 1.984l-.73.091a7.995 7.995 0 01-.016.04l.452.579a2 2 0 01-.163 2.644l-1.437 1.437a2 2 0 01-2.644.163l-.58-.452a8.12 8.12 0 01-.039.017l-.09.73a2 2 0 01-1.985 1.752Z\"/><circle cx=\"3\" cy=\"3\" r=\"3\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(5.25 5.238)\"/></g>"},"share":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(4.207 3.75) translate(-.207 5.25)\"><circle cx=\"3\" cy=\"3\" r=\"3\" stroke=\"none\"/><circle cx=\"3\" cy=\"3\" r=\"2\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(4.207 3.75) translate(9.793 11.25)\"><circle cx=\"3\" cy=\"3\" r=\"3\" stroke=\"none\"/><circle cx=\"3\" cy=\"3\" r=\"2\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(4.207 3.75) translate(9.793 -.75)\"><circle cx=\"3\" cy=\"3\" r=\"3\" stroke=\"none\"/><circle cx=\"3\" cy=\"3\" r=\"2\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m15 17-6-4m6-6-6 4\"/></g>"},"sketch":{"body":"<path fill=\"none\" d=\"M0 0h24v24H0z\"/><g fill=\"none\"><path d=\"M15.33 4a2 2 0 011.743 1.019l3.375 6a2 2 0 010 1.961l-3.375 6A2 2 0 0115.33 20H8.67a2 2 0 01-1.743-1.019l-3.375-6a2 2 0 010-1.961l3.375-6A2 2 0 018.67 4Z\"/><path fill=\"currentColor\" d=\"m8.67 6-3.375 6 3.375 6h6.66l3.375-6-3.375-6H8.67m0-2h6.66a2 2 0 011.743 1.02l3.375 6a2 2 0 010 1.96l-3.375 6A2 2 0 0115.33 20H8.67a2 2 0 01-1.743-1.02l-3.375-6a2 2 0 010-1.96l3.375-6A2 2 0 018.67 4Z\"/></g>"},"skills":{"body":"<g transform=\"translate(2.988 2.25)\"><path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6.012 19.75a3 3 0 013-3 3 3 0 013 3\"/><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(6.012 9.75)\"><rect width=\"6.001\" height=\"6.001\" rx=\"3\" stroke=\"none\"/><rect width=\"4.001\" height=\"4.001\" x=\"1\" y=\"1\" rx=\"2\"/></g><rect width=\"5\" height=\"5\" fill=\"currentColor\" rx=\"1\" transform=\"translate(-.988 3.75)\"/><path fill=\"currentColor\" d=\"M14.648 4.231a1 1 0 011.728 0l1.759 3.019a1 1 0 01-.864 1.5h-3.518a1 1 0 01-.864-1.5ZM8.405.214a1 1 0 011.214 0l1.839 1.4a1 1 0 01.348 1.09l-.722 2.346a1 1 0 01-.955.7H7.896a1 1 0 01-.955-.7l-.723-2.342a1 1 0 01.348-1.09Z\"/></g>"},"skip-back":{"body":"<g fill=\"none\"><path d=\"M5.039 13.736a2 2 0 010-3.473l7.969-4.554A2 2 0 0116 7.446v9.108a2 2 0 01-2.992 1.736Z\"/><path fill=\"currentColor\" d=\"M6.031 12 14 16.554V7.446L6.031 12m-2 0a1.98 1.98 0 011.008-1.736l7.969-4.554C14.34 4.948 16 5.91 16 7.446v9.108c0 1.535-1.659 2.498-2.992 1.736l-7.97-4.554A1.981 1.981 0 014.032 12Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M19 6v12\"/></g>"},"skip-forward":{"body":"<g fill=\"none\"><path d=\"M18.961 10.264a2 2 0 010 3.473l-7.969 4.554A2 2 0 018 16.554V7.446a2 2 0 012.992-1.736Z\"/><path fill=\"currentColor\" d=\"m17.969 12-7.97-4.554v9.108L17.968 12m2 0a1.98 1.98 0 01-1.008 1.736l-7.969 4.554c-1.333.762-2.992-.2-2.992-1.736V7.446c0-1.535 1.659-2.498 2.992-1.736l7.97 4.554A1.981 1.981 0 0119.968 12Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M5 6v12\"/></g>"},"sms":{"body":"<g fill=\"none\"><path d=\"M5 4h14a3 3 0 013 3v8a3 3 0 01-3 3H5a3 3 0 01-3-3V7a3 3 0 013-3Z\"/><path fill=\"currentColor\" d=\"M4.999 6c-.55 0-1 .449-1 1v8c0 .552.45 1 1 1H19a1 1 0 001-1V7c0-.551-.448-1-1-1H5m0-2h14a3 3 0 013 3v8a3 3 0 01-3 3H5a3 3 0 01-3-3V7a3 3 0 013-3Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 9h8m-8 4.001h5\"/><path d=\"M6 17h4l-4 4Z\"/><path fill=\"currentColor\" d=\"M5.999 17h4l-4 4v-4Z\"/></g>"},"sso-access":{"body":"<g fill=\"none\"><g stroke-linecap=\"round\"><path d=\"M18.002 18.002h-12a4 4 0 01-1.977-7.479 5 5 0 014.977-4.52 4.783 4.783 0 01.5.025 6 6 0 0110.5 3.974c0 .176-.008.35-.021.521a4 4 0 01-1.979 7.479Z\"/><path fill=\"currentColor\" d=\"M18 16a1.999 1.999 0 001.998-1.996c0-.72-.387-1.389-1.012-1.744l-1.103-.63.1-1.267a4.001 4.001 0 00-6.979-3.01l-.684.772-1.025-.11a2.986 2.986 0 00-3.28 2.695l-.097 1.034-.9.514a2.015 2.015 0 00-1.014 1.746C4.004 15.106 4.9 16 6.002 16H18m0 2H6.002a3.999 3.999 0 01-3.998-3.996c0-1.492.814-2.793 2.021-3.482a4.998 4.998 0 015.48-4.495 5.987 5.987 0 014.497-2.023 5.996 5.996 0 015.975 6.518 4 4 0 012.021 3.482A3.996 3.996 0 0118 18Z\"/></g><g stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M11.999 11v3\"/><g transform=\"translate(9.999 8)\"><circle cx=\"2\" cy=\"2\" r=\"2\" stroke=\"none\"/><circle cx=\"2\" cy=\"2\" r=\"1\"/></g></g></g>"},"star":{"body":"<path fill=\"none\" stroke=\"currentColor\" d=\"m12 4 1.889 6.111H20l-4.944 3.778L16.944 20 12 16.223 7.056 20l1.888-6.111L4 10.111h6.111Z\"/>"},"star-active":{"body":"<path fill=\"currentColor\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m12 4 1.889 6.111H20l-4.944 3.778L16.944 20 12 16.223 7.056 20l1.888-6.111L4 10.111h6.111Z\"/>"},"success":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" transform=\"translate(2.751 3)\"><rect width=\"4\" height=\"10\" rx=\"2\" transform=\"translate(.25 7.001)\"/><path stroke-linecap=\"round\" d=\"M16.066 8.914h-.885l.069-.48h.816a1.188 1.188 0 000-2.375h-1.959L11.253 6s.617-4.309-2-5.754c-1.683-.834-2 .754-2 .754v3l-1 1s-2 1.856-2 3.019V15a1.868 1.868 0 002 2h8.185a1.188 1.188 0 000-2.375h-.08l.069-.481h.825a1.188 1.188 0 000-2.375h-.486l.069-.481h1.231a1.188 1.188 0 000-2.375Z\"/></g>"},"sun":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(7 7)\"><circle cx=\"5\" cy=\"5\" r=\"5\" stroke=\"none\"/><circle cx=\"5\" cy=\"5\" r=\"4\"/></g><path stroke-linecap=\"round\" d=\"M12 4V3m0 18v-1m8-8h1M3 12h1m14 6.001 1 1M5 4.999l1 1m12 0 1-1M5 19.001l1-1\"/></g>"},"sunrise":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M6 17a6 6 0 016-6 6 6 0 016 6Z\"/><path fill=\"currentColor\" d=\"M15.464 15A4.003 4.003 0 0012 13a4.003 4.003 0 00-3.463 2h6.927m2.537 2H6a6 6 0 016-6 6 6 0 016 6Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M12 8V7m-9 9h18M5.001 8.999l1 1m11.999 0 1-1\"/></g>"},"support":{"body":"<g stroke=\"currentColor\" stroke-linejoin=\"round\" transform=\"translate(5.25 4.75)\"><path fill=\"none\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M1.75 4.251a5 5 0 0110 0\"/><g fill=\"none\" stroke-width=\"2\" transform=\"translate(-1.25 4.25)\"><rect width=\"6\" height=\"7\" rx=\"2.004\" stroke=\"none\"/><rect width=\"4\" height=\"5\" x=\"1\" y=\"1\" rx=\"1.004\"/></g><g fill=\"none\" stroke-width=\"2\" transform=\"translate(8.75 4.25)\"><rect width=\"6\" height=\"7\" rx=\"2.004\" stroke=\"none\"/><rect width=\"4\" height=\"5\" x=\"1\" y=\"1\" rx=\"1.004\"/></g><path fill=\"none\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M11.747 10.25v2a2.8 2.8 0 01-2.522 3H8.75\"/><circle cx=\"1\" cy=\"1\" r=\"1\" fill=\"currentColor\" stroke-linecap=\"round\" transform=\"translate(6.75 14.25)\"/></g>"},"survey":{"body":"<g fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M20 2H8a.881.881 0 00-1 1v6a.88.88 0 001 1h2l.5 1.5c.266.7.573.528.8.3L13 10h7a.88.88 0 001-1V3a.881.881 0 00-1-1Z\"/><path fill=\"currentColor\" d=\"M9 4v4h1a2 2 0 011.5.677l.048-.052A2 2 0 0113 8h6V4H9M8 2h12c.673 0 1 .332 1 1v6c0 .67-.327 1-1 1h-7l-1.703 1.797c-.228.227-.535.404-.8-.3L10 10H8c-.673 0-1-.33-1-1V3c0-.668.327-1 1-1Z\"/></g><path fill=\"currentColor\" d=\"M12.99 5.74a.123.123 0 00-.049-.053.175.175 0 00-.065-.022l-.421-.064a.2.2 0 01-.085-.04.211.211 0 01-.063-.072l-.188-.4a.183.183 0 00-.045-.062.112.112 0 00-.073-.027.112.112 0 00-.073.029.184.184 0 00-.045.062l-.188.4a.212.212 0 01-.063.072.2.2 0 01-.085.04l-.421.064a.162.162 0 00-.084.036.118.118 0 00-.03.039.117.117 0 00-.011.05.137.137 0 00.015.061.2.2 0 00.036.049l.3.31a.205.205 0 01.041.07.26.26 0 01.017.088.142.142 0 010 .024l-.072.438a.217.217 0 000 .037.143.143 0 00.029.091.108.108 0 00.04.031.112.112 0 00.047.01.166.166 0 00.079-.023l.376-.207a.2.2 0 01.091-.02.2.2 0 01.091.02l.377.207a.165.165 0 00.079.023.112.112 0 00.047-.01.112.112 0 00.053-.052.154.154 0 00.015-.07.222.222 0 000-.037l-.072-.438a.143.143 0 010-.023.262.262 0 01.017-.088.2.2 0 01.041-.07l.3-.31a.2.2 0 00.036-.049.137.137 0 00.015-.061.119.119 0 00-.009-.053Zm4 0a.123.123 0 00-.049-.053.175.175 0 00-.065-.022l-.421-.064a.2.2 0 01-.085-.04.211.211 0 01-.063-.072l-.188-.4a.183.183 0 00-.045-.062.112.112 0 00-.073-.027.112.112 0 00-.073.029.184.184 0 00-.045.062l-.188.4a.212.212 0 01-.063.072.2.2 0 01-.085.04l-.421.064a.162.162 0 00-.084.036.118.118 0 00-.03.039.117.117 0 00-.011.05.137.137 0 00.015.061.2.2 0 00.036.049l.3.31a.205.205 0 01.041.07.26.26 0 01.017.088.142.142 0 010 .024l-.072.438a.217.217 0 000 .037.143.143 0 00.029.091.108.108 0 00.04.031.112.112 0 00.047.01.166.166 0 00.079-.023l.376-.207a.2.2 0 01.091-.02.2.2 0 01.091.02l.377.207a.165.165 0 00.079.023.112.112 0 00.047-.01.112.112 0 00.053-.052.154.154 0 00.015-.07.222.222 0 000-.037l-.072-.438a.143.143 0 010-.023.262.262 0 01.017-.088.2.2 0 01.041-.07l.3-.31a.2.2 0 00.036-.049.137.137 0 00.015-.061.119.119 0 00-.009-.053Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 22a3 3 0 013-3 3 3 0 013 3\"/><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(4 12)\"><rect width=\"6.001\" height=\"6.001\" rx=\"3\" stroke=\"none\"/><rect width=\"4.001\" height=\"4.001\" x=\"1\" y=\"1\" rx=\"2\"/></g>"},"table":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g transform=\"translate(2 5)\"><rect width=\"20\" height=\"14\" rx=\"2\" stroke=\"none\"/><rect width=\"18\" height=\"12\" x=\"1\" y=\"1\" rx=\"1\"/></g><path d=\"M9 5v13m-7-8h20M2 14h20\"/></g>"},"tematic-channels":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" d=\"M12 4v17m4 0H8\"/><path d=\"M12 5h6.412L20 6.833 18.412 9H12Zm0 7H5.588L4 10.167 5.588 8H12Z\"/></g>"},"test":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(3 4)\"><rect width=\"7\" height=\"7\" rx=\"1.996\" stroke=\"none\"/><rect width=\"5\" height=\"5\" x=\"1\" y=\"1\" rx=\".996\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(3 13)\"><rect width=\"7\" height=\"7\" rx=\"1.996\" stroke=\"none\"/><rect width=\"5\" height=\"5\" x=\"1\" y=\"1\" rx=\".996\"/></g><path stroke-linejoin=\"round\" d=\"m-19.121-33.411-2.844 10.626.674 3.286 2.224-2.51 2.844-10.627Z\"/></g>"},"text-body":{"body":"<path fill=\"currentColor\" d=\"M3.265 18.07h2.953V7.67l-3.217.992v-2.07l5.41-1.591V18.07h2.59v1.931H3.265Zm10 0h2.953V7.67l-3.217.992v-2.07l5.41-1.591V18.07h2.59v1.931h-7.736Z\"/>"},"text-edit":{"body":"<path fill=\"currentColor\" d=\"M7.56 14.951H4.445L3.867 17H2l2.706-9h2.593l2.7 9H8.133Zm-.38-1.35-.551-1.961c-.209-.76-.4-1.459-.63-2.34-.221.882-.42 1.581-.624 2.34l-.55 1.961Zm9.821-2.061v5.351H15.72l-.156-.642-1.013.426a3.829 3.829 0 01-1.47.326 2.015 2.015 0 01-2.079-2.28v-.129c0-1.345.851-2.121 2.757-2.121h1.552v-1.122c0-.585-.209-.912-.863-.912h-.561c-.556 0-.857.179-.857.689v.562h-1.716v-.462c0-1.423.956-2.225 2.594-2.225h.51c1.598 0 2.583.684 2.583 2.539Zm-1.691 2.188h-1.593c-.667 0-.979.2-.979.685v.461c0 .487.248.729.672.729a2.017 2.017 0 00.77-.167l1.124-.339ZM20.001 4h2v16h-2Z\"/>"},"text-style":{"body":"<path fill=\"currentColor\" d=\"M9.646 15.041H5.363L4.563 18H2L5.721 5h3.566L13 18h-2.566Zm-.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.832Zm12.876-1.92v6.688h-1.706l-.208-.8-1.351.532a5.372 5.372 0 01-1.961.408 2.592 2.592 0 01-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.7H14.42v-.576c0-1.78 1.274-2.782 3.458-2.782h.678c2.131-.002 3.443.854 3.443 3.169Zm-2.254 2.736h-2.122c-.887 0-1.3.246-1.3.855v.577a.811.811 0 00.895.91 2.832 2.832 0 001.027-.209l1.5-.423Z\"/>"},"time":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"10\" cy=\"10\" r=\"10\" stroke=\"none\"/><circle cx=\"10\" cy=\"10\" r=\"9\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m14 10-2 2 3 3\"/></g>"},"toilet-paper":{"body":"<g transform=\"translate(3.709 3.6)\"><ellipse cx=\"2.5\" cy=\"6\" fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" rx=\"2.5\" ry=\"6\" transform=\"translate(12.291 .4)\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M14.291.4h-12a2.652 2.652 0 00-3 3v14h13v-10\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M5.291 10.4h1m-4 0h1m5 0h1\"/><ellipse cx=\".5\" cy=\"1\" fill=\"currentColor\" rx=\".5\" ry=\"1\" transform=\"translate(14.291 5.401)\"/></g>"},"training-points":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g transform=\"translate(2 6)\"><circle cx=\"8\" cy=\"8\" r=\"8\" stroke=\"none\"/><circle cx=\"8\" cy=\"8\" r=\"7\"/></g><g transform=\"translate(6 10)\"><circle cx=\"4\" cy=\"4\" r=\"4\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3\"/></g><path stroke-linecap=\"round\" d=\"m10 14 7-7\"/><path stroke-linejoin=\"round\" d=\"m19 3-2 2-.001 2h2l2-2Z\"/></g>"},"trash":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><path d=\"M5 4.999h14v13a3 3 0 01-3 3H8a3 3 0 01-3-3v-13Z\" stroke=\"none\"/><path d=\"M7 5.999h10a1 1 0 011 1v11a2 2 0 01-2 2H8a2 2 0 01-2-2v-11a1 1 0 011-1Z\"/><path stroke-linecap=\"round\" d=\"M4 6h16\"/><path d=\"M14.998 6h-6V4a1 1 0 011-1h4a1 1 0 011 1v2Z\" stroke=\"none\"/><path d=\"M13.998 5h-4V4h4v1Z\"/><path stroke-linecap=\"round\" d=\"M10 10v6m4-6v6\"/></g>"},"underline":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 6v5a4 4 0 108 0V6M6 19h12\"/>"},"undo":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M6.001 8.001h8.966a5.012 5.012 0 015.036 4.986v.027a5.012 5.012 0 01-5.036 4.987h-3.984\"/><path stroke-linejoin=\"round\" d=\"M7 5 4 8l3 3\"/></g>"},"unlock":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m8.033 11-.993-.993a3.484 3.484 0 010-4.966h0a3.484 3.484 0 014.967 0l.993.993\"/><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M12 14.998v2\"/><g stroke-miterlimit=\"10\" transform=\"translate(4 10)\"><rect width=\"16\" height=\"12\" rx=\"3\" stroke=\"none\"/><rect width=\"14\" height=\"10\" x=\"1\" y=\"1\" rx=\"2\"/></g></g>"},"upload":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m15 7-3-3-3 3m3-3v10m8 1v3H4v-3\"/>"},"user":{"body":"<rect width=\"10\" height=\"10\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" rx=\"5\" transform=\"translate(7 4)\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6 22a6 6 0 016-6 6 6 0 016 6\"/>"},"user-add":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M15 6h6m-3-3v6\"/><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(3 7)\"><rect width=\"10\" height=\"10.001\" rx=\"5\" stroke=\"none\"/><rect width=\"8\" height=\"8.001\" x=\"1\" y=\"1\" rx=\"4\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 22a4 4 0 018 0\"/>"},"user-badge":{"body":"<path fill=\"currentColor\" d=\"m12.624 3.539 1.537-1.306a.975.975 0 011.58.537l.509 2a1 1 0 001.009.768l1.977-.112a1.028 1.028 0 01.977 1.406L19.5 8.765a1.061 1.061 0 00.386 1.242l1.662 1.125a1.061 1.061 0 010 1.738l-1.662 1.126a1.061 1.061 0 00-.386 1.24l.713 1.932a1.028 1.028 0 01-.977 1.406l-1.977-.112a1 1 0 00-1.009.768l-.509 2a.975.975 0 01-1.58.537l-1.537-1.306a.955.955 0 00-1.248 0l-1.537 1.306a.975.975 0 01-1.58-.537l-.509-2a1 1 0 00-1.009-.768l-1.977.112a1.028 1.028 0 01-.977-1.406l.713-1.932a1.061 1.061 0 00-.386-1.242l-1.662-1.125a1.061 1.061 0 010-1.738l1.662-1.125A1.061 1.061 0 004.5 8.765l-.713-1.932a1.028 1.028 0 01.977-1.406l1.977.112a1 1 0 001.009-.768l.509-2a.975.975 0 011.58-.537l1.537 1.306a.955.955 0 001.248-.001Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M12 7a3 3 0 11-3 3 3 3 0 013-3Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9.001 17a3 3 0 013-3 3 3 0 013 3\"/>"},"video-off":{"body":"<path fill=\"currentColor\" d=\"M5 15.242V8h7.243l2-2H4.868A1.8 1.8 0 003 7.715v8.569a1.584 1.584 0 00.2.758Zm10-1.515V16h-2.273l-2 2h4.4A1.8 1.8 0 0017 16.284v-4.557Z\"/><path fill=\"currentColor\" d=\"M21.351 8a.642.642 0 00-.373.121l-1.3.925-3.44 3.443c.013.01.018.026.031.035l4.709 3.356A.646.646 0 0022 15.356v-6.71A.646.646 0 0021.351 8\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M4 20 20 4\"/>"},"video-on":{"body":"<g stroke-linecap=\"round\" stroke-linejoin=\"round\"><g fill=\"currentColor\"><path d=\"M21 14.666 17.257 12l3.741-2.666v5.332Z\"/><path d=\"M20 11.275 18.98 12l1.018.726v-1.451M21.351 8c.335 0 .648.265.648.646v6.71a.646.646 0 01-1.02.523l-4.71-3.355a.642.642 0 010-1.047l4.71-3.356a.638.638 0 01.372-.12Z\"/></g><g fill=\"none\"><path d=\"M4.868 5.999h10.264A1.8 1.8 0 0117 7.714v8.57a1.8 1.8 0 01-1.868 1.715H4.868A1.8 1.8 0 013 16.284v-8.57a1.8 1.8 0 011.868-1.715Z\"/><path fill=\"currentColor\" d=\"M5 7.999v8h10v-8H5m-.132-2h10.264c1.032 0 1.868.768 1.868 1.715v8.57c0 .947-.836 1.715-1.868 1.715H4.868C3.836 17.999 3 17.231 3 16.284v-8.57C3 6.767 3.836 6 4.868 6Z\"/></g></g>"},"video-rec":{"body":"<g transform=\"translate(3.709 5.695)\"><g stroke-linecap=\"round\" stroke-linejoin=\"round\"><g fill=\"currentColor\"><path d=\"m17.29 8.971-3.74-2.666 3.74-2.665v5.332Z\"/><path d=\"m16.29 5.58-1.018.725 1.018.726V5.58m1.352-3.275c.335 0 .648.265.648.646v6.71a.646.646 0 01-1.02.523L12.56 6.83a.642.642 0 010-1.047l4.71-3.356a.638.638 0 01.372-.12Z\"/></g><g fill=\"none\"><path d=\"M1.159.304h10.264a1.8 1.8 0 011.868 1.715v8.57a1.8 1.8 0 01-1.868 1.715H1.159a1.8 1.8 0 01-1.868-1.715v-8.57A1.8 1.8 0 011.159.304Z\"/><path fill=\"currentColor\" d=\"M1.291 2.304v8h10v-8h-10m-.132-2h10.264c1.032 0 1.868.768 1.868 1.715v8.57c0 .947-.836 1.715-1.868 1.715H1.16c-1.032 0-1.868-.768-1.868-1.715v-8.57c0-.947.836-1.715 1.868-1.715Z\"/></g></g><circle cx=\"2.5\" cy=\"2.5\" r=\"2.5\" fill=\"currentColor\" transform=\"translate(-1.709 -.695)\"/></g>"},"view":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(5.25 6.75)\"><path d=\"M12.75 13.25h-8a3 3 0 01-3-3v-1h7a3 3 0 003-3v-4h1a3 3 0 013 3v5a3 3 0 01-3 3Z\"/><rect width=\"14\" height=\"11\" stroke-miterlimit=\"10\" rx=\"3\" transform=\"translate(-2.25 -1.75)\"/></g>"},"view-card":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(2 8)\"><rect width=\"11\" height=\"9\" rx=\"2\" stroke=\"none\"/><rect width=\"9\" height=\"7\" x=\"1\" y=\"1\" rx=\"1\"/></g><g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(15 8)\"><rect width=\"7\" height=\"6\" rx=\"2\" stroke=\"none\"/><rect width=\"5\" height=\"4\" x=\"1\" y=\"1\" rx=\"1\"/></g>"},"view-list":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(2 5)\"><rect width=\"6\" height=\"6\" rx=\"2\" stroke=\"none\"/><rect width=\"4\" height=\"4\" x=\"1\" y=\"1\" rx=\"1\"/></g><g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(2 13)\"><rect width=\"6\" height=\"6\" rx=\"2\" stroke=\"none\"/><rect width=\"4\" height=\"4\" x=\"1\" y=\"1\" rx=\"1\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M11 10h5m-5 8h5M11 6h10m-10 8h10\"/>"},"voice-off":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M12.001 17.5V21\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M9.001 21h6\"/><path fill=\"currentColor\" stroke=\"rgba(0,0,0,0)\" d=\"M11.001 8.743V5a1 1 0 012 0v1.743l1.976-1.976A2.992 2.992 0 009.001 5v5.743Zm3.047 5.438c.046-.043.091-.088.134-.134Zm-7.877-.608 1.83-1.83V11a1 1 0 00-2 0v1.386a5.867 5.867 0 00.17 1.188\"/><path fill=\"currentColor\" stroke=\"rgba(0,0,0,0)\" d=\"M16.001 12.227v.083a3.835 3.835 0 01-3.755 3.672l-1.845 1.845a5.521 5.521 0 001.365.173h.2a5.862 5.862 0 006.035-5.653V11a.978.978 0 00-.2-.571Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"m4.001 20 16-16\"/>"},"voice-on":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(9 2.001)\"><rect width=\"6\" height=\"13\" rx=\"3\" stroke=\"none\"/><rect width=\"4\" height=\"11\" x=\"1\" y=\"1\" rx=\"2\"/></g><path stroke-linecap=\"round\" d=\"M17 11v1.348a4.836 4.836 0 01-5 4.653h0a4.836 4.836 0 01-5-4.653V11\"/><path d=\"M12 17.001v3\"/><path stroke-linecap=\"round\" d=\"M9 21.001h6\"/></g>"},"volume-down":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M19.002 9.999a2.552 2.552 0 010 4\"/><g stroke-linejoin=\"round\"><path d=\"M3 14.517a1.671 1.671 0 001.479 1.48h4.76a1.387 1.387 0 01.837.276l3.776 2.446A1.326 1.326 0 0016 17.794v-11.6a1.326 1.326 0 00-2.148-.925l-3.776 2.446a1.387 1.387 0 01-.837.276h-4.76A1.688 1.688 0 003 9.491Z\"/><path fill=\"currentColor\" d=\"M14 16.435v-8.87L11.211 9.37a3.407 3.407 0 01-1.972.63h-4.24v4h4.24c.708 0 1.404.222 1.972.628L14 16.435M14.681 19c-.285 0-.576-.087-.83-.278l-3.775-2.446A1.387 1.387 0 009.239 16h-4.76c-.725 0-1.48-.818-1.48-1.48V9.496C3 8.834 3.755 8 4.48 8h4.76c.306 0 .602-.098.837-.277l3.776-2.446c.855-.647 2.148-.09 2.148.925v11.595c0 .715-.64 1.203-1.319 1.203Z\"/></g></g>"},"volume-off":{"body":"<g fill=\"none\"><g stroke-linejoin=\"round\"><path d=\"M2.001 13.853a1.886 1.886 0 001.5 1.384h3.5a1.227 1.227 0 01.708.219l3.292 2.32c.724.513 2 .086 2-.719V6.947c0-.8-1.276-1.239-2-.726l-3 2.332a2.338 2.338 0 01-1 .214h-3.5a1.882 1.882 0 00-1.5 1.385Z\"/><path fill=\"currentColor\" d=\"M11 15.33V8.754l-1.772 1.378a1.978 1.978 0 01-.069.051c-.782.556-1.935.584-2.158.584H4v2.47h3c.667 0 1.328.208 1.861.585L11 15.33m.75 2.67c-.267 0-.533-.07-.75-.224l-3.292-2.32A1.23 1.23 0 007 15.237H3.505C2.89 15.237 2 14.378 2 13.853v-3.7c0-.525.887-1.386 1.5-1.386H7c.259 0 .8-.073 1-.214l3-2.332c.724-.513 2-.079 2 .726v10.11c0 .564-.626.942-1.25.942Z\"/></g><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"m16 14 4-4m-4 0 4 4\"/></g>"},"volume-up":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M15.001 8.999a5.075 5.075 0 010 6m4.001-7a8.593 8.593 0 010 8\"/><g stroke-linejoin=\"round\"><path d=\"M2.001 13.853a1.886 1.886 0 001.5 1.384h3.5a1.227 1.227 0 01.708.219l3.292 2.32c.724.513 2 .086 2-.719V6.947c0-.8-1.276-1.239-2-.726l-3 2.332a2.338 2.338 0 01-1 .214h-3.5a1.882 1.882 0 00-1.5 1.385Z\"/><path fill=\"currentColor\" d=\"M11 15.33V8.754l-1.772 1.378a1.978 1.978 0 01-.069.051c-.782.556-1.935.584-2.158.584H4v2.47h3c.667 0 1.328.208 1.861.585L11 15.33m.75 2.67c-.267 0-.533-.07-.75-.224l-3.292-2.32A1.23 1.23 0 007 15.237H3.505C2.89 15.237 2 14.378 2 13.853v-3.7c0-.525.887-1.386 1.5-1.386H7c.259 0 .8-.073 1-.214l3-2.332c.724-.513 2-.079 2 .726v10.11c0 .564-.626.942-1.25.942Z\"/></g></g>"},"warning":{"body":"<g fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M10.577 3.833a1.632 1.632 0 012.846 0l4.177 7.334 4.178 7.334a1.666 1.666 0 01-1.423 2.5H3.645a1.666 1.666 0 01-1.423-2.5L6.4 11.167Z\"/><path fill=\"currentColor\" d=\"M12 5.375 4.24 19h15.52L12 5.375M12 3c.553 0 1.107.278 1.423.833l8.354 14.668C22.41 19.612 21.619 21 20.354 21H3.645c-1.264 0-2.055-1.388-1.423-2.5l8.355-14.666c.316-.555.87-.833 1.423-.833Z\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M12 9v4m0 4h0\"/></g>"},"webinar":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M15 14.5a1.5 1.5 0 11.44 1.06A1.5 1.5 0 0115 14.5Z\"/><path fill=\"currentColor\" d=\"M16.5 13c.415 0 .788.167 1.06.439.273.272.44.646.44 1.061 0 .415-.167.788-.44 1.06a1.495 1.495 0 01-2.12 0A1.497 1.497 0 0116.5 13Z\"/><path d=\"M8 19.5a1.5 1.5 0 11.44 1.06A1.5 1.5 0 018 19.5Z\"/><path fill=\"currentColor\" d=\"M9.5 18c.415 0 .788.167 1.06.439.273.272.44.646.44 1.061 0 .415-.167.788-.44 1.06a1.495 1.495 0 01-2.12 0A1.497 1.497 0 019.5 18Z\"/><path d=\"M13 19.5a1.5 1.5 0 11.44 1.06A1.5 1.5 0 0113 19.5Z\"/><path fill=\"currentColor\" d=\"M14.5 18c.415 0 .788.167 1.06.439.273.272.44.646.44 1.061 0 .415-.167.788-.44 1.06a1.495 1.495 0 01-2.12 0A1.497 1.497 0 0114.5 18Z\"/><path d=\"M10.5 14.5a1.5 1.5 0 11.44 1.06 1.5 1.5 0 01-.44-1.06Z\"/><path fill=\"currentColor\" d=\"M12 13c.415 0 .788.167 1.06.439.273.272.44.646.44 1.061 0 .415-.167.788-.44 1.06a1.495 1.495 0 01-2.12 0A1.497 1.497 0 0112 13Z\"/><path d=\"M6 14.5a1.5 1.5 0 11.44 1.06A1.5 1.5 0 016 14.5Z\"/><path fill=\"currentColor\" d=\"M7.5 13c.415 0 .788.167 1.06.439.273.272.44.646.44 1.061 0 .415-.167.788-.44 1.06a1.495 1.495 0 01-2.12 0A1.497 1.497 0 017.5 13Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M3.001 13V5a1.845 1.845 0 012-2h14a1.845 1.845 0 012 2v8\"/></g>"},"whiteboard":{"body":"<path fill=\"none\" d=\"M0 0h24v24H0z\"/><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" d=\"m4 20 4-6m4 6v-6m8 6-4-6\"/><g stroke-miterlimit=\"10\" transform=\"translate(2.998 3)\"><rect width=\"18.005\" height=\"12\" rx=\"3\" stroke=\"none\"/><rect width=\"16.005\" height=\"10\" x=\"1\" y=\"1\" rx=\"2\"/></g><path d=\"M6.999 10.182c1.425-1 3.163-3.181 6-3.181-1.206 3.762 2.527 4.983 4 3.181\"/></g>"},"wine":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\"><path stroke-linecap=\"round\" d=\"M17.919 15.986C20.986 14.639 19.757 9 19.757 9h-5.513s-1.23 5.639 1.838 6.986a1.7 1.7 0 00.4.014h1.062a1.46 1.46 0 00.375-.014ZM16.999 17v4M19 21h-4\"/><path d=\"M4.952 21a1.219 1.219 0 01-.652-.3A1 1 0 014 20v-9c.015-.318 0-1 0-1l1.5-3V3h3v4l1.5 3c.01.009-.015.682 0 1v9a1 1 0 01-.3.7.851.851 0 01-.7.3Z\"/><path d=\"M4 12.001h3v6H4z\"/></g>"},"zip":{"body":"<g stroke=\"currentColor\"><path fill=\"currentColor\" d=\"M18.001 17a1 1 0 101 1 1 1 0 00-1-1Z\"/><path fill=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M4 5v4m4-4v4m4-4v4\"/><g fill=\"none\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(15 4)\"><rect width=\"6\" height=\"6\" rx=\"1\" stroke=\"none\"/><path d=\"M1 1h4v4H1z\"/></g><path fill=\"none\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M17.918 21a2.781 2.781 0 01-2.912-3.108L15.984 13h4.033l.978 4.892A2.781 2.781 0 0118.083 21Z\"/></g>"},"zoom-in":{"body":"<g stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><path fill=\"currentColor\" stroke-linecap=\"round\" d=\"m15 15 6 6\"/><g fill=\"none\" transform=\"translate(3 3)\"><circle cx=\"7\" cy=\"7\" r=\"7\" stroke=\"none\"/><circle cx=\"7\" cy=\"7\" r=\"6\"/></g><path fill=\"none\" stroke-linecap=\"round\" d=\"M8 10h4m-2-2v4\"/></g>"},"zoom-out":{"body":"<g stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><path fill=\"currentColor\" stroke-linecap=\"round\" d=\"m15 15 6 6\"/><g fill=\"none\" transform=\"translate(3 3)\"><circle cx=\"7\" cy=\"7\" r=\"7\" stroke=\"none\"/><circle cx=\"7\" cy=\"7\" r=\"6\"/></g><path fill=\"none\" stroke-linecap=\"round\" d=\"M8 10h4\"/></g>"}},"width":24,"height":24}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.733 0.734)"><g transform="translate(-0.733 -0.734)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g><path d="M0,0H9" transform="translate(2.767 7.266)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line y2="9" transform="translate(7.267 2.766)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.667 0.666)"><line x2="15" transform="translate(-0.167 7.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line y2="15" transform="translate(7.333 -0.166)" 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="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.667 4)"><line x1="9" transform="translate(0.833 2.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x1="15" transform="translate(-2.167 -0.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x1="11" transform="translate(-0.167 5.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x1="5" transform="translate(2.833 8.5)" fill="none" 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="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.667 3)"><line x1="15" transform="translate(-2.167 3.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x1="15" transform="translate(-2.167 0.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x1="15" transform="translate(-2.167 6.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x1="15" transform="translate(-2.167 9.5)" fill="none" 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="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.667 4)"><line x1="10" transform="translate(-1.167 2.501)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x1="15" transform="translate(-1.167 -0.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x1="12" transform="translate(-1.167 5.501)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x1="8" transform="translate(-1.167 8.501)" fill="none" 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="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.667 4)"><line x1="10" transform="translate(2.833 2.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x1="15" transform="translate(-2.167 -0.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x1="12" transform="translate(0.833 5.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x1="8" transform="translate(4.833 8.5)" fill="none" 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="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" transform="translate(0)" fill="#fff" opacity="0"/><g transform="translate(1.333 1.334)"><g transform="translate(-68.958 365.042)" fill="none" stroke-miterlimit="10"><path d="M76.121-365.377a.579.579,0,0,0-.346.15.58.58,0,0,0-.15.348v6.5h-6.5a.59.59,0,0,0-.35.15.585.585,0,0,0-.15.35,7.629,7.629,0,0,0,7.66,7.5,7.215,7.215,0,0,0,7.34-7.335A7.635,7.635,0,0,0,76.121-365.377Z" stroke="none"/><path d="M 76.625 -364.3569030761719 L 76.625 -357.376953125 L 69.64471435546875 -357.376953125 C 69.76639556884766 -355.8387451171875 70.44825744628906 -354.4019775390625 71.59546661376953 -353.2872924804688 C 72.86415863037109 -352.0546264648438 74.52944946289062 -351.375732421875 76.28457641601562 -351.375732421875 C 78.02548980712891 -351.375732421875 79.63063049316406 -352.0216369628906 80.8043212890625 -353.1944885253906 C 81.97795104980469 -354.3672790527344 82.62429809570312 -355.9712829589844 82.62429809570312 -357.7110290527344 C 82.62429809570312 -359.4670715332031 81.94513702392578 -361.1336975097656 80.71192932128906 -362.4039306640625 C 79.59770965576172 -363.5516052246094 78.161865234375 -364.2341918945312 76.625 -364.3569030761719 M 76.12108612060547 -365.376953125 C 80.27236175537109 -365.376953125 83.62429809570312 -361.8617553710938 83.62429809570312 -357.7110290527344 C 83.62429809570312 -353.56103515625 80.43586730957031 -350.375732421875 76.28457641601562 -350.375732421875 C 72.13475799560547 -350.375732421875 68.625 -353.7269592285156 68.625 -357.876953125 C 68.625 -357.9871520996094 68.69651031494141 -358.1490783691406 68.77500152587891 -358.2269592285156 C 68.85276031494141 -358.3046875 69.01483154296875 -358.376953125 69.125 -358.376953125 L 75.625 -358.376953125 L 75.625 -364.87890625 C 75.625 -364.9897766113281 75.69651031494141 -365.1483459472656 75.77500152587891 -365.2269592285156 C 75.85277557373047 -365.3046264648438 76.01092529296875 -365.376953125 76.12108612060547 -365.376953125 Z" stroke="none" fill="#000"/></g><g transform="translate(-67.833 366.166)" fill="none" stroke-miterlimit="10"><path d="M73.382-360.618a.405.405,0,0,0,.118-.285V-367.1a.407.407,0,0,0-.118-.285.405.405,0,0,0-.284-.118,6.6,6.6,0,0,0-6.6,6.6.406.406,0,0,0,.118.285.405.405,0,0,0,.284.118h6.2A.405.405,0,0,0,73.382-360.618Z" stroke="none"/><path d="M 72.49999237060547 -361.5 L 72.49999237060547 -366.4682922363281 C 69.89032745361328 -366.1898803710938 67.81065368652344 -364.1100158691406 67.53180694580078 -361.5 L 72.49999237060547 -361.5 M 73.09787750244141 -360.5 L 66.90280914306641 -360.5 C 66.79691314697266 -360.5 66.69310760498047 -360.5429077148438 66.61834716796875 -360.6176147460938 C 66.54360961914062 -360.6923828125 66.5 -360.7962036132812 66.5 -360.9021606445312 C 66.50068664550781 -364.5457763671875 69.45393371582031 -367.5 73.09787750244141 -367.5 C 73.20377349853516 -367.5 73.30758666992188 -367.4570922851562 73.38233184814453 -367.38232421875 C 73.45707702636719 -367.306884765625 73.49999237060547 -367.2037353515625 73.49999237060547 -367.0971069335938 L 73.49999237060547 -360.9021606445312 C 73.49999237060547 -360.7962036132812 73.45707702636719 -360.6923828125 73.38233184814453 -360.6176147460938 C 73.30758666992188 -360.5429077148438 73.20377349853516 -360.5 73.09787750244141 -360.5 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1 2.6)"><path d="M128.781-351.936h0l7-6,3,2,3-3" transform="translate(-128.781 361.338)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M144-353H129v-9" transform="translate(-129.5 362.9)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.833 1.666)"><g transform="translate(-1.833 6.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="4" height="8" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="3" height="7" rx="0.5" fill="none"/></g><g transform="translate(4.167 -1.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="4" height="16" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="3" height="15" rx="0.5" fill="none"/></g><g transform="translate(10.167 3.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="4" height="11" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="3" height="10" rx="0.5" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.14" viewBox="0 0 16 16.14"><g transform="translate(0 0.14)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.667 0.466)"><g transform="translate(-4.465 -5.565)" fill="none" stroke-miterlimit="10"><path d="M11.809,20.416a3.9,3.9,0,0,1,.8.1,4.318,4.318,0,0,1,.8.314l.019.009c.1.047.2.1.3.139a1.345,1.345,0,0,0,.539.124,2.029,2.029,0,0,0,.834-.248,3.537,3.537,0,0,0,1.324-1.129,11.185,11.185,0,0,0,1.456-2.447c.077-.172.136-.315.186-.446a8.9,8.9,0,0,0,.529-5.47,4.23,4.23,0,0,0-1.694-2.514.386.386,0,0,1-.037-.026,2.886,2.886,0,0,0-.582-.363,3.523,3.523,0,0,0-1.52-.356h-.086a5.038,5.038,0,0,0-1.73.454l-.342.132c-.149.056-.495.176-.5.177a.4.4,0,0,1-.136.024h-.128l-.025,0H11.79l-.026,0h-.129a.4.4,0,0,1-.136-.023s-.347-.121-.5-.179l-.337-.13A5.076,5.076,0,0,0,8.927,8.1H8.834a3.562,3.562,0,0,0-1.512.356,2.91,2.91,0,0,0-.584.363.339.339,0,0,1-.035.026,4.3,4.3,0,0,0-1.684,2.474A8.9,8.9,0,0,0,5.524,16.8c.073.192.139.343.2.477a11.141,11.141,0,0,0,1.455,2.447,3.51,3.51,0,0,0,1.276,1.109,2.208,2.208,0,0,0,.885.267,1.35,1.35,0,0,0,.535-.123c.1-.043.2-.091.3-.137l.018-.009a4.419,4.419,0,0,1,.8-.317,3.706,3.706,0,0,1,.8-.1h.014Z" stroke="none"/><path d="M 14.260986328125 20.09961318969727 C 14.32536697387695 20.09961318969727 14.50913619995117 20.01754379272461 14.68877696990967 19.93733406066895 C 15.00012683868408 19.7990837097168 15.25736618041992 19.57120323181152 15.63781642913818 19.09665298461914 C 16.13151741027832 18.48062324523926 16.57657623291016 17.73093414306641 16.96085739135742 16.8679141998291 C 17.0268669128418 16.71989440917969 17.07902717590332 16.5946044921875 17.1250171661377 16.47362327575684 L 17.14455604553223 16.42595481872559 C 18.23100662231445 13.95873355865479 17.62941741943359 11.64108371734619 17.62321662902832 11.61796379089355 L 17.61015701293945 11.5631742477417 C 17.36825752258301 10.4043436050415 16.43461799621582 9.741438865661621 16.35490608215332 9.686763763427734 C 16.31573867797852 9.66197395324707 16.28406715393066 9.638636589050293 16.25646591186523 9.617584228515625 L 16.22528648376465 9.593124389648438 C 16.12227630615234 9.508934020996094 15.99695682525635 9.43182373046875 15.8407564163208 9.356674194335938 C 15.49393653869629 9.189173698425293 15.11858654022217 9.10063362121582 14.75527667999268 9.10063362121582 C 14.73395347595215 9.100632667541504 14.71262550354004 9.100553512573242 14.69343662261963 9.100974082946777 C 14.26431655883789 9.111443519592285 13.83969688415527 9.277084350585938 13.2977466583252 9.488473892211914 L 12.95023632049561 9.622143745422363 C 12.79885864257812 9.679323196411133 12.4832010269165 9.789033889770508 12.42975902557373 9.807562828063965 C 12.27939224243164 9.860764503479004 12.12204647064209 9.887733459472656 11.96197700500488 9.887733459472656 L 11.63514614105225 9.887733459472656 C 11.47371673583984 9.887733459472656 11.31545639038086 9.860584259033203 11.16475677490234 9.80704402923584 L 11.1370964050293 9.797313690185547 C 10.98491668701172 9.743893623352051 10.76855659484863 9.667583465576172 10.64699649810791 9.621773719787598 L 10.63960647583008 9.618964195251465 L 10.29893684387207 9.487483978271484 C 9.758896827697754 9.277624130249023 9.33234691619873 9.11185359954834 8.906126976013184 9.101043701171875 C 8.882996559143066 9.100553512573242 8.858916282653809 9.100004196166992 8.834336280822754 9.100004196166992 C 8.488106727600098 9.100004196166992 8.095166206359863 9.193683624267578 7.7546067237854 9.357833862304688 C 7.602083206176758 9.43099308013916 7.476366519927979 9.508245468139648 7.370387077331543 9.593930244445801 C 7.33384895324707 9.623902320861816 7.29572868347168 9.651962280273438 7.256727695465088 9.677605628967285 C 7.195810317993164 9.720224380493164 6.225821495056152 10.4150915145874 5.99812650680542 11.52038383483887 L 5.985506534576416 11.57410430908203 C 5.959956645965576 11.67080402374268 5.371976375579834 13.97023391723633 6.439456462860107 16.39472389221191 L 6.458856582641602 16.44202423095703 C 6.524376392364502 16.61422348022461 6.582476615905762 16.74697303771973 6.637466430664062 16.86920356750488 C 7.01992654800415 17.73015403747559 7.46463680267334 18.47954368591309 7.9591965675354 19.09651374816895 C 8.334726333618164 19.56493377685547 8.587996482849121 19.7951545715332 8.860456466674805 19.91673469543457 L 8.865276336669922 19.91886329650879 C 9.064207077026367 20.00709342956543 9.269916534423828 20.09833335876465 9.339886665344238 20.09833335876465 C 9.349576950073242 20.09833335876465 9.38858699798584 20.09519386291504 9.484686851501465 20.05437469482422 C 9.567099571228027 20.01944732666016 9.654199600219727 19.97832870483398 9.736672401428223 19.9389591217041 L 9.773836135864258 19.92097473144531 C 10.05079650878906 19.79001426696777 10.36470699310303 19.64157485961914 10.74653625488281 19.54405403137207 C 11.03658676147461 19.46997451782227 11.3695764541626 19.42821311950684 11.76453685760498 19.41637420654297 L 11.82625675201416 19.41592407226562 L 11.84363651275635 19.41652297973633 C 12.09560680389404 19.42529487609863 12.47415637969971 19.44802474975586 12.8513069152832 19.54392433166504 C 13.2381067276001 19.64249420166016 13.56612682342529 19.79865455627441 13.82985687255859 19.92420387268066 L 13.86786651611328 19.94228363037109 C 13.95346641540527 19.98296356201172 14.03431701660156 20.02139472961426 14.11122703552246 20.05385398864746 L 14.11623668670654 20.05598449707031 C 14.18092632293701 20.08371353149414 14.23368644714355 20.09961318969727 14.260986328125 20.09961318969727 M 14.260986328125 21.09961318969727 C 14.09163665771484 21.09961318969727 13.92041683197021 21.06003379821777 13.72231674194336 20.97513389587402 C 13.6179666519165 20.93108367919922 13.51672649383545 20.88256454467773 13.41861629486084 20.83596420288086 L 13.39986705780029 20.82703399658203 C 13.15178680419922 20.70893478393555 12.89494705200195 20.58700370788574 12.60436630249023 20.51295471191406 C 12.32066631317139 20.4408130645752 12.01071643829346 20.42294311523438 11.80887699127197 20.41592407226562 L 11.79449653625488 20.41592407226562 C 11.47517681121826 20.42549324035645 11.21396636962891 20.45677375793457 10.99400615692139 20.51295471191406 C 10.70154666900635 20.58764457702637 10.44408702850342 20.71021461486816 10.19162654876709 20.8295841217041 L 10.17350673675537 20.83852386474609 C 10.07726669311523 20.88448333740234 9.977286338806152 20.93171310424805 9.87480640411377 20.97513389587402 C 9.677956581115723 21.05875396728516 9.507356643676758 21.09833335876465 9.339886665344238 21.09833335876465 C 9.056806564331055 21.09833335876465 8.806216239929199 20.98661422729492 8.455026626586914 20.83085441589355 C 7.955726623535156 20.60807418823242 7.583286762237549 20.22633361816406 7.178976535797119 19.72202301025391 C 6.630936622619629 19.03833389282227 6.141016483306885 18.21485328674316 5.723586559295654 17.27518463134766 C 5.662966728210449 17.14048385620117 5.597356796264648 16.98983383178711 5.524236679077148 16.79768371582031 C 4.340676784515381 14.109543800354 4.946836471557617 11.59056377410889 5.018696784973145 11.31862354278564 C 5.336146831512451 9.777613639831543 6.641566753387451 8.885824203491211 6.70280647277832 8.844964027404785 C 6.715926647186279 8.836673736572266 6.72779655456543 8.827733993530273 6.737796783447266 8.81943416595459 C 6.905276775360107 8.683464050292969 7.095866680145264 8.564723968505859 7.322086811065674 8.456203460693359 C 7.798886775970459 8.226393699645996 8.336297035217285 8.100004196166992 8.834336280822754 8.100004196166992 C 8.866216659545898 8.100004196166992 8.897456169128418 8.10063362121582 8.927456855773926 8.101273536682129 C 9.532356262207031 8.116603851318359 10.05602645874023 8.320234298706055 10.66217708587646 8.555793762207031 L 10.99962615966797 8.686014175415039 C 11.15210628509521 8.743474006652832 11.4982967376709 8.864124298095703 11.49954700469971 8.864753723144531 C 11.5426664352417 8.880073547363281 11.58828639984131 8.887733459472656 11.63514614105225 8.887733459472656 L 11.76387691497803 8.887733459472656 C 11.77324676513672 8.885824203491211 11.78262615203857 8.885184288024902 11.79012680053711 8.884544372558594 C 11.79262638092041 8.884544372558594 11.80511665344238 8.884544372558594 11.80887699127197 8.885184288024902 C 11.81824684143066 8.885184288024902 11.82636642456055 8.88646411895752 11.83386707305908 8.887733459472656 L 11.96197700500488 8.887733459472656 C 12.00821685791016 8.887733459472656 12.05383682250977 8.880073547363281 12.09820652008057 8.864124298095703 C 12.10194683074951 8.86284351348877 12.44814682006836 8.742834091186523 12.59687614440918 8.686654090881348 L 12.93869686126709 8.555153846740723 C 13.54421615600586 8.318953514099121 14.0672664642334 8.115954399108887 14.66904640197754 8.101273536682129 C 15.20958518981934 8.089235305786133 15.76615619659424 8.21012020111084 16.27566719055176 8.456203460693359 C 16.50125694274902 8.564723968505859 16.69247627258301 8.683464050292969 16.85807609558105 8.818794250488281 C 16.86994743347168 8.827733993530273 16.88181686401367 8.83730411529541 16.89494705200195 8.844964027404785 C 16.9086856842041 8.853903770446777 18.24472618103027 9.709314346313477 18.58905601501465 11.3588342666626 C 18.6334171295166 11.52417373657227 19.27581596374512 14.06740379333496 18.05975723266602 16.82896423339844 C 18.00976753234863 16.96046447753906 17.95102691650391 17.10282325744629 17.87416648864746 17.27518463134766 C 17.45547676086426 18.21548461914062 16.96555709838867 19.03897476196289 16.41814613342285 19.72202301025391 C 16.01383590698242 20.22633361816406 15.63514614105225 20.61126327514648 15.09460639953613 20.85128402709961 C 14.77152633666992 20.99555397033691 14.53781700134277 21.09961318969727 14.260986328125 21.09961318969727 Z" stroke="none" fill="#000"/></g><path d="M16.026,7.035a2.771,2.771,0,0,1,2-3.5" transform="translate(-8.693 -3.501)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M20.1,12.249s2.075,1.039,2,3" transform="translate(-10.769 -6.715)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.001" viewBox="0 0 16 16.001"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(12 13.334) rotate(180)"><path d="M11,6,5.5,0,0,6" transform="translate(-1.5 -2.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y2="15" transform="translate(4 -2.167)" fill="none" 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="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.667 12) rotate(-90)"><path d="M11,6,5.5,0,0,6" transform="translate(-1.5 -2.167)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y2="15" transform="translate(4 -2.167)" fill="none" 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="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(16 2.5) rotate(90)"><path d="M-725.49,73l-5.5-6-5.5,6" transform="translate(736.491 -66.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y2="15" transform="translate(5.501 0.5)" fill="none" 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="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.5)"><path d="M-725.49,73l-5.5-6-5.5,6" transform="translate(736.491 -66.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y2="15" transform="translate(5.501 0.5)" fill="none" 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="16.207" height="16.202" viewBox="0 0 16.207 16.202"><g transform="translate(0 0.202)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.5 0.5)"><path d="M-475.375,74.032l-7.091,6.688a4.832,4.832,0,0,1-6.552,0,4.2,4.2,0,0,1,0-6.179l7.092-6.689a3.223,3.223,0,0,1,4.368,0,2.8,2.8,0,0,1,0,4.119l-7.1,6.688a1.609,1.609,0,0,1-2.183,0,1.4,1.4,0,0,1,0-2.059l6.551-6.172" transform="translate(490.375 -67)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.207" viewBox="0 0 16 16.207"><g transform="translate(0 0.207)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 2)"><path d="M0,0,2,2,4,0" transform="translate(10.5 -1.5) rotate(90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-53.833,68.915h-2.5a1.568,1.568,0,0,0-1.25.417A1.569,1.569,0,0,0-58,70.582v6.667a1.571,1.571,0,0,0,.417,1.25,1.568,1.568,0,0,0,1.25.417h11.667a1.568,1.568,0,0,0,1.25-.417A1.568,1.568,0,0,0-43,77.248V70.582a1.568,1.568,0,0,0-.417-1.25,1.568,1.568,0,0,0-1.25-.417h-2.5" transform="translate(56.5 -68.414)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(55.101 -73.416)" fill="none" stroke-miterlimit="10"><path d="M-51.624,84.416h5.043l.431,1.062a.7.7,0,0,1-.679.938h-4.543a.7.7,0,0,1-.68-.936Z" stroke="none"/><path d="M -51.62363815307617 84.41600799560547 L -46.58088684082031 84.41600799560547 L -46.14959716796875 85.47846984863281 C -45.96616744995117 85.93022918701172 -46.31779861450195 86.41600799560547 -46.82875823974609 86.41600799560547 L -51.37184906005859 86.41600799560547 C -51.88182830810547 86.41600799560547 -52.23344802856445 85.93209075927734 -52.05198669433594 85.4803466796875 L -51.62363815307617 84.41600799560547 Z" stroke="none" fill="#000"/></g></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 2.334)"><path d="M-296.033,87.573a1.949,1.949,0,0,0,2,1.894,1.949,1.949,0,0,0,2-1.894v-.106h-4Z" transform="translate(300.032 -75.802)"/><g transform="translate(303.673 -68.833)" stroke-miterlimit="10"><path d="M -291.4987182617188 79 L -292.5100708007812 79 L -293.0681762695312 79 L -301.6728515625 79 L -302.6728515625 79 L -303.8472290039062 79 C -304.0268859863281 79 -304.1730346679688 78.85713958740234 -304.1730346679688 78.68154907226562 C -304.1730346679688 78.60665130615234 -304.1457824707031 78.53497314453125 -304.0958862304688 78.47779846191406 C -304.0814514160156 78.46543121337891 -304.0670776367188 78.45291900634766 -304.0527038574219 78.44036865234375 L -304.016357421875 78.40885162353516 C -302.38232421875 77.00411224365234 -302.1728515625 75.04761505126953 -302.1728515625 73.5 L -302.1728515625 71.5 C -302.1728515625 69.71942901611328 -300.6119689941406 67.70323181152344 -298.8325805664062 67.18534851074219 L -298.822509765625 67.18243408203125 L -298.8125915527344 67.17908477783203 C -298.8083190917969 67.17767333984375 -298.2648620605469 66.99999237060547 -297.6012878417969 66.99999237060547 C -297.2536315917969 66.99999237060547 -296.9361877441406 67.04836273193359 -296.6578063964844 67.14374542236328 L -296.6402282714844 67.14976501464844 L -296.6222839355469 67.15446472167969 C -295.7676391601562 67.37804412841797 -294.89697265625 67.97749328613281 -294.2334899902344 68.79910278320312 C -293.5594482421875 69.63384246826172 -293.1728515625 70.61827850341797 -293.1728515625 71.5 L -293.1728515625 73.5 C -293.1728515625 76.44650268554688 -292.1880798339844 77.67091369628906 -291.3301696777344 78.40843200683594 L -291.2943725585938 78.43947601318359 C -291.2796325683594 78.45229339599609 -291.2649230957031 78.46509552001953 -291.2501831054688 78.47774505615234 C -291.2002868652344 78.53489685058594 -291.1730346679688 78.60659790039062 -291.1730346679688 78.68154907226562 C -291.1730346679688 78.85713958740234 -291.3191223144531 79 -291.4987182617188 79 Z" stroke="none"/><path d="M -297.6012878417969 67.49999237060547 C -298.1766967773438 67.49999237060547 -298.6528625488281 67.65291595458984 -298.6529235839844 67.65290069580078 L -298.6928405761719 67.66543579101562 C -300.2524719238281 68.11935424804688 -301.6728515625 69.94704437255859 -301.6728515625 71.5 L -301.6728515625 73.5 C -301.6728515625 75.05319213867188 -301.8749389648438 76.99569702148438 -303.379638671875 78.5 L -291.9664916992188 78.5 C -293.4706726074219 76.99653625488281 -293.6728515625 75.05354309082031 -293.6728515625 73.5 L -293.6728515625 71.5 C -293.6728515625 69.9000244140625 -295.1389770507812 68.05934143066406 -296.7488098144531 67.63818359375 L -296.7847595214844 67.6287841796875 L -296.8198547363281 67.61675262451172 C -297.0459594726562 67.53926849365234 -297.3088989257812 67.49999237060547 -297.6012878417969 67.49999237060547 M -297.6012878417969 66.49999237060547 C -297.2503356933594 66.49999237060547 -296.8670043945312 66.54352569580078 -296.4957275390625 66.67074584960938 C -294.52294921875 67.18684387207031 -292.6728515625 69.38286590576172 -292.6728515625 71.5 L -292.6728515625 73.5 C -292.6728515625 75.29393005371094 -292.347412109375 76.87459564208984 -291.0042114257812 78.02927398681641 C -290.9708251953125 78.05795288085938 -290.9379272460938 78.08724975585938 -290.904541015625 78.11529541015625 C -290.7615356445312 78.26190185546875 -290.6730346679688 78.46131896972656 -290.6730346679688 78.68154907226562 C -290.6730346679688 79.1337890625 -291.0429077148438 79.5 -291.4987182617188 79.5 L -303.8472290039062 79.5 C -304.3030395507812 79.5 -304.6730346679688 79.1337890625 -304.6730346679688 78.68154907226562 C -304.6730346679688 78.46131896972656 -304.58447265625 78.26190185546875 -304.4414672851562 78.11529541015625 C -304.4080200195312 78.08724975585938 -304.375244140625 78.05795288085938 -304.341796875 78.02927398681641 C -302.9986572265625 76.87459564208984 -302.6728515625 75.29393005371094 -302.6728515625 73.5 L -302.6728515625 71.5 C -302.6728515625 69.42715454101562 -300.8821411132812 67.26112365722656 -298.9722900390625 66.70526885986328 C -298.9722900390625 66.70526885986328 -298.3631896972656 66.49999237060547 -297.6012878417969 66.49999237060547 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 2.334)"><path d="M-296.033,87.573a1.949,1.949,0,0,0,2,1.894,1.949,1.949,0,0,0,2-1.894v-.106h-4Z" transform="translate(300.032 -75.802)"/><g transform="translate(303.673 -68.833)" fill="none" stroke-miterlimit="10"><path d="M-296.5,66.671a5.454,5.454,0,0,1,3.823,4.829v2A5.518,5.518,0,0,0-291,78.029l.1.086a.808.808,0,0,1,.232.566.822.822,0,0,1-.826.818h-12.349a.822.822,0,0,1-.826-.818.808.808,0,0,1,.232-.566l.1-.086a5.519,5.519,0,0,0,1.669-4.529v-2a5.471,5.471,0,0,1,3.7-4.795A4.359,4.359,0,0,1-296.5,66.671Z" stroke="none"/><path d="M -297.6012878417969 67.49999237060547 C -298.1766967773438 67.49999237060547 -298.6528625488281 67.65291595458984 -298.6529235839844 67.65290069580078 L -298.6928405761719 67.66543579101562 C -300.2524719238281 68.11935424804688 -301.6728515625 69.94704437255859 -301.6728515625 71.5 L -301.6728515625 73.5 C -301.6728515625 75.05319213867188 -301.8749389648438 76.99569702148438 -303.379638671875 78.5 L -291.9664916992188 78.5 C -293.4706726074219 76.99653625488281 -293.6728515625 75.05354309082031 -293.6728515625 73.5 L -293.6728515625 71.5 C -293.6728515625 69.9000244140625 -295.1389770507812 68.05934143066406 -296.7488098144531 67.63818359375 L -296.7847595214844 67.6287841796875 L -296.8198547363281 67.61675262451172 C -297.0459594726562 67.53926849365234 -297.3088989257812 67.49999237060547 -297.6012878417969 67.49999237060547 M -297.6012878417969 66.49999237060547 C -297.2503356933594 66.49999237060547 -296.8670043945312 66.54352569580078 -296.4957275390625 66.67074584960938 C -294.52294921875 67.18684387207031 -292.6728515625 69.38286590576172 -292.6728515625 71.5 L -292.6728515625 73.5 C -292.6728515625 75.29393005371094 -292.347412109375 76.87459564208984 -291.0042114257812 78.02927398681641 C -290.9708251953125 78.05795288085938 -290.9379272460938 78.08724975585938 -290.904541015625 78.11529541015625 C -290.7615356445312 78.26190185546875 -290.6730346679688 78.46131896972656 -290.6730346679688 78.68154907226562 C -290.6730346679688 79.1337890625 -291.0429077148438 79.5 -291.4987182617188 79.5 L -303.8472290039062 79.5 C -304.3030395507812 79.5 -304.6730346679688 79.1337890625 -304.6730346679688 78.68154907226562 C -304.6730346679688 78.46131896972656 -304.58447265625 78.26190185546875 -304.4414672851562 78.11529541015625 C -304.4080200195312 78.08724975585938 -304.375244140625 78.05795288085938 -304.341796875 78.02927398681641 C -302.9986572265625 76.87459564208984 -302.6728515625 75.29393005371094 -302.6728515625 73.5 L -302.6728515625 71.5 C -302.6728515625 69.42715454101562 -300.8821411132812 67.26112365722656 -298.9722900390625 66.70526885986328 C -298.9722900390625 66.70526885986328 -298.3631896972656 66.49999237060547 -297.6012878417969 66.49999237060547 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.5 1.301)"><path d="M319.6,70h6.722a3.772,3.772,0,0,1,0,7.5H319.6Z" transform="translate(-319.6 -70.801)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M319.6,78h7.615a3.77,3.77,0,0,1,0,7.5H319.6Z" transform="translate(-319.6 -71.301)" fill="none" 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="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(4.667 2)"><g transform="translate(299.333 -68.233)" stroke-miterlimit="10"><path d="M -293 79.9810791015625 L -295.1638793945312 77.62306976318359 C -295.3768920898438 77.38973999023438 -295.6824035644531 77.25482940673828 -296.0003356933594 77.25482940673828 C -296.318359375 77.25482940673828 -296.6239013671875 77.38978576660156 -296.8386535644531 77.62510681152344 L -299 79.98079681396484 L -299 67.59067535400391 C -299 67.39345550537109 -298.8513793945312 67.23300933837891 -298.6686706542969 67.23300933837891 L -293.3313293457031 67.23300933837891 C -293.1486206054688 67.23300933837891 -293 67.39345550537109 -293 67.59067535400391 L -293 79.9810791015625 Z" stroke="none"/><path d="M -298 68.23300933837891 L -298 77.41169738769531 L -297.5736999511719 76.94707489013672 L -297.5736999511719 76.94708251953125 C -297.1701354980469 76.50706481933594 -296.5970153808594 76.25482940673828 -296.0003356933594 76.25482940673828 C -295.4021606445312 76.25482940673828 -294.8275146484375 76.50843048095703 -294.4270935058594 76.94693756103516 L -294 77.412353515625 L -294 68.23300933837891 L -298 68.23300933837891 M -298.6686706542969 66.23300933837891 L -293.3313293457031 66.23300933837891 C -292.5960083007812 66.23300933837891 -292 66.84080505371094 -292 67.59067535400391 L -292 82.02552032470703 C -292.0000305175781 82.21319580078125 -292.2254333496094 82.30421447753906 -292.3513488769531 82.16693115234375 L -295.9006652832031 78.29920196533203 C -295.9547119140625 78.23999786376953 -296.0460815429688 78.24005889892578 -296.1000061035156 78.29920196533203 L -299.6486511230469 82.16693115234375 C -299.774658203125 82.30426025390625 -300 82.21317291259766 -300 82.02552032470703 L -300 67.59067535400391 C -300 66.84080505371094 -299.4040222167969 66.23300933837891 -298.6686706542969 66.23300933837891 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(4)"><g transform="translate(300 -66.233)" fill="none" stroke-miterlimit="10"><path d="M-300,67.591V82.026a.2.2,0,0,0,.351.141L-296.1,78.3a.134.134,0,0,1,.2,0l3.549,3.868a.2.2,0,0,0,.351-.141V67.591a1.345,1.345,0,0,0-1.331-1.358h-5.337A1.345,1.345,0,0,0-300,67.591Z" stroke="none"/><path d="M -298.668701171875 67.23300933837891 C -298.8513793945312 67.23300933837891 -299 67.39345550537109 -299 67.59067535400391 L -299 79.98077392578125 L -296.8387145996094 77.62516784667969 C -296.6239624023438 77.38980865478516 -296.3183898925781 77.25482940673828 -296.0003356933594 77.25482940673828 C -295.6824340820312 77.25482940673828 -295.3769226074219 77.38971710205078 -295.1638488769531 77.62307739257812 L -293 79.98108673095703 L -293 67.59067535400391 C -293 67.39345550537109 -293.1486206054688 67.23300933837891 -293.331298828125 67.23300933837891 L -298.668701171875 67.23300933837891 M -298.668701171875 66.23300933837891 L -293.331298828125 66.23300933837891 C -292.5960083007812 66.23300933837891 -292 66.84080505371094 -292 67.59067535400391 L -292 82.02552032470703 C -292 82.21314239501953 -292.2253112792969 82.30426788330078 -292.3513793945312 82.16693878173828 L -295.900634765625 78.29920196533203 C -295.9546508789062 78.24002838134766 -296.0460510253906 78.24002838134766 -296.1000061035156 78.29920196533203 L -299.648681640625 82.16693878173828 C -299.774658203125 82.30422973632812 -300 82.21319580078125 -300 82.02552032470703 L -300 67.59067535400391 C -300 66.84080505371094 -299.404052734375 66.23300933837891 -298.668701171875 66.23300933837891 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.001" viewBox="0 0 16 16.001"><g transform="translate(0 0.001)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-2 -2.627)"><line x2="15" transform="translate(2.5 18.127)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M13.125,5.126v-2h-5v2" transform="translate(-0.625)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y1="2" transform="translate(10 15.627)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><path d="M0,0H1" transform="translate(7 7.627)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="1" transform="translate(7 10.627)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="1" transform="translate(12 7.627)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="1" transform="translate(12 10.627)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><g transform="translate(4 4.627)" fill="none" stroke="#000" stroke-width="1"><path d="M2,0h8a2,2,0,0,1,2,2V14a0,0,0,0,1,0,0H0a0,0,0,0,1,0,0V2A2,2,0,0,1,2,0Z" stroke="none"/><path d="M2,.5h8A1.5,1.5,0,0,1,11.5,2V13.5a0,0,0,0,1,0,0H.5a0,0,0,0,1,0,0V2A1.5,1.5,0,0,1,2,.5Z" fill="none"/></g></g></g></svg>
|