@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
|
+
{"prefix":"detailed","lastModified":1668450940,"icons":{"add":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M4 15.999h24m-12-12v24\"/>"},"add-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(2 2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/><path stroke-linecap=\"round\" d=\"M9 14h10m-5-5v10\"/></g>"},"align-center":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M23 13H9m18-6H5m22 12H5m18 6H9\"/>"},"align-justify":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M27 13H5m22-6H5m22 12H5m22 6H5\"/>"},"align-left":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M21 13H5m22-6H5m22 12H5m16 6H5\"/>"},"align-right":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M26.999 13h-16M27 7H5m22 12H5m21.999 6h-16\"/>"},"analysis":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(2 16)\"><rect width=\"7\" height=\"12\" rx=\"2\" stroke=\"none\"/><rect width=\"5\" height=\"10\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(12 6)\"><rect width=\"8\" height=\"22\" rx=\"2\" stroke=\"none\"/><rect width=\"6\" height=\"20\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(23 12)\"><rect width=\"7\" height=\"16\" rx=\"2\" stroke=\"none\"/><rect width=\"5\" height=\"14\" x=\"1\" y=\"1\" rx=\"1\"/></g></g>"},"analysis-2":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M17.657 6.001a.674.674 0 00-.473.2.671.671 0 00-.2.474l.012 10.331H6.665a.673.673 0 00-.473.2.67.67 0 00-.2.473 12.284 12.284 0 0012 12.328 12 12 0 0012-12A12.3 12.3 0 0017.657 6.001Z\"/><path fill=\"currentColor\" d=\"M18.99 8.087 19.004 19l-10.916.004a10.572 10.572 0 002.868 5.93c1.906 1.978 4.408 3.067 7.045 3.067a9.934 9.934 0 007.072-2.93A9.936 9.936 0 0028 18.002c0-2.637-1.091-5.14-3.072-7.045a10.596 10.596 0 00-5.937-2.869m-1.334-2.086C24.287 6 30 11.37 30 18c0 6.627-5.37 12-12 12-6.627 0-12-5.7-12-12.328a.67.67 0 01.67-.668L17 17l-.01-10.33a.671.671 0 01.668-.67Z\"/><path d=\"M14.8 14.8a.7.7 0 00.2-.488V3.692a.7.7 0 00-.2-.489.7.7 0 00-.488-.2A11.312 11.312 0 003 14.311a.7.7 0 00.2.488.7.7 0 00.488.2h10.62a.7.7 0 00.492-.199Z\"/><path fill=\"currentColor\" d=\"M13 13V5.092A9.333 9.333 0 005.092 13H13m1.31 2H3.69a.695.695 0 01-.69-.69C3.001 8.065 8.064 3 14.31 3c.182 0 .36.074.488.202a.698.698 0 01.202.489v10.62c0 .181-.074.36-.202.487a.695.695 0 01-.487.202Z\"/></g>"},"analysis-3":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-linejoin=\"round\" d=\"m4 24 10-10 4 4 7-6\"/><path stroke-miterlimit=\"10\" d=\"M29 24.999H3v-18\"/></g>"},"apple":{"body":"<g fill=\"none\"><g stroke-miterlimit=\"10\"><path d=\"M16.017 28.843a6.762 6.762 0 011.364.164 7.462 7.462 0 011.364.532l.032.015c.168.079.342.161.521.236a2.332 2.332 0 00.924.211 3.513 3.513 0 001.429-.42 6.044 6.044 0 002.269-1.911 18.881 18.881 0 002.5-4.141c.132-.292.232-.533.318-.755a14.883 14.883 0 00.907-9.257 7.167 7.167 0 00-2.9-4.254.662.662 0 01-.063-.044 4.959 4.959 0 00-1-.614 6.1 6.1 0 00-2.607-.6h-.148a8.727 8.727 0 00-2.967.768l-.586.223c-.255.1-.849.3-.855.3a.694.694 0 01-.234.04h-.22a.25.25 0 00-.043 0h-.032a.388.388 0 00-.045.005h-.221a.7.7 0 01-.232-.039s-.6-.205-.857-.3l-.579-.22A8.794 8.794 0 0011.077 8h-.16a6.174 6.174 0 00-2.593.6 5 5 0 00-1 .615.581.581 0 01-.06.043 7.289 7.289 0 00-2.887 4.186 14.879 14.879 0 00.867 9.273c.125.325.238.58.342.808a18.805 18.805 0 002.5 4.141 6 6 0 002.188 1.877 3.823 3.823 0 001.517.453 2.339 2.339 0 00.917-.209c.176-.073.347-.153.512-.231l.031-.015a7.634 7.634 0 011.376-.536 6.433 6.433 0 011.372-.164h.025Z\"/><path fill=\"currentColor\" d=\"M20.222 27.999c.106-.022.403-.153.625-.251.488-.214.9-.577 1.52-1.34.83-1.022 1.578-2.268 2.226-3.704.11-.245.198-.451.275-.65l.018-.049.021-.047c1.815-4.068.815-7.88.804-7.918l-.014-.055-.012-.056c-.388-1.835-1.9-2.897-2.02-2.98a2.538 2.538 0 01-.184-.127l-.063-.049a3.006 3.006 0 00-.604-.365 4.091 4.091 0 00-1.746-.407h-.1c-.689.017-1.398.29-2.296.636l-.008.003-.597.227c-.26.097-.786.277-.897.315a2.69 2.69 0 01-.89.151h-.561c-.307 0-.608-.05-.894-.151l-.05-.018a49.59 49.59 0 01-.843-.298l-.015-.005-.585-.223c-.935-.36-1.612-.619-2.303-.636L10.917 10c-.556 0-1.187.149-1.737.41a3.053 3.053 0 00-.603.365 2.59 2.59 0 01-.215.156c-.107.075-1.667 1.187-2.03 2.925l-.01.054-.015.054c-.043.16-1.022 3.942.761 7.94l.021.048.019.048c.11.284.206.503.295.698l.004.009c.645 1.432 1.393 2.677 2.224 3.7.612.754 1.016 1.12 1.438 1.306l.008.004c.262.114.585.256.704.28a.998.998 0 00.148-.053c.136-.057.282-.125.42-.19l.065-.03c.486-.228 1.037-.485 1.717-.656.516-.13 1.105-.204 1.802-.224l.118-.001.034.001c.444.015 1.112.055 1.784.224.688.173 1.264.443 1.727.661l.064.03c.144.068.28.132.407.184l.01.004a.93.93 0 00.145.052M20.221 30c-.29 0-.584-.067-.924-.21-.179-.075-.352-.157-.52-.236l-.032-.015c-.426-.2-.866-.407-1.364-.532-.487-.122-1.018-.152-1.364-.164h-.025c-.547.016-.995.07-1.372.164-.502.127-.943.334-1.376.536l-.031.015c-.165.078-.336.158-.512.231-.338.142-.63.209-.917.209-.486 0-.915-.19-1.517-.453-.856-.377-1.495-1.023-2.188-1.876-.94-1.157-1.78-2.551-2.495-4.141a14.05 14.05 0 01-.342-.808c-2.03-4.55-.99-8.813-.867-9.273.544-2.608 2.782-4.117 2.887-4.186a.58.58 0 00.06-.043 5 5 0 011.002-.615 6.173 6.173 0 012.753-.6c1.037.025 1.935.37 2.974.768l.578.22c.262.098.855.302.857.303a.7.7 0 00.233.04h.22c.017-.004.033-.005.046-.006h.032a.25.25 0 01.043.005h.22a.692.692 0 00.233-.04c.006-.002.6-.205.855-.3l.586-.223c1.038-.4 1.935-.743 2.967-.768h.147c.878 0 1.78.207 2.607.6.387.184.715.385.999.614.02.016.04.032.063.045.023.015 2.314 1.463 2.904 4.254.077.28 1.178 4.584-.907 9.258-.086.222-.186.463-.318.755-.718 1.591-1.558 2.985-2.497 4.14-.693.854-1.342 1.506-2.269 1.912-.554.244-.954.42-1.43.42Z\"/></g><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M16.173 10.001s-1.01-4.452 1.825-6m1.999 9.998a4.786 4.786 0 012 4\"/></g>"},"arrow-down":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m6 18.002 10 10 10-10m-10 8v-22\"/>"},"arrow-left":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m14.001 6-10 10 10 10m-8-10h22\"/>"},"arrow-right":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m18.001 26 10-10-10-10m8 10h-22\"/>"},"arrow-up":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m26.001 13.999-10-10-10 10m9.999-8v22\"/>"},"attachment":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m28.003 15.251-11.347 10.7a7.732 7.732 0 01-10.484 0 6.714 6.714 0 010-9.886l11.348-10.7a5.156 5.156 0 016.989 0 4.477 4.477 0 010 6.592l-11.361 10.7a2.574 2.574 0 01-3.493 0 2.235 2.235 0 010-3.295l10.483-9.875\"/>"},"back-to-front":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m24 3-4 4 4 4\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M10 7H6a3.008 3.008 0 00-2.278.709A2.636 2.636 0 003 9.834v11.334a2.64 2.64 0 00.722 2.125A3.007 3.007 0 006 24h20a3.007 3.007 0 002.278-.707A2.634 2.634 0 0029 21.168V9.834a2.634 2.634 0 00-.722-2.125A3.008 3.008 0 0026 7h-4\"/><g stroke-miterlimit=\"10\"><path d=\"M11.795 25h8.4l.719 1.594c.306.678-.28 1.406-1.132 1.406H12.21c-.85 0-1.436-.726-1.134-1.4Z\"/><path fill=\"currentColor\" d=\"M11.795 25H20.2l.719 1.594c.305.677-.28 1.406-1.132 1.406h-7.572c-.85 0-1.436-.726-1.134-1.404L11.795 25Z\"/></g></g>"},"bell":{"body":"<path fill=\"currentColor\" d=\"M13 26.161a2.924 2.924 0 003 2.841 2.924 2.924 0 003-2.841v-.159h-6Z\"/><g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M18.018 3.277a7.483 7.483 0 015.876 7.128v3.959a9.094 9.094 0 003.538 7.261c.057.046.114.094.171.139a1.268 1.268 0 01.4.915 1.371 1.371 0 01-1.416 1.322H5.418a1.371 1.371 0 01-1.416-1.322 1.269 1.269 0 01.4-.915c.057-.045.114-.093.171-.139a9.1 9.1 0 003.538-7.261v-3.963a7.464 7.464 0 015.667-7.073 7.909 7.909 0 014.24-.051Z\"/><path fill=\"currentColor\" d=\"M16.123 5.001a6.77 6.77 0 00-1.75.24l-.022.007-.05.013c-1.203.33-2.283 1.024-3.038 1.952-.757.929-1.157 2.033-1.157 3.192v3.96c0 1.744-.373 3.391-1.109 4.896A11.202 11.202 0 017.096 22h17.808a11.203 11.203 0 01-1.9-2.74c-.737-1.505-1.11-3.152-1.11-4.897v-3.959c0-2.422-1.79-4.554-4.354-5.186l-.069-.017-.067-.022A4.19 4.19 0 0016.123 5m0-2c.602 0 1.259.07 1.895.276 3.382.834 5.876 3.708 5.876 7.128v3.96c0 2.897 1.236 5.395 3.538 7.26l.171.14c.245.236.397.558.397.914 0 .73-.634 1.322-1.416 1.322H5.416C4.634 24 4 23.408 4 22.678c0-.356.152-.678.397-.915.057-.045.113-.092.17-.139 2.303-1.865 3.54-4.363 3.54-7.26v-3.96c0-3.348 2.392-6.175 5.666-7.072 0 0 1.044-.332 2.35-.332Z\"/></g>"},"bell-active":{"body":"<g fill=\"currentColor\"><path d=\"M13 26.16a2.924 2.924 0 003 2.841 2.924 2.924 0 003-2.841v-.159h-6Z\"/><g stroke-miterlimit=\"10\"><path d=\"M26.584 23H5.416C5.19 23 5 22.852 5 22.678c0-.073.034-.132.07-.173l.064-.052.062-.05c2.558-2.073 3.91-4.853 3.91-8.04v-3.959c0-1.392.478-2.714 1.381-3.824.886-1.088 2.147-1.9 3.55-2.284l.02-.005.018-.006A7.726 7.726 0 0116.123 4c.586 0 1.12.077 1.588.227l.034.011.034.009c3.012.742 5.115 3.274 5.115 6.157v3.96c0 3.186 1.352 5.966 3.909 8.037l.06.05.067.054c.036.041.07.1.07.173 0 .174-.19.322-.416.322Z\"/><path d=\"M16.123 5a6.77 6.77 0 00-1.75.24l-.022.007-.05.013c-1.203.33-2.283 1.024-3.038 1.952-.757.929-1.157 2.033-1.157 3.192v3.96c0 1.744-.373 3.391-1.109 4.896A11.202 11.202 0 017.096 22h17.808a11.203 11.203 0 01-1.9-2.74c-.737-1.505-1.11-3.152-1.11-4.897v-3.959c0-2.422-1.79-4.554-4.354-5.186l-.07-.018-.067-.022A4.19 4.19 0 0016.123 5m0-2c.602 0 1.259.07 1.895.276 3.382.834 5.876 3.708 5.876 7.128v3.96c0 2.897 1.236 5.395 3.538 7.26l.171.14c.245.236.397.558.397.914 0 .73-.634 1.322-1.416 1.322H5.416C4.634 24 4 23.408 4 22.678c0-.356.152-.678.397-.915.057-.045.113-.092.17-.139 2.303-1.865 3.54-4.363 3.54-7.26v-3.96c0-3.348 2.392-6.175 5.666-7.072 0 0 1.044-.332 2.35-.332Z\"/></g></g>"},"bold":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 5h10a5.525 5.525 0 010 11H8Zm0 11h11.076a5.534 5.534 0 010 11H8Z\"/>"},"bookmark":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M10 5.206v23.461a.3.3 0 00.527.23l5.323-6.285a.191.191 0 01.3 0l5.324 6.285a.3.3 0 00.526-.23V5.206A2.109 2.109 0 0020 3h-8a2.109 2.109 0 00-2 2.206Z\"/><path fill=\"currentColor\" d=\"M12.058 5a.347.347 0 00-.058.206V24.06l2.32-2.74a2.192 2.192 0 013.355-.004L20 24.059V5.206A.347.347 0 0019.942 5h-7.884m-.061-2h8.006C21.106 3 22 3.988 22 5.206v23.457c0 .305-.338.453-.527.23l-5.324-6.285a.191.191 0 00-.299 0l-5.323 6.285c-.189.223-.527.075-.527-.23V5.206C10 3.988 10.894 3 11.997 3Z\"/></g>"},"bookmark-active":{"body":"<g fill=\"currentColor\" stroke-miterlimit=\"10\"><path d=\"m21 26.787-4.088-4.826a1.193 1.193 0 00-1.827.002L11 26.787V5.207C11 4.54 11.447 4 11.997 4h8.006c.55 0 .997.541.997 1.206v21.581Z\"/><path d=\"M12.058 5a.347.347 0 00-.058.206V24.06l2.324-2.744a2.192 2.192 0 013.351 0L20 24.059V5.206A.347.347 0 0019.942 5h-7.884m-.061-2h8.006C21.106 3 22 3.988 22 5.206v23.457c0 .305-.338.453-.527.23l-5.324-6.285a.191.191 0 00-.299 0l-5.323 6.285c-.19.223-.527.075-.527-.23V5.206C10 3.988 10.894 3 11.997 3Z\"/></g>"},"building":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M4 29.001h24M18 4V3h-4v1\"/><path stroke-linecap=\"round\" d=\"M16 28.001v-3m-5-15h2m-2 4h2m-2 4h2m6-8h2m-2 4h2m-2 4h2\"/><g transform=\"translate(6 4.001)\"><rect width=\"20\" height=\"26\" rx=\"2\" stroke=\"none\"/><rect width=\"18\" height=\"24\" x=\"1\" y=\"1\" rx=\"1\"/></g></g>"},"bullet-list":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M12 22h6m-6-6h15m-15-6h10\"/><g transform=\"translate(4 8.334) translate(0 -.334)\"><circle cx=\"2\" cy=\"2\" r=\"2\" stroke=\"none\"/><circle cx=\"2\" cy=\"2\" r=\"1\"/></g><g transform=\"translate(4 8.334) translate(0 5.666)\"><circle cx=\"2\" cy=\"2\" r=\"2\" stroke=\"none\"/><circle cx=\"2\" cy=\"2\" r=\"1\"/></g><g transform=\"translate(4 8.334) translate(0 11.666)\"><circle cx=\"2\" cy=\"2\" r=\"2\" stroke=\"none\"/><circle cx=\"2\" cy=\"2\" r=\"1\"/></g></g>"},"calendar":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(2 5)\"><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M8-1v4m12-4v4M1 6h26M6 11h2m5 0h2m-9 7h2m5 0h2m5-7h2m-2 7h2\"/><rect width=\"28\" height=\"24\" rx=\"3\" stroke=\"none\"/><rect width=\"26\" height=\"22\" x=\"1\" y=\"1\" rx=\"2\"/></g>"},"camera-off":{"body":"<path fill=\"currentColor\" d=\"M27.198 27H9.243l2-2h15.955a.927.927 0 00.8-.752V10.504a.929.929 0 00-.8-.756h-.7l1.768-1.768a2.9 2.9 0 011.739 2.518v13.75A2.9 2.9 0 0127.198 27ZM2.311 25.445A2.54 2.54 0 012 24.252v-13.75a2.884 2.884 0 012.8-2.75h2.8L10.4 5h8.4l2.392 1.566-1.445 1.445-1.543-1.012H11.22l-2.8 2.752H4.806a.925.925 0 00-.8.75v13.258l-1.687 1.686Z\"/><path fill=\"currentColor\" d=\"M14.998 23.002a6.021 6.021 0 01-1.552-.2l1.8-1.8a4.007 4.007 0 003.738-3.74l1.809-1.809a6 6 0 01-5.8 7.557Zm-5.8-4.447a6 6 0 017.353-7.35l-1.8 1.8a4 4 0 00-3.744 3.744l-1.8 1.8Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M4 28 28 4\"/>"},"camera-on":{"body":"<path fill=\"none\" d=\"M0 0h32v32H0z\"/><g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M27.2 7.75H23L18.8 5h-8.4L7.6 7.75H4.8A2.9 2.9 0 002 10.5v13.75A2.9 2.9 0 004.8 27h22.4a2.9 2.9 0 002.8-2.75V10.5a2.9 2.9 0 00-2.8-2.75Z\"/><path fill=\"currentColor\" d=\"m11.218 7-2.8 2.75H4.803c-.352 0-.802.423-.803.75v13.747c0 .33.451.753.8.753h22.397c.352 0 .803-.423.803-.75V10.503c0-.33-.45-.752-.8-.753h-4.796L18.204 7h-6.986M10.4 5h8.4L23 7.75h4.2c1.448.003 2.798 1.304 2.8 2.75v13.75c-.002 1.446-1.352 2.748-2.8 2.75H4.8c-1.448-.002-2.798-1.304-2.8-2.75V10.5c.002-1.446 1.352-2.747 2.8-2.75h2.8L10.4 5Z\"/><g stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(9 11)\"><circle cx=\"6\" cy=\"6\" r=\"6\" stroke=\"none\"/><circle cx=\"6\" cy=\"6\" r=\"5\"/></g></g>"},"catalog":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\"><path d=\"M8 2h16a1 1 0 011 1v26a1 1 0 01-1 1H8a3 3 0 01-3-3V5a3 3 0 013-3Z\" stroke=\"none\"/><path d=\"M8 3h16v26H8a2 2 0 01-2-2V5a2 2 0 012-2Z\"/></g><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M10 13h10m-10 4h10m-10 4h5\"/><path d=\"M6 8h18\"/></g>"},"certificate":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-miterlimit=\"22.926\" d=\"M16.001 3.998a8 8 0 11-8 8 8 8 0 018-8Z\"/><path stroke-miterlimit=\"22.926\" d=\"M16 9.001a3 3 0 11-3 3 3 3 0 013-3Z\"/><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m9 18-4 4h3v3h3v3l5-5 5 5v-3h3v-3h3l-4-4\"/></g>"},"chat":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M14.998 23.002h-3c-4.9 0-9-3.238-9-8 0-4.738 4.1-8 9-8h8c4.9 0 9 3.262 9 8 0 4.762-4.7 8-9 8l-1 4Z\"/>"},"check":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m7 15.001 7 7 12-12\"/>"},"check-badge":{"body":"<path fill=\"currentColor\" d=\"m16.873 4.154 2.151-1.828a1.365 1.365 0 012.212.752l.713 2.8a1.394 1.394 0 001.413 1.075l2.768-.157a1.439 1.439 0 011.37 1.97l-1 2.7a1.485 1.485 0 00.54 1.738l2.327 1.575a1.486 1.486 0 010 2.433l-2.327 1.584a1.485 1.485 0 00-.54 1.738l1 2.7a1.439 1.439 0 01-1.368 1.969l-2.768-.157a1.394 1.394 0 00-1.413 1.075l-.713 2.8a1.365 1.365 0 01-2.212.752l-2.152-1.828a1.337 1.337 0 00-1.746 0l-2.152 1.828a1.365 1.365 0 01-2.212-.752l-.713-2.8a1.394 1.394 0 00-1.413-1.075l-2.768.157a1.439 1.439 0 01-1.37-1.968l1-2.7a1.485 1.485 0 00-.54-1.738l-2.327-1.575a1.486 1.486 0 010-2.433l2.327-1.575a1.485 1.485 0 00.54-1.738l-1-2.7a1.439 1.439 0 011.369-1.98l2.768.157a1.394 1.394 0 001.413-1.074l.713-2.8a1.365 1.365 0 012.212-.752l2.152 1.828a1.337 1.337 0 001.746-.001Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m11 16.999 3 3 7-7\"/>"},"check-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m12 16 3 3 6-6\"/></g>"},"checkbox":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(2 2)\"><rect width=\"28\" height=\"28\" rx=\"3\" stroke=\"none\"/><rect width=\"26\" height=\"26\" 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 11 10 10 10-10\"/>"},"chevron-down-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2.001)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m11 14 5 5 5-5\"/></g>"},"chevron-left":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M21 6 11 16l10 10\"/>"},"chevron-left-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m18.001 11-5 5 5 5\"/></g>"},"chevron-right-circle":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m12 26 10-10L12 6\"/>"},"chevron-up":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M26 20 16 10 6 20\"/>"},"chevron-up-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2.001)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m11.001 18 5-5 5 5\"/></g>"},"classroom":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M4 14h24M4 28h24\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M8 13a3 3 0 013-3 3 3 0 013 3\"/><g stroke-miterlimit=\"10\"><path d=\"M8 5.999a3 3 0 11.879 2.121A2.994 2.994 0 018 5.999Z\"/><path fill=\"currentColor\" d=\"M11 4.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415.987.987 0 00.707.293c.341 0 .574-.16.707-.293A.981.981 0 0012 5.999a.981.981 0 00-.291-.706.986.986 0 00-.709-.294m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121A2.99 2.99 0 0111 8.999a2.99 2.99 0 01-2.121-.879A2.99 2.99 0 018 5.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0111 2.999Z\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M13 27a3 3 0 013-3 3 3 0 013 3\"/><g stroke-miterlimit=\"10\"><path d=\"M13 19.999a3 3 0 11.879 2.121A2.994 2.994 0 0113 19.999Z\"/><path fill=\"currentColor\" d=\"M16 18.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415.987.987 0 00.707.293c.341 0 .574-.16.707-.293a.981.981 0 00.293-.707.981.981 0 00-.291-.706.986.986 0 00-.709-.294m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121a2.99 2.99 0 01-2.121.879 2.99 2.99 0 01-2.121-.879A2.99 2.99 0 0113 19.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0116 16.999Z\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M18 13a3 3 0 013-3 3 3 0 013 3\"/><g stroke-miterlimit=\"10\"><path d=\"M18 5.999a3 3 0 11.879 2.121A2.994 2.994 0 0118 5.999Z\"/><path fill=\"currentColor\" d=\"M21 4.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415.987.987 0 00.707.293c.341 0 .574-.16.707-.293A.981.981 0 0022 5.999a.981.981 0 00-.291-.706.986.986 0 00-.709-.294m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121A2.99 2.99 0 0121 8.999a2.99 2.99 0 01-2.121-.879A2.99 2.99 0 0118 5.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0121 2.999Z\"/></g></g>"},"clear-field":{"body":"<g stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(3 3)\"><circle cx=\"13\" cy=\"13\" r=\"13\" fill=\"currentColor\" stroke=\"none\"/><circle cx=\"13\" cy=\"13\" r=\"12\" fill=\"none\"/></g><path fill=\"none\" stroke-linecap=\"round\" d=\"m12 20 8-8m-8 0 8 8\"/></g>"},"clear-style":{"body":"<path fill=\"currentColor\" d=\"M18 28h-4a1 1 0 010-2h1v-4.76l2-2V26h1a1 1 0 110 2Zm-3-15.244V8H8v1a1 1 0 01-2 0V5a.99.99 0 011-1 1 1 0 011 1v1h13.75l-2 2H17v2.754l-2 2Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5 27 27 5\"/>"},"close":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M8 24 24 8M8 8l16 16\"/>"},"close-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(2 2.001)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-linecap=\"round\" d=\"m11 21.001 10-10m-10 0 10 10\"/></g>"},"close-loader":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"m12 20 8-8m-8 0 8 8\"/>"},"coffee":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-linejoin=\"round\"><path d=\"M7 10.999h16a1 1 0 011 1v7a8 8 0 01-8 8h-2a8 8 0 01-8-8v-7a1 1 0 011-1Z\" stroke=\"none\"/><path d=\"M7 11.999h16v7a7 7 0 01-7 7h-2a7 7 0 01-7-7v-7Z\"/></g><g stroke-linejoin=\"round\"><path d=\"M22.001 18.999v-8h3a3 3 0 013 3v2a3 3 0 01-3 3h-3Z\" stroke=\"none\"/><path d=\"M23.001 17.999v-6h2a2 2 0 012 2v2a2 2 0 01-2 2h-2Z\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M4 26.999h22\"/><path stroke-linecap=\"round\" d=\"M10 7.999v-2m5 2v-2m5 2v-2\"/></g>"},"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(4 4)\"><circle cx=\"12\" cy=\"12\" r=\"12\" stroke=\"none\"/><circle cx=\"12\" cy=\"12\" r=\"11.5\" fill=\"none\"/></g>"},"contact-us":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"M24 16.001v-3.808c0-3.934-3.513-8.192-8-8.192s-8 4.257-8 8.192v1.8\"/><path d=\"M21 12.001v3.912a7.6 7.6 0 01-2 5.588m-9.001-14.5c0 2.143 7.7 5 11 5M13 10.5c-.862.606-1.949 3.279-2 4.889v1.222a6.65 6.65 0 002 4.889m5.999 5.501a1.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 1Zm.002-.003h.469c2.493.021 4.522-4.31 4.531-9.671v-.328\"/><path d=\"M25 14h-1v4h1a.95.95 0 001-.889v-2.223A.951.951 0 0025 14Zm-18 .002h1v4H7a.949.949 0 01-1-.887v-2.223a.949.949 0 011-.89h0Z\"/></g>"},"copy":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(10.001 3)\"><rect width=\"16\" height=\"22\" rx=\"2\" stroke=\"none\"/><rect width=\"14\" height=\"20\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" d=\"M19 28h-9a2.665 2.665 0 01-3-3V10\"/></g>"},"courses":{"body":"<path fill=\"currentColor\" d=\"M28 13h2v7a1 1 0 01-1 1 1 1 0 01-1-1v-7Z\"/><g fill=\"rgba(0,0,0,0)\" stroke-miterlimit=\"10\"><path d=\"M22 25.996H10a2.003 2.003 0 01-2.001-2v-8.344l-.524-.283-4.387-2.373L16 6.012l12.913 6.984-4.387 2.373-.524.283v8.344c0 1.103-.897 2-2 2Z\"/><path fill=\"currentColor\" d=\"M22 24.996c.552 0 1.001-.45 1.001-1v-8.94l1.049-.568 2.76-1.492-10.811-5.848-10.81 5.848 3.809 2.06v8.94c0 .55.449 1 1 1H22m0 2H10a3 3 0 01-3.001-3v-7.748l-4.523-2.445a.92.92 0 010-1.612L15.584 5.1a.892.892 0 01.83 0l13.11 7.092a.92.92 0 010 1.612L25 16.248v7.748c0 1.656-1.344 3-3 3Z\"/></g><g fill=\"rgba(0,0,0,0)\" stroke-miterlimit=\"10\"><path d=\"M16 19.98 3.088 12.996l12.914-6.983 12.913 6.983-12.913 6.982Z\"/><path fill=\"currentColor\" d=\"m16 18.842 10.812-5.845L16 7.15 5.19 12.997 16 18.842m0 2.155a.874.874 0 01-.416-.106L2.476 13.803c-.634-.343-.634-1.27 0-1.613l13.108-7.088c.26-.14.573-.14.833 0l13.109 7.088c.633.343.633 1.27 0 1.613L16.417 20.89a.874.874 0 01-.416.106Z\"/></g>"},"dashboard":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(5 3)\"><rect width=\"10\" height=\"10\" rx=\"2\" stroke=\"none\"/><rect width=\"8\" height=\"8\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(17 19)\"><rect width=\"10\" height=\"10\" rx=\"2\" stroke=\"none\"/><rect width=\"8\" height=\"8\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(17 3)\"><rect width=\"10\" height=\"14\" rx=\"2\" stroke=\"none\"/><rect width=\"8\" height=\"12\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(5 15)\"><rect width=\"10\" height=\"14\" rx=\"2\" stroke=\"none\"/><rect width=\"8\" height=\"12\" x=\"1\" y=\"1\" rx=\"1\"/></g></g>"},"download":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m12 15 4 4 4-4m-4 4V5m12 18.001v4H4v-4\"/>"},"drag":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M21 3.999v24m-5-24v24m-5-24v24\"/>"},"duplicate":{"body":"<g stroke-miterlimit=\"10\"><g fill=\"rgba(0,0,0,0)\"><path d=\"M16.998 29H5a2 2 0 01-1.999-2V14.997c0-1.103.896-2 1.999-2h8.001V5.003a2 2 0 011.999-2h11.998c1.103 0 2 .896 2 2v11.998a2.002 2.002 0 01-2 1.998h-8v8.002a2.002 2.002 0 01-2 1.998Z\"/><path fill=\"currentColor\" d=\"M16.998 28a1 1 0 001-.999v-9.002h9a1 1 0 001-.998V5.003c0-.55-.448-1-1-1H15c-.55 0-.999.45-.999 1v8.994H5c-.55 0-.999.45-.999 1v12.004a1 1 0 00.999.998h11.998m0 2H5a2.998 2.998 0 01-2.999-2.998V14.997c0-1.652 1.343-3 2.999-3h7.001V5.003c0-1.658 1.343-3 2.999-3h11.998a3 3 0 013 3v11.998a2.998 2.998 0 01-3 2.998h-7v7.002a2.998 2.998 0 01-3 2.998Z\"/></g><g fill=\"rgba(0,0,0,0)\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(12 2.001)\"><rect width=\"18\" height=\"18\" rx=\"3\" stroke=\"none\"/><rect width=\"16\" height=\"16\" x=\"1\" y=\"1\" fill=\"none\" rx=\"2\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M18 11.001h6m-3-3v6\"/></g>"},"edit":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"m25.129 3.672 3.175 3.169a2.371 2.371 0 01.008 3.348l-16.735 16.88a2.369 2.369 0 01-1.2.654l-6 1.254a1.143 1.143 0 01-1.354-1.354l1.3-6.114a2.37 2.37 0 01.656-1.2L21.89 3.659a2.3 2.3 0 013.239.013Z\"/><path fill=\"currentColor\" d=\"M23.506 5a.295.295 0 00-.21.086L6.385 21.736a.37.37 0 00-.103.188l-1.027 4.825 4.712-.985a.37.37 0 00.19-.104L26.891 8.78a.372.372 0 000-.524l-3.176-3.169a.292.292 0 00-.21-.087m0-2a2.29 2.29 0 011.623.672l3.175 3.169a2.37 2.37 0 01.008 3.347l-16.734 16.88a2.369 2.369 0 01-1.202.654L4.38 28.976a1.143 1.143 0 01-1.355-1.356l1.3-6.113a2.37 2.37 0 01.656-1.198L21.892 3.66A2.296 2.296 0 0123.506 3Z\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"m20 8 4 4M8 19l5 5\"/></g>"},"elearning":{"body":"<g transform=\"translate(4.001 5.332)\"><g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(-2 -3.332)\"><rect width=\"28\" height=\"18\" rx=\"3\" stroke=\"none\"/><rect width=\"26\" height=\"16\" x=\"1\" y=\"1\" rx=\"2\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M-.001 20.668h24\"/><circle cx=\"3\" cy=\"3\" r=\"3\" fill=\"currentColor\" transform=\"translate(3 17.668)\"/><path fill=\"currentColor\" d=\"M15.21 4.775a1 1 0 010 1.789l-4.764 2.381a1 1 0 01-1.447-.894V3.287a1 1 0 011.447-.894Z\"/></g>"},"email":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"rotate(90 12 18.001)\"><rect width=\"20\" height=\"28\" rx=\"3\" stroke=\"none\"/><rect width=\"18\" height=\"26\" x=\"1\" y=\"1\" rx=\"2\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m4 8.001 12 9 12-9\"/></g>"},"error":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M16 9v7m0 5v2\"/><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g></g>"},"error-2":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M16 5v13m0 6v3\"/>"},"exercise":{"body":"<g fill=\"none\"><g stroke-miterlimit=\"10\"><path d=\"M9.879 29.572a1.115 1.115 0 01-1.758 0C6.944 28.11 5 25.558 5 24.633V4.404a2.347 2.347 0 012.287-2.4h3.425A2.347 2.347 0 0113 4.404v20.229c0 .925-1.944 3.477-3.121 4.939Z\"/><path fill=\"currentColor\" d=\"M9 27.457c1.308-1.694 1.86-2.645 2-2.993V4.404c0-.238-.152-.404-.288-.404H7.287c-.136.001-.287.166-.287.404v20.06c.14.348.692 1.3 2 2.993M9 30c-.325 0-.649-.142-.879-.428C6.944 28.11 5 25.558 5 24.632V4.405C5 3.076 6.024 2 7.287 2h3.425C11.976 2 13 3.075 13 4.403v20.229c0 .925-1.944 3.477-3.121 4.939a1.125 1.125 0 01-.88.428Z\"/></g><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M6 9h6\"/><path d=\"M17 2h10v28H17Z\"/><path fill=\"currentColor\" d=\"M19 4v24h6V4h-6m-2-2h10v28H17V2Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M18 9h3m-3 7h3m-3 7h3\"/></g>"},"external-link":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M24 19.433v5.71A3 3 0 0121.143 28H6.857A3 3 0 014 25.143V10.857A3 3 0 016.857 8h5.714M19 5h8v8m-13 5L26 6\"/>"},"extract":{"body":"<g transform=\"translate(5.833 7.166)\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M3.667 6.334h14m-14 6h8\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M22.668 5.334v-7h-7m0 21.997h7v-7m-17-14.996h-7v7m-.001 8.003v7h7\"/><circle cx=\"3\" cy=\"3\" r=\"3\" fill=\"currentColor\" transform=\"translate(18.667 17.334)\"/></g>","width":33,"height":33},"eye-off":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M19 8.168a16.765 16.765 0 00-2.277-.167h-.017a15.052 15.052 0 00-6.112 1.207 12.771 12.771 0 00-5.132 4.093 10.707 10.707 0 00-1.424 2.492.64.64 0 000 .423 11.254 11.254 0 002.441 3.785M13 23.833a17.331 17.331 0 002.32.167 15.265 15.265 0 006.188-1.207 12.343 12.343 0 005.093-4.1 10.208 10.208 0 001.366-2.511.652.652 0 000-.424A11.887 11.887 0 0025.473 12\"/><path stroke-linecap=\"round\" d=\"m5 26.999 22-22\"/></g>"},"eye-on":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(3 7.333)\"><path d=\"M25.961 8.42a13.5 13.5 0 00-2.712-4.4 13.06 13.06 0 00-3.993-3 14.206 14.206 0 00-6.26-1.354 14.2 14.2 0 00-6.257 1.356 13.386 13.386 0 00-5.243 4.596 12.391 12.391 0 00-1.455 2.8.793.793 0 00-.006.475 12.89 12.89 0 002.634 4.415 12.747 12.747 0 003.987 3 14.5 14.5 0 006.34 1.358 14.5 14.5 0 006.345-1.355 12.986 12.986 0 005.221-4.6 11.871 11.871 0 001.4-2.812.793.793 0 00-.001-.479Z\"/><circle cx=\"5\" cy=\"5\" r=\"5\" transform=\"translate(8 3.667)\"/></g>"},"fail":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" transform=\"translate(4 4)\"><rect width=\"6\" height=\"14\" rx=\"2.005\" transform=\"translate(18)\"/><path stroke-linecap=\"round\" d=\"M1.64 11.42h1.226l-.1.678h-1.13a1.677 1.677 0 000 3.354h2.715l3.951.083s-.855 6.084 2.775 8.125c2.33 1.177 2.764-1.065 2.764-1.065v-4.237l1.385-1.412s2.771-2.62 2.771-4.264V2.825a2.622 2.622 0 00-2.768-2.828H3.896a1.678 1.678 0 000 3.354h.111l-.1.679H2.769a1.677 1.677 0 000 3.353h.668l-.1.679h-1.7a1.677 1.677 0 000 3.354Z\"/></g>"},"fast-back":{"body":"<g fill=\"none\"><path d=\"M18.999 22.074V21.2l6 3.448a2.728 2.728 0 004-2.574V9.926a2.732 2.732 0 00-4-2.578l-6 3.452v-.873a2.731 2.731 0 00-4-2.578L4.436 13.425a3.031 3.031 0 000 5.152l10.563 6.071a2.566 2.566 0 001.28.352 2.825 2.825 0 002.72-2.926Z\"/><path fill=\"currentColor\" d=\"M16.279 23c.302 0 .72-.322.72-.926v-4.33l8.995 5.172a.56.56 0 00.283.083c.303 0 .722-.321.722-.925V9.926c0-.605-.421-.927-.725-.927a.558.558 0 00-.281.082l-8.994 5.176V9.926c0-.605-.42-.927-.724-.927a.564.564 0 00-.283.082l-10.56 6.074c-.403.234-.434.706-.434.845 0 .14.03.611.43.842l10.562 6.072a.576.576 0 00.289.086m0 2c-.427 0-.866-.111-1.284-.352L4.432 18.576c-1.912-1.105-1.912-4.047 0-5.152l10.563-6.076c1.813-1.04 4.004.369 4.004 2.578v.873l5.996-3.451C26.804 6.308 29 7.717 29 9.926v12.148c0 2.211-2.195 3.617-4.004 2.574L19 21.201v.873C19 23.775 17.703 25 16.28 25Z\"/><path d=\"M14.435 13.425a3.027 3.027 0 000 5.149l10.564 6.076a2.729 2.729 0 004-2.575V9.925a2.729 2.729 0 00-4-2.575Z\"/><path fill=\"currentColor\" d=\"M14.999 16c0 .139.031.61.433.841l10.56 6.075a.534.534 0 00.573 0c.102-.058.434-.293.434-.841V9.925c0-.548-.332-.783-.434-.842a.534.534 0 00-.573 0l-10.56 6.076c-.402.23-.433.702-.433.841m-2 0c0-1.012.479-2.024 1.436-2.575l10.56-6.075c1.812-1.042 4.004.368 4.004 2.575v12.15c0 2.207-2.192 3.617-4.004 2.575l-10.56-6.075c-.957-.55-1.436-1.563-1.436-2.575Z\"/></g>"},"fast-forward":{"body":"<g fill=\"none\"><path d=\"M13 22.074v-.873l-6 3.447a2.728 2.728 0 01-4-2.574V9.926a2.732 2.732 0 014-2.578l6 3.451v-.873a2.731 2.731 0 014-2.578l10.563 6.076a3.031 3.031 0 010 5.152L17 24.648a2.566 2.566 0 01-1.284.352A2.825 2.825 0 0113 22.074Z\"/><path fill=\"currentColor\" d=\"M15.72 23a.563.563 0 00.287-.086l10.559-6.07c.403-.233.435-.706.435-.844 0-.14-.032-.612-.432-.842L16.01 9.082A.582.582 0 0015.723 9c-.303 0-.723.32-.723.925v4.332L6.007 9.082A.55.55 0 005.725 9c-.305 0-.726.32-.726.925v12.149c0 .361.144.584.264.709.133.136.3.217.457.217a.558.558 0 00.286-.086L15 17.744v4.33c0 .603.418.926.72.926m0 2C14.295 25 13 23.775 13 22.074V21.2l-5.997 3.447c-1.809 1.043-4.004-.363-4.004-2.574V9.925C3 7.716 5.193 6.31 7.003 7.347L13 10.798v-.873c0-2.21 2.191-3.615 4.003-2.578l10.563 6.076c1.913 1.106 1.913 4.047 0 5.153l-10.563 6.072c-.418.24-.856.352-1.284.352Z\"/><path d=\"M17.564 13.426a3.027 3.027 0 010 5.149L7 24.651a2.729 2.729 0 01-4-2.575V9.926a2.729 2.729 0 014-2.575Z\"/><path fill=\"currentColor\" d=\"M17 16.001c0-.139-.031-.61-.433-.841L6.007 9.085a.534.534 0 00-.573 0c-.102.058-.434.293-.434.841v12.15c0 .548.332.783.434.842.285.165.502.04.573 0l10.56-6.076c.402-.23.433-.702.433-.841m2 0c0 1.012-.479 2.024-1.436 2.575L7.004 24.65C5.192 25.693 3 24.283 3 22.076V9.926c0-2.207 2.192-3.617 4.004-2.575l10.56 6.075c.957.55 1.436 1.563 1.436 2.575Z\"/></g>"},"file":{"body":"<g stroke-linejoin=\"round\"><g fill=\"none\"><path d=\"M26 10v16a2.864 2.864 0 01-3 3H9a2.864 2.864 0 01-3-3V6a2.864 2.864 0 013-3h10Z\"/><path fill=\"currentColor\" d=\"M9 5c-.663 0-1 .336-1 1v20c0 .664.337 1 1 1h14c.664 0 1-.336 1-1V10.828L18.172 5H9m0-2h10l7 7v16c0 1.795-1.25 3-3 3H9c-1.748 0-3-1.205-3-3V6c0-1.795 1.252-3 3-3Z\"/></g><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M24.999 10h-6V4Z\"/></g>"},"file-add":{"body":"<g stroke-linejoin=\"round\"><g fill=\"none\"><path d=\"M26 10v16a2.864 2.864 0 01-3 3H9a2.864 2.864 0 01-3-3V6a2.864 2.864 0 013-3h10Z\"/><path fill=\"currentColor\" d=\"M9 5c-.663 0-1 .336-1 1v20c0 .664.337 1 1 1h14c.664 0 1-.336 1-1V10.828L18.172 5H9m0-2h10l7 7v16c0 1.795-1.25 3-3 3H9c-1.748 0-3-1.205-3-3V6c0-1.795 1.252-3 3-3Z\"/></g><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M24.999 10h-6V4Z\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M13 17.999h6\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M16 15v6\"/>"},"file-duplicate":{"body":"<path fill=\"rgba(0,0,0,0)\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6 28c-.489 0-1-.117-1-1V11c0-.885.506-1 1-1h7V5c0-.885.506-1 1-1h8.016l4.982 5v12c0 .881-.506 1-1 1h-7v5c0 .885-.507 1-1 1Z\"/><g stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\"><path fill=\"rgba(0,0,0,0)\" d=\"M18 28H6c-.495 0-1-.119-1-1V11c0-.881.505-1 1-1h8.013L19 15v12c0 .881-.505 1-1 1Z\"/><path fill=\"currentColor\" d=\"M18 14.999h-4v-4ZM25.999 9h-4V5Z\"/></g>"},"file-remove":{"body":"<g stroke-linejoin=\"round\"><g fill=\"none\"><path d=\"M26 10v16a2.864 2.864 0 01-3 3H9a2.864 2.864 0 01-3-3V6a2.864 2.864 0 013-3h10Z\"/><path fill=\"currentColor\" d=\"M9 5c-.663 0-1 .336-1 1v20c0 .664.337 1 1 1h14c.664 0 1-.336 1-1V10.828L18.172 5H9m0-2h10l7 7v16c0 1.795-1.25 3-3 3H9c-1.748 0-3-1.205-3-3V6c0-1.795 1.252-3 3-3Z\"/></g><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M24.999 10h-6V4Z\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M13 18h6\"/>"},"file-required":{"body":"<g stroke-linejoin=\"round\"><g fill=\"none\"><path d=\"M21 11.172v15.161A2.431 2.431 0 0118.429 29H5.572a2.431 2.431 0 01-2.571-2.667V7.667A2.431 2.431 0 015.572 5h9.2Z\"/><path fill=\"currentColor\" d=\"M5.572 7c-.25 0-.392.054-.441.105-.06.062-.13.246-.13.562v18.666c0 .316.07.5.13.562.05.05.191.105.44.105H18.43c.25 0 .392-.054.441-.105.06-.062.13-.246.13-.562V12.006L13.952 7h-8.38m0-2h9.203L21 11.172v15.161C21 27.99 20.003 29 18.43 29H5.572C3.998 29 3 27.99 3 26.333V7.667C3 6.01 3.998 5 5.572 5Z\"/></g><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M19 11.002h-4v-4Z\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M26 3v8m3-6-6 4m6 0-6-4\"/>"},"filter":{"body":"<g fill=\"none\" stroke-linejoin=\"round\"><path d=\"M8.29 3.004h15.419a2.154 2.154 0 011.955 3.271l-5.4 8.737a1.636 1.636 0 00-.265.89V27.64a1.455 1.455 0 01-2.364 1.051l-4.583-3.81a2.66 2.66 0 01-1.052-2.1v-6.88a2.589 2.589 0 00-.262-1.139l-5.4-8.487A2.154 2.154 0 018.29 3.004Z\"/><path fill=\"currentColor\" d=\"m23.71 5-15.42.004c-.248 0-.29.154-.29.154a.133.133 0 00.02.039l5.402 8.483c.562.876.578 2.083.578 2.218v6.88c0 .192.101.381.278.518l.053.043L18 26.389V15.898c0-.692.198-1.367.572-1.955l5.39-8.723.022-.034c.012-.018.016-.03.016-.028 0-.001-.04-.158-.29-.158m0-2c1.783 0 2.88 1.837 1.954 3.271l-5.4 8.737a1.636 1.636 0 00-.264.89v11.739c0 1.15-1.422 1.78-2.364 1.05l-4.584-3.81a2.66 2.66 0 01-1.052-2.1v-6.88c0-.312-.09-.872-.262-1.139L6.333 6.271c-.92-1.435.176-3.267 1.957-3.267L23.71 3Z\"/></g>"},"filter-2":{"body":"<g stroke=\"currentColor\"><path fill=\"none\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5 7.999h22m-22 8h22m-22 8h22\"/><g transform=\"translate(6.667 5.333) translate(.333 -.334)\"><circle cx=\"3\" cy=\"3\" r=\"3\" fill=\"currentColor\" stroke=\"none\"/><circle cx=\"3\" cy=\"3\" r=\"2.5\" fill=\"none\"/></g><g transform=\"translate(6.667 5.333) translate(12.333 7.666)\"><circle cx=\"3\" cy=\"3\" r=\"3\" fill=\"currentColor\" stroke=\"none\"/><circle cx=\"3\" cy=\"3\" r=\"2.5\" fill=\"none\"/></g><g transform=\"translate(6.667 5.333) translate(7.333 15.666)\"><circle cx=\"3\" cy=\"3\" r=\"3\" fill=\"currentColor\" stroke=\"none\"/><circle cx=\"3\" cy=\"3\" r=\"2.5\" fill=\"none\"/></g></g>"},"filter-active":{"body":"<g fill=\"currentColor\" stroke-linejoin=\"round\"><path d=\"M18.547 28a.476.476 0 01-.289-.096l-4.566-3.796-.014-.011-.013-.01a1.658 1.658 0 01-.665-1.31v-6.88c0-.354-.088-1.16-.42-1.677L7.177 5.734a1.022 1.022 0 01-.044-1.08c.222-.407.655-.65 1.157-.65L23.71 4c.503 0 .936.243 1.158.651a1.02 1.02 0 01-.044 1.078l-.005.008-.006.009-5.394 8.729c-.274.428-.419.92-.419 1.423v11.739c0 .247-.27.363-.453.363Z\"/><path d=\"m23.71 5-15.42.004c-.248 0-.29.154-.29.154a.133.133 0 00.02.039l5.402 8.483c.562.876.578 2.083.578 2.218v6.88c0 .192.101.381.278.518l.053.043L18 26.389V15.898c0-.692.198-1.367.572-1.955l5.39-8.723.022-.034c.012-.018.016-.03.016-.028 0-.001-.04-.158-.29-.158m0-2c1.783 0 2.88 1.837 1.954 3.271l-5.4 8.737a1.636 1.636 0 00-.264.89v11.739c0 1.15-1.422 1.78-2.364 1.05l-4.584-3.81a2.66 2.66 0 01-1.052-2.1v-6.88c0-.312-.09-.872-.262-1.139L6.333 6.271c-.92-1.435.176-3.267 1.957-3.267L23.71 3Z\"/></g>"},"flag":{"body":"<g transform=\"translate(6.667 5.333)\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M15.158 13.666c3.925.769 6.176 2.506 6.176 4.769 0 2.933-5.271 5.231-12 5.231s-12-2.3-12-5.231c0-2.263 2.252-4 6.176-4.769\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9.333 13.666v-16h10l-4 4 4 4h-10\"/><ellipse cx=\"3\" cy=\"1.5\" fill=\"currentColor\" rx=\"3\" ry=\"1.5\" transform=\"translate(6.333 16.666)\"/></g>"},"folder":{"body":"<g fill=\"none\"><path d=\"M4 26a2 2 0 01-2-2V7.407a2.53 2.53 0 012.287-2.401H13.4L15.7 8H28a2 2 0 012 2v14a2 2 0 01-2 2Z\"/><path fill=\"currentColor\" d=\"M28 24V9.999H14.71l-2.3-2.997h-.127l-7.946.004c-.131.053-.322.279-.337.405V24h24m0 2H4a2 2 0 01-2-2.001V7.407c0-1.2 1.145-2.393 2.287-2.4l7.998-.005 1.114.004L15.696 8H28a2 2 0 012 2v13.999a2 2 0 01-2 2Z\"/><path stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m3.999 23.999 5-9h20\"/></g>"},"full-width":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"M20 8v16\"/><path d=\"M2 6h28v20H2z\" stroke=\"none\"/><path d=\"M3 7h26v18H3z\"/></g>"},"go-to-back":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M10 7H6a3.008 3.008 0 00-2.278.709A2.636 2.636 0 003 9.834v11.334a2.64 2.64 0 00.722 2.125A3.007 3.007 0 006 24h20a3.007 3.007 0 002.278-.707A2.634 2.634 0 0029 21.168V9.834a2.634 2.634 0 00-.722-2.125A3.008 3.008 0 0026 7h-4\"/><g stroke-miterlimit=\"10\"><path d=\"M11.794 24.999h8.4l.719 1.594c.306.678-.28 1.406-1.132 1.406h-7.572c-.85 0-1.436-.726-1.134-1.4Z\"/><path fill=\"currentColor\" d=\"M11.794 24.999H20.2l.719 1.594c.305.677-.28 1.406-1.132 1.406h-7.573c-.85 0-1.436-.726-1.134-1.404L11.794 25Z\"/></g><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m12 14.667 4 4 4-4m-4 2.331v-9\"/></g>"},"grid":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(3 2.999)\"><rect width=\"12\" height=\"12\" rx=\"2\" stroke=\"none\"/><rect width=\"10\" height=\"10\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(3 16.999)\"><rect width=\"12\" height=\"12\" rx=\"2\" stroke=\"none\"/><rect width=\"10\" height=\"10\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(17 2.999)\"><rect width=\"12\" height=\"12\" rx=\"2\" stroke=\"none\"/><rect width=\"10\" height=\"10\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(17 16.999)\"><rect width=\"12\" height=\"12\" rx=\"2\" stroke=\"none\"/><rect width=\"10\" height=\"10\" x=\"1\" y=\"1\" rx=\"1\"/></g></g>"},"group":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g transform=\"translate(3 7.001)\"><rect width=\"12\" height=\"12\" rx=\"6\" stroke=\"none\"/><rect width=\"10\" height=\"10\" x=\"1\" y=\"1\" rx=\"5\"/></g><path stroke-linejoin=\"round\" d=\"M3.001 25.999a6 6 0 016-6 6 6 0 016 6M19 25.998a5 5 0 015-5 5 5 0 015 5\"/><g transform=\"translate(19 10.001)\"><rect width=\"10\" height=\"10\" rx=\"5\" stroke=\"none\"/><rect width=\"8\" height=\"8\" x=\"1\" y=\"1\" rx=\"4\"/></g></g>"},"group-add":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M19 8h10m-5-5v10\"/><g transform=\"translate(3 14)\"><rect width=\"10\" height=\"10\" rx=\"5\" stroke=\"none\"/><rect width=\"8\" height=\"8\" x=\"1\" y=\"1\" rx=\"4\"/></g><path stroke-linejoin=\"round\" d=\"M3 30a5 5 0 015-5 5 5 0 015 5\"/><g transform=\"translate(14 17)\"><rect width=\"8\" height=\"8\" rx=\"4\" stroke=\"none\"/><rect width=\"6\" height=\"6\" x=\"1\" y=\"1\" rx=\"3\"/></g><path stroke-linejoin=\"round\" d=\"M14 30a4 4 0 014-4 4 4 0 014 4\"/></g>"},"heart":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M22.184 4a7.837 7.837 0 00-5.527 2.249l-.658.646-.658-.646A7.836 7.836 0 009.815 4a7.836 7.836 0 00-5.527 2.249A7.563 7.563 0 002 11.679a7.561 7.561 0 002.289 5.43l10.645 10.46a1.518 1.518 0 001.066.434 1.523 1.523 0 001.068-.434l10.644-10.457A7.563 7.563 0 0030 11.679a7.561 7.561 0 00-2.289-5.43A7.837 7.837 0 0022.184 4Z\"/><path fill=\"currentColor\" d=\"M9.816 6c-1.56 0-3.026.595-4.125 1.676A5.576 5.576 0 004 11.679c0 1.51.6 2.932 1.69 4.003L16 25.81l10.31-10.128A5.577 5.577 0 0028 11.679c0-1.51-.6-2.932-1.69-4.003A5.847 5.847 0 0022.183 6c-1.56 0-3.025.595-4.124 1.675L16 9.7l-2.06-2.023A5.846 5.846 0 009.816 6m0-2c2.087 0 4.05.799 5.526 2.249l.658.646.658-.646A7.837 7.837 0 0122.184 4c2.088 0 4.051.799 5.527 2.249A7.561 7.561 0 0130 11.679c0 2.05-.813 3.98-2.289 5.43L17.068 27.565A1.523 1.523 0 0116 28c-.4 0-.784-.156-1.066-.434L4.289 17.108A7.561 7.561 0 012 11.678c0-2.05.813-3.98 2.289-5.43A7.836 7.836 0 019.816 4Z\"/></g>"},"heart-active":{"body":"<g fill=\"currentColor\" stroke-miterlimit=\"10\"><path d=\"M16 27a.521.521 0 01-.364-.146L4.99 16.395A6.569 6.569 0 013 11.68c0-1.781.707-3.456 1.99-4.717A6.84 6.84 0 019.816 5a6.84 6.84 0 014.825 1.962l.658.647.701.688.7-.688.659-.647A6.84 6.84 0 0122.184 5c1.824 0 3.538.697 4.826 1.962A6.57 6.57 0 0129 11.68a6.57 6.57 0 01-1.99 4.716L16.367 26.852A.526.526 0 0116 27Z\"/><path d=\"M9.816 6c-1.56 0-3.026.595-4.125 1.676A5.576 5.576 0 004 11.679c0 1.51.6 2.932 1.69 4.003L16 25.81l10.31-10.128A5.577 5.577 0 0028 11.679c0-1.51-.6-2.932-1.69-4.003A5.847 5.847 0 0022.183 6c-1.56 0-3.025.595-4.124 1.676L16 9.699l-2.06-2.023A5.846 5.846 0 009.816 6m0-2c2.087 0 4.05.799 5.526 2.249l.658.646.658-.646A7.837 7.837 0 0122.184 4c2.088 0 4.051.799 5.527 2.249A7.561 7.561 0 0130 11.679c0 2.05-.813 3.98-2.289 5.43L17.068 27.565A1.523 1.523 0 0116 28c-.4 0-.784-.156-1.066-.434L4.289 17.108A7.561 7.561 0 012 11.678c0-2.05.813-3.98 2.289-5.429A7.836 7.836 0 019.816 4Z\"/></g>"},"highlighter":{"body":"<g stroke=\"currentColor\" stroke-linejoin=\"round\"><path fill=\"none\" stroke-width=\"2\" d=\"m8 16.624 7.368 7.377L28 11.337l-7.368-7.336Zm.8 2.378 4.2 4.2-2.8 2.8H7.4l-1.4-1.4v-2.8Z\"/><path fill=\"currentColor\" d=\"m6 25.002-2 2 2 1 2-2Z\"/></g>"},"home":{"body":"<g fill=\"rgba(0,0,0,0)\" stroke-miterlimit=\"10\"><path d=\"M14 28h-4c-.715-.002-1.467-.344-2.062-.939C7.343 26.466 7 25.714 7 25v-9.872H3.693a1.54 1.54 0 01-.486-.063c-.13-.045-.16-.089-.174-.11a.143.143 0 01-.015-.05V14.9c0-.027 0-.099.087-.234.076-.117.183-.233.336-.363l.005-.005.005-.004 11.225-9.831A2.047 2.047 0 0116.002 4c.5 0 .971.166 1.327.465l11.237 9.705.002.002.003.002c.148.126.258.246.337.365.075.119.085.188.086.235a.13.13 0 01-.015.053.202.202 0 01-.079.067c-.102.054-.244.103-.585.106l-2.32-.003-1.003-.001.001 1.002L25 25c0 .714-.342 1.466-.937 2.061-.596.595-1.348.937-2.065.938h-3.997V21h-1l-2-.001h-1v7Z\"/><path fill=\"currentColor\" d=\"M13 27v-7.002l6.001.003v6.998h2.996c.954-.001 2.002-1.048 2.003-1.998l-.008-11.006 2.845.003-10.156-8.772A1.067 1.067 0 0016 5c-.263 0-.502.08-.677.223L5.16 14.127H8v10.87c0 .954 1.048 2 2 2.002h3m2 2h-5c-2.055-.003-3.999-1.946-4-4v-8.872H3.693a2.52 2.52 0 01-.807-.116 1.286 1.286 0 01-.683-.5 1.121 1.121 0 01-.185-.618c.002-.262.082-.513.246-.769.13-.202.298-.388.528-.583l11.232-9.838A3.064 3.064 0 0116 3a3.06 3.06 0 011.978.704l11.242 9.709c.223.19.396.381.528.583.163.255.243.506.246.769a1.12 1.12 0 01-.186.62 1.2 1.2 0 01-.437.391c-.29.154-.605.22-1.052.224l-2.326-.003L26 25c-.001 2.053-1.946 3.996-4 4h-5v-7l-2-.001v7Z\"/></g>"},"hourglass":{"body":"<g stroke=\"currentColor\" stroke-width=\"2\"><path fill=\"none\" stroke-linejoin=\"round\" stroke-miterlimit=\"10\" d=\"M18.999 15.999c0-.572 1.967-1.785 3-2.889a10.728 10.728 0 003-7.222V2.999h-18v2.889a10.723 10.723 0 003 7.222c1.033 1.1 3 2.317 3 2.889s-1.967 1.785-3 2.889a10.724 10.724 0 00-3 7.222v2.889h18V26.11a10.734 10.734 0 00-3-7.222c-1.033-1.105-3-2.315-3-2.889Z\"/><path fill=\"none\" stroke-miterlimit=\"10\" d=\"M24 9.999H8\"/><path fill=\"currentColor\" d=\"M9.999 27.999c0-1.657 2.686-3 6-3s6 1.343 6 3\"/></g>"},"image":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(2.667 5.333)\"><g stroke-miterlimit=\"10\" transform=\"rotate(90 13.333 14)\"><rect width=\"20\" height=\"28\" rx=\"2\" stroke=\"none\"/><rect width=\"18\" height=\"26\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m4.333 19.667 13-13 9 9\"/><circle cx=\"2\" cy=\"2\" r=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" transform=\"translate(4.333 5.666)\"/><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m12.334 11.666 4 4 5-5\"/></g>"},"info-badge":{"body":"<g transform=\"translate(3.2 3.2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" fill=\"currentColor\" transform=\"translate(-1.2 -1.199)\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M12.8 21.801v-10m0-6v-2\"/></g>"},"information":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M16 9v2m0 5v7\"/><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g></g>"},"italic":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M26 5.001H12m8 22H6M20 5l-8 22\"/>"},"key":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M3 29v-5l10.419-10.424a8 8 0 115.026 5.01l-1.218 1.242-.228.174h-2v2h-2l-1 1v2h-2v2l-2 2Z\"/><circle cx=\"2.5\" cy=\"2.5\" r=\"2.5\" fill=\"currentColor\" transform=\"translate(20 7)\"/>"},"language":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-miterlimit=\"10\" d=\"M4 11h24M4 21h24\"/><path d=\"M15 29s-5-6.5-5-13 5-13 5-13m2 26s5-6.5 5-13-5-13-5-13\"/></g>"},"learning-path":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m4 24.167 1.765-6.548a.282.282 0 01.507-.081 3.125 3.125 0 101.223-4.53.28.28 0 01-.4-.322l1.765-6.55 6.59 1.756a.281.281 0 00.324-.4 3.084 3.084 0 01-.216-2.184 3.135 3.135 0 016.084 1.51 3.1 3.1 0 01-1.311 1.888.279.279 0 00.082.5l6.588 1.756L22.14 29Z\"/>"},"light-off":{"body":"<path fill=\"currentColor\" d=\"M16 29a4.968 4.968 0 01-3.277-1.2 3.99 3.99 0 01-1.406-2.875l2-2v1.863a2.006 2.006 0 00.728 1.5 3.084 3.084 0 003.92 0 2.032 2.032 0 00.723-1.5v-3.605l.465-.559a18.957 18.957 0 002.718-4.15 12.184 12.184 0 00.97-3.072l2.158-2.158v.245a13.8 13.8 0 01-1.314 5.826 21.077 21.077 0 01-3 4.6v2.883a4.02 4.02 0 01-1.409 3.01A4.968 4.968 0 0116 29ZM9.052 18.7a16.34 16.34 0 01-.732-1.4 13.785 13.785 0 01-1.319-5.816 8.21 8.21 0 012.653-6.02 9.4 9.4 0 0112.664-.029l-1.416 1.416a7.4 7.4 0 00-9.882.074 6.219 6.219 0 00-2.019 4.559 11.622 11.622 0 001.136 4.977c.122.262.251.521.386.77l-1.469 1.467Z\"/><path fill=\"currentColor\" d=\"M20 23h-6.756l2-2H20v2Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M4 28 28 4\"/>"},"light-on":{"body":"<g fill=\"none\"><g stroke-miterlimit=\"10\"><path d=\"M25 11.489a8.232 8.232 0 00-2.653-6.018A9.255 9.255 0 0016 3.001a9.256 9.256 0 00-6.347 2.47A8.232 8.232 0 007 11.489a13.682 13.682 0 001.321 5.817 21.257 21.257 0 002.994 4.584v2.9a4 4 0 001.407 3.007A4.96 4.96 0 0016 29.001a4.96 4.96 0 003.278-1.2 4 4 0 001.407-3.007v-2.882a21.054 21.054 0 003-4.6A13.746 13.746 0 0025 11.489Z\"/><path fill=\"currentColor\" d=\"M16 5.001c-1.885 0-3.653.685-4.98 1.93C9.717 8.151 9 9.771 9 11.491c0 1.697.37 3.324 1.135 4.974.618 1.332 1.507 2.689 2.718 4.148l.461.556v3.628c0 .753.453 1.262.727 1.502.516.453 1.212.702 1.959.702.747 0 1.443-.25 1.962-.705.27-.237.724-.746.724-1.501v-3.606l.462-.556c1.214-1.458 2.104-2.817 2.722-4.154.761-1.65 1.131-3.281 1.13-4.99 0-1.718-.717-3.337-2.021-4.56C19.653 5.686 17.885 5.001 16 5.001m0-2c2.47 0 4.716.94 6.347 2.47 1.632 1.528 2.654 3.663 2.653 6.018.001 2.125-.498 4.061-1.314 5.828-.77 1.665-1.821 3.179-3 4.595v2.883c0 1.19-.554 2.26-1.408 3.007-.854.75-2.012 1.199-3.278 1.199s-2.424-.45-3.278-1.2c-.854-.745-1.409-1.816-1.408-3.006v-2.904c-1.174-1.416-2.224-2.926-2.993-4.584-.82-1.767-1.322-3.701-1.321-5.818-.001-2.355 1.022-4.49 2.653-6.018 1.631-1.53 3.878-2.47 6.347-2.47Z\"/></g><path stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M12 22.001h8\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m19 13.001-3 4m-3-3.997 3 4v4\"/></g>"},"link":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"M13 17.521a6.344 6.344 0 008.79 1.248 6.17 6.17 0 00.68-.579l3.767-3.71a6.115 6.115 0 00-.154-8.743 6.351 6.351 0 00-8.725 0l-2.16 2.114\"/><path d=\"M19 14.479a6.344 6.344 0 00-8.79-1.248 6.186 6.186 0 00-.68.579l-3.767 3.71a6.115 6.115 0 00.155 8.743 6.351 6.351 0 008.725 0l2.148-2.114\"/></g>"},"lock":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M16 18.999v4\"/><g stroke-miterlimit=\"10\" transform=\"translate(4 11.999)\"><rect width=\"24\" height=\"18\" rx=\"3\" stroke=\"none\"/><rect width=\"22\" height=\"16\" x=\"1\" y=\"1\" rx=\"2\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M11.005 11.999V8.535a4.785 4.785 0 015-4.536h0a4.784 4.784 0 015 4.536v3.464\"/></g>"},"login":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"M20 4h5.333A3.208 3.208 0 0128 6.667v18.666A3.213 3.213 0 0125.333 28H20\"/><path d=\"m16 21.999 6-6-6-6M20 16H4\"/></g>"},"logout":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 4H6.667A3.208 3.208 0 004 6.667v18.666A3.213 3.213 0 006.667 28H12m10-6.001 6-6-6-6M26 16H10\"/>"},"maximaze":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\"><g transform=\"translate(2 6)\"><rect width=\"28\" height=\"20\" rx=\"2\" stroke=\"none\"/><rect width=\"26\" height=\"18\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" d=\"M7 17v4h4m14-6v-4h-4\"/></g>"},"menu":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5 20h18M5 16h14M5 12h22\"/>"},"merge":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(5.333 5.334) translate(-.333 15.666)\"><circle cx=\"4\" cy=\"4\" r=\"4\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(5.333 5.334) translate(13.666 15.666)\"><circle cx=\"4\" cy=\"4\" r=\"4\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3\"/></g><path stroke-linejoin=\"round\" d=\"m20 8.334-4-4-4 4M16 6v11\"/><path stroke-miterlimit=\"10\" d=\"m11 22.001 5-5 5 5\"/></g>"},"minimize":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\"><g transform=\"translate(3 17.001)\"><rect width=\"11\" height=\"9\" rx=\"1\" stroke=\"none\"/><path d=\"M1 1h9v7H1z\"/></g><path stroke-linecap=\"round\" d=\"M28 10.999v-4h-6m0 18.002h6v-4m-18-14H4v4\"/></g>"},"mixed-class":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5.888 21.001a2.717 2.717 0 01-2.889-3v-12a2.717 2.717 0 012.889-3h20.223a2.717 2.717 0 012.889 3v12a2.717 2.717 0 01-2.889 3\"/><path fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M13 30a3 3 0 013-3 3 3 0 013 3\"/><g fill=\"currentColor\" stroke-miterlimit=\"10\"><path d=\"M16 24.999a1.992 1.992 0 01-1.415-.587A1.99 1.99 0 0114 22.999c0-.534.209-1.037.587-1.416A1.99 1.99 0 0116 20.999a1.99 1.99 0 011.415.586c.377.377.585.88.585 1.414 0 .534-.208 1.036-.586 1.414a1.991 1.991 0 01-1.414.586Z\"/><path d=\"M16 21.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415A.987.987 0 0016 24c.341 0 .574-.16.707-.293A.981.981 0 0017 23a.981.981 0 00-.291-.706A.986.986 0 0016 22m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121A2.99 2.99 0 0116 26a2.99 2.99 0 01-2.121-.879A2.99 2.99 0 0113 22.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0116 19.999Z\"/></g><g fill=\"none\"><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M8 17a3 3 0 013-3 3 3 0 013 3\"/><g stroke-miterlimit=\"10\"><path d=\"M8 9.999a3 3 0 11.879 2.121A2.994 2.994 0 018 9.999Z\"/><path fill=\"currentColor\" d=\"M11 8.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415A.987.987 0 0011 11c.341 0 .574-.16.707-.293A.981.981 0 0012 9.999a.981.981 0 00-.291-.706.986.986 0 00-.709-.294m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121a2.99 2.99 0 01-2.121.879 2.99 2.99 0 01-2.121-.879A2.99 2.99 0 018 9.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0111 6.999Z\"/></g></g><g fill=\"none\"><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M18 17a3 3 0 013-3 3 3 0 013 3\"/><g stroke-miterlimit=\"10\"><path d=\"M18 9.999a3 3 0 11.879 2.121A2.994 2.994 0 0118 9.999Z\"/><path fill=\"currentColor\" d=\"M21 8.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415A.987.987 0 0021 11c.341 0 .574-.16.707-.293A.981.981 0 0022 9.999a.981.981 0 00-.291-.706.986.986 0 00-.709-.294m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121a2.99 2.99 0 01-2.121.879 2.99 2.99 0 01-2.121-.879A2.99 2.99 0 0118 9.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0121 6.999Z\"/></g></g>"},"more-horizontal":{"body":"<g fill=\"currentColor\" transform=\"rotate(90 8.9 22.767)\"><circle cx=\"3\" cy=\"3\" r=\"3\" transform=\"translate(-.867 3.666)\"/><circle cx=\"3\" cy=\"3\" r=\"3\" transform=\"translate(-.867 12.666)\"/><circle cx=\"3\" cy=\"3\" r=\"3\" transform=\"translate(-.867 21.667)\"/></g>"},"more-vertical":{"body":"<g fill=\"currentColor\" transform=\"translate(13.333 5.333)\"><circle cx=\"3\" cy=\"3\" r=\"3\" transform=\"translate(-.333 -1.334)\"/><circle cx=\"3\" cy=\"3\" r=\"3\" transform=\"translate(-.333 7.666)\"/><circle cx=\"3\" cy=\"3\" r=\"3\" transform=\"translate(-.333 16.666)\"/></g>"},"news":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path d=\"m9 12-5 .055V25c0 1.879.845 3 2.5 3S9 26.879 9 25V6h19v19a2.94 2.94 0 01-3 3H7\"/><path stroke-linecap=\"round\" d=\"M14 22h5m-5-10h9m-9 5h9\"/></g>"},"no-prerequisites":{"body":"<g transform=\"translate(8.883 9)\"><rect width=\"10\" height=\"5.002\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" rx=\".5\" transform=\"translate(7.117 -1)\"/><rect width=\"10\" height=\"5\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" rx=\".5\" transform=\"translate(7.117 10)\"/><path fill=\"currentColor\" d=\"M-3.765 3.728h1.258V-.285l-1.376.353v-1.365l2.887-.7v5.728H.118v1.272h-3.882Zm-.102 10.798a1.875 1.875 0 011.144-1.939l1.211-.639a.681.681 0 00.361-.719v-.368c0-.359-.146-.522-.451-.522h-.587c-.309 0-.455.157-.455.522v.747h-1.235v-.67c0-1.3.626-1.937 1.758-1.937h.455c1.139 0 1.756.643 1.756 1.914v.37a1.859 1.859 0 01-1.142 1.916l-1.206.641a.629.629 0 00-.372.639v.224H.121v1.3h-3.984Z\"/></g>"},"notes":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M8 9h16M8 15h9\"/><g transform=\"translate(2 2)\"><rect width=\"28\" height=\"28\" rx=\"2\" stroke=\"none\"/><rect width=\"26\" height=\"26\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M4 29c4.543 0 6.857-7 6.857-7L28 28.9 4 29Z\"/></g>"},"number-code":{"body":"<defs><path id=\"svgIDa\" d=\"M2 0v5m2-3.75-4 2.5m4 0-4-2.5\"/></defs><g fill=\"none\" stroke=\"currentColor\"><g stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(8 9)\"><rect width=\"16\" height=\"11\" rx=\"3\" stroke=\"none\"/><rect width=\"14\" height=\"9\" x=\"1\" y=\"1\" rx=\"2\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M12.005 9V6.835c0-1.565 1.791-2.835 4-2.835h0c2.209 0 4 1.269 4 2.835V9\"/></g><use xlink:href=\"#svgIDa\" stroke-linecap=\"round\" transform=\"translate(6 23)\"/><use xlink:href=\"#svgIDa\" stroke-linecap=\"round\" transform=\"translate(14 23)\"/><use xlink:href=\"#svgIDa\" stroke-linecap=\"round\" transform=\"translate(22 23)\"/></g>"},"numbered-list":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M12 22h6m-6-5.999h15M12 10h10\"/><path fill=\"currentColor\" stroke=\"rgba(0,0,0,0)\" d=\"M6.059 11.275h.629V8.981l-.688.2V8.4L7.443 8v3.273H8V12H6.059Zm-.054 5.884a1.1 1.1 0 01.572-1.108l.606-.365c.134-.085.181-.187.181-.411v-.21c0-.205-.073-.3-.226-.3h-.293c-.154 0-.227.089-.227.3v.427h-.62v-.383c0-.744.313-1.107.879-1.107h.227c.569 0 .878.367.878 1.094v.211a1.087 1.087 0 01-.571 1.095l-.6.366a.369.369 0 00-.186.365v.128h1.38v.741h-2ZM8 22.793v.12c0 .727-.3 1.089-.865 1.089h-.269c-.566 0-.866-.361-.866-1.074v-.323h.608v.364c0 .186.076.28.225.28h.326c.148 0 .227-.1.227-.293v-.343c0-.189-.066-.287-.211-.287h-.484v-.692h.449c.143 0 .209-.093.209-.286v-.314c0-.194-.075-.287-.22-.287h-.275c-.143 0-.217.091-.217.274v.335h-.611v-.287c0-.711.3-1.07.864-1.07h.21c.564 0 .863.359.863 1.089v.1c0 .418-.157.707-.459.786.331.062.496.385.496.819Z\"/>"},"on-site":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5.888 21.001a2.717 2.717 0 01-2.889-3v-12a2.717 2.717 0 012.889-3h20.223a2.717 2.717 0 012.889 3v12a2.717 2.717 0 01-2.889 3\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m9 16 4-4h6l4-4\"/><path fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M13 30a3 3 0 013-3 3 3 0 013 3\"/><g fill=\"currentColor\" stroke-miterlimit=\"10\"><path d=\"M16 24.999a1.992 1.992 0 01-1.415-.587A1.99 1.99 0 0114 22.999c0-.534.209-1.037.587-1.416A1.99 1.99 0 0116 20.999a1.99 1.99 0 011.415.586c.377.377.585.88.585 1.414 0 .534-.208 1.036-.586 1.414a1.991 1.991 0 01-1.414.586Z\"/><path d=\"M16 21.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415A.987.987 0 0016 24c.341 0 .574-.16.707-.293A.981.981 0 0017 23a.981.981 0 00-.291-.706A.986.986 0 0016 22m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121A2.99 2.99 0 0116 26a2.99 2.99 0 01-2.121-.879A2.99 2.99 0 0113 22.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0116 19.999Z\"/></g>"},"order-down":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5 7h22M5 13h16M5 19h10M5 25h4\"/>"},"order-up":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5 25h22M5 19h16M5 13h10M5 7h4\"/>"},"paste":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(10.001 3)\"><rect width=\"16\" height=\"22\" rx=\"2\" stroke=\"none\"/><rect width=\"14\" height=\"20\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M19 28h-9a2.665 2.665 0 01-3-3V10\"/><path stroke-linecap=\"round\" d=\"M15 10h6m-6 5h6\"/></g>"},"pausa":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M12 6v20m8-20v20\"/>"},"pdf":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M29 10H16m13 6H16m13 7H3\"/><path stroke-linejoin=\"round\" d=\"M3 9h8v8H3z\"/></g>"},"phone":{"body":"<g transform=\"translate(8.666 2.667)\"><g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(-1.665 -.666)\"><rect width=\"18\" height=\"28\" rx=\"2.999\" stroke=\"none\"/><rect width=\"16\" height=\"26\" x=\"1\" y=\"1\" rx=\"1.999\"/></g><circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"currentColor\" transform=\"translate(5.334 19.334)\"/><rect width=\"6\" height=\"3\" fill=\"currentColor\" rx=\"1\" transform=\"translate(4.334 .334)\"/></g>"},"pin":{"body":"<g fill=\"none\"><g stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(12 7.999)\"><circle cx=\"4\" cy=\"4\" r=\"4\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3\"/></g><path d=\"M16 2.001a9.9 9.9 0 0110 9.8c0 8.412-10 18.2-10 18.2s-10-9.793-10-18.2a9.9 9.9 0 0110-9.8Z\"/><path fill=\"currentColor\" d=\"M16 4.001c-4.411 0-8 3.5-8 7.8 0 3.005 1.587 6.822 4.59 11.038A49.357 49.357 0 0016 27.086a49.281 49.281 0 003.373-4.193C22.4 18.657 24 14.82 24 11.8 24 7.5 20.411 4 16 4m0-2c5.523 0 10 4.388 10 9.8C26 20.212 16 30 16 30S6 20.207 6 11.8C6 6.388 10.477 2 16 2Z\"/></g>"},"pin-map":{"body":"<g fill=\"currentColor\"><path d=\"M16 28.56a51.066 51.066 0 01-4.186-5.088c-1.413-1.977-2.536-3.89-3.338-5.688-.979-2.193-1.475-4.206-1.475-5.982 0-4.852 4.037-8.8 8.999-8.8 4.961 0 8.998 3.948 8.998 8.8 0 1.777-.496 3.79-1.475 5.984-.803 1.798-1.925 3.711-3.338 5.688A51.036 51.036 0 0116 28.56ZM16 7a5.006 5.006 0 00-4.999 5c0 2.758 2.243 5 5 5 2.756 0 5-2.242 5-5 0-2.756-2.244-5-5-5Z\"/><path d=\"M16 27.08a49.525 49.525 0 003.372-4.188c1.373-1.922 2.463-3.777 3.237-5.513.922-2.065 1.389-3.941 1.389-5.577 0-4.3-3.588-7.8-7.998-7.8s-8 3.5-8 7.8c0 1.635.468 3.51 1.39 5.575.774 1.736 1.864 3.591 3.238 5.514A49.566 49.566 0 0016 27.08M16 6c3.309 0 6 2.691 6 6 0 3.308-2.691 6-6 6a6.007 6.007 0 01-5.999-6c0-3.309 2.692-6 6-6M16 30c-.026-.026-2.547-2.514-5-5.947-1.451-2.03-2.607-4.003-3.437-5.861-1.037-2.323-1.562-4.473-1.562-6.39 0-5.403 4.485-9.8 9.999-9.8 5.513 0 9.998 4.397 9.998 9.8 0 1.919-.526 4.07-1.562 6.392-.83 1.858-1.986 3.83-3.437 5.861-2.451 3.43-4.973 5.92-4.998 5.944H16Zm0-22a4.004 4.004 0 00-3.999 4c0 2.206 1.794 4 4 4 2.205 0 4-1.794 4-4 0-2.205-1.795-4-4-4Z\"/></g>"},"pizza":{"body":"<path fill=\"rgba(0,0,0,0)\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M20.349 3 29 29 3.05 20.333S1.182 3 20.349 3Z\"/><path fill=\"rgba(0,0,0,0)\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M6.093 21a15.119 15.119 0 01.023-3.338 14.759 14.759 0 011.449-3.019 15.007 15.007 0 011.5-2.994 15.465 15.465 0 012.637-2.1 15.242 15.242 0 012.671-2.061 15.667 15.667 0 013.306-.77A15.224 15.224 0 0121 6\"/><path fill=\"currentColor\" d=\"M18.546 10.324a2.356 2.356 0 00-3.223 3.225.784.784 0 00.581.38.8.8 0 00.674-.23l.18-.154L17.772 15l2.225-2.229-1.455-1.041.154-.158a.806.806 0 00.23-.675.783.783 0 00-.38-.58Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M9.335 22.135s-.3-4.227 4.7-2.865S16.856 25 16.856 25m10.154-2.117s-1.859 2.126-3.428-.727a2.637 2.637 0 011.455-3.947\"/>"},"play":{"body":"<g fill=\"none\"><path d=\"M26.753 14.241a2 2 0 010 3.517L8.953 27.4A2 2 0 016 25.642V6.358A2 2 0 018.953 4.6Z\"/><path fill=\"currentColor\" d=\"M25.8 16 8 6.358v19.284L25.8 16m2 0c0 .69-.348 1.38-1.047 1.759L8.953 27.4C7.62 28.123 6 27.158 6 25.642V6.358c0-1.516 1.62-2.48 2.953-1.759l17.8 9.642A1.98 1.98 0 0127.801 16Z\"/></g>"},"plug-in":{"body":"<g fill=\"none\"><path d=\"M4 26.002a2 2 0 01-2-2v-12a2 2 0 012-2h1v-2a2 2 0 012-2h5a2 2 0 012 2v2h4v-2a2 2 0 012-2h5a2 2 0 012 2v2h1a2 2 0 012 2v12a2 2 0 01-2 2Z\"/><path fill=\"currentColor\" d=\"M28 24.002v-12h-3v-4h-5v4h-8v-4H7v4H4.003v12H28m0 2H4.003a2 2 0 01-2-2v-12a2 2 0 012-2H5v-2a2 2 0 012-2h5a2 2 0 012 2v2h4v-2a2 2 0 012-2h5a2 2 0 012 2v2h1a2 2 0 012 2v12a2 2 0 01-2 2Z\"/></g>"},"pointer":{"body":"<g stroke=\"currentColor\"><g fill=\"none\" stroke-width=\"2\" transform=\"translate(4 3.999)\"><circle cx=\"12\" cy=\"12\" r=\"12\" stroke=\"none\"/><circle cx=\"12\" cy=\"12\" r=\"11\"/></g><g transform=\"translate(12 11.999)\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"currentColor\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3.5\" fill=\"none\"/></g></g>"},"printer":{"body":"<g fill=\"none\"><g stroke-miterlimit=\"10\"><path d=\"M28 8.999H4a1.836 1.836 0 00-2 2v11a1.812 1.812 0 002 2h3v3a1.843 1.843 0 002 2h14a1.843 1.843 0 002-2v-3h3a1.836 1.836 0 002-2v-11a1.836 1.836 0 00-2-2Z\"/><path fill=\"currentColor\" d=\"M4 11v11h5v5h14v-5h5V11H4m0-2h24c1.243 0 2 .734 2 2v11c0 1.265-.757 2-2 2h-3v3c0 1.257-.764 2-2 2H9c-1.236 0-2-.743-2-2v-3H4c-1.299-.004-2-.735-2-2V11c0-1.266.757-2 2-2Z\"/></g><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M21 15h3\"/><g stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linejoin=\"round\" d=\"M21.001 5.998h-2v-2Z\"/><path stroke-miterlimit=\"10\" d=\"M11 10V6a1.8 1.8 0 012-2h6l2 2v4\"/></g><g stroke-miterlimit=\"10\"><path d=\"M7 20h18v7a2.3 2.3 0 01-2.25 2H9.25A2.3 2.3 0 017 27Z\"/><path fill=\"currentColor\" d=\"M9 22v4.852c.067.07.186.143.25.148h13.497a.537.537 0 00.253-.15V22H9m-2-2h18v7c0 .997-1.125 2-2.25 2H9.25C8.125 29 7 28.003 7 27v-7Z\"/></g></g>"},"profile":{"body":"<g stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(8 5.334)\"><path fill=\"rgba(0,0,0,0)\" d=\"M2.2 10.588a4 4 0 010-7.84 7.005 7.005 0 0111.6 0 4 4 0 010 7.84 7 7 0 01-11.6 0Z\"/><path fill=\"none\" stroke-linejoin=\"round\" d=\"M-1 24.666a9 9 0 019-9 9 9 0 019 9\"/><rect width=\"8\" height=\"8\" fill=\"none\" rx=\"4\" transform=\"translate(-1 2.666)\"/><rect width=\"8\" height=\"8\" fill=\"none\" rx=\"4\" transform=\"translate(9 2.666)\"/></g>"},"profile-add":{"body":"<g stroke=\"currentColor\" stroke-width=\"2\"><path fill=\"none\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M19 8h10m-5-5v10\"/><g transform=\"translate(4 5.332)\"><path fill=\"rgba(0,0,0,0)\" d=\"M1.624 11.334a3 3 0 010-5.328 6 6 0 0110.761 0 3 3 0 010 5.328 6 6 0 01-10.752 0Z\"/><path fill=\"none\" stroke-linejoin=\"round\" d=\"M-1 24.666a8 8 0 018-8 8 8 0 018 8\"/><rect width=\"6\" height=\"6\" fill=\"rgba(0,0,0,0)\" rx=\"3\" transform=\"translate(0 5.668)\"/><rect width=\"6\" height=\"6\" fill=\"rgba(0,0,0,0)\" rx=\"3\" transform=\"translate(8 5.668)\"/></g></g>"},"push-pin-off":{"body":"<path fill=\"currentColor\" d=\"M15.982 29.004a2.22 2.22 0 01-1.7-.791 11.534 11.534 0 01-2.264-3.984l1.664-1.664c.011.074.021.146.036.23a8.977 8.977 0 002.095 4.131.216.216 0 00.173.076.239.239 0 00.165-.066l10.788-10.789a.22.22 0 00.066-.172.228.228 0 00-.08-.164 8.88 8.88 0 00-4.362-2.127l1.665-1.664a11.609 11.609 0 013.984 2.26 2.23 2.23 0 01.138 3.283L17.566 28.352a2.239 2.239 0 01-1.584.652Zm-5.938-11.289L6.255 13.93a.215.215 0 00-.155-.066l-1.509-.008a1.6 1.6 0 01-1.123-2.725l7.655-7.66a1.6 1.6 0 012.729 1.123l.009 1.508a.219.219 0 00.066.16l3.786 3.785-1.414 1.414-3.787-3.783a2.244 2.244 0 01-.652-1.566v-.541l-6.292 6.293h.545a2.217 2.217 0 011.563.652l3.788 3.787-1.414 1.412Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"m23 23 5 5\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M4 28 28 4\"/>"},"push-pin-on":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><path d=\"M27.567 15.045c-3.424-2.88-6.319-2.55-7.566-2.2a1.227 1.227 0 01-1.209-.309l-5.573-5.571a1.224 1.224 0 01-.359-.86l-.007-1.509a.6.6 0 00-1.02-.418l-7.657 7.656a.6.6 0 00.418 1.02l1.509.007a1.224 1.224 0 01.86.359l5.572 5.572a1.227 1.227 0 01.309 1.209c-.352 1.248-.682 4.142 2.2 7.566a1.235 1.235 0 001.811.074l10.786-10.785a1.235 1.235 0 00-.074-1.811Z\"/><path stroke-linecap=\"round\" d=\"m23 23 5 5\"/></g>"},"qrcode":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2.001)\"><rect width=\"9\" height=\"9\" rx=\"2\" stroke=\"none\"/><rect width=\"7\" height=\"7\" x=\"1\" y=\"1\" rx=\"1\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(2 20.999)\"><rect width=\"9\" height=\"9\" rx=\"2\" stroke=\"none\"/><rect width=\"7\" height=\"7\" x=\"1\" y=\"1\" rx=\"1\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(21 2.001)\"><rect width=\"9\" height=\"9\" rx=\"2\" stroke=\"none\"/><rect width=\"7\" height=\"7\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M3 16h12v3m1-15.999v7m13 4v8m-13.999 4.333V29h5v-8M20 16h5v3m1 10h3v-3\"/></g>"},"question-badge":{"body":"<g transform=\"translate(2.667 2.667)\"><circle cx=\"14\" cy=\"14\" r=\"14\" fill=\"currentColor\" transform=\"translate(-.667 -.666)\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8.333 7.531a5.2 5.2 0 016.557-2.916 4.5 4.5 0 013.442 4.859c0 3.236-5 4.859-5 4.859\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M13.333 22.334v-2\"/></g>"},"radio":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(2 2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g>"},"redo":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M26 12H11c-4.37 0-7 2.68-7 5.984V18c0 3.305 2.629 6 7 6h5.1\"/><path stroke-linejoin=\"round\" d=\"m21.999 6 6 6-6 6\"/></g>"},"relations":{"body":"<g fill=\"none\"><g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(4.267 7.534)\"><path d=\"m2.733 3.467 3 3\"/><circle cx=\"2\" cy=\"2\" r=\"2\" transform=\"translate(-1.267 -.533)\"/></g><g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(14.934 5.334)\"><path d=\"M1.066 2.666v4\"/><circle cx=\"2\" cy=\"2\" r=\"2\" transform=\"translate(-.934 -1.334)\"/></g><g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(21.4 6.534)\"><path d=\"m3.6 4.467-3 3\"/><circle cx=\"2\" cy=\"2\" r=\"2\" transform=\"translate(3.6 .467)\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M12 29a4 4 0 014-4 4 4 0 014 4\"/><g stroke-miterlimit=\"10\"><path d=\"M12 19.999a4 4 0 111.172 2.828A3.992 3.992 0 0112 19.999Z\"/><path fill=\"currentColor\" d=\"M16 17.999a1.996 1.996 0 00-2 2c0 .532.208 1.034.586 1.414.38.378.882.586 1.414.586.533 0 1.035-.209 1.414-.586.378-.378.586-.88.586-1.414 0-.535-.208-1.038-.584-1.414A1.993 1.993 0 0016 18m0-2c1.106 0 2.102.446 2.828 1.17A3.984 3.984 0 0120 19.999a3.98 3.98 0 01-1.172 2.828A3.987 3.987 0 0116 23.999a3.988 3.988 0 01-2.828-1.172A3.988 3.988 0 0112 19.999c0-1.106.448-2.104 1.172-2.83A3.986 3.986 0 0116 15.999Z\"/></g></g>"},"reload":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M23 22.791A9.7 9.7 0 0115.804 26a9.9 9.9 0 01-9.8-10M9 8.6A10.225 10.225 0 0115.837 6 10.083 10.083 0 0126 16\"/><path stroke-linejoin=\"round\" d=\"m9 17-3-3-3 3m20-1.999 3 3 3-3\"/></g>"},"remove":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M4 16h24\"/>"},"remove-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(2 2.001)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-linecap=\"round\" d=\"M11 16.001h10\"/></g>"},"reorder":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M4 18h24M4 14h24\"/><path stroke-linejoin=\"round\" d=\"m20 8-4-4-4 4m0 16 4 4 4-4\"/></g>"},"repeat":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"m22.999 4.999 4 4-4 4M9 27l-4-4 4-4\"/><path d=\"M5 14.999v-3a3.177 3.177 0 013.331-3H25m2 8v3a3.177 3.177 0 01-3.331 3H7\"/></g>"},"repository":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m24 16.001-3-3-3 3m2.999-1v6\"/><path d=\"M4 26a2 2 0 01-2-2V7.407a2.53 2.53 0 012.287-2.401H13.4L15.7 8H28a2 2 0 012 2v14a2 2 0 01-2 2Z\"/><path fill=\"currentColor\" d=\"M28 24V9.999H14.71l-2.3-2.997h-.127l-7.946.004c-.131.053-.322.279-.337.405V24h24m0 2H4a2 2 0 01-2-2.001V7.407c0-1.2 1.145-2.393 2.287-2.4l7.998-.005 1.114.004L15.696 8H28a2 2 0 012 2v13.999a2 2 0 01-2 2Z\"/></g>"},"request-form":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(4 4)\"><path d=\"M18 14.001a5.461 5.461 0 01-4 4m0-12a5.459 5.459 0 014 4m-12 0a5.46 5.46 0 014-4m0 12a5.454 5.454 0 01-4-4m16.994 1.142c-.814 5.444-3.307 7.016-7.856 7.856m0-22c4.456.92 7.018 3.384 7.856 7.856m-22 0C1.914 4.404 4.382 1.839 8.85.999m0 22c-4.55-.846-7-3.308-7.856-7.856\"/><rect width=\"6\" height=\"8\" rx=\"1.333\" transform=\"translate(9 17)\"/><rect width=\"8\" height=\"6\" rx=\"1.333\" transform=\"translate(17 9)\"/><rect width=\"8\" height=\"6\" rx=\"1.333\" transform=\"translate(-1 9)\"/><rect width=\"6\" height=\"8\" rx=\"1.333\" transform=\"translate(9 -1)\"/></g>"},"resize-100":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M29 11V5h-6m0 22.001h6v-6M9 4.999H3v6m-.001 10.003v6h6\"/><path fill=\"currentColor\" d=\"M6.999 21h6v-2h-2v-8l-4 1v2l2-.65v5.668l-2-.018Zm11.998 0h6v-2h-2v-8l-4 1v2l2-.65v5.668l-2-.018ZM15 14.999h2v-2h-2Zm0 4h2v-2h-2Z\"/>"},"resize-height":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-linejoin=\"round\" d=\"m20 11.001-4-4-4 4m0 10.003 4 4 4-4\"/><path d=\"M5 3h22M5 29h22\"/></g>"},"resize-width":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-linejoin=\"round\" d=\"m21 20.001 4-4-4-4M10.999 12l-4 4 4 4\"/><path d=\"M29 5v22M3 5v22\"/></g>"},"search":{"body":"<g stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><path fill=\"currentColor\" stroke-linecap=\"round\" d=\"m18 18 10 10\"/><g fill=\"none\" transform=\"translate(3 3)\"><circle cx=\"9\" cy=\"9\" r=\"9\" stroke=\"none\"/><circle cx=\"9\" cy=\"9\" r=\"8\"/></g></g>"},"sequential-prerequisites":{"body":"<g transform=\"translate(4.333 5.333)\"><rect width=\"10\" height=\"5\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" rx=\".5\" transform=\"translate(11.667 .666)\"/><path fill=\"currentColor\" d=\"M.785 5.394h1.258V1.381l-1.376.353V.369l2.887-.7v5.728h1.114v1.272H.786Zm-.101 14.8a1.875 1.875 0 011.144-1.939l1.211-.639a.681.681 0 00.361-.719v-.368c0-.359-.146-.522-.451-.522h-.587c-.309 0-.455.156-.455.522v.747H.672v-.67c0-1.3.626-1.937 1.758-1.937h.455c1.139 0 1.756.643 1.756 1.914v.37a1.859 1.859 0 01-1.142 1.916l-1.206.641a.629.629 0 00-.372.639v.224h2.751v1.3H.688Z\"/><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(11.667 13.667)\"><rect width=\"10\" height=\"8\" rx=\"2\" stroke=\"none\"/><rect width=\"8\" height=\"6\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M14.672 13.668v-1.3a1.869 1.869 0 012-1.7h0a1.869 1.869 0 012 1.7v1.3\"/></g></g>"},"settings":{"body":"<g fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\" transform=\"translate(4 4.001)\"><path d=\"M10.478 24h3.044l.372-2.988.516-.142a9.112 9.112 0 002.153-.892l.467-.269 2.378 1.856 2.156-2.156-1.856-2.378.271-.468a9.139 9.139 0 00.892-2.153l.142-.515L24 13.522v-3.045l-2.987-.371-.142-.516a9.123 9.123 0 00-.893-2.155l-.269-.467 1.856-2.378-2.157-2.155-2.378 1.857-.467-.271a9.131 9.131 0 00-2.153-.892l-.516-.145-.372-2.987h-3.044l-.372 2.987-.516.142a9.131 9.131 0 00-2.153.892l-.467.271-2.378-1.854-2.156 2.156 1.856 2.378-.269.468a9.106 9.106 0 00-.893 2.152l-.142.517L0 10.477v3.045l2.987.372.142.516a9.106 9.106 0 00.893 2.152l.269.468-1.855 2.378 2.156 2.156 2.378-1.856.467.269a9.131 9.131 0 002.153.892l.516.142Z\"/><path fill=\"currentColor\" d=\"m13.522 24 .372-2.988.516-.142a9.112 9.112 0 002.153-.892l.467-.27 2.378 1.856 2.156-2.156-1.856-2.378.27-.468a9.14 9.14 0 00.893-2.153l.142-.515L24 13.522v-3.045l-2.987-.37-.142-.517a9.123 9.123 0 00-.893-2.154l-.27-.467 1.856-2.378-2.156-2.156-2.378 1.857-.467-.27a9.13 9.13 0 00-2.153-.893l-.516-.142L13.522 0h-3.044l-.372 2.987-.516.142a9.13 9.13 0 00-2.153.892l-.467.27-2.378-1.856L2.436 4.59l1.856 2.378-.27.468a9.106 9.106 0 00-.893 2.152l-.142.517L0 10.477v3.045l2.987.372.142.516c.21.768.511 1.492.893 2.152l.27.468-1.856 2.378 2.156 2.156 2.378-1.856.467.27a9.13 9.13 0 002.153.892l.516.142.372 2.988h3.044m0 2h-3.044a2 2 0 01-1.985-1.753l-.21-1.691a11.24 11.24 0 01-1.119-.463l-1.342 1.048a2 2 0 01-2.645-.163l-2.155-2.155a2 2 0 01-.163-2.645l1.048-1.342a11.113 11.113 0 01-.464-1.119l-1.69-.21A2 2 0 01-2 13.521v-3.045A2 2 0 01-.246 8.492l1.689-.21c.135-.383.29-.757.464-1.119L.859 5.821a2 2 0 01.163-2.645l2.155-2.155A2 2 0 015.822.858l1.342 1.048c.362-.174.735-.328 1.119-.463l.21-1.69A2 2 0 0110.479-2h3.044a2 2 0 011.984 1.753l.211 1.69c.384.135.758.29 1.12.463l1.34-1.048a2 2 0 012.646.163l2.155 2.155a2 2 0 01.163 2.645l-1.047 1.342c.173.362.328.736.463 1.12l1.69.21A2 2 0 0126 10.476v3.045a2 2 0 01-1.753 1.984l-1.69.211c-.135.383-.29.757-.463 1.119l1.047 1.342a2 2 0 01-.163 2.645l-2.155 2.155a2 2 0 01-2.645.163l-1.342-1.047c-.36.172-.735.327-1.119.462l-.21 1.691A2 2 0 0113.522 26Z\"/><circle cx=\"5\" cy=\"5\" r=\"5\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(7 6.999)\"/></g>"},"share":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(4.333 4) translate(-.333 8)\"><circle cx=\"4\" cy=\"4\" r=\"4\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(4.333 4) translate(14.667 17)\"><circle cx=\"4\" cy=\"4\" r=\"4\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(4.333 4) translate(14.667 -1)\"><circle cx=\"4\" cy=\"4\" r=\"4\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m20 24-9-7m9-8-9 6\"/></g>"},"sketch":{"body":"<g fill=\"none\"><path d=\"M21.309 4.002a2 2 0 011.759 1.047l5.417 10a2 2 0 010 1.905l-5.417 10a2 2 0 01-1.759 1.048H10.691a2 2 0 01-1.759-1.047l-5.417-10a2 2 0 010-1.905l5.417-10a2 2 0 011.759-1.048Z\"/><path fill=\"currentColor\" d=\"m10.691 6.002-5.416 10 5.416 10H21.31l5.416-10-5.416-10H10.69m0-2h10.62a2 2 0 011.758 1.047l5.417 10a2 2 0 010 1.906l-5.417 10a2 2 0 01-1.758 1.047H10.69a2 2 0 01-1.758-1.047l-5.417-10a2 2 0 010-1.906l5.417-10a2 2 0 011.758-1.047Z\"/></g>"},"skills":{"body":"<g transform=\"translate(2.667 1.666)\"><rect width=\"6\" height=\"6\" fill=\"currentColor\" rx=\"1\" transform=\"translate(1.333 6.334)\"/><path fill=\"currentColor\" d=\"M21.465 6.853a1 1 0 011.736 0l2.277 3.981a1 1 0 01-.868 1.5h-4.554a1 1 0 01-.868-1.5Zm-8.739-5.055a1 1 0 011.214 0l1.839 1.4a1 1 0 01.348 1.09l-.722 2.346a1 1 0 01-.955.7h-2.233a1 1 0 01-.955-.7l-.723-2.342a1 1 0 01.348-1.09Z\"/><g fill=\"none\"><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M9.333 27.334a4 4 0 014-4 4 4 0 014 4\"/><g stroke-miterlimit=\"10\"><path d=\"M9.333 18.333a4 4 0 111.172 2.828 3.992 3.992 0 01-1.172-2.828Z\"/><path fill=\"currentColor\" d=\"M13.333 16.333a1.996 1.996 0 00-2 2c0 .532.208 1.034.586 1.414.38.378.882.586 1.414.586.533 0 1.035-.209 1.414-.586.378-.378.586-.88.586-1.414 0-.535-.208-1.038-.584-1.414a1.993 1.993 0 00-1.416-.586m0-2c1.106 0 2.102.446 2.828 1.17a3.984 3.984 0 011.172 2.83 3.98 3.98 0 01-1.172 2.828 3.987 3.987 0 01-2.828 1.172 3.988 3.988 0 01-2.828-1.172 3.988 3.988 0 01-1.172-2.828c0-1.106.448-2.104 1.172-2.83a3.986 3.986 0 012.828-1.17Z\"/></g></g></g>"},"skip-back":{"body":"<g fill=\"none\"><path d=\"M6.186 18.752a2 2 0 010-3.5l13.85-7.617A2 2 0 0123 9.383v15.234a2 2 0 01-2.964 1.753Z\"/><path fill=\"currentColor\" d=\"M7.15 17 21 24.617V9.383L7.15 17m-2 0a1.98 1.98 0 011.036-1.752l13.85-7.618C21.37 6.897 23 7.861 23 9.383v15.234c0 1.522-1.63 2.486-2.964 1.753l-13.85-7.618A1.98 1.98 0 015.15 17Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M26 8v18\"/></g>"},"skip-forward":{"body":"<g fill=\"none\"><path d=\"M25.814 14.248a2 2 0 010 3.5l-13.85 7.617A2 2 0 019 23.617V8.383a2 2 0 012.964-1.753Z\"/><path fill=\"currentColor\" d=\"M24.85 16 11 8.383v15.234L24.85 16m2 0a1.98 1.98 0 01-1.036 1.752l-13.85 7.618C10.631 26.103 9 25.139 9 23.617V8.383c0-1.522 1.63-2.486 2.964-1.753l13.85 7.618A1.98 1.98 0 0126.85 16Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M6 6.999v18\"/></g>"},"sms":{"body":"<g fill=\"none\"><g stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(2 6.001)\"><rect width=\"28\" height=\"18\" rx=\"3\" stroke=\"none\"/><rect width=\"26\" height=\"16\" x=\"1\" y=\"1\" rx=\"2\"/></g><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 13h16M8 17.001h10\"/><path d=\"M8 23h5l-5 5Z\"/><path fill=\"currentColor\" d=\"M8 23h5l-5 5v-5Z\"/></g>"},"sso-access":{"body":"<g fill=\"none\"><path d=\"M24 24H8.757a3.207 3.207 0 01-.322-.017c-.144.011-.29.017-.437.017a6 6 0 01-1.951-11.676 5 5 0 016.516-4.073A8 8 0 0126.997 12.8a6 6 0 01-2.692 11.192c-.073 0-.146.008-.221.008Z\"/><path fill=\"currentColor\" d=\"m24.083 21.999.088-.003.033-.002a3.995 3.995 0 003.798-3.993 4.018 4.018 0 00-2.006-3.47l-.972-.561-.027-1.121a5.968 5.968 0 00-1.807-4.143A5.96 5.96 0 0019 6.998a5.95 5.95 0 00-4.83 2.44l-.857 1.163-1.374-.45a3.005 3.005 0 00-3.91 2.44l-.166 1.222-1.165.4a4.003 4.003 0 001.587 7.774l.176-.012.175.017c.042.005.083.007.12.007h15.327m0 2H8.757c-.109 0-.216-.006-.322-.017A5.998 5.998 0 012 18.001a6.007 6.007 0 014.047-5.678 4.998 4.998 0 016.516-4.073A7.987 7.987 0 0119 4.998a8 8 0 017.996 7.8A6.002 6.002 0 0124.083 24Z\"/></g><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M16 14v5\"/><g transform=\"translate(14 13)\"><circle cx=\"2\" cy=\"2\" r=\"2\" stroke=\"none\"/><circle cx=\"2\" cy=\"2\" r=\"1\"/></g></g>"},"star":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m16 3 3.069 9.931H29l-8.034 6.138L24.034 29 16 22.862 7.966 29l3.069-9.931L3 12.931h9.931Z\"/>"},"star-active":{"body":"<path fill=\"currentColor\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m16 3 3.069 9.931H29l-8.034 6.138L24.034 29 16 22.862 7.966 29l3.069-9.931L3 12.931h9.931Z\"/>"},"success":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" transform=\"translate(3.001 4.005)\"><rect width=\"6\" height=\"14\" rx=\"2.005\" transform=\"translate(.999 9.995)\"/><path stroke-linecap=\"round\" d=\"M23.359 12.575h-1.226l.1-.678h1.13a1.678 1.678 0 000-3.354h-2.719l-3.951-.083s.855-6.084-2.775-8.125C11.588-.842 11.154 1.4 11.154 1.4v4.237L9.769 7.049s-2.771 2.62-2.771 4.264v9.857a2.622 2.622 0 002.772 2.82h11.333a1.678 1.678 0 000-3.354h-.111l.1-.679h1.143a1.677 1.677 0 000-3.353h-.668l.1-.679h1.7a1.678 1.678 0 000-3.354Z\"/></g>"},"sun":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(8 8)\"><circle cx=\"8\" cy=\"8\" r=\"8\" stroke=\"none\"/><circle cx=\"8\" cy=\"8\" r=\"7\"/></g><path stroke-linecap=\"round\" d=\"M16 5V3m0 26v-2m11-11h2M3 16h2m20 9 1 1M6 6l1 1m18 0 1-1M6 26l1-1\"/></g>"},"sunrise":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M8 23a8 8 0 018-8 8 8 0 018 8Z\"/><path fill=\"currentColor\" d=\"M21.658 21A6.01 6.01 0 0016 17a6.01 6.01 0 00-5.657 4h11.315m2.343 2H8a8 8 0 018-8 8 8 0 018 8Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M16 11.999v-3m-13 13h26m-23-10 2 2m16 0 2-2\"/></g>"},"support":{"body":"<g stroke=\"currentColor\" stroke-linejoin=\"round\" transform=\"translate(5.333 4.335)\"><path fill=\"none\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M3.667 6.666c0-3.314 3.134-6 7-6s7 2.686 7 6\"/><g fill=\"none\" stroke-width=\"2\" transform=\"translate(-.333 6.666)\"><rect width=\"8\" height=\"10\" rx=\"2.004\" stroke=\"none\"/><rect width=\"6\" height=\"8\" x=\"1\" y=\"1\" rx=\"1.004\"/></g><g fill=\"none\" stroke-width=\"2\" transform=\"translate(13.667 6.666)\"><rect width=\"8\" height=\"10\" rx=\"2.004\" stroke=\"none\"/><rect width=\"6\" height=\"8\" x=\"1\" y=\"1\" rx=\"1.004\"/></g><path fill=\"none\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M17.667 15.666v2.4a3.5 3.5 0 01-3.363 3.6h-.633\"/><circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"currentColor\" stroke-linecap=\"round\" transform=\"translate(9.667 19.666)\"/></g>"},"survey":{"body":"<g fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M27 3.193H12c-1.5 0-2 .5-2 2v8c0 1.5.5 2 2 2h2l.465 2.389c.261 1 1.242-.071 1.535-.389l2-2h9c1.5 0 2-.5 2-2v-8c0-1.503-.5-2-2-2Z\"/><path fill=\"currentColor\" d=\"M12 5.193v8h2a2 2 0 011.873 1.299l.713-.713A2 2 0 0118 13.193h9v-8H12m0-2h15c1.496 0 2 .497 2 2v8c0 1.5-.504 2-2 2h-9l-2 2c-.293.318-1.274 1.393-1.535.39L14 15.192h-2c-1.5 0-2-.504-2-2v-8c0-1.504.5-2 2-2Z\"/></g><path fill=\"currentColor\" d=\"M17.982 8.112a.185.185 0 00-.073-.079.263.263 0 00-.1-.033l-.632-.1a.3.3 0 01-.127-.06.317.317 0 01-.094-.108l-.282-.6a.277.277 0 00-.068-.093.168.168 0 00-.11-.043.168.168 0 00-.11.043.277.277 0 00-.068.093l-.282.6a.317.317 0 01-.094.108.3.3 0 01-.127.06l-.632.1a.243.243 0 00-.125.054.178.178 0 00-.045.059.175.175 0 00-.017.075.206.206 0 00.023.092.292.292 0 00.054.074l.457.466a.308.308 0 01.061.1.391.391 0 01.025.132.217.217 0 010 .035l-.108.657a.322.322 0 000 .055.215.215 0 00.043.137.162.162 0 00.06.046.168.168 0 00.07.015.248.248 0 00.119-.034l.565-.31a.3.3 0 01.137-.03.3.3 0 01.137.03l.565.31a.247.247 0 00.119.034.169.169 0 00.071-.015.169.169 0 00.08-.078.233.233 0 00.023-.1.336.336 0 000-.055l-.108-.658a.214.214 0 010-.035.393.393 0 01.026-.132.3.3 0 01.062-.1l.457-.466a.293.293 0 00.054-.074.206.206 0 00.023-.092.178.178 0 00-.029-.08Zm6 0a.185.185 0 00-.073-.079.263.263 0 00-.1-.033l-.632-.1a.3.3 0 01-.127-.06.317.317 0 01-.094-.108l-.282-.6a.277.277 0 00-.068-.093.168.168 0 00-.11-.043.168.168 0 00-.11.043.277.277 0 00-.068.093l-.282.6a.317.317 0 01-.094.108.3.3 0 01-.127.06l-.632.1a.243.243 0 00-.125.054.178.178 0 00-.045.059.175.175 0 00-.017.075.206.206 0 00.023.092.292.292 0 00.054.074l.457.466a.308.308 0 01.061.1.391.391 0 01.025.132.217.217 0 010 .035l-.108.657a.322.322 0 000 .055.215.215 0 00.043.137.162.162 0 00.06.046.168.168 0 00.07.015.248.248 0 00.119-.034l.565-.31a.3.3 0 01.137-.03.3.3 0 01.137.03l.565.31a.247.247 0 00.119.034.169.169 0 00.071-.015.169.169 0 00.08-.078.233.233 0 00.023-.1.336.336 0 000-.055l-.108-.658a.214.214 0 010-.035.393.393 0 01.026-.132.3.3 0 01.062-.1l.457-.466a.293.293 0 00.054-.074.206.206 0 00.023-.092.178.178 0 00-.029-.08Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4.001 30a4 4 0 014-4 4 4 0 014 4\"/><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(4 17)\"><rect width=\"8\" height=\"8\" rx=\"4\" stroke=\"none\"/><rect width=\"6\" height=\"6\" x=\"1\" y=\"1\" rx=\"3\"/></g>"},"table":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g transform=\"translate(2 6)\"><rect width=\"28\" height=\"20\" rx=\"2\" stroke=\"none\"/><rect width=\"26\" height=\"18\" x=\"1\" y=\"1\" rx=\"1\"/></g><path d=\"M11 6v20M3 13h26M3 19h26\"/></g>"},"tematic-channels":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" d=\"M16 4v24m6 0H10\"/><path d=\"M16 6.999h8.816L27 9.291l-2.184 2.708H16ZM15.999 16H7.183l-2.184-2.292L7.183 11h8.816Z\"/></g>"},"test":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(4 4)\"><rect width=\"10\" height=\"10\" rx=\"1.996\" stroke=\"none\"/><rect width=\"8\" height=\"8\" x=\"1\" y=\"1\" rx=\".996\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(4 18)\"><rect width=\"10\" height=\"10\" rx=\"1.996\" stroke=\"none\"/><rect width=\"8\" height=\"8\" x=\"1\" y=\"1\" rx=\".996\"/></g><path stroke-linejoin=\"round\" d=\"M22.657 5.008 18.19 21.704l1.196 5.202 3.634-3.91L27.487 6.3Z\"/></g>"},"text-body":{"body":"<path fill=\"currentColor\" d=\"M4.363 23.427h4.06V9.565L4 10.888V8.124l7.434-2.122v17.425H15v2.575H4.363Zm12.999 0h4.06V9.565l-4.423 1.323V8.124l7.434-2.122v17.425h3.566v2.575H17.362Z\"/>"},"text-edit":{"body":"<path fill=\"currentColor\" d=\"M11.645 19.27H7.362l-.795 2.731H4l3.721-12h3.565l3.714 12h-2.567Zm-.522-1.8-.758-2.614c-.288-1.013-.553-1.945-.866-3.121-.3 1.175-.577 2.108-.858 3.121l-.756 2.614Zm12.878-2.977v7.358h-1.708l-.208-.883-1.351.586a4.976 4.976 0 01-1.961.448c-1.692 0-2.773-1.143-2.773-3.135v-.177c0-1.85 1.135-2.917 3.676-2.917h2.072V14.23c0-.8-.278-1.253-1.151-1.253h-.749c-.742 0-1.143.246-1.143.948v.772h-2.287v-.632c0-1.957 1.274-3.059 3.459-3.059h.68c2.131-.004 3.444.937 3.444 3.487Zm-2.253 3.009h-2.125c-.889 0-1.3.272-1.3.942v.634c0 .67.331 1 .9 1a2.62 2.62 0 001.027-.23l1.5-.467ZM26 4h2v24h-2Z\"/>"},"text-style":{"body":"<path fill=\"currentColor\" d=\"M13.731 20.358H8.28L7.268 24H4L8.736 8h4.538L18 24h-3.265Zm-.666-2.4-.965-3.486c-.367-1.351-.7-2.594-1.1-4.161-.387 1.567-.734 2.81-1.092 4.161l-.963 3.486Zm14.932-2.832v8.695H26.08l-.234-1.043-1.52.692a5.358 5.358 0 01-2.207.53c-1.9 0-3.118-1.351-3.118-3.7v-.21c0-2.184 1.277-3.447 4.135-3.447h2.328v-1.828c0-.951-.312-1.482-1.294-1.482h-.843c-.835 0-1.286.291-1.286 1.121v.911H19.47v-.749c0-2.314 1.434-3.616 3.892-3.616h.763c2.399 0 3.872 1.113 3.872 4.126Zm-2.537 3.557h-2.385c-1 0-1.468.32-1.468 1.112v.751c0 .792.373 1.183 1.007 1.183a2.821 2.821 0 001.155-.271l1.685-.55Z\"/>"},"time":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2.001)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m19.001 13-3 3 5 5\"/></g>"},"toilet-piper":{"body":"<g transform=\"translate(4 5.333)\"><ellipse cx=\"4\" cy=\"9\" fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" rx=\"4\" ry=\"9\" transform=\"translate(17 -2.334)\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M21-2.333H4.4Q0-2.333 0 2.255v21.412h17.067V8.374\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M13 13.666h1m-6 0h1m-6 0h1\"/><ellipse cx=\"1\" cy=\"2\" fill=\"currentColor\" rx=\"1\" ry=\"2\" transform=\"translate(20 4.666)\"/></g>"},"training-points":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g transform=\"translate(2.667 4) translate(-.667 4)\"><circle cx=\"11\" cy=\"11\" r=\"11\" stroke=\"none\"/><circle cx=\"11\" cy=\"11\" r=\"10\"/></g><g transform=\"translate(2.667 4) translate(4.333 9)\"><circle cx=\"6\" cy=\"6\" r=\"6\" stroke=\"none\"/><circle cx=\"6\" cy=\"6\" r=\"5\"/></g><path stroke-linecap=\"round\" d=\"M13 19 23 9\"/><path stroke-linejoin=\"round\" d=\"m26.001 3-3 3v3h3l3-3Z\"/></g>"},"trash":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><path d=\"M7 4.999h18v21a3 3 0 01-3 3H10a3 3 0 01-3-3v-21Z\" stroke=\"none\"/><path d=\"M9 5.999h14a1 1 0 011 1v19a2 2 0 01-2 2H10a2 2 0 01-2-2v-19a1 1 0 011-1Z\"/><path stroke-linecap=\"round\" d=\"M5 6h22\"/><path d=\"M18.999 6h-6V4a1 1 0 011-1h4a1 1 0 011 1v2Z\" stroke=\"none\"/><path d=\"M17.999 5h-4V4h4v1Z\"/><path stroke-linecap=\"round\" d=\"M13 13v8m6-8v8\"/></g>"},"underline":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 5v10c0 5.1 3.583 8 8 8s8-2.9 8-8V5M6 27h20\"/>"},"undo":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M6 12.001h15c4.37 0 7 2.68 7 5.984v.016c0 3.305-2.629 6-7 6h-5.1\"/><path stroke-linejoin=\"round\" d=\"m10 6.001-6 6 6 6\"/></g>"},"unlock":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m10.614 13-1.277-1.277a4.48 4.48 0 010-6.385h0a4.479 4.479 0 016.386 0l1.273 1.276\"/><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M16 19v4\"/><g stroke-miterlimit=\"10\" transform=\"translate(4 12.001)\"><rect width=\"24\" height=\"18\" rx=\"3\" stroke=\"none\"/><rect width=\"22\" height=\"16\" 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=\"m19.999 9-4-4-4 4M16 5v14m12 4.001v4H4v-4\"/>"},"user":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(8 5.333)\"><rect width=\"14\" height=\"14\" rx=\"7\" transform=\"translate(1 -.334)\"/><path stroke-linejoin=\"round\" d=\"M-1 24.666a9 9 0 019-9 9 9 0 019 9\"/></g>"},"user-add":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M19 8h10m-5-5v10\"/><g transform=\"translate(4 7)\"><rect width=\"14\" height=\"14\" rx=\"7\" stroke=\"none\"/><rect width=\"12\" height=\"12\" x=\"1\" y=\"1\" rx=\"6\"/></g><path stroke-linejoin=\"round\" d=\"M3 30a8 8 0 1116 0\"/></g>"},"user-badge":{"body":"<path fill=\"currentColor\" d=\"m16.874 4.154 2.151-1.828a1.365 1.365 0 012.212.752l.713 2.8a1.394 1.394 0 001.413 1.075l2.768-.157a1.439 1.439 0 011.369 1.97l-1 2.7a1.485 1.485 0 00.54 1.738l2.327 1.575a1.486 1.486 0 010 2.433l-2.326 1.584a1.485 1.485 0 00-.54 1.738l1 2.7a1.439 1.439 0 01-1.368 1.969l-2.768-.157a1.394 1.394 0 00-1.413 1.075l-.713 2.8a1.365 1.365 0 01-2.212.752l-2.152-1.828a1.337 1.337 0 00-1.747 0l-2.153 1.831a1.365 1.365 0 01-2.212-.752l-.713-2.8a1.394 1.394 0 00-1.413-1.075l-2.768.157a1.439 1.439 0 01-1.369-1.97l1-2.7a1.485 1.485 0 00-.54-1.738l-2.327-1.575a1.486 1.486 0 010-2.433l2.327-1.575a1.485 1.485 0 00.54-1.738l-1-2.7a1.439 1.439 0 011.369-1.981l2.768.157a1.394 1.394 0 001.413-1.074l.713-2.8a1.365 1.365 0 012.212-.752l2.152 1.828a1.337 1.337 0 001.747-.001Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M16 9a4 4 0 11-4 4 4 4 0 014-4Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M11 23.001a5 5 0 015-5 5 5 0 015 5\"/>"},"video-off":{"body":"<g fill=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"m28 19.886-5.819-3.888 5.82-3.887v7.775Z\"/><path d=\"m27 13.982-3.019 2.016 3.02 2.017v-4.033m1.134-2.984c.447 0 .864.332.864.807v8.387c0 .654-.79 1.036-1.36.655l-6.28-4.194a.774.774 0 010-1.309l6.28-4.195a.89.89 0 01.496-.15Z\"/></g><path fill=\"currentColor\" d=\"M20 22.998h-6.759l2-2H20v-4.76l2-2v6.76a2 2 0 01-2 2Zm-14.983-.256A2 2 0 014 20.998v-10a2 2 0 012-2h12.759l-2 2H6v10h.759l-1.741 1.74Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M4 28 28 4\"/>"},"video-on":{"body":"<g fill=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"m28 19.887-5.819-3.888 5.82-3.887v7.775Z\"/><path d=\"m27 13.983-3.019 2.016 3.02 2.017v-4.033m1.135-2.984c.447 0 .864.332.864.807v8.387c0 .654-.79 1.036-1.36.655l-6.28-4.194a.774.774 0 010-1.309l6.28-4.195a.89.89 0 01.496-.15Z\"/></g><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(4 9.001)\"><rect width=\"18\" height=\"14\" rx=\"2\" stroke=\"none\"/><rect width=\"16\" height=\"12\" x=\"1\" y=\"1\" rx=\"1\"/></g>"},"video-rec":{"body":"<g transform=\"translate(7.709 9.695)\"><g fill=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"m20.291 10.19-5.819-3.887 5.82-3.887v7.775Z\"/><path d=\"m19.291 4.287-3.019 2.016 3.02 2.017V4.287m1.135-2.984c.447 0 .864.332.864.807v8.387c0 .654-.79 1.036-1.36.655l-6.28-4.194a.774.774 0 010-1.309l6.28-4.195a.89.89 0 01.496-.15Z\"/></g><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(-3.709 -.695)\"><rect width=\"18\" height=\"14\" rx=\"2\" stroke=\"none\"/><rect width=\"16\" height=\"12\" x=\"1\" y=\"1\" rx=\"1\"/></g><circle cx=\"2.5\" cy=\"2.5\" r=\"2.5\" fill=\"currentColor\" transform=\"translate(-4.709 -1.695)\"/></g>"},"view":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(4 5.667)\"><path d=\"M21 19.334H7a3 3 0 01-3-3v-1h13a3 3 0 003-3v-7h1a3 3 0 013 3v8a3 3 0 01-3 3Z\"/><rect width=\"20\" height=\"14\" rx=\"3\" transform=\"translate(0 1.334)\"/></g>"},"view-card":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(2 9.999)\"><rect width=\"16\" height=\"12\" rx=\"2\" stroke=\"none\"/><rect width=\"14\" height=\"10\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(20 13.999)\"><rect width=\"10\" height=\"8\" rx=\"2\" stroke=\"none\"/><rect width=\"8\" height=\"6\" x=\"1\" y=\"1\" rx=\"1\"/></g></g>"},"view-list":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(2 9) translate(0 -2)\"><rect width=\"8\" height=\"8\" rx=\"2\" stroke=\"none\"/><rect width=\"6\" height=\"6\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(2 9) translate(0 8)\"><rect width=\"8\" height=\"8\" rx=\"2\" stroke=\"none\"/><rect width=\"6\" height=\"6\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" d=\"M13 13h8m-8 10h8M13 9h16M13 19h16\"/></g>"},"voice-off":{"body":"<path fill=\"none\" d=\"M.001 0h32v32h-32z\"/><path fill=\"currentColor\" d=\"m16.253 19.99 3.737-3.736a4 4 0 01-3.736 3.738Zm-4.251-4.234V6a4 4 0 118 0v1.76l-2 2V6a2 2 0 00-4 0v7.758l-2 2Z\"/><path fill=\"currentColor\" d=\"M16.001 24a8.711 8.711 0 01-3.174-.588l1.6-1.594a6.866 6.866 0 001.578.182c3.309 0 6-2.334 6-5.205V15a1 1 0 112 0v1.795a6.807 6.807 0 01-2.389 5.135A8.42 8.42 0 0116.001 24Zm-7.52-4.725a6.559 6.559 0 01-.482-2.479V15a1 1 0 112 0v1.795a4.508 4.508 0 00.086.879l-1.6 1.6Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M16.001 23v6\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M12.001 29h8\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"m4.001 28 24-24\"/>","width":32.001},"voice-on":{"body":"<path fill=\"none\" d=\"M0 0h32v32H0z\"/><g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(12 1.999)\"><rect width=\"8\" height=\"18\" rx=\"4\" stroke=\"none\"/><rect width=\"6\" height=\"16\" x=\"1\" y=\"1\" rx=\"3\"/></g><path stroke-linecap=\"round\" d=\"M22.999 15v1.8c0 3.426-3.134 6.2-7 6.2h0c-3.866 0-7-2.777-7-6.2V15\"/><path d=\"M16 23v6\"/><path stroke-linecap=\"round\" d=\"M12 28.999h8\"/></g>"},"volume-down":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M26.003 13.001a5.075 5.075 0 010 6\"/><g stroke-linejoin=\"round\"><path d=\"M3.999 19.999a2.193 2.193 0 002 2h7a1.421 1.421 0 011 .35l5.025 3.254a1.828 1.828 0 002.975-1.321V7.717a1.828 1.828 0 00-2.975-1.321l-5.025 3.3a1.383 1.383 0 01-1 .3h-7a2.193 2.193 0 00-2 2Z\"/><path fill=\"currentColor\" d=\"M19.999 23.851V8.15l-4.844 3.185c-.787.585-1.53.665-2.156.665H6.102a.51.51 0 00-.103.107v7.786a.51.51 0 00.103.107H13c.826 0 1.494.22 2.152.713L20 23.852M20.173 26c-.395 0-.798-.124-1.149-.397L14 22.349c-.326-.255-.576-.35-1-.35H6c-1.003 0-2-1.053-2-2v-8c0-.946.997-2 2-2h7c.424 0 .674-.043 1-.298l5.025-3.305C20.21 5.471 22 6.266 22 7.717v16.565C22 25.303 21.113 26 20.174 26Z\"/></g></g>"},"volume-off":{"body":"<path fill=\"none\" d=\"M0 0h32v32H0z\"/><g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"m21 19 6-6m-6 0 6 6\"/><g stroke-linejoin=\"round\"><path d=\"M4 18.999a2.177 2.177 0 002 2h5a2.085 2.085 0 011 .5l3.454 3.207c.921.684 2.546.114 2.546-.958V8.262c0-1.073-1.624-1.652-2.546-.968L12 10.5a2.088 2.088 0 01-1 .5H6a2.151 2.151 0 00-2 2Z\"/><path fill=\"currentColor\" d=\"M16 22.48V9.517l-2.64 2.45a1.85 1.85 0 01-.166.139c-.42.312-1.2.893-2.194.893H6.085a.403.403 0 00-.085.085v5.819a.468.468 0 00.098.096H11c.996 0 1.775.58 2.194.892a2 2 0 01.167.139L16 22.48m.41 2.52c-.34 0-.68-.093-.956-.298L12 21.495c-.254-.188-.67-.496-1-.496H6c-.97 0-2-1-2-2v-6c0-1 1-2 2-2h5c.33 0 .746-.31 1-.498l3.454-3.206C16.376 6.61 18 7.19 18 8.262v15.482c0 .751-.797 1.255-1.59 1.255Z\"/></g></g>"},"volume-up":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M22.001 11.999a8.593 8.593 0 010 8m4-8.999a13.111 13.111 0 010 10\"/><g stroke-linejoin=\"round\"><path d=\"M4 18.999a2.177 2.177 0 002 2h5a2.085 2.085 0 011 .5l3.454 3.207c.921.684 2.546.114 2.546-.958V8.262c0-1.073-1.624-1.652-2.546-.968L12 10.5a2.088 2.088 0 01-1 .5H6a2.151 2.151 0 00-2 2Z\"/><path fill=\"currentColor\" d=\"M16 22.48V9.517l-2.64 2.45a1.85 1.85 0 01-.166.139c-.42.312-1.2.893-2.194.893H6.085a.403.403 0 00-.085.085v5.819a.468.468 0 00.098.096H11c.996 0 1.775.58 2.194.892a2 2 0 01.167.139L16 22.48m.41 2.52c-.34 0-.68-.093-.956-.298L12 21.495c-.254-.188-.67-.496-1-.496H6c-.97 0-2-1-2-2v-6c0-1 1-2 2-2h5c.33 0 .746-.31 1-.498l3.454-3.206C16.376 6.61 18 7.19 18 8.262v15.482c0 .751-.797 1.255-1.59 1.255Z\"/></g></g>"},"warning":{"body":"<g fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M16 11v6m0 6v-2\"/><path d=\"M14.008 5.111a2.343 2.343 0 013.985 0l5.848 9.78 5.849 9.779a2.223 2.223 0 01-1.992 3.332H4.3a2.223 2.223 0 01-1.992-3.332l5.849-9.779Z\"/><path fill=\"currentColor\" d=\"M16 6.001c-.089 0-.208.024-.276.137L4.028 25.695c-.022.037-.05.083-.003.165.037.065.115.142.279.142h23.392c.164 0 .242-.077.279-.142.046-.082.019-.128-.003-.164L16.277 6.138C16.207 6.025 16.087 6 16 6m0-2c.775 0 1.55.37 1.992 1.11l11.697 19.56c.885 1.481-.222 3.332-1.993 3.332H4.304c-1.77 0-2.878-1.85-1.993-3.332L14.008 5.11C14.45 4.37 15.225 4 16 4Z\"/></g>"},"webinar":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M3.001 19V5.814c0-1.992.2-2.811 2-2.811h21.11c1.8 0 2.889 1.208 2.889 3.2v12.8\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M6 20.999a2 2 0 012-2 2 2 0 012 2\"/><g stroke-miterlimit=\"10\"><path d=\"M6 15.999a2 2 0 11.586 1.414A2 2 0 016 15.999Z\"/><path fill=\"currentColor\" d=\"M8 13.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 17.999a1.994 1.994 0 01-1.414-.586A1.996 1.996 0 018 13.999Z\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M10 29.999a2 2 0 012-2 2 2 0 012 2\"/><g stroke-miterlimit=\"10\"><path d=\"M10 24.999a2 2 0 11.586 1.414A2 2 0 0110 24.999Z\"/><path fill=\"currentColor\" d=\"M12 22.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 22.999Z\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M18 29.999a2 2 0 012-2 2 2 0 012 2\"/><g stroke-miterlimit=\"10\"><path d=\"M18 24.999a2 2 0 11.586 1.414A2 2 0 0118 24.999Z\"/><path fill=\"currentColor\" d=\"M20 22.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 0120 22.999Z\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M14 20.999a2 2 0 012-2 2 2 0 012 2\"/><g stroke-miterlimit=\"10\"><path d=\"M14 15.999a2 2 0 11.586 1.414A2 2 0 0114 15.999Z\"/><path fill=\"currentColor\" d=\"M16 13.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 0116 13.999Z\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M22 20.999a2 2 0 012-2 2 2 0 012 2\"/><g stroke-miterlimit=\"10\"><path d=\"M22 15.999a2 2 0 11.586 1.414A2 2 0 0122 15.999Z\"/><path fill=\"currentColor\" d=\"M24 13.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 0124 13.999Z\"/></g></g>"},"whiteboard":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" d=\"m4 29 7-9m5 9v-9m12 9-7-9\"/><g stroke-miterlimit=\"10\" transform=\"translate(2 3)\"><rect width=\"28\" height=\"18\" rx=\"3\" stroke=\"none\"/><rect width=\"26\" height=\"16\" x=\"1\" y=\"1\" rx=\"2\"/></g><path d=\"M9 13.769c1.995-1.507 4.428-4.772 8.4-4.772-1.689 5.643 3.537 7.475 5.6 4.772\"/></g>"},"wine":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\"><path stroke-linecap=\"round\" d=\"M23.226 21.973c4.09-1.922 2.45-9.973 2.45-9.973h-7.351s-1.64 8.05 2.45 9.973a2.123 2.123 0 00.539.02h1.411a1.82 1.82 0 00.501-.02ZM22 23v5m3 0h-6\"/><path d=\"M7.266 29a1.624 1.624 0 01-.869-.4 1.335 1.335 0 01-.4-.933C6.02 13.576 6.006 13 5.997 13l2-4V3h3.994v6l2 4c.014.012-.021.576 0 14.667a1.335 1.335 0 01-.4.933 1.133 1.133 0 01-.933.4Z\"/><path d=\"M6 16.001h4v8H6z\"/></g>"},"zip":{"body":"<path fill=\"currentColor\" d=\"M25.001 23.999a1 1 0 101 1 1 1 0 00-1-1Z\"/><path fill=\"currentColor\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M4 6v6m6-6v6m6-6v6\"/><g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(21 5)\"><rect width=\"8\" height=\"8\" rx=\"1\" stroke=\"none\"/><path d=\"M1 1h6v6H1z\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M24.883 29c-4.239 0-3.876-5-3.876-5l.985-7h6l1 7s.349 5-3.89 5Z\"/>"},"zoom-in":{"body":"<g stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><path fill=\"none\" stroke-linecap=\"round\" d=\"M9 12h6m-3-3v6\"/><path fill=\"currentColor\" stroke-linecap=\"round\" d=\"m18 18 10 10\"/><g fill=\"none\" transform=\"translate(3 3)\"><circle cx=\"9\" cy=\"9\" r=\"9\" stroke=\"none\"/><circle cx=\"9\" cy=\"9\" r=\"8\"/></g></g>"},"zoom-out":{"body":"<g stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><path fill=\"currentColor\" stroke-linecap=\"round\" d=\"m18 18 10 10\"/><g fill=\"none\" transform=\"translate(3 3)\"><circle cx=\"9\" cy=\"9\" r=\"9\" stroke=\"none\"/><circle cx=\"9\" cy=\"9\" r=\"8\"/></g></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M9 11.999h6\"/>"}},"width":32,"height":32}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2.25 2.25)"><g transform="translate(-0.25 -0.25)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9" fill="none"/></g><line x2="6" transform="translate(6.75 9.75)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y2="6" transform="translate(9.75 6.75)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><line x2="16" transform="translate(4 12)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line y2="16" transform="translate(12 4)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(4 6)"><line x1="10" transform="translate(3 4)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="16" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="16" transform="translate(0 8)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="10" transform="translate(3 12)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(4 6)"><line x1="16" transform="translate(0 4)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="16" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="16" transform="translate(0 8)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="16" transform="translate(0 12)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(4 6)"><line x1="12" transform="translate(0 4)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="16" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="16" transform="translate(0 8)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="12" transform="translate(0 12)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(4 6)"><line x1="12" transform="translate(4 4)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="16" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="16" transform="translate(0 8)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="12" transform="translate(4 12)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(-64.629 369.342)" fill="none" stroke-miterlimit="10"><path d="M77.144-365.369a.478.478,0,0,0-.335.139.476.476,0,0,0-.139.336v7.564H69.1a.478.478,0,0,0-.335.139.475.475,0,0,0-.14.335,8.514,8.514,0,0,0,8.514,8.514,8.513,8.513,0,0,0,8.514-8.514A8.512,8.512,0,0,0,77.144-365.369Z" stroke="none"/><path d="M 78.66970825195312 -363.1885681152344 L 78.66970825195312 -355.330078125 L 70.81049346923828 -355.330078125 C 71.4990234375 -352.4719848632812 74.07730102539062 -350.3423461914062 77.14373779296875 -350.3423461914062 C 80.73542022705078 -350.3423461914062 83.657470703125 -353.264404296875 83.657470703125 -356.8560791015625 C 83.657470703125 -359.9221496582031 81.52780151367188 -362.5001220703125 78.66970825195312 -363.1885681152344 M 77.14373779296875 -365.3690185546875 C 81.84729766845703 -365.3690185546875 85.657470703125 -361.558837890625 85.657470703125 -356.8560791015625 C 85.657470703125 -352.1541748046875 81.84729766845703 -348.3423461914062 77.14373779296875 -348.3423461914062 C 72.44181060791016 -348.3423461914062 68.62999725341797 -352.1541748046875 68.62999725341797 -356.8560791015625 C 68.62999725341797 -356.98095703125 68.68058013916016 -357.103271484375 68.76953125 -357.1914672851562 C 68.85762786865234 -357.279541015625 68.98001861572266 -357.330078125 69.10485076904297 -357.330078125 L 76.66970825195312 -357.330078125 L 76.66970825195312 -364.8941650390625 C 76.66970825195312 -365.0198364257812 76.71946716308594 -365.141357421875 76.80841064453125 -365.2303466796875 C 76.89651489257812 -365.3184204101562 77.01890563964844 -365.3690185546875 77.14373779296875 -365.3690185546875 Z" stroke="none" fill="#000"/></g><g transform="translate(-64.5 369.5)" fill="none" stroke-miterlimit="10"><path d="M74.366-359.635a.463.463,0,0,0,.134-.325v-7.079a.465.465,0,0,0-.134-.326.463.463,0,0,0-.325-.134,7.541,7.541,0,0,0-7.54,7.54.464.464,0,0,0,.135.325.463.463,0,0,0,.325.134h7.08A.463.463,0,0,0,74.366-359.635Z" stroke="none"/><path d="M 72.5 -361.5008239746094 L 72.5 -365.2821350097656 C 70.68170928955078 -364.7549743652344 69.24563598632812 -363.3190612792969 68.71817779541016 -361.5008239746094 L 72.5 -361.5008239746094 M 74.04044342041016 -359.5008239746094 L 66.96035003662109 -359.5008239746094 C 66.83933258056641 -359.5008239746094 66.72068786621094 -359.5498657226562 66.63524627685547 -359.6352844238281 C 66.54984283447266 -359.720703125 66.5 -359.83935546875 66.5 -359.9603576660156 C 66.50079345703125 -364.1241149902344 69.87592315673828 -367.5000305175781 74.04044342041016 -367.5000305175781 C 74.16146087646484 -367.5000305175781 74.28011322021484 -367.4509582519531 74.36553955078125 -367.3655395507812 C 74.45097351074219 -367.2793579101562 74.5 -367.1614685058594 74.5 -367.0396728515625 L 74.5 -359.9603576660156 C 74.5 -359.83935546875 74.45097351074219 -359.720703125 74.36553955078125 -359.6352844238281 C 74.28011322021484 -359.5498657226562 74.16146087646484 -359.5008239746094 74.04044342041016 -359.5008239746094 Z" stroke="none" fill="#000"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(3 6)"><path d="M128.781-350.937l7-7,2,2,4-4" transform="translate(-128.781 362.937)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M147-351H129v-12" transform="translate(-129 363)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2 13)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="5" height="9" rx="2" stroke="none"/><rect x="1" y="1" width="3" height="7" rx="1" fill="none"/></g><g transform="translate(9 4)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="6" height="18" rx="2" stroke="none"/><rect x="1" y="1" width="4" height="16" rx="1" fill="none"/></g><g transform="translate(17 9)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="5" height="13" rx="2" stroke="none"/><rect x="1" y="1" width="3" height="11" rx="1" fill="none"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(3.6 2.652)"><g transform="translate(-4.4 -3.751)" fill="none" stroke-miterlimit="10"><path d="M12.811,22.311a4.412,4.412,0,0,1,.909.112,4.909,4.909,0,0,1,.909.362l.021.01c.112.054.228.11.347.161a1.525,1.525,0,0,0,.616.144,2.3,2.3,0,0,0,.953-.287,4.053,4.053,0,0,0,1.513-1.3,12.933,12.933,0,0,0,1.664-2.823c.088-.2.155-.363.212-.515a10.364,10.364,0,0,0,.6-6.312,4.877,4.877,0,0,0-1.936-2.9.442.442,0,0,1-.042-.03,3.294,3.294,0,0,0-.666-.418,4,4,0,0,0-1.738-.41h-.1a5.715,5.715,0,0,0-1.978.524l-.391.152c-.17.065-.566.2-.57.2a.453.453,0,0,1-.156.027H12.84a.163.163,0,0,0-.029,0H12.79l-.03,0h-.147a.458.458,0,0,1-.155-.027s-.4-.14-.571-.206l-.386-.15A5.759,5.759,0,0,0,9.518,8.1H9.411a4.04,4.04,0,0,0-1.729.411,3.322,3.322,0,0,0-.668.419.388.388,0,0,1-.04.029A4.96,4.96,0,0,0,5.05,11.814a10.361,10.361,0,0,0,.578,6.322c.084.222.159.4.228.551A12.881,12.881,0,0,0,7.519,21.51,4.023,4.023,0,0,0,8.978,22.79a2.507,2.507,0,0,0,1.011.309,1.53,1.53,0,0,0,.611-.142c.117-.05.231-.1.341-.158l.021-.01a5.022,5.022,0,0,1,.917-.365,4.2,4.2,0,0,1,.915-.112h.016Z" stroke="none"/><path d="M 9.97484016418457 21.04438209533691 C 10.00405120849609 21.03055191040039 10.0334358215332 21.01645278930664 10.06238269805908 21.00250625610352 L 10.11215209960938 20.97826957702637 C 10.44667148590088 20.81857109069824 10.86300182342529 20.61983108520508 11.38056182861328 20.48639106750488 C 11.77503204345703 20.38470077514648 12.21785163879395 20.32765960693359 12.73432159423828 20.31203079223633 L 12.84636211395264 20.31110954284668 L 12.88143157958984 20.31233978271484 C 13.20978164672852 20.3238697052002 13.70554161071777 20.35440063476562 14.21884155273438 20.48614120483398 C 14.74333190917969 20.62108039855957 15.16072177886963 20.8216609954834 15.49687194824219 20.98320960998535 L 15.53914165496826 21.00350952148438 C 15.56817436218262 21.0174388885498 15.59668159484863 21.0311164855957 15.62435531616211 21.04426383972168 C 15.66646385192871 21.02556419372559 15.70981979370117 21.00602149963379 15.74882125854492 20.98843955993652 C 15.93238162994385 20.90616035461426 16.12434196472168 20.75670051574707 16.51334190368652 20.26688957214355 C 17.03284072875977 19.61251068115234 17.50412178039551 18.8094310760498 17.9145622253418 17.87886047363281 C 17.98352241516113 17.72274971008301 18.03751182556152 17.59198951721191 18.08445167541504 17.46733093261719 L 18.10249137878418 17.4194507598877 L 18.12295150756836 17.37253952026367 C 19.24024200439453 14.81116008758545 18.63400077819824 12.39633083343506 18.62826156616211 12.37417030334473 L 18.61388206481934 12.32009029388428 L 18.60255241394043 12.26529026031494 C 18.39913368225098 11.281494140625 17.6048641204834 10.68781280517578 17.52569198608398 10.63080501556396 C 17.45952987670898 10.58768939971924 17.40749740600586 10.54876232147217 17.37192153930664 10.52134037017822 L 17.30989074707031 10.47220039367676 C 17.24616241455078 10.41963005065918 17.15643119812012 10.36508083343506 17.04035186767578 10.3087100982666 C 16.76530075073242 10.17460060119629 16.45942115783691 10.10074043273926 16.17906188964844 10.10074043273926 C 16.1610107421875 10.10074043273926 16.14295959472656 10.1005802154541 16.12973213195801 10.10086059570312 C 15.80838203430176 10.10877990722656 15.44683170318604 10.24536991119385 14.83545207977295 10.48611068725586 L 14.42451190948486 10.64568996429443 C 14.24443054199219 10.71435642242432 13.90376091003418 10.83401107788086 13.81296825408936 10.86578464508057 C 13.54721546173096 10.9607982635498 13.26914596557617 11.00896072387695 12.98626136779785 11.00896072387695 L 12.61270141601562 11.00896072387695 C 12.32804203033447 11.00896072387695 12.04866123199463 10.96051025390625 11.78232192993164 10.86495018005371 L 11.75230121612549 10.85429000854492 C 11.55971145629883 10.78604030609131 11.32007122039795 10.70062065124512 11.17515182495117 10.6454906463623 L 11.16029167175293 10.6397705078125 L 10.76894187927246 10.48729991912842 C 10.15560817718506 10.24668788909912 9.792171478271484 10.10986042022705 9.469342231750488 10.10089302062988 C 9.450567245483398 10.10047626495361 9.431124687194824 10.10000038146973 9.411321640014648 10.10000038146973 C 9.146421432495117 10.10000038146973 8.827362060546875 10.17829036712646 8.554512023925781 10.31105041503906 C 8.442370414733887 10.36536026000977 8.354514122009277 10.4187650680542 8.286118507385254 10.47421550750732 C 8.226228713989258 10.52366542816162 8.163754463195801 10.57033920288086 8.099706649780273 10.61350440979004 C 8.02799129486084 10.66589641571045 7.198098659515381 11.2900333404541 7.009601593017578 12.21378993988037 L 6.998651504516602 12.26743030548096 L 6.98479175567627 12.32038021087646 C 6.958581447601318 12.42051029205322 6.35556173324585 14.80185031890869 7.461051464080811 17.33654022216797 L 7.481371879577637 17.38313102722168 L 7.499301433563232 17.43070030212402 C 7.566481590270996 17.60894012451172 7.626991748809814 17.74846076965332 7.682371616363525 17.8726806640625 L 7.686281681060791 17.88150978088379 C 8.094381332397461 18.80891990661621 8.565151214599609 19.61143112182617 9.08541202545166 20.26662063598633 C 9.413211822509766 20.67938995361328 9.62667179107666 20.88865089416504 9.795051574707031 20.96450042724609 L 9.800541877746582 20.96696090698242 C 9.856377601623535 20.99196243286133 9.917924880981445 21.0195198059082 9.97484016418457 21.04438209533691 M 15.6140718460083 23.10000038146973 C 15.42050170898438 23.10000038146973 15.22479152679443 23.05433082580566 14.99837207794189 22.95637130737305 C 14.87908172607422 22.90554046630859 14.76337146759033 22.84955978393555 14.65123176574707 22.79578971862793 L 14.62980175018311 22.78548049926758 C 14.34624195098877 22.64920997619629 14.05267143249512 22.50852012634277 13.72053146362305 22.42307090759277 C 13.3962516784668 22.33983993530273 13.04197120666504 22.31921005249023 12.81126117706299 22.31110954284668 L 12.79484176635742 22.31110954284668 C 12.42984199523926 22.3221607208252 12.13128185272217 22.35824966430664 11.87985134124756 22.42307090759277 C 11.54557132720947 22.50925064086914 11.25129127502441 22.65068054199219 10.96273136138916 22.78841972351074 L 10.94201183319092 22.79873085021973 C 10.83201122283936 22.85177040100098 10.71773147583008 22.90627098083496 10.6005916595459 22.95637130737305 C 10.37559127807617 23.05286026000977 10.18060207366943 23.09852981567383 9.989171981811523 23.09852981567383 C 9.665611267089844 23.09852981567383 9.379181861877441 22.96961975097656 8.977761268615723 22.78989028930664 C 8.407061576843262 22.5328197479248 7.981351852416992 22.09234046936035 7.519221782684326 21.51043128967285 C 6.892801761627197 20.7215404510498 6.332811832427979 19.77132987976074 5.855681419372559 18.68706130981445 C 5.786391735076904 18.53164100646973 5.711391448974609 18.35781097412109 5.627821445465088 18.1360912322998 C 4.274991512298584 15.0342903137207 4.967841625213623 12.12770080566406 5.049981594085693 11.81391048431396 C 5.412831783294678 10.03577041625977 6.904941558837891 9.006750106811523 6.974941730499268 8.959609985351562 C 6.989941596984863 8.950030326843262 7.003511428833008 8.939720153808594 7.014941692352295 8.930140495300293 C 7.206371784210205 8.773250579833984 7.424221515655518 8.636240005493164 7.682791709899902 8.511020660400391 C 8.227781295776367 8.245850563049316 8.84205150604248 8.100000381469727 9.411321640014648 8.100000381469727 C 9.447761535644531 8.100000381469727 9.483471870422363 8.100740432739258 9.517751693725586 8.101469993591309 C 10.20917129516602 8.119150161743164 10.80773162841797 8.354120254516602 11.50057125091553 8.625930786132812 L 11.88628196716309 8.776190757751465 C 12.06056118011475 8.842490196228027 12.45627117156982 8.98169994354248 12.45770168304443 8.982439994812012 C 12.50698184967041 9.000120162963867 12.55912208557129 9.008960723876953 12.61270141601562 9.008960723876953 L 12.75984191894531 9.008960723876953 C 12.77055168151855 9.006750106811523 12.7812614440918 9.006010055541992 12.78983211517334 9.005270004272461 C 12.79269123077393 9.005270004272461 12.80698204040527 9.005270004272461 12.81126117706299 9.006010055541992 C 12.82198143005371 9.006010055541992 12.83126163482666 9.007480621337891 12.83983135223389 9.008960723876953 L 12.98626136779785 9.008960723876953 C 13.03912162780762 9.008960723876953 13.0912618637085 9.000120162963867 13.14197158813477 8.98169994354248 C 13.14626121520996 8.980230331420898 13.54196166992188 8.841750144958496 13.71196174621582 8.776930809020996 L 14.10267162322998 8.625190734863281 C 14.79480171203613 8.35265064239502 15.3926420211792 8.118410110473633 16.08049201965332 8.101469993591309 C 16.11335182189941 8.100740432739258 16.14620208740234 8.100740432739258 16.17906188964844 8.100740432739258 C 16.76405143737793 8.100740432739258 17.36547088623047 8.242160797119141 17.9168815612793 8.511020660400391 C 18.17473220825195 8.636240005493164 18.39330101013184 8.773250579833984 18.58259201049805 8.929400444030762 C 18.59616088867188 8.939720153808594 18.60973167419434 8.950770378112793 18.62473106384277 8.959609985351562 C 18.64044189453125 8.96992015838623 20.16756248474121 9.956950187683105 20.56112098693848 11.86031055450439 C 20.61184120178223 12.05109024047852 21.34611129760742 14.98568058013916 19.95613098144531 18.17218971252441 C 19.89899253845215 18.32392120361328 19.83185195922852 18.48818016052246 19.74399185180664 18.68706130981445 C 19.26543235778809 19.77206993103027 18.70544242858887 20.72228050231934 18.07974243164062 21.51043128967285 C 17.61760139465332 22.09234046936035 17.18476104736328 22.5365104675293 16.5669116973877 22.8134708404541 C 16.1976318359375 22.97994041442871 15.93049144744873 23.10000038146973 15.6140718460083 23.10000038146973 Z" stroke="none" fill="#000"/></g><path d="M16.114,7.536s-.5-2.968.913-4" transform="translate(-7.624 -2.188)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M20.1,12.249s2.075,1.039,2,3" transform="translate(-10.704 -2.9)" 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(18.367 20.25) rotate(180)"><path d="M-724.49,73l-6-6-6,6" transform="translate(736.857 -66.75)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="14" transform="translate(6.367 2.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(3.75 18.367) rotate(-90)"><path d="M-724.49,73l-6-6-6,6" transform="translate(736.857 -66.75)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="14" transform="translate(6.367 2.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(20.25 5.633) rotate(90)"><path d="M-724.49,73l-6-6-6,6" transform="translate(736.857 -66.75)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="14" transform="translate(6.367 2.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(5.633 3.75)"><path d="M-724.49,73l-6-6-6,6" transform="translate(736.857 -66.75)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="14" transform="translate(6.367 2.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><path d="M-472.375,75.439l-8.51,8.025a5.8,5.8,0,0,1-7.862,0,5.035,5.035,0,0,1,0-7.414l8.51-8.026a3.867,3.867,0,0,1,5.242,0,3.357,3.357,0,0,1,0,4.943l-8.52,8.025a1.931,1.931,0,0,1-2.62,0,1.676,1.676,0,0,1,0-2.471l7.862-7.406" transform="translate(493.375 -64)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><path d="M-53,68.915h-3a1.881,1.881,0,0,0-1.5.5,1.883,1.883,0,0,0-.5,1.5v8a1.886,1.886,0,0,0,.5,1.5,1.881,1.881,0,0,0,1.5.5h14a1.881,1.881,0,0,0,1.5-.5,1.881,1.881,0,0,0,.5-1.5v-8a1.881,1.881,0,0,0-.5-1.5,1.881,1.881,0,0,0-1.5-.5h-3" transform="translate(61 -62.915)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(60.1 -65.416)" fill="none" stroke-miterlimit="10"><path d="M-51.465,84.416h6.724l.575,1.062c.245.452-.224.938-.906.938h-6.057c-.68,0-1.149-.484-.907-.936Z" stroke="none"/><path d="M -51.46474075317383 84.41600799560547 L -44.7411003112793 84.41600799560547 L -44.16604995727539 85.47847747802734 C -43.92147064208984 85.93023681640625 -44.39030075073242 86.416015625 -45.07157897949219 86.416015625 L -51.12902069091797 86.416015625 C -51.80897903442383 86.416015625 -52.27780914306641 85.93209838867188 -52.03585815429688 85.4803466796875 L -51.46474075317383 84.41600799560547 Z" stroke="none" fill="#000"/></g><path d="M-49.5,74.181l3,3,3-3" transform="translate(91.181 52.5) rotate(90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(3 2)"><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(303.033 -70.467)"/><g transform="translate(304.673 -66.5)" stroke-miterlimit="10"><path d="M -287.7346496582031 81.49980926513672 L -289.034912109375 81.49980926513672 L -289.7525024414062 81.49980926513672 L -301.5934448242188 81.49980926513672 L -302.4240112304688 81.49980926513672 L -303.6112670898438 81.49980926513672 C -303.6273498535156 81.49980926513672 -303.6400451660156 81.49710845947266 -303.6498107910156 81.49349975585938 L -303.61279296875 81.46275329589844 C -301.6371459960938 79.83694458007812 -300.5934448242188 77.65694427490234 -300.5934448242188 75.15753936767578 L -300.5934448242188 72.1412353515625 C -300.5934448242188 71.13332366943359 -300.2530212402344 70.17579650878906 -299.6089477539062 69.37216949462891 C -298.9766235351562 68.58319091796875 -298.0767517089844 67.99500274658203 -297.0750732421875 67.71593475341797 L -297.0556335449219 67.71052551269531 L -297.0364074707031 67.70432281494141 C -297.0332641601562 67.70334625244141 -296.3777160644531 67.49999237060547 -295.5807495117188 67.49999237060547 C -295.1687622070312 67.49999237060547 -294.7953491210938 67.55393981933594 -294.4709777832031 67.66033935546875 L -294.4369506835938 67.67149353027344 L -294.4022216796875 67.68019104003906 C -292.2533264160156 68.21829986572266 -290.7525024414062 70.05274963378906 -290.7525024414062 72.1412353515625 L -290.7525024414062 75.15753936767578 C -290.7525024414062 77.65701293945312 -289.7088012695312 79.83702087402344 -287.7341918945312 81.46188354492188 L -287.6961364746094 81.49349975585938 C -287.7059020996094 81.49710845947266 -287.7185668945312 81.49980926513672 -287.7346496582031 81.49980926513672 Z" stroke="none"/><path d="M -295.5807495117188 68.49999237060547 C -296.1670837402344 68.49999237060547 -296.664794921875 68.63768005371094 -296.735107421875 68.65802764892578 L -296.7530822753906 68.66431427001953 L -296.8067016601562 68.67925262451172 C -298.4474792480469 69.13637542724609 -299.5934448242188 70.55998229980469 -299.5934448242188 72.1412353515625 L -299.5934448242188 75.15753936767578 C -299.5934448242188 76.55567169189453 -299.8886108398438 77.87753295898438 -300.4707336425781 79.08640289306641 C -300.7090759277344 79.58132934570312 -300.9934997558594 80.05307769775391 -301.3226318359375 80.49980926513672 L -290.0234069824219 80.49980926513672 C -290.3523864746094 80.05319213867188 -290.6369018554688 79.58132934570312 -290.875244140625 79.08639526367188 C -291.4573364257812 77.87755584716797 -291.7525024414062 76.55569458007812 -291.7525024414062 75.15753936767578 L -291.7525024414062 72.1412353515625 C -291.7525024414062 70.51227569580078 -292.9419860839844 69.07672119140625 -294.6451416015625 68.65024566650391 L -294.7145690917969 68.63284301757812 L -294.7826232910156 68.61053466796875 C -295.0062561035156 68.53718566894531 -295.2747802734375 68.49999237060547 -295.5807495117188 68.49999237060547 M -295.5807800292969 66.49999237060547 C -295.1295166015625 66.49999237060547 -294.6366577148438 66.55357360839844 -294.1593017578125 66.71014404296875 C -291.6228637695312 67.34530639648438 -289.7525024414062 69.53555297851562 -289.7525024414062 72.1412353515625 L -289.7525024414062 75.15753936767578 C -289.7525024414062 77.36546325683594 -288.8258056640625 79.26856994628906 -287.0987854003906 80.68971252441406 C -287.0558471679688 80.72502136230469 -287.0136108398438 80.76109313964844 -286.9706420898438 80.79559326171875 C -286.7867736816406 80.97603607177734 -286.6730041503906 81.22145080566406 -286.6730041503906 81.49249267578125 C -286.6730041503906 82.04910278320312 -287.1485595703125 82.49980926513672 -287.7346496582031 82.49980926513672 L -303.6112670898438 82.49980926513672 C -304.1973876953125 82.49980926513672 -304.6730041503906 82.04910278320312 -304.6730041503906 81.49249267578125 C -304.6730041503906 81.22145080566406 -304.5591430664062 80.97603607177734 -304.3753051757812 80.79559326171875 C -304.3323364257812 80.76109313964844 -304.2901611328125 80.72502136230469 -304.2471313476562 80.68971252441406 C -302.5202026367188 79.26856994628906 -301.5934448242188 77.36546325683594 -301.5934448242188 75.15753936767578 L -301.5934448242188 72.1412353515625 C -301.5934448242188 69.59008026123047 -299.7989807128906 67.43672180175781 -297.3434448242188 66.75262451171875 C -297.3434448242188 66.75262451171875 -296.5603637695312 66.49999237060547 -295.5807800292969 66.49999237060547 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(3 2)"><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(303.033 -70.467)"/><g transform="translate(304.673 -66.5)" fill="none" stroke-miterlimit="10"><path d="M-294.159,66.71a5.68,5.68,0,0,1,4.407,5.431v3.016A6.969,6.969,0,0,0-287.1,80.69c.043.035.085.071.128.106a.974.974,0,0,1,.3.7,1.036,1.036,0,0,1-1.062,1.007h-15.877a1.036,1.036,0,0,1-1.062-1.007.974.974,0,0,1,.3-.7l.128-.106a6.97,6.97,0,0,0,2.654-5.532V72.141a5.668,5.668,0,0,1,4.25-5.389A5.843,5.843,0,0,1-294.159,66.71Z" stroke="none"/><path d="M -295.5807495117188 68.49999237060547 C -296.1671142578125 68.49999237060547 -296.6648254394531 68.63770294189453 -296.735107421875 68.65803527832031 L -296.7530822753906 68.66432189941406 L -296.8067016601562 68.67926025390625 C -298.4474792480469 69.13636779785156 -299.5934448242188 70.55998992919922 -299.5934448242188 72.14125061035156 L -299.5934448242188 75.15754699707031 C -299.5934448242188 76.55567932128906 -299.8886108398438 77.87753295898438 -300.4707336425781 79.08640289306641 C -300.7090759277344 79.58132934570312 -300.9934997558594 80.05307006835938 -301.3226318359375 80.49981689453125 L -290.0234069824219 80.49981689453125 C -290.3523864746094 80.05319976806641 -290.6369018554688 79.58132934570312 -290.875244140625 79.08638763427734 C -291.4573364257812 77.87754821777344 -291.7525024414062 76.55568695068359 -291.7525024414062 75.15754699707031 L -291.7525024414062 72.14125061035156 C -291.7525024414062 70.51229858398438 -292.9420166015625 69.07674407958984 -294.6451416015625 68.65023040771484 L -294.714599609375 68.63284301757812 L -294.7826232910156 68.61052703857422 C -295.0062561035156 68.53717803955078 -295.2747802734375 68.49999237060547 -295.5807495117188 68.49999237060547 M -295.5807495117188 66.49999237060547 C -295.1295166015625 66.49999237060547 -294.6366577148438 66.55357360839844 -294.1593017578125 66.71014404296875 C -291.6228637695312 67.34532165527344 -289.7525024414062 69.53556823730469 -289.7525024414062 72.14125061035156 L -289.7525024414062 75.15754699707031 C -289.7525024414062 77.36544799804688 -288.8258056640625 79.26857757568359 -287.0987854003906 80.68972015380859 C -287.0558471679688 80.72502136230469 -287.0136108398438 80.76109313964844 -286.9706420898438 80.79557800292969 C -286.7867736816406 80.97604370117188 -286.6730041503906 81.22145843505859 -286.6730041503906 81.49250793457031 C -286.6730041503906 82.04911041259766 -287.1485595703125 82.49981689453125 -287.7346496582031 82.49981689453125 L -303.6112670898438 82.49981689453125 C -304.1973876953125 82.49981689453125 -304.6730041503906 82.04911041259766 -304.6730041503906 81.49250793457031 C -304.6730041503906 81.22145843505859 -304.5591430664062 80.97604370117188 -304.3753051757812 80.79557800292969 C -304.3323364257812 80.76109313964844 -304.2901611328125 80.72502136230469 -304.2471313476562 80.68972015380859 C -302.5202026367188 79.26857757568359 -301.5934448242188 77.36544799804688 -301.5934448242188 75.15754699707031 L -301.5934448242188 72.14125061035156 C -301.5934448242188 69.590087890625 -299.7989807128906 67.43672180175781 -297.3434448242188 66.75263214111328 C -297.3434448242188 66.75263214111328 -296.5603332519531 66.49999237060547 -295.5807495117188 66.49999237060547 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(7 5.8)"><path d="M319.6,70h6.722a3.5,3.5,0,0,1,0,7H319.6Z" transform="translate(-319.6 -70.801)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M319.6,78h7.615a3.5,3.5,0,0,1,0,7H319.6Z" transform="translate(-319.6 -71.801)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(0 0.002)"><g transform="translate(307 -63.234)" stroke-miterlimit="10"><path d="M -291 82.20852661132812 L -294.1755981445312 79.09397125244141 C -294.3948364257812 78.87791442871094 -294.6883850097656 78.75799560546875 -295.0004272460938 78.75799560546875 C -295.3126831054688 78.75799560546875 -295.6063232421875 78.87804412841797 -295.8273010253906 79.09602355957031 L -299 82.20830535888672 L -299 67.76044464111328 C -299 67.47454071044922 -298.6958618164062 67.23301696777344 -298.3358459472656 67.23301696777344 L -291.6641540527344 67.23301696777344 C -291.3041381835938 67.23301696777344 -291 67.47454071044922 -291 67.76044464111328 L -291 82.20852661132812 Z" stroke="none"/><path d="M -298 68.23300170898438 L -298 79.82654571533203 L -296.5276489257812 78.38221740722656 C -296.1185913085938 77.97964477539062 -295.5763244628906 77.75799560546875 -295.0004272460938 77.75799560546875 C -294.4240417480469 77.75799560546875 -293.8812255859375 77.9801025390625 -293.4754028320312 78.38004302978516 L -292 79.82707977294922 L -292 68.23300170898438 L -298 68.23300170898438 M -298.3358459472656 66.23300170898438 L -291.6641540527344 66.23300170898438 C -290.7449951171875 66.23300170898438 -290 66.91680145263672 -290 67.76044464111328 L -290 84.00015258789062 C -290 84.21127319335938 -290.2816467285156 84.313720703125 -290.4391784667969 84.15925598144531 L -294.8758239746094 79.80791473388672 C -294.9433898925781 79.74134063720703 -295.0576171875 79.74138641357422 -295.125 79.80791473388672 L -299.5608215332031 84.15925598144531 C -299.7182922363281 84.31375122070312 -300 84.21125793457031 -300 84.00015258789062 L -300 67.76044464111328 C -300 66.91680145263672 -299.2550048828125 66.23300170898438 -298.3358459472656 66.23300170898438 Z" stroke="none" fill="#000"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(307 -63.234)" fill="none" stroke-miterlimit="10"><path d="M-300,67.76V84a.257.257,0,0,0,.439.159l4.436-4.351a.18.18,0,0,1,.249,0l4.437,4.351A.257.257,0,0,0-290,84V67.76a1.6,1.6,0,0,0-1.664-1.527h-6.672A1.6,1.6,0,0,0-300,67.76Z" stroke="none"/><path d="M -298 68.23300170898438 L -298 79.82654571533203 L -296.5276489257812 78.38221740722656 C -296.1185913085938 77.97964477539062 -295.5763244628906 77.75799560546875 -295.0004272460938 77.75799560546875 C -294.4240417480469 77.75799560546875 -293.8812255859375 77.9801025390625 -293.4754028320312 78.38004302978516 L -292 79.82707977294922 L -292 68.23300170898438 L -298 68.23300170898438 M -298.3358459472656 66.23300170898438 L -291.6641540527344 66.23300170898438 C -290.7449951171875 66.23300170898438 -290 66.91680145263672 -290 67.76044464111328 L -290 84.00015258789062 C -290 84.21127319335938 -290.2816467285156 84.313720703125 -290.4391784667969 84.15925598144531 L -294.8758239746094 79.80791473388672 C -294.9433898925781 79.74134063720703 -295.0576171875 79.74138641357422 -295.125 79.80791473388672 L -299.5608215332031 84.15925598144531 C -299.7182922363281 84.31375122070312 -300 84.21125793457031 -300 84.00015258789062 L -300 67.76044464111328 C -300 66.91680145263672 -299.2550048828125 66.23300170898438 -298.3358459472656 66.23300170898438 Z" stroke="none" fill="#000"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2 1.373)"><line x2="16" transform="translate(2 19.627)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M12.125,4.127v-1h-4v1" transform="translate(-0.125 -1.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y1="3" transform="translate(10 16.627)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="1" transform="translate(7 7.627)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="1" transform="translate(7 11.627)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="1" transform="translate(12 7.627)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="1" transform="translate(12 11.627)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><g transform="translate(3 2.627)" fill="none" stroke="#000" stroke-width="2"><rect width="14" height="18" rx="2" stroke="none"/><rect x="1" y="1" width="12" height="16" rx="1" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="none"/><g transform="translate(4.95 6.924)"><line x2="5" transform="translate(3.05 9.074)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="12" transform="translate(3.05 5.075)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="8" transform="translate(3.05 1.076)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(-1.95 0.076)" fill="none" stroke="#000" stroke-width="1"><circle cx="1" cy="1" r="1" stroke="none"/><circle cx="1" cy="1" r="0.5" fill="none"/></g><g transform="translate(-1.95 4.076)" fill="none" stroke="#000" stroke-width="1"><circle cx="1" cy="1" r="1" stroke="none"/><circle cx="1" cy="1" r="0.5" fill="none"/></g><g transform="translate(-1.95 8.076)" fill="none" stroke="#000" stroke-width="1"><circle cx="1" cy="1" r="1" stroke="none"/><circle cx="1" cy="1" r="0.5" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><line y2="2" transform="translate(8 3)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y2="2" transform="translate(16 3)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="18" transform="translate(3 8)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="2" transform="translate(7 12)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="2" transform="translate(7 16)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="2" transform="translate(15 12)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="2" transform="translate(15 16)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(2 3)" fill="none" stroke="#000" stroke-width="2"><rect width="20" height="18" rx="3" stroke="none"/><rect x="1" y="1" width="18" height="16" rx="2" fill="none"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2 4)"><path d="M1.293,15.278a.986.986,0,0,0-.218.328,1,1,0,0,1,.218-.328" fill="#040405"/><path d="M18,4.228v9.721a.251.251,0,0,1-.052.051H8.228l-2,2H18a2.087,2.087,0,0,0,2-2V4a1.958,1.958,0,0,0-.506-1.266Z" fill="#040405"/><path d="M2,11.743V4.051A.251.251,0,0,1,2.052,4H4.828l2-2h4.566l.21.14L13.046.7,12,0H6L4,2H2A2.087,2.087,0,0,0,0,4v9.743Z" fill="#040405"/><path d="M8.617,5.126A3.487,3.487,0,0,0,6.126,7.617" fill="none" stroke="#040405" stroke-miterlimit="10" stroke-width="2"/><path d="M10.341,11.886a3.486,3.486,0,0,0,2.545-2.545" fill="none" stroke="#040405" stroke-miterlimit="10" stroke-width="2"/></g><line y1="16" x2="16" transform="translate(4 4)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(2 4.25)"><g transform="translate(-252 -7.031)" fill="none" stroke-miterlimit="10"><path d="M270,8.781h-3l-3-2h-6l-2,2h-2a2.087,2.087,0,0,0-2,2v10a2.087,2.087,0,0,0,2,2h16a2.087,2.087,0,0,0,2-2v-10A2.087,2.087,0,0,0,270,8.781Z" stroke="none"/><path d="M 258.8284301757812 8.78118896484375 L 256.8284301757812 10.78118896484375 L 254.0521545410156 10.78118896484375 C 254.0339660644531 10.79367637634277 254.0128173828125 10.81439399719238 254 10.83227348327637 L 254 20.73009872436523 C 254.0128173828125 20.74797630310059 254.0339660644531 20.76869964599609 254.0521850585938 20.78118896484375 L 269.9478149414062 20.78118896484375 C 269.9660034179688 20.76869964599609 269.9871826171875 20.74797248840332 270 20.73008728027344 L 270 10.83228302001953 C 269.9871826171875 10.81440353393555 269.9660034179688 10.79367828369141 269.9478149414062 10.78118896484375 L 266.3944396972656 10.78118896484375 L 263.3944396972656 8.78118896484375 L 258.8284301757812 8.78118896484375 M 258 6.78118896484375 L 264 6.78118896484375 L 267 8.78118896484375 L 270 8.78118896484375 C 271.0341491699219 8.782899856567383 271.9983215332031 9.729469299316406 272 10.78118896484375 L 272 20.78118896484375 C 271.9983215332031 21.83290863037109 271.0341491699219 22.77946853637695 270 22.78118896484375 L 254 22.78118896484375 C 252.9658203125 22.77946853637695 252.0016784667969 21.83290863037109 252 20.78118896484375 L 252 10.78118896484375 C 252.0016784667969 9.729469299316406 252.9658203125 8.782899856567383 254 8.78118896484375 L 256 8.78118896484375 L 258 6.78118896484375 Z" stroke="none" fill="#000"/></g><g transform="translate(5 3.75)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="4.5" cy="4.5" r="4.5" stroke="none"/><circle cx="4.5" cy="4.5" r="3.5" fill="none"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(5.813 3.75)"><g transform="translate(-1.813 -1.75)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><path d="M3,0H14a1,1,0,0,1,1,1V19a1,1,0,0,1-1,1H3a3,3,0,0,1-3-3V3A3,3,0,0,1,3,0Z" stroke="none"/><path d="M3,1H14a0,0,0,0,1,0,0V19a0,0,0,0,1,0,0H3a2,2,0,0,1-2-2V3A2,2,0,0,1,3,1Z" fill="none"/></g><line x2="5" transform="translate(3.188 7.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="2" transform="translate(3.188 11.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="13" transform="translate(-0.813 3.25)" 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(-187.309 -435.906)"><path d="M206.4,447.9a6,6,0,1,1-6,6,6,6,0,0,1,6-6Z" transform="translate(-7.089 -8.995)" fill="none" stroke="#000" stroke-miterlimit="22.926" stroke-width="2"/><path d="M205.557,451.061a2,2,0,1,1-2,2,2,2,0,0,1,2-2Z" transform="translate(-6.248 -8.153)" fill="none" stroke="#000" stroke-miterlimit="22.926" stroke-width="2"/><path d="M201.174,456.971l-2.758,5.119h1.964l.793,1.428h1.613l.834,1.161,2.759-4.378,2.759,4.378,1.015-1.161h1.474l1.048-1.428,1.741.018-2.789-5.429" transform="translate(-7.107 -7.773)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" opacity="0"/><g transform="translate(3 5)"><path d="M12853,24049.992h-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" transform="translate(-12845.003 -24038.994)" fill="none" stroke="#000" stroke-width="2"/></g></svg>
|