@fibery/ui-kit 1.34.8 → 1.36.0
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/.eslintignore +3 -0
- package/.eslintrc +14 -0
- package/CHANGELOG.md +586 -0
- package/babel.config.js +3 -0
- package/config/jest/testFrameworkSetup.js +1 -0
- package/package.json +7 -41
- package/scripts/generate-icons.mjs +116 -0
- package/src/__mocks__/createInlineTheme.js +3 -0
- package/src/__mocks__/styleMock.js +1 -0
- package/src/a11y-color.ts +1 -1
- package/src/action-badge.tsx +63 -0
- package/src/actions-menu/actions-menu-sub-menu.tsx +3 -0
- package/src/actions-panel.tsx +50 -0
- package/src/ai/max-tokens.tsx +42 -0
- package/src/ai/model.tsx +79 -0
- package/src/ai/temperature.tsx +75 -0
- package/src/animated-height-container.tsx +82 -0
- package/src/animated-number.tsx +38 -0
- package/src/animations.tsx +62 -0
- package/src/antd/AutoComplete.d.ts +1 -0
- package/src/antd/AutoComplete.js +34 -0
- package/src/antd/Tabs.d.ts +5 -0
- package/src/antd/Tabs.js +58 -0
- package/src/antd/ant-modal.tsx +11 -0
- package/src/antd/ant-upload.tsx +73 -0
- package/src/antd/auto-width-transparent-textarea.tsx +56 -0
- package/src/antd/get-wrapper.tsx +11 -0
- package/src/antd/index.tsx +4 -0
- package/src/antd/input-number.tsx +51 -0
- package/src/antd/input.tsx +56 -0
- package/src/antd/styles.ts +6 -6
- package/src/antd/utils.tsx +43 -0
- package/src/app-icon-with-fallback.tsx +147 -0
- package/src/app-icon-wrapper.tsx +44 -0
- package/src/app-icon.tsx +52 -0
- package/src/app-mode.tsx +52 -0
- package/src/appIcons.json +13066 -0
- package/src/avatar.tsx +262 -0
- package/src/axis-header.tsx +160 -0
- package/src/badge.tsx +39 -0
- package/src/board-table-loader.tsx +106 -0
- package/src/box.tsx +444 -0
- package/src/breakpoints.tsx +59 -0
- package/src/button/base-button.tsx +1 -1
- package/src/button/icon-button.tsx +2 -2
- package/src/card-container.tsx +483 -0
- package/src/checkbox-multi-select.tsx +71 -0
- package/src/checkbox.tsx +232 -0
- package/src/collapsible/index.tsx +43 -0
- package/src/collapsible-section.tsx +69 -0
- package/src/color-picker/ColorPickerOrLoader.js +23 -0
- package/src/color-picker/SliderPointer.js +14 -0
- package/src/color-picker/index.js +118 -0
- package/src/color-picker/swatch.tsx +85 -0
- package/src/command-menu/index.tsx +176 -0
- package/src/comment.tsx +218 -0
- package/src/context-menu/index.tsx +134 -0
- package/src/copy-to-clipboard.ts +1 -0
- package/src/country-selector.tsx +29 -0
- package/src/date-picker/autocomplete.tsx +74 -0
- package/src/date-picker/constants.ts +3 -0
- package/src/date-picker/contexts.ts +7 -0
- package/src/date-picker/date-range-input.tsx +346 -0
- package/src/date-picker/date-range-picker-popup-content.tsx +190 -0
- package/src/date-picker/date-range-picker.tsx +124 -0
- package/src/date-picker/day-with-start-end-buttons.tsx +171 -0
- package/src/date-picker/fake-date-input.tsx +40 -0
- package/src/date-picker/get-weekends-for-month.ts +7 -0
- package/src/date-picker/rc-input-types.ts +11 -0
- package/src/date-picker/relative-date-picker.tsx +141 -0
- package/src/date-picker/single-date-input.tsx +239 -0
- package/src/date-picker/single-date-picker-popup-content.tsx +90 -0
- package/src/date-picker/single-date-picker.tsx +243 -0
- package/src/date-picker/styles.ts +262 -0
- package/src/date-picker/types.ts +56 -0
- package/src/date-picker/utils.ts +110 -0
- package/src/date-picker/with-popup-control.tsx +61 -0
- package/src/day-select/day-select.tsx +94 -0
- package/src/day-select/iso-week-day-select.tsx +15 -0
- package/src/day-select/mount-day-select.tsx +11 -0
- package/src/day-select/week-day-select.test.tsx +48 -0
- package/src/day-select/week-day-select.tsx +42 -0
- package/src/delayed.tsx +26 -0
- package/src/design-system.test.ts +24 -0
- package/src/design-system.ts +77 -39
- package/src/dnd.tsx +55 -0
- package/src/dropdown-menu/index.tsx +2 -3
- package/src/emoji-picker/app-icon-picker.tsx +1 -0
- package/src/emoji-picker/primitives/emoji.tsx +4 -2
- package/src/emoji-picker/primitives/render-config-provider.tsx +12 -0
- package/src/emoji.tsx +30 -0
- package/src/empty-state/empty-state-action.tsx +3 -0
- package/src/empty-state/empty-state-emoji.tsx +20 -0
- package/src/empty-state/empty-state.tsx +80 -0
- package/src/empty-value.tsx +21 -0
- package/src/errors.ts +29 -0
- package/src/favorites-icon.tsx +87 -0
- package/src/features.tsx +10 -0
- package/src/fibermoji-placeholder.tsx +180 -0
- package/src/field-container.tsx +213 -0
- package/src/file-item.tsx +151 -0
- package/src/form-utils.ts +7 -0
- package/src/format-date-from-now.ts +33 -0
- package/src/full-fibery-logo.tsx +26 -0
- package/src/get-trigger-node-popup-container.ts +7 -0
- package/src/guide-link.tsx +24 -0
- package/src/header-layout.tsx +33 -0
- package/src/hint.tsx +47 -0
- package/src/hoverable-via-display.tsx +29 -0
- package/src/hoverable.tsx +53 -0
- package/src/html-styles.ts +720 -0
- package/src/icons/ast/AccessTemplate.ts +8 -0
- package/src/icons/ast/AddDatabase.ts +8 -0
- package/src/icons/ast/AddIntegration.ts +8 -0
- package/src/icons/ast/AiSearch.ts +8 -0
- package/src/icons/ast/Asterisk.ts +8 -0
- package/src/icons/ast/Clean.ts +8 -0
- package/src/icons/ast/Copy.ts +1 -1
- package/src/icons/ast/CreditsFilled.ts +8 -0
- package/src/icons/ast/CrossCircle.ts +8 -0
- package/src/icons/ast/Duplicate.ts +1 -1
- package/src/icons/ast/Gift.ts +8 -0
- package/src/icons/ast/LevelPlus.ts +8 -0
- package/src/icons/ast/Markdown.ts +8 -0
- package/src/icons/ast/PeopleCheck.ts +8 -0
- package/src/icons/ast/PresentPlay.ts +8 -0
- package/src/icons/ast/PresentStop.ts +8 -0
- package/src/icons/ast/ResetPassword.ts +8 -0
- package/src/icons/ast/SettingsOff.ts +8 -0
- package/src/icons/ast/Template.ts +8 -0
- package/src/icons/ast/UserCheck.ts +8 -0
- package/src/icons/ast/UserGroupRemove.ts +8 -0
- package/src/icons/ast/UserX.ts +8 -0
- package/src/icons/ast/ViewGantt.ts +8 -0
- package/src/icons/ast/Views.ts +1 -1
- package/src/icons/ast/index.tsx +21 -0
- package/src/icons/react/AccessTemplate.tsx +13 -0
- package/src/icons/react/AddDatabase.tsx +13 -0
- package/src/icons/react/AddIntegration.tsx +13 -0
- package/src/icons/react/AiSearch.tsx +13 -0
- package/src/icons/react/Asterisk.tsx +13 -0
- package/src/icons/react/Clean.tsx +13 -0
- package/src/icons/react/CreditsFilled.tsx +13 -0
- package/src/icons/react/CrossCircle.tsx +13 -0
- package/src/icons/react/Gift.tsx +13 -0
- package/src/icons/react/LevelPlus.tsx +13 -0
- package/src/icons/react/Markdown.tsx +13 -0
- package/src/icons/react/PeopleCheck.tsx +13 -0
- package/src/icons/react/PresentPlay.tsx +13 -0
- package/src/icons/react/PresentStop.tsx +13 -0
- package/src/icons/react/ResetPassword.tsx +13 -0
- package/src/icons/react/SettingsOff.tsx +13 -0
- package/src/icons/react/Template.tsx +13 -0
- package/src/icons/react/UserCheck.tsx +13 -0
- package/src/icons/react/UserGroupRemove.tsx +13 -0
- package/src/icons/react/UserX.tsx +13 -0
- package/src/icons/react/ViewGantt.tsx +13 -0
- package/src/icons/react/index.tsx +21 -0
- package/src/icons/svg/abort.svg +3 -0
- package/src/icons/svg/access-template.svg +4 -0
- package/src/icons/svg/activity-log.svg +4 -0
- package/src/icons/svg/activity.svg +4 -0
- package/src/icons/svg/add-after.svg +4 -0
- package/src/icons/svg/add-before.svg +4 -0
- package/src/icons/svg/add-compact.svg +2 -0
- package/src/icons/svg/add-database.svg +3 -0
- package/src/icons/svg/add-group.svg +4 -0
- package/src/icons/svg/add-integration.svg +3 -0
- package/src/icons/svg/add-reactions.svg +8 -0
- package/src/icons/svg/add.svg +2 -0
- package/src/icons/svg/ai-assistant.svg +3 -0
- package/src/icons/svg/ai-avatar.svg +3 -0
- package/src/icons/svg/ai-search.svg +3 -0
- package/src/icons/svg/alert-triangle.svg +3 -0
- package/src/icons/svg/app-details.svg +7 -0
- package/src/icons/svg/app-store-one-color.svg +4 -0
- package/src/icons/svg/app-store.svg +4 -0
- package/src/icons/svg/app-templates.svg +7 -0
- package/src/icons/svg/app-webhooks.svg +2 -0
- package/src/icons/svg/app-wiki.svg +2 -0
- package/src/icons/svg/app.svg +2 -0
- package/src/icons/svg/appearance-auto.svg +3 -0
- package/src/icons/svg/appearance-dark.svg +3 -0
- package/src/icons/svg/appearance-light.svg +3 -0
- package/src/icons/svg/arrow-bar-left.svg +4 -0
- package/src/icons/svg/arrow-bar-right.svg +4 -0
- package/src/icons/svg/arrow-bottom.svg +3 -0
- package/src/icons/svg/arrow-collapse-vertical.svg +3 -0
- package/src/icons/svg/arrow-collapse.svg +3 -0
- package/src/icons/svg/arrow-forward.svg +3 -0
- package/src/icons/svg/arrow-left.svg +3 -0
- package/src/icons/svg/arrow-right.svg +3 -0
- package/src/icons/svg/arrow-top.svg +3 -0
- package/src/icons/svg/arrow-up-circle.svg +4 -0
- package/src/icons/svg/arrows-right-left.svg +3 -0
- package/src/icons/svg/ask-for-input.svg +6 -0
- package/src/icons/svg/asterisk.svg +3 -0
- package/src/icons/svg/atom.svg +4 -0
- package/src/icons/svg/automations-cancelled.svg +3 -0
- package/src/icons/svg/automations-disabled.svg +3 -0
- package/src/icons/svg/automations-error.svg +3 -0
- package/src/icons/svg/automations-in-progress.svg +3 -0
- package/src/icons/svg/automations-not-started.svg +3 -0
- package/src/icons/svg/automations-success.svg +3 -0
- package/src/icons/svg/back.svg +2 -0
- package/src/icons/svg/backlog-icon.svg +3 -0
- package/src/icons/svg/batch-actions-icon.svg +4 -0
- package/src/icons/svg/bell-circle.svg +4 -0
- package/src/icons/svg/bell-filled.svg +4 -0
- package/src/icons/svg/bell-off.svg +4 -0
- package/src/icons/svg/bell-ringing.svg +5 -0
- package/src/icons/svg/bell-x.svg +4 -0
- package/src/icons/svg/bolt.svg +3 -0
- package/src/icons/svg/bring-forward.svg +8 -0
- package/src/icons/svg/bring-to-front.svg +3 -0
- package/src/icons/svg/cards.svg +3 -0
- package/src/icons/svg/chat-ai.svg +5 -0
- package/src/icons/svg/chat.svg +3 -0
- package/src/icons/svg/check-circle-filled.svg +3 -0
- package/src/icons/svg/check-circle.svg +4 -0
- package/src/icons/svg/checked.svg +3 -0
- package/src/icons/svg/clean.svg +6 -0
- package/src/icons/svg/clear-input-filled.svg +3 -0
- package/src/icons/svg/clear-value.svg +6 -0
- package/src/icons/svg/clear.svg +6 -0
- package/src/icons/svg/clock-alarm.svg +6 -0
- package/src/icons/svg/clock-forward.svg +3 -0
- package/src/icons/svg/clock.svg +4 -0
- package/src/icons/svg/close.svg +4 -0
- package/src/icons/svg/collapse-all.svg +3 -0
- package/src/icons/svg/color-coding-filled.svg +3 -0
- package/src/icons/svg/color-coding.svg +4 -0
- package/src/icons/svg/columns-2.svg +3 -0
- package/src/icons/svg/columns-4.svg +3 -0
- package/src/icons/svg/columns.svg +3 -0
- package/src/icons/svg/comment-bubble.svg +3 -0
- package/src/icons/svg/copy.svg +5 -0
- package/src/icons/svg/create.svg +3 -0
- package/src/icons/svg/credits-filled.svg +3 -0
- package/src/icons/svg/cross-circle.svg +4 -0
- package/src/icons/svg/database-off.svg +3 -0
- package/src/icons/svg/database-stroke.svg +4 -0
- package/src/icons/svg/database.svg +4 -0
- package/src/icons/svg/delete.svg +6 -0
- package/src/icons/svg/demo.svg +2 -0
- package/src/icons/svg/dependency.svg +3 -0
- package/src/icons/svg/double-arrow-left.svg +2 -0
- package/src/icons/svg/double-arrow-right.svg +2 -0
- package/src/icons/svg/drag-block-handle-single.svg +5 -0
- package/src/icons/svg/drag-block-handle.svg +8 -0
- package/src/icons/svg/drag-handle.svg +2 -0
- package/src/icons/svg/duplicate.svg +5 -0
- package/src/icons/svg/dynamic-filter-value.svg +3 -0
- package/src/icons/svg/edit-value.svg +5 -0
- package/src/icons/svg/email.svg +3 -0
- package/src/icons/svg/emoji-delete.svg +5 -0
- package/src/icons/svg/entity-merge.svg +3 -0
- package/src/icons/svg/equation.svg +4 -0
- package/src/icons/svg/export.svg +4 -0
- package/src/icons/svg/extension/assignments.svg +7 -0
- package/src/icons/svg/extension/avatar.svg +2 -0
- package/src/icons/svg/extension/comments.svg +5 -0
- package/src/icons/svg/extension/files.svg +2 -0
- package/src/icons/svg/extension/references.svg +2 -0
- package/src/icons/svg/extension/workflow.svg +2 -0
- package/src/icons/svg/eye.svg +4 -0
- package/src/icons/svg/favorites-checked.svg +4 -0
- package/src/icons/svg/favorites-off.svg +4 -0
- package/src/icons/svg/favorites.svg +4 -0
- package/src/icons/svg/fibery-mono.svg +3 -0
- package/src/icons/svg/field-unit.svg +3 -0
- package/src/icons/svg/fields.svg +4 -0
- package/src/icons/svg/figma.svg +7 -0
- package/src/icons/svg/file-upload.svg +7 -0
- package/src/icons/svg/filter.svg +3 -0
- package/src/icons/svg/fit-to-screen.svg +5 -0
- package/src/icons/svg/focus-mode-off.svg +5 -0
- package/src/icons/svg/focus-mode.svg +5 -0
- package/src/icons/svg/folder.svg +4 -0
- package/src/icons/svg/form-with-cover.svg +7 -0
- package/src/icons/svg/form-without-cover.svg +6 -0
- package/src/icons/svg/fullscreen-mode-off-icon.svg +3 -0
- package/src/icons/svg/fullscreen-mode-on-icon.svg +3 -0
- package/src/icons/svg/fullscreen-mode-on.svg +4 -0
- package/src/icons/svg/gift.svg +3 -0
- package/src/icons/svg/github.svg +1 -0
- package/src/icons/svg/gitlab.svg +3 -0
- package/src/icons/svg/globe-simple.svg +3 -0
- package/src/icons/svg/globe.svg +3 -0
- package/src/icons/svg/go-to.svg +5 -0
- package/src/icons/svg/google-drive.svg +8 -0
- package/src/icons/svg/google-map.svg +7 -0
- package/src/icons/svg/headphones-ai.svg +4 -0
- package/src/icons/svg/headphones.svg +3 -0
- package/src/icons/svg/hide.svg +2 -0
- package/src/icons/svg/highlights.svg +3 -0
- package/src/icons/svg/hint.svg +4 -0
- package/src/icons/svg/home.svg +2 -0
- package/src/icons/svg/image-xmark.svg +2 -0
- package/src/icons/svg/import.svg +4 -0
- package/src/icons/svg/info-circle-filled.svg +3 -0
- package/src/icons/svg/info-circle.svg +6 -0
- package/src/icons/svg/integration.svg +2 -0
- package/src/icons/svg/integrations/integration-discourse-color.svg +8 -0
- package/src/icons/svg/integrations/integration-intercom-color.svg +3 -0
- package/src/icons/svg/integrations/integration-slack-color.svg +10 -0
- package/src/icons/svg/integrations/integration-zendesk-color.svg +6 -0
- package/src/icons/svg/invite-people.svg +6 -0
- package/src/icons/svg/items-timeline.svg +4 -0
- package/src/icons/svg/items.svg +3 -0
- package/src/icons/svg/jira.svg +3 -0
- package/src/icons/svg/key.svg +4 -0
- package/src/icons/svg/lab.svg +6 -0
- package/src/icons/svg/layout-double.svg +3 -0
- package/src/icons/svg/layout-single.svg +3 -0
- package/src/icons/svg/left-panel.svg +11 -0
- package/src/icons/svg/level-plus.svg +4 -0
- package/src/icons/svg/levels.svg +2 -0
- package/src/icons/svg/line-divider.svg +3 -0
- package/src/icons/svg/link.svg +6 -0
- package/src/icons/svg/lock-outline.svg +5 -0
- package/src/icons/svg/lock.svg +4 -0
- package/src/icons/svg/logout.svg +4 -0
- package/src/icons/svg/loom.svg +3 -0
- package/src/icons/svg/loupe-zoom-in.svg +3 -0
- package/src/icons/svg/loupe-zoom-out.svg +1 -0
- package/src/icons/svg/loupe-zoom.svg +3 -0
- package/src/icons/svg/many-people.svg +4 -0
- package/src/icons/svg/map-mode.svg +6 -0
- package/src/icons/svg/markdown.svg +3 -0
- package/src/icons/svg/menu-collapser.svg +2 -0
- package/src/icons/svg/message-plus-square.svg +4 -0
- package/src/icons/svg/milestones.svg +3 -0
- package/src/icons/svg/minus.svg +4 -0
- package/src/icons/svg/miro.svg +4 -0
- package/src/icons/svg/mirror-off.svg +8 -0
- package/src/icons/svg/mirror-on.svg +3 -0
- package/src/icons/svg/mixpanel.svg +3 -0
- package/src/icons/svg/monitor.svg +3 -0
- package/src/icons/svg/more-compact.svg +4 -0
- package/src/icons/svg/more.svg +4 -0
- package/src/icons/svg/move-bottom.svg +3 -0
- package/src/icons/svg/move-left.svg +3 -0
- package/src/icons/svg/move-right.svg +3 -0
- package/src/icons/svg/move-space.svg +5 -0
- package/src/icons/svg/move-top.svg +3 -0
- package/src/icons/svg/network-add.svg +5 -0
- package/src/icons/svg/network.svg +4 -0
- package/src/icons/svg/notifications.svg +2 -0
- package/src/icons/svg/obj-child.svg +2 -0
- package/src/icons/svg/obj-m2m.svg +2 -0
- package/src/icons/svg/obj-o2o.svg +2 -0
- package/src/icons/svg/obj-parent.svg +2 -0
- package/src/icons/svg/obj-self.svg +2 -0
- package/src/icons/svg/on-schedule.svg +3 -0
- package/src/icons/svg/open-as-page.svg +4 -0
- package/src/icons/svg/page-regular-mode.svg +5 -0
- package/src/icons/svg/page-wide-mode.svg +5 -0
- package/src/icons/svg/panel-add.svg +3 -0
- package/src/icons/svg/pencil.svg +5 -0
- package/src/icons/svg/people-check.svg +4 -0
- package/src/icons/svg/people.svg +7 -0
- package/src/icons/svg/photo.svg +2 -0
- package/src/icons/svg/pin-filled.svg +5 -0
- package/src/icons/svg/pin.svg +3 -0
- package/src/icons/svg/popup.svg +5 -0
- package/src/icons/svg/posts.svg +3 -0
- package/src/icons/svg/present-play.svg +4 -0
- package/src/icons/svg/present-stop.svg +3 -0
- package/src/icons/svg/private-items.svg +5 -0
- package/src/icons/svg/question.svg +4 -0
- package/src/icons/svg/refresh.svg +4 -0
- package/src/icons/svg/remove-people.svg +6 -0
- package/src/icons/svg/remove.svg +2 -0
- package/src/icons/svg/reply.svg +2 -0
- package/src/icons/svg/reset-password.svg +6 -0
- package/src/icons/svg/restore.svg +2 -0
- package/src/icons/svg/richeditor/actions/more.svg +2 -0
- package/src/icons/svg/richeditor/block/callout.svg +4 -0
- package/src/icons/svg/richeditor/block/code.svg +7 -0
- package/src/icons/svg/richeditor/block/embed.svg +4 -0
- package/src/icons/svg/richeditor/block/entity.svg +2 -0
- package/src/icons/svg/richeditor/block/file.svg +1 -0
- package/src/icons/svg/richeditor/block/h1.svg +2 -0
- package/src/icons/svg/richeditor/block/h2.svg +2 -0
- package/src/icons/svg/richeditor/block/h3.svg +2 -0
- package/src/icons/svg/richeditor/block/h4.svg +4 -0
- package/src/icons/svg/richeditor/block/mention.svg +2 -0
- package/src/icons/svg/richeditor/block/paragraph.svg +2 -0
- package/src/icons/svg/richeditor/block/quote.svg +2 -0
- package/src/icons/svg/richeditor/checklist/create.svg +2 -0
- package/src/icons/svg/richeditor/comment/create.svg +5 -0
- package/src/icons/svg/richeditor/entity-link/create.svg +2 -0
- package/src/icons/svg/richeditor/history/redo.svg +2 -0
- package/src/icons/svg/richeditor/history/undo.svg +2 -0
- package/src/icons/svg/richeditor/image/align-center.svg +2 -0
- package/src/icons/svg/richeditor/image/align-left.svg +2 -0
- package/src/icons/svg/richeditor/image/align-right.svg +2 -0
- package/src/icons/svg/richeditor/image/upload.svg +2 -0
- package/src/icons/svg/richeditor/image/wrap-center.svg +2 -0
- package/src/icons/svg/richeditor/image/wrap-left.svg +2 -0
- package/src/icons/svg/richeditor/image/wrap-right.svg +2 -0
- package/src/icons/svg/richeditor/image/zoom.svg +5 -0
- package/src/icons/svg/richeditor/link/create.svg +9 -0
- package/src/icons/svg/richeditor/linkedhighlight/create.svg +2 -0
- package/src/icons/svg/richeditor/list/bullet.svg +2 -0
- package/src/icons/svg/richeditor/list/indent.svg +2 -0
- package/src/icons/svg/richeditor/list/ordered.svg +2 -0
- package/src/icons/svg/richeditor/list/unindent.svg +2 -0
- package/src/icons/svg/richeditor/mark/code.svg +6 -0
- package/src/icons/svg/richeditor/mark/em.svg +2 -0
- package/src/icons/svg/richeditor/mark/strike.svg +2 -0
- package/src/icons/svg/richeditor/mark/strong.svg +2 -0
- package/src/icons/svg/richeditor/mark/text-background-color.svg +2 -0
- package/src/icons/svg/richeditor/mark/underline.svg +2 -0
- package/src/icons/svg/richeditor/open-link.svg +4 -0
- package/src/icons/svg/richeditor/table/create.svg +2 -0
- package/src/icons/svg/richeditor/unlink.svg +10 -0
- package/src/icons/svg/richeditor/video/upload.svg +2 -0
- package/src/icons/svg/right-panel.svg +11 -0
- package/src/icons/svg/rows.svg +3 -0
- package/src/icons/svg/rule-scheduled.svg +5 -0
- package/src/icons/svg/search-add.svg +4 -0
- package/src/icons/svg/search-remove.svg +4 -0
- package/src/icons/svg/search.svg +2 -0
- package/src/icons/svg/self-reference-off.svg +2 -0
- package/src/icons/svg/self-reference-on.svg +2 -0
- package/src/icons/svg/send-arrow.svg +3 -0
- package/src/icons/svg/send-backward.svg +8 -0
- package/src/icons/svg/send-to-back.svg +4 -0
- package/src/icons/svg/settings-off.svg +4 -0
- package/src/icons/svg/settings.svg +4 -0
- package/src/icons/svg/share.svg +5 -0
- package/src/icons/svg/shared.svg +7 -0
- package/src/icons/svg/shield-keyhole.svg +4 -0
- package/src/icons/svg/show-author.svg +5 -0
- package/src/icons/svg/sidebar-fields-opened.svg +3 -0
- package/src/icons/svg/sidebar-fields.svg +6 -0
- package/src/icons/svg/sidebar.svg +2 -0
- package/src/icons/svg/simple-compass.svg +5 -0
- package/src/icons/svg/slack-icon.svg +3 -0
- package/src/icons/svg/slack.svg +10 -0
- package/src/icons/svg/slide-menu-close.svg +4 -0
- package/src/icons/svg/slide-menu-open.svg +4 -0
- package/src/icons/svg/slide-menu.svg +5 -0
- package/src/icons/svg/smart-folder.svg +5 -0
- package/src/icons/svg/sort-on-bottom.svg +4 -0
- package/src/icons/svg/sort-on-top.svg +4 -0
- package/src/icons/svg/sort.svg +3 -0
- package/src/icons/svg/spinner.svg +2 -0
- package/src/icons/svg/success.svg +4 -0
- package/src/icons/svg/template.svg +3 -0
- package/src/icons/svg/templates.svg +4 -0
- package/src/icons/svg/terminal.svg +5 -0
- package/src/icons/svg/text-tool-align-bottom.svg +3 -0
- package/src/icons/svg/text-tool-align-middle.svg +3 -0
- package/src/icons/svg/text-tool-align-top.svg +3 -0
- package/src/icons/svg/twitter.svg +4 -0
- package/src/icons/svg/type/boolean.svg +2 -0
- package/src/icons/svg/type/button.svg +4 -0
- package/src/icons/svg/type/checkbox.svg +2 -0
- package/src/icons/svg/type/date.svg +2 -0
- package/src/icons/svg/type/email.svg +2 -0
- package/src/icons/svg/type/emoji.svg +2 -0
- package/src/icons/svg/type/formula.svg +2 -0
- package/src/icons/svg/type/function.svg +2 -0
- package/src/icons/svg/type/location.svg +4 -0
- package/src/icons/svg/type/lookup.svg +2 -0
- package/src/icons/svg/type/money.svg +2 -0
- package/src/icons/svg/type/multi-select.svg +2 -0
- package/src/icons/svg/type/number.svg +2 -0
- package/src/icons/svg/type/percent.svg +2 -0
- package/src/icons/svg/type/phone.svg +2 -0
- package/src/icons/svg/type/relation.svg +2 -0
- package/src/icons/svg/type/rich-text.svg +2 -0
- package/src/icons/svg/type/rule.svg +2 -0
- package/src/icons/svg/type/single-select.svg +2 -0
- package/src/icons/svg/type/text.svg +2 -0
- package/src/icons/svg/type/url.svg +9 -0
- package/src/icons/svg/units/avatar.svg +5 -0
- package/src/icons/svg/units/collection.svg +5 -0
- package/src/icons/svg/units/counter.svg +5 -0
- package/src/icons/svg/units/date.svg +5 -0
- package/src/icons/svg/units/db-badge-abbr.svg +4 -0
- package/src/icons/svg/units/db-badge-full.svg +4 -0
- package/src/icons/svg/units/db-icon.svg +4 -0
- package/src/icons/svg/units/field-icon-button.svg +5 -0
- package/src/icons/svg/units/field.svg +4 -0
- package/src/icons/svg/units/input.svg +5 -0
- package/src/icons/svg/units/progress-bar.svg +5 -0
- package/src/icons/svg/units/rich-text.svg +4 -0
- package/src/icons/svg/units/snippet.svg +5 -0
- package/src/icons/svg/unlink.svg +10 -0
- package/src/icons/svg/unlock-filled.svg +5 -0
- package/src/icons/svg/unlock-outline.svg +5 -0
- package/src/icons/svg/upgrade.svg +2 -0
- package/src/icons/svg/usb-flash-drive.svg +5 -0
- package/src/icons/svg/user-check.svg +3 -0
- package/src/icons/svg/user-group-remove.svg +5 -0
- package/src/icons/svg/user-group.svg +4 -0
- package/src/icons/svg/user-role.svg +4 -0
- package/src/icons/svg/user-x.svg +5 -0
- package/src/icons/svg/view-ai.svg +3 -0
- package/src/icons/svg/view-board.svg +2 -0
- package/src/icons/svg/view-calendar.svg +2 -0
- package/src/icons/svg/view-canvas.svg +2 -0
- package/src/icons/svg/view-chart.svg +2 -0
- package/src/icons/svg/view-details.svg +2 -0
- package/src/icons/svg/view-document.svg +2 -0
- package/src/icons/svg/view-feed.svg +3 -0
- package/src/icons/svg/view-form.svg +4 -0
- package/src/icons/svg/view-gantt.svg +5 -0
- package/src/icons/svg/view-list.svg +2 -0
- package/src/icons/svg/view-map.svg +3 -0
- package/src/icons/svg/view-page.svg +3 -0
- package/src/icons/svg/view-table.svg +2 -0
- package/src/icons/svg/view-timeline.svg +2 -0
- package/src/icons/svg/views.svg +11 -0
- package/src/icons/svg/warning-triangle.svg +4 -0
- package/src/icons/svg/warning.svg +2 -0
- package/src/icons/svg/workspace-map.svg +3 -0
- package/src/icons/svg/youtube.svg +4 -0
- package/src/icons/svg/zoom-in.svg +7 -0
- package/src/icons/svg/zoom-out.svg +7 -0
- package/src/is-android.ts +3 -0
- package/src/is-iOS.ts +8 -0
- package/src/is-in-popup.ts +15 -0
- package/src/layout.tsx +88 -0
- package/src/link-input/components/AntTextAreaWithCustomReadState.js +64 -0
- package/src/link-input/index.js +89 -0
- package/src/link-input/utils.js +13 -0
- package/src/logo.tsx +81 -0
- package/src/menu-item-actions.tsx +6 -0
- package/src/nested-menu-item.tsx +0 -0
- package/src/new-badge.tsx +16 -0
- package/src/new-card-placeholder.tsx +231 -0
- package/src/not-empty.ts +3 -0
- package/src/notification-dot.tsx +23 -0
- package/src/number-input/decimal.js +59 -0
- package/src/number-input/decimal.test.js +71 -0
- package/src/number-input/edit-unit-styles.ts +18 -0
- package/src/number-input/index.js +191 -0
- package/src/number-input/index.test.js +106 -0
- package/src/number-input/number-inline-input-with-autosize.tsx +156 -0
- package/src/number-input/number-input.tsx +152 -0
- package/src/number-input/stack.tsx +25 -0
- package/src/number-input/step-button.tsx +73 -0
- package/src/number-input/styles.ts +50 -0
- package/src/number-input/text-area-with-autosize.tsx +91 -0
- package/src/number-input/text-inline-input-with-autosize.tsx +60 -0
- package/src/online-users.tsx +238 -0
- package/src/palette.ts +2 -30
- package/src/platform.ts +4 -0
- package/src/popup/index.tsx +382 -0
- package/src/popup/modifiers.tsx +70 -0
- package/src/popup/popup-modifiers-context.ts +12 -0
- package/src/popup/popup-stack-context.tsx +44 -0
- package/src/popup/reference.ts +7 -0
- package/src/popup/styles.ts +62 -0
- package/src/popup/use-click-outside.ts +22 -0
- package/src/progress.tsx +14 -0
- package/src/reactions/get-word-divider.tsx +15 -0
- package/src/reactions/reaction-button.tsx +254 -0
- package/src/reactions/reaction-picker.tsx +126 -0
- package/src/reactions/reactions.tsx +30 -0
- package/src/ready-to-scroll-context.tsx +16 -0
- package/src/rich-input-loader.tsx +78 -0
- package/src/rich-text-embed-error.tsx +44 -0
- package/src/select/custom-select-partials/clear-indicator.tsx +4 -0
- package/src/select/custom-select-partials/group-heading.tsx +4 -5
- package/src/select/custom-select-partials/menu-list-virtualized.tsx +22 -4
- package/src/select/custom-select-partials/menu.tsx +5 -6
- package/src/select/index.tsx +39 -28
- package/src/select/select-in-popover.tsx +21 -16
- package/src/select/styles.ts +10 -2
- package/src/styles-utils.tsx +16 -0
- package/src/tab-nav/tab-nav.tsx +208 -0
- package/src/table.tsx +91 -0
- package/src/toast/primitives.tsx +6 -7
- package/src/toast/toast-action.tsx +7 -1
- package/src/toast/toast-queue.ts +2 -2
- package/src/toast/toast.tsx +78 -16
- package/src/toast/toaster.tsx +2 -17
- package/src/toast/utils/toastify-item-name.ts +16 -5
- package/src/tooltip.tsx +9 -0
- package/src/type-badge-box.tsx +42 -0
- package/src/type-badge.tsx +315 -0
- package/src/unit/as-string.tsx +1 -0
- package/src/unit/index.tsx +55 -0
- package/src/unit/loading-unit-value.tsx +13 -0
- package/src/unit/maybe-unit-value.tsx +9 -0
- package/src/unit/primitive.tsx +167 -0
- package/src/unit/required-indicator.svg +3 -0
- package/src/unit/styles.ts +165 -0
- package/src/unit/types.ts +31 -0
- package/src/unit/unit-button-group.tsx +38 -0
- package/src/unit/unit-content-layout.tsx +37 -0
- package/src/unit/unit-content.tsx +37 -0
- package/src/unit/unit-with-title.tsx +8 -0
- package/src/unit/unit-with-tooltip.tsx +60 -0
- package/src/use-is-support-hover.ts +5 -0
- package/src/use-long-press.tsx +79 -0
- package/src/use-me.tsx +11 -0
- package/src/use-navigation.tsx +11 -0
- package/src/use-why-did-you-update.tsx +78 -0
- package/src/utils-dom.ts +26 -0
- package/src/with-data.tsx +78 -0
- package/src/workflow-progress-icon.tsx +73 -0
- package/tsconfig.json +4 -0
- package/src/icons/get-icon-container-style.tsx +0 -13
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import {forwardRef} from 'react';
|
|
4
|
+
import ResetPasswordSvg from '../ast/ResetPassword';
|
|
5
|
+
import { Icon } from '../Icon';
|
|
6
|
+
import { IconBaseProps } from '../types';
|
|
7
|
+
|
|
8
|
+
const ResetPassword = forwardRef<SVGSVGElement, IconBaseProps>(function ResetPassword(
|
|
9
|
+
props: IconBaseProps,
|
|
10
|
+
ref: React.Ref<SVGSVGElement>
|
|
11
|
+
) {return <Icon {...props} className={props.className} ref={ref} icon={ResetPasswordSvg} />});
|
|
12
|
+
|
|
13
|
+
export default ResetPassword;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import {forwardRef} from 'react';
|
|
4
|
+
import SettingsOffSvg from '../ast/SettingsOff';
|
|
5
|
+
import { Icon } from '../Icon';
|
|
6
|
+
import { IconBaseProps } from '../types';
|
|
7
|
+
|
|
8
|
+
const SettingsOff = forwardRef<SVGSVGElement, IconBaseProps>(function SettingsOff(
|
|
9
|
+
props: IconBaseProps,
|
|
10
|
+
ref: React.Ref<SVGSVGElement>
|
|
11
|
+
) {return <Icon {...props} className={props.className} ref={ref} icon={SettingsOffSvg} />});
|
|
12
|
+
|
|
13
|
+
export default SettingsOff;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import {forwardRef} from 'react';
|
|
4
|
+
import TemplateSvg from '../ast/Template';
|
|
5
|
+
import { Icon } from '../Icon';
|
|
6
|
+
import { IconBaseProps } from '../types';
|
|
7
|
+
|
|
8
|
+
const Template = forwardRef<SVGSVGElement, IconBaseProps>(function Template(
|
|
9
|
+
props: IconBaseProps,
|
|
10
|
+
ref: React.Ref<SVGSVGElement>
|
|
11
|
+
) {return <Icon {...props} className={props.className} ref={ref} icon={TemplateSvg} />});
|
|
12
|
+
|
|
13
|
+
export default Template;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import {forwardRef} from 'react';
|
|
4
|
+
import UserCheckSvg from '../ast/UserCheck';
|
|
5
|
+
import { Icon } from '../Icon';
|
|
6
|
+
import { IconBaseProps } from '../types';
|
|
7
|
+
|
|
8
|
+
const UserCheck = forwardRef<SVGSVGElement, IconBaseProps>(function UserCheck(
|
|
9
|
+
props: IconBaseProps,
|
|
10
|
+
ref: React.Ref<SVGSVGElement>
|
|
11
|
+
) {return <Icon {...props} className={props.className} ref={ref} icon={UserCheckSvg} />});
|
|
12
|
+
|
|
13
|
+
export default UserCheck;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import {forwardRef} from 'react';
|
|
4
|
+
import UserGroupRemoveSvg from '../ast/UserGroupRemove';
|
|
5
|
+
import { Icon } from '../Icon';
|
|
6
|
+
import { IconBaseProps } from '../types';
|
|
7
|
+
|
|
8
|
+
const UserGroupRemove = forwardRef<SVGSVGElement, IconBaseProps>(function UserGroupRemove(
|
|
9
|
+
props: IconBaseProps,
|
|
10
|
+
ref: React.Ref<SVGSVGElement>
|
|
11
|
+
) {return <Icon {...props} className={props.className} ref={ref} icon={UserGroupRemoveSvg} />});
|
|
12
|
+
|
|
13
|
+
export default UserGroupRemove;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import {forwardRef} from 'react';
|
|
4
|
+
import UserXSvg from '../ast/UserX';
|
|
5
|
+
import { Icon } from '../Icon';
|
|
6
|
+
import { IconBaseProps } from '../types';
|
|
7
|
+
|
|
8
|
+
const UserX = forwardRef<SVGSVGElement, IconBaseProps>(function UserX(
|
|
9
|
+
props: IconBaseProps,
|
|
10
|
+
ref: React.Ref<SVGSVGElement>
|
|
11
|
+
) {return <Icon {...props} className={props.className} ref={ref} icon={UserXSvg} />});
|
|
12
|
+
|
|
13
|
+
export default UserX;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import {forwardRef} from 'react';
|
|
4
|
+
import ViewGanttSvg from '../ast/ViewGantt';
|
|
5
|
+
import { Icon } from '../Icon';
|
|
6
|
+
import { IconBaseProps } from '../types';
|
|
7
|
+
|
|
8
|
+
const ViewGantt = forwardRef<SVGSVGElement, IconBaseProps>(function ViewGantt(
|
|
9
|
+
props: IconBaseProps,
|
|
10
|
+
ref: React.Ref<SVGSVGElement>
|
|
11
|
+
) {return <Icon {...props} className={props.className} ref={ref} icon={ViewGanttSvg} />});
|
|
12
|
+
|
|
13
|
+
export default ViewGantt;
|
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
// This icon file is generated automatically.
|
|
2
2
|
export { default as Abort } from './Abort';
|
|
3
|
+
export { default as AccessTemplate } from './AccessTemplate';
|
|
3
4
|
export { default as ActivityLog } from './ActivityLog';
|
|
4
5
|
export { default as Activity } from './Activity';
|
|
5
6
|
export { default as AddAfter } from './AddAfter';
|
|
6
7
|
export { default as AddBefore } from './AddBefore';
|
|
7
8
|
export { default as AddCompact } from './AddCompact';
|
|
9
|
+
export { default as AddDatabase } from './AddDatabase';
|
|
8
10
|
export { default as AddGroup } from './AddGroup';
|
|
11
|
+
export { default as AddIntegration } from './AddIntegration';
|
|
9
12
|
export { default as AddReactions } from './AddReactions';
|
|
10
13
|
export { default as Add } from './Add';
|
|
11
14
|
export { default as AiAssistant } from './AiAssistant';
|
|
12
15
|
export { default as AiAvatar } from './AiAvatar';
|
|
16
|
+
export { default as AiSearch } from './AiSearch';
|
|
13
17
|
export { default as AlertTriangle } from './AlertTriangle';
|
|
14
18
|
export { default as AppDetails } from './AppDetails';
|
|
15
19
|
export { default as AppStoreOneColor } from './AppStoreOneColor';
|
|
@@ -33,6 +37,7 @@ export { default as ArrowTop } from './ArrowTop';
|
|
|
33
37
|
export { default as ArrowUpCircle } from './ArrowUpCircle';
|
|
34
38
|
export { default as ArrowsRightLeft } from './ArrowsRightLeft';
|
|
35
39
|
export { default as AskForInput } from './AskForInput';
|
|
40
|
+
export { default as Asterisk } from './Asterisk';
|
|
36
41
|
export { default as Atom } from './Atom';
|
|
37
42
|
export { default as AutomationsCancelled } from './AutomationsCancelled';
|
|
38
43
|
export { default as AutomationsDisabled } from './AutomationsDisabled';
|
|
@@ -57,6 +62,7 @@ export { default as Chat } from './Chat';
|
|
|
57
62
|
export { default as CheckCircleFilled } from './CheckCircleFilled';
|
|
58
63
|
export { default as CheckCircle } from './CheckCircle';
|
|
59
64
|
export { default as Checked } from './Checked';
|
|
65
|
+
export { default as Clean } from './Clean';
|
|
60
66
|
export { default as ClearInputFilled } from './ClearInputFilled';
|
|
61
67
|
export { default as ClearValue } from './ClearValue';
|
|
62
68
|
export { default as Clear } from './Clear';
|
|
@@ -73,6 +79,8 @@ export { default as Columns } from './Columns';
|
|
|
73
79
|
export { default as CommentBubble } from './CommentBubble';
|
|
74
80
|
export { default as Copy } from './Copy';
|
|
75
81
|
export { default as Create } from './Create';
|
|
82
|
+
export { default as CreditsFilled } from './CreditsFilled';
|
|
83
|
+
export { default as CrossCircle } from './CrossCircle';
|
|
76
84
|
export { default as DatabaseOff } from './DatabaseOff';
|
|
77
85
|
export { default as DatabaseStroke } from './DatabaseStroke';
|
|
78
86
|
export { default as Database } from './Database';
|
|
@@ -117,6 +125,7 @@ export { default as FormWithoutCover } from './FormWithoutCover';
|
|
|
117
125
|
export { default as FullscreenModeOffIcon } from './FullscreenModeOffIcon';
|
|
118
126
|
export { default as FullscreenModeOnIcon } from './FullscreenModeOnIcon';
|
|
119
127
|
export { default as FullscreenModeOn } from './FullscreenModeOn';
|
|
128
|
+
export { default as Gift } from './Gift';
|
|
120
129
|
export { default as Github } from './Github';
|
|
121
130
|
export { default as Gitlab } from './Gitlab';
|
|
122
131
|
export { default as GlobeSimple } from './GlobeSimple';
|
|
@@ -148,6 +157,7 @@ export { default as Lab } from './Lab';
|
|
|
148
157
|
export { default as LayoutDouble } from './LayoutDouble';
|
|
149
158
|
export { default as LayoutSingle } from './LayoutSingle';
|
|
150
159
|
export { default as LeftPanel } from './LeftPanel';
|
|
160
|
+
export { default as LevelPlus } from './LevelPlus';
|
|
151
161
|
export { default as Levels } from './Levels';
|
|
152
162
|
export { default as LineDivider } from './LineDivider';
|
|
153
163
|
export { default as Link } from './Link';
|
|
@@ -160,6 +170,7 @@ export { default as LoupeZoomOut } from './LoupeZoomOut';
|
|
|
160
170
|
export { default as LoupeZoom } from './LoupeZoom';
|
|
161
171
|
export { default as ManyPeople } from './ManyPeople';
|
|
162
172
|
export { default as MapMode } from './MapMode';
|
|
173
|
+
export { default as Markdown } from './Markdown';
|
|
163
174
|
export { default as MenuCollapser } from './MenuCollapser';
|
|
164
175
|
export { default as MessagePlusSquare } from './MessagePlusSquare';
|
|
165
176
|
export { default as Milestones } from './Milestones';
|
|
@@ -190,18 +201,22 @@ export { default as PageRegularMode } from './PageRegularMode';
|
|
|
190
201
|
export { default as PageWideMode } from './PageWideMode';
|
|
191
202
|
export { default as PanelAdd } from './PanelAdd';
|
|
192
203
|
export { default as Pencil } from './Pencil';
|
|
204
|
+
export { default as PeopleCheck } from './PeopleCheck';
|
|
193
205
|
export { default as People } from './People';
|
|
194
206
|
export { default as Photo } from './Photo';
|
|
195
207
|
export { default as PinFilled } from './PinFilled';
|
|
196
208
|
export { default as Pin } from './Pin';
|
|
197
209
|
export { default as Popup } from './Popup';
|
|
198
210
|
export { default as Posts } from './Posts';
|
|
211
|
+
export { default as PresentPlay } from './PresentPlay';
|
|
212
|
+
export { default as PresentStop } from './PresentStop';
|
|
199
213
|
export { default as PrivateItems } from './PrivateItems';
|
|
200
214
|
export { default as Question } from './Question';
|
|
201
215
|
export { default as Refresh } from './Refresh';
|
|
202
216
|
export { default as RemovePeople } from './RemovePeople';
|
|
203
217
|
export { default as Remove } from './Remove';
|
|
204
218
|
export { default as Reply } from './Reply';
|
|
219
|
+
export { default as ResetPassword } from './ResetPassword';
|
|
205
220
|
export { default as Restore } from './Restore';
|
|
206
221
|
export { default as RicheditorActionsMore } from './RicheditorActionsMore';
|
|
207
222
|
export { default as RicheditorBlockCallout } from './RicheditorBlockCallout';
|
|
@@ -256,6 +271,7 @@ export { default as SelfReferenceOn } from './SelfReferenceOn';
|
|
|
256
271
|
export { default as SendArrow } from './SendArrow';
|
|
257
272
|
export { default as SendBackward } from './SendBackward';
|
|
258
273
|
export { default as SendToBack } from './SendToBack';
|
|
274
|
+
export { default as SettingsOff } from './SettingsOff';
|
|
259
275
|
export { default as Settings } from './Settings';
|
|
260
276
|
export { default as Share } from './Share';
|
|
261
277
|
export { default as Shared } from './Shared';
|
|
@@ -276,6 +292,7 @@ export { default as SortOnTop } from './SortOnTop';
|
|
|
276
292
|
export { default as Sort } from './Sort';
|
|
277
293
|
export { default as Spinner } from './Spinner';
|
|
278
294
|
export { default as Success } from './Success';
|
|
295
|
+
export { default as Template } from './Template';
|
|
279
296
|
export { default as Templates } from './Templates';
|
|
280
297
|
export { default as Terminal } from './Terminal';
|
|
281
298
|
export { default as TextToolAlignBottom } from './TextToolAlignBottom';
|
|
@@ -321,8 +338,11 @@ export { default as UnlockFilled } from './UnlockFilled';
|
|
|
321
338
|
export { default as UnlockOutline } from './UnlockOutline';
|
|
322
339
|
export { default as Upgrade } from './Upgrade';
|
|
323
340
|
export { default as UsbFlashDrive } from './UsbFlashDrive';
|
|
341
|
+
export { default as UserCheck } from './UserCheck';
|
|
342
|
+
export { default as UserGroupRemove } from './UserGroupRemove';
|
|
324
343
|
export { default as UserGroup } from './UserGroup';
|
|
325
344
|
export { default as UserRole } from './UserRole';
|
|
345
|
+
export { default as UserX } from './UserX';
|
|
326
346
|
export { default as ViewAi } from './ViewAi';
|
|
327
347
|
export { default as ViewBoard } from './ViewBoard';
|
|
328
348
|
export { default as ViewCalendar } from './ViewCalendar';
|
|
@@ -332,6 +352,7 @@ export { default as ViewDetails } from './ViewDetails';
|
|
|
332
352
|
export { default as ViewDocument } from './ViewDocument';
|
|
333
353
|
export { default as ViewFeed } from './ViewFeed';
|
|
334
354
|
export { default as ViewForm } from './ViewForm';
|
|
355
|
+
export { default as ViewGantt } from './ViewGantt';
|
|
335
356
|
export { default as ViewList } from './ViewList';
|
|
336
357
|
export { default as ViewMap } from './ViewMap';
|
|
337
358
|
export { default as ViewPage } from './ViewPage';
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12.5 6H7.5C7.10218 6 6.72064 6.15804 6.43934 6.43934C6.15804 6.72064 6 7.10218 6 7.5V12.5C6 12.8978 6.15804 13.2794 6.43934 13.5607C6.72064 13.842 7.10218 14 7.5 14H12.5C12.8978 14 13.2794 13.842 13.5607 13.5607C13.842 13.2794 14 12.8978 14 12.5V7.5C14 7.10218 13.842 6.72064 13.5607 6.43934C13.2794 6.15804 12.8978 6 12.5 6Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.1867 2.24077C14.2034 2.67751 15.1229 3.31236 15.8917 4.10828C16.6876 4.877 17.3224 5.79654 17.7592 6.81324C18.1959 7.82994 18.4258 8.92344 18.4354 10.0299C18.445 11.1364 18.2342 12.2338 17.8152 13.2579C17.3962 14.282 16.7774 15.2125 15.995 15.9949C15.2125 16.7773 14.2821 17.3961 13.258 17.8151C12.2338 18.2341 11.1365 18.445 10.03 18.4354C8.9235 18.4258 7.83 18.1959 6.8133 17.7591C5.7966 17.3224 4.87706 16.6875 4.10834 15.8916C3.31242 15.1229 2.67757 14.2033 2.24083 13.1866C1.80409 12.1699 1.5742 11.0764 1.56458 9.96995C1.55497 8.86346 1.76582 7.76613 2.18482 6.74199C2.60383 5.71786 3.22261 4.78743 4.00505 4.00499C4.78749 3.22255 5.71792 2.60377 6.74205 2.18476C7.76619 1.76576 8.86352 1.55491 9.97001 1.56452C11.0765 1.57414 12.17 1.80402 13.1867 2.24077ZM10.6573 16.6394C12.1921 16.4873 13.6267 15.8078 14.7167 14.7166C15.3374 14.0984 15.8294 13.3632 16.1641 12.5536C16.4988 11.744 16.6696 10.876 16.6667 9.99994C16.6655 8.45764 16.1295 6.96347 15.1502 5.77199C14.1709 4.58052 12.8087 3.76546 11.2958 3.46567C9.78296 3.16589 8.21293 3.39992 6.85325 4.12791C5.49357 4.8559 4.42836 6.0328 3.8391 7.4581C3.24984 8.8834 3.17299 10.4689 3.62165 11.9445C4.0703 13.4201 5.0167 14.6945 6.29961 15.5506C7.58251 16.4067 9.12255 16.7914 10.6573 16.6394ZM7.5 8.9167C7.5 7.582 8.58194 6.5 9.91667 6.5C11.2514 6.5 12.3333 7.582 12.3333 8.9167C12.3333 9.98952 11.6342 10.8992 10.6667 11.2147V12.75C10.6667 13.1642 10.3309 13.5 9.91667 13.5C9.50245 13.5 9.16667 13.1642 9.16667 12.75V11.2147C8.19911 10.8992 7.5 9.98952 7.5 8.9167ZM9.91667 8C9.4104 8 9 8.41039 9 8.9167C9 9.42293 9.4104 9.83337 9.91667 9.83337C10.4229 9.83337 10.8333 9.42293 10.8333 8.9167C10.8333 8.41039 10.4229 8 9.91667 8Z"/>
|
|
3
|
+
</svg>
|
|
4
|
+
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.54484 4.07009C6.78498 3.1371 8.32805 2.58337 9.99992 2.58337C14.096 2.58337 17.4166 5.90393 17.4166 10C17.4166 14.0962 14.096 17.4167 9.99992 17.4167C5.90381 17.4167 2.58325 14.0962 2.58325 10C2.58325 9.58583 2.91904 9.25004 3.33325 9.25004C3.74747 9.25004 4.08325 9.58583 4.08325 10C4.08325 13.2677 6.73223 15.9167 9.99992 15.9167C13.2676 15.9167 15.9166 13.2677 15.9166 10C15.9166 6.73236 13.2676 4.08337 9.99992 4.08337C8.77899 4.08337 7.64477 4.45274 6.70234 5.08663H7.29484C7.70905 5.08663 8.04484 5.42242 8.04484 5.83663C8.04484 6.25084 7.70905 6.58663 7.29484 6.58663H4.79484C4.38063 6.58663 4.04484 6.25084 4.04484 5.83663V3.33663C4.04484 2.92242 4.38063 2.58663 4.79484 2.58663C5.20905 2.58663 5.54484 2.92242 5.54484 3.33663V4.07009ZM9.99992 5.91671C10.4141 5.91671 10.7499 6.25249 10.7499 6.66671V9.68938L12.6136 11.553C12.9065 11.8459 12.9065 12.3208 12.6136 12.6137C12.3207 12.9066 11.8458 12.9066 11.5529 12.6137L9.46959 10.5304C9.32894 10.3897 9.24992 10.199 9.24992 10V6.66671C9.24992 6.25249 9.5857 5.91671 9.99992 5.91671Z" class="uiIcons"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.95265 3.56854C7.03433 2.55898 8.49098 2 9.99992 2C11.5089 2 12.9655 2.55898 14.0472 3.56854C15.1306 4.57974 15.7499 5.96273 15.7499 7.41667C15.7499 9.52236 16.278 10.9673 16.867 11.931C17.1392 12.3764 17.3505 12.6916 17.5072 12.9254C17.5301 12.9596 17.5518 12.992 17.5724 13.0228C17.6487 13.1371 17.7256 13.2535 17.7816 13.3544C17.8102 13.4059 17.846 13.4756 17.8745 13.5555C17.901 13.6296 17.9411 13.7665 17.9264 13.9353C17.9172 14.0403 17.8958 14.2221 17.7919 14.4084C17.6876 14.5956 17.5435 14.7095 17.4569 14.7734C17.3398 14.8599 17.2223 14.899 17.158 14.9176C17.0848 14.9386 17.0133 14.9512 16.9532 14.9596C16.8332 14.9764 16.6938 14.9849 16.5485 14.9901C16.2681 15 15.8801 15 15.3937 15L13.2499 15V15.25C13.2499 17.0449 11.7948 18.5 9.99992 18.5C8.205 18.5 6.74992 17.0449 6.74992 15.25L6.75027 15L4.60613 15C4.11978 15 3.73173 15 3.45139 14.9901C3.306 14.9849 3.16661 14.9764 3.04667 14.9596C2.9865 14.9512 2.91505 14.9386 2.84187 14.9176C2.77752 14.899 2.66 14.8599 2.54291 14.7734C2.45631 14.7095 2.31226 14.5956 2.20792 14.4084C2.10405 14.2221 2.08266 14.0403 2.07348 13.9353C2.05872 13.7665 2.09889 13.6296 2.12532 13.5555C2.15381 13.4756 2.18967 13.4059 2.21822 13.3544C2.27426 13.2535 2.35116 13.1371 2.42746 13.0228C2.44804 12.992 2.46975 12.9596 2.49263 12.9254C2.64937 12.6916 2.86064 12.3765 3.13285 11.931C3.72185 10.9673 4.24992 9.52235 4.24992 7.41667C4.24992 5.96273 4.86923 4.57974 5.95265 3.56854ZM8.25027 15L8.24992 15.25C8.24992 15.2498 8.24992 15.2502 8.24992 15.25C8.25025 16.2162 9.03363 17 9.99992 17C10.9664 17 11.7499 16.2165 11.7499 15.25V15H8.25027ZM9.99992 3.5C8.8567 3.5 7.76982 3.92435 6.97613 4.66513C6.18419 5.40427 5.74992 6.39525 5.74992 7.41667C5.74992 9.78801 5.151 11.5053 4.41275 12.7133C4.21728 13.0331 4.04996 13.2918 3.91342 13.4985C4.11248 13.5 4.35058 13.5 4.63378 13.5H15.3661C15.6493 13.5 15.8874 13.5 16.0864 13.4985C15.9499 13.2918 15.7826 13.0331 15.5871 12.7133C14.8488 11.5053 14.2499 9.78801 14.2499 7.41667C14.2499 6.39525 13.8157 5.40427 13.0237 4.66513C12.23 3.92435 11.1431 3.5 9.99992 3.5Z" class="uiIcons"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.25 3C3.00736 3 2 4.00736 2 5.25V14.75C2 15.9926 3.00736 17 4.25 17H7.75C8.99264 17 10 15.9926 10 14.75V5.25C10 4.00736 8.99264 3 7.75 3H4.25ZM3.5 5.25C3.5 4.83579 3.83579 4.5 4.25 4.5H7.75C8.16421 4.5 8.5 4.83579 8.5 5.25V14.75C8.5 15.1642 8.16421 15.5 7.75 15.5H4.25C3.83579 15.5 3.5 15.1642 3.5 14.75V5.25Z" />
|
|
3
|
+
<path d="M15 7C15.4142 7 15.75 7.33579 15.75 7.75L15.75 9.25H17.25C17.6642 9.25 18 9.58579 18 10C18 10.4142 17.6642 10.75 17.25 10.75H15.75L15.75 12.25C15.75 12.6642 15.4142 13 15 13C14.5857 13 14.25 12.6642 14.25 12.25L14.25 10.75H12.75C12.3358 10.75 12 10.4142 12 10C12 9.58579 12.3358 9.25 12.75 9.25H14.25L14.25 7.75C14.25 7.33579 14.5858 7 15 7Z" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.25 3C11.0074 3 10 4.00736 10 5.25V14.75C10 15.9926 11.0074 17 12.25 17H15.75C16.9926 17 18 15.9926 18 14.75V5.25C18 4.00736 16.9926 3 15.75 3H12.25ZM11.5 5.25C11.5 4.83579 11.8358 4.5 12.25 4.5H15.75C16.1642 4.5 16.5 4.83579 16.5 5.25V14.75C16.5 15.1642 16.1642 15.5 15.75 15.5H12.25C11.8358 15.5 11.5 15.1642 11.5 14.75V5.25Z" />
|
|
3
|
+
<path d="M4.99998 7C5.4142 7 5.74998 7.33579 5.74998 7.75L5.74999 9.25H7.25C7.66421 9.25 8 9.58579 8 10C8 10.4142 7.66421 10.75 7.25 10.75H5.74998L5.74996 12.25C5.74996 12.6642 5.41417 13 4.99995 13C4.58574 13 4.24996 12.6642 4.24996 12.25L4.24998 10.75H2.75C2.33579 10.75 2 10.4142 2 10C2 9.58579 2.33579 9.25 2.75 9.25H4.24999L4.24998 7.75C4.24998 7.33579 4.58577 7 4.99998 7Z" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon"><path d="M10 15C10.4142 15 10.75 14.6642 10.75 14.25V10.75H14.25C14.6642 10.75 15 10.4142 15 10C15 9.58579 14.6642 9.25 14.25 9.25L10.75 9.25L10.75 5.75C10.75 5.33579 10.4142 5 10 5C9.58579 5 9.25 5.33579 9.25 5.75L9.25 9.25L5.75 9.25C5.33579 9.25 5 9.58579 5 10C5 10.4142 5.33579 10.75 5.75 10.75H9.25L9.25 14.25C9.25 14.6642 9.58579 15 10 15Z" class="uiIcons"></path></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.83504 8.7377C5.48428 8.56753 5.17462 8.36727 4.9143 8.13536C4.45434 7.72559 4 7.04571 4 6.40068C4 4.00199 6.68629 3 10 3C13.3137 3 16 3.97162 16 6.40068C16 7.04924 15.5523 7.73222 15.0892 8.14566C14.8283 8.37864 14.5176 8.57898 14.1654 8.74861C13.0862 9.26835 11.6178 9.5 10 9.5C8.38231 9.5 6.91414 9.2612 5.83504 8.7377ZM2.5 13.5993C2.5 15.5032 3.6269 16.801 5.07921 17.5371C6.53919 18.2771 8.42745 18.5281 10.2953 18.4976C10.6913 18.4911 11 18.1623 11 17.7663C11 17.3344 10.6349 16.9935 10.203 16.9988C8.26302 17.0224 5.27591 16.818 4.27385 14.8121C4.03917 14.3423 3.96183 13.8044 4.01608 13.2844C4.03279 13.1243 4.06236 12.971 4.10407 12.8244C4.51038 13.2198 4.99469 13.5272 5.50864 13.763C7.00724 14.4507 8.72233 14.6002 10.3529 14.5674C10.7166 14.5601 11 14.2577 11 13.8939C11 13.4964 10.6641 13.1827 10.2667 13.1891C8.76839 13.2132 7.16155 13.0857 5.79908 12.4113C5.4425 12.2348 5.12939 12.0266 4.86861 11.7851C4.60523 11.5412 4.15873 11.0642 4.07361 10.7017C4.02516 10.4954 4 10.2763 4 10.0442C4 9.76752 4.03574 9.50942 4.10407 9.2693C4.49786 9.65252 4.97532 9.96325 5.50864 10.208C6.76549 10.7847 8.35916 11.0158 10 11.0158C11.6378 11.0158 13.2325 10.7922 14.4906 10.219C15.007 9.98374 15.4935 9.67568 15.9007 9.27818C15.9344 9.40085 15.9598 9.52829 15.9765 9.66057C16.0012 9.85653 16 10.053 16 10.25C16 10.6642 16.3358 11 16.75 11C17.1642 11 17.5 10.6642 17.5 10.25V6.40068C17.5 4.48619 16.3779 3.18493 14.9171 2.44961C13.5324 1.75263 11.7642 1.5 10 1.5C8.22975 1.5 6.46226 1.76187 5.07921 2.46288C3.6269 3.19899 2.5 4.4968 2.5 6.40068V13.5993ZM15.75 12.75C15.75 12.3358 15.4142 12 15 12C14.5858 12 14.25 12.3358 14.25 12.75V14.25H12.75C12.3358 14.25 12 14.5858 12 15C12 15.4142 12.3358 15.75 12.75 15.75H14.25V17.25C14.25 17.6642 14.5857 18 15 18C15.4142 18 15.75 17.6642 15.75 17.25V15.75H17.25C17.6642 15.75 18 15.4142 18 15C18 14.5858 17.6642 14.25 17.25 14.25H15.75V12.75Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M9.24997 6.75C9.24997 6.33579 9.58576 6 9.99997 6C10.4142 6 10.75 6.33579 10.75 6.75V9.25H13.25C13.6642 9.25 14 9.58579 14 10C14 10.4142 13.6642 10.75 13.25 10.75H10.75V13.25C10.75 13.6642 10.4142 14 9.99997 14C9.58576 14 9.24997 13.6642 9.24997 13.25V10.75H6.75C6.33579 10.75 6 10.4142 6 10C6 9.58579 6.33579 9.25 6.75 9.25H9.24997V6.75Z" />
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 4C2 2.89543 2.89543 2 4 2H16C17.1046 2 18 2.89543 18 4V16C18 17.1046 17.1046 18 16 18H4C2.89543 18 2 17.1046 2 16V4ZM4 3.5H16C16.2761 3.5 16.5 3.72386 16.5 4V16C16.5 16.2761 16.2761 16.5 16 16.5H4C3.72386 16.5 3.5 16.2761 3.5 16V4C3.5 3.72386 3.72386 3.5 4 3.5Z" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.43474 6.62663L7.73471 5.92661C7.58417 5.77604 7.49959 5.57182 7.49959 5.3589C7.49959 5.14597 7.58416 4.94177 7.7347 4.7912L8.36858 4.15731C10.2392 2.28673 13.1628 2.11237 15.2304 3.63423L16.6057 2.25887C16.6761 2.18257 16.7605 2.12061 16.8544 2.07643C16.9499 2.03151 17.0534 2.00584 17.1588 2.00089C17.2642 1.99593 17.3695 2.0118 17.4688 2.04757C17.5681 2.08334 17.6594 2.13832 17.7374 2.20937C17.8155 2.28041 17.8787 2.36614 17.9236 2.46164C17.9685 2.55715 17.9942 2.66056 17.9991 2.76598C18.0041 2.8714 17.9882 2.97676 17.9524 3.07604C17.9166 3.1753 17.8616 3.26654 17.7906 3.34456C17.7748 3.36184 17.7583 3.37846 17.7411 3.39429L16.3656 4.76989C17.388 6.16413 17.6624 8.09354 17.075 9.75281C16.9267 10.1718 16.4006 10.3447 16 10.1008C15.6423 9.88288 15.5198 9.42929 15.6247 9.02378C16 7.57317 15.6686 6.25406 14.7073 5.29274C14.47 5.05545 14.2097 4.85703 13.934 4.69746C12.5262 3.88274 10.7156 4.08117 9.50401 5.29274L9.43786 5.3589L13.0761 9C13.4186 9.31082 13.4315 9.84485 13.1044 10.1718C12.8034 10.4728 12.3208 10.4892 12 10.2094L9.57017 7.76206L8.8711 8.46113C8.79716 8.5369 8.70896 8.5973 8.61157 8.63885C8.51371 8.68061 8.40852 8.7025 8.30213 8.70325C8.19574 8.704 8.09025 8.6836 7.99181 8.64323C7.89337 8.60287 7.80393 8.54333 7.7287 8.4681C7.65346 8.39287 7.59393 8.30343 7.55356 8.20499C7.51319 8.10655 7.49279 8.00106 7.49355 7.89467C7.4943 7.78827 7.51619 7.68309 7.55794 7.58523C7.5995 7.48784 7.6599 7.39964 7.73567 7.3257L8.43474 6.62663ZM9.7075 17.0785C8.07472 17.6768 6.20414 17.4425 4.75537 16.3801L3.37758 17.7579C3.30364 17.8336 3.21543 17.894 3.11805 17.9356C3.02018 17.9773 2.915 17.9992 2.8086 18C2.70221 18.0007 2.59672 17.9803 2.49829 17.94C2.39985 17.8996 2.31041 17.8401 2.23517 17.7648C2.15994 17.6896 2.10041 17.6002 2.06004 17.5017C2.01967 17.4033 1.99927 17.2978 2.00002 17.1914C2.00077 17.085 2.02266 16.9798 2.06442 16.882C2.10597 16.7846 2.16638 16.6964 2.24215 16.6224L3.61971 15.2449C2.09786 13.1773 2.27222 10.2537 4.1428 8.3831L4.77666 7.74923C4.92724 7.59869 5.13146 7.5141 5.34438 7.5141C5.5573 7.5141 5.7615 7.59868 5.91208 7.74922L10.094 11.9184C10.4319 12.234 10.4345 12.7688 10.0997 13.0876C9.79262 13.38 9.31125 13.3835 9 13.0956L5.34438 9.45238L5.27822 9.51853C3.82936 10.9674 3.82936 13.2729 5.27822 14.7218C6.20019 15.6438 7.68452 15.8614 8.94504 15.5629C9.43076 15.4479 9.97353 15.6733 10.1253 16.1488C10.2458 16.5261 10.0794 16.9422 9.7075 17.0785ZM15.75 12.75C15.75 12.3358 15.4142 12 15 12C14.5858 12 14.25 12.3358 14.25 12.75V14.25H12.75C12.3358 14.25 12 14.5858 12 15C12 15.4142 12.3358 15.75 12.75 15.75H14.25V17.25C14.25 17.6642 14.5857 18 15 18C15.4142 18 15.75 17.6642 15.75 17.25V15.75H17.25C17.6642 15.75 18 15.4142 18 15C18 14.5858 17.6642 14.25 17.25 14.25H15.75V12.75Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M16.75 1.75C16.75 1.33579 16.4142 1 16 1C15.5858 1 15.25 1.33579 15.25 1.75L15.25 3.25H13.75C13.3358 3.25 13 3.58579 13 4C13 4.41421 13.3358 4.75 13.75 4.75H15.25L15.25 6.24999C15.25 6.66421 15.5857 7 16 7C16.4142 7 16.75 6.66422 16.75 6.25001L16.75 4.75H18.25C18.6642 4.75 19 4.41421 19 4C19 3.58579 18.6642 3.25 18.25 3.25H16.75L16.75 1.75Z" class="uiIcons" />
|
|
4
|
+
<path d="M3.5 10C3.5 6.41015 6.41015 3.5 10 3.5C10.3049 3.5 10.6045 3.52094 10.8975 3.56137C11.3078 3.61798 11.6864 3.33123 11.743 2.9209C11.7996 2.51058 11.5128 2.13205 11.1025 2.07544C10.7418 2.02567 10.3737 2 10 2C5.58172 2 2 5.58172 2 10C2 14.4183 5.58172 18 10 18C14.4183 18 18 14.4183 18 10C18 9.62633 17.9743 9.25825 17.9246 8.8975C17.868 8.48717 17.4894 8.20043 17.0791 8.25704C16.6688 8.31365 16.382 8.69217 16.4386 9.1025C16.4791 9.39551 16.5 9.6951 16.5 10C16.5 13.5899 13.5899 16.5 10 16.5C6.41015 16.5 3.5 13.5899 3.5 10Z" class="uiIcons" />
|
|
5
|
+
<path d="M7.825 6.7125C7.21058 6.7125 6.7125 7.21058 6.7125 7.825C6.7125 8.43942 7.21058 8.9375 7.825 8.9375C8.43942 8.9375 8.9375 8.43942 8.9375 7.825C8.9375 7.21058 8.43942 6.7125 7.825 6.7125Z" class="uiIcons" />
|
|
6
|
+
<path d="M12.175 6.7125C11.5606 6.7125 11.0625 7.21058 11.0625 7.825C11.0625 8.43942 11.5606 8.9375 12.175 8.9375C12.7894 8.9375 13.2875 8.43941 13.2875 7.825C13.2875 7.21058 12.7894 6.7125 12.175 6.7125Z" class="uiIcons" />
|
|
7
|
+
<path d="M8.238 11.6434C8.02305 11.4871 7.85704 11.3307 7.74657 11.2154L7.59797 11.0473C7.34883 10.7186 6.88032 10.6523 6.55 10.9C6.21863 11.1485 6.15147 11.6186 6.4 11.95L6.47752 12.0466C6.5215 12.099 6.58375 12.17 6.66359 12.2533C6.82264 12.4193 7.05507 12.6379 7.35574 12.8566C7.9542 13.2918 8.85585 13.75 10 13.75C11.1441 13.75 12.0458 13.2918 12.6443 12.8566C12.9449 12.6379 13.1774 12.4193 13.3364 12.2533C13.4162 12.17 13.4785 12.099 13.5225 12.0466L13.6 11.95C13.8485 11.6186 13.7814 11.1485 13.45 10.9C13.1197 10.6523 12.6512 10.7186 12.402 11.0473L12.2534 11.2154C12.143 11.3307 11.9769 11.4871 11.762 11.6434C11.3292 11.9582 10.7309 12.25 10 12.25C9.26915 12.25 8.6708 11.9582 8.238 11.6434Z" class="uiIcons" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon"><path d="M9.99997 4C9.58576 4 9.24997 4.33579 9.24997 4.75L9.24997 9.25H4.75C4.33579 9.25 4 9.58579 4 10C4 10.4142 4.33579 10.75 4.75 10.75H9.24997V15.25C9.24997 15.6642 9.58576 16 9.99997 16C10.4142 16 10.75 15.6642 10.75 15.25L10.75 10.75H15.25C15.6642 10.75 16 10.4142 16 10C16 9.58579 15.6642 9.25 15.25 9.25L10.75 9.25V4.75C10.75 4.33579 10.4142 4 9.99997 4Z" class="uiIcons"></path></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.37381 0.26212C3.24686 -0.0905013 2.74458 -0.0863003 2.6236 0.268402L2.07563 1.87504C2.04294 1.97088 1.96619 2.04537 1.86914 2.07546L0.279212 2.56834C-0.0897432 2.68271 -0.0941999 3.20111 0.272739 3.32176L1.86793 3.84624C1.96381 3.87777 2.03894 3.95278 2.07035 4.04834L2.62221 5.72743C2.74063 6.08774 3.25103 6.09189 3.37535 5.73355L3.96172 4.04334C3.99389 3.95063 4.06741 3.878 4.16077 3.84672L5.72941 3.32104C6.09351 3.19903 6.08902 2.68467 5.72285 2.56898L4.15938 2.07498C4.06487 2.04512 3.98977 1.97305 3.95631 1.88011L3.37381 0.26212ZM2.81151 15.2184C2.70572 14.9246 2.28715 14.9281 2.18633 15.2237L1.72969 16.5625C1.70245 16.6424 1.63849 16.7045 1.55762 16.7295L0.232676 17.1403C-0.074786 17.2356 -0.0784999 17.6676 0.227283 17.7681L1.55661 18.2052C1.63651 18.2315 1.69912 18.294 1.72529 18.3736L2.18517 19.7729C2.28386 20.0731 2.70919 20.0766 2.81279 19.778L3.30144 18.3695C3.32824 18.2922 3.3895 18.2317 3.46731 18.2056L4.77451 17.7675C5.07793 17.6659 5.07419 17.2372 4.76904 17.1408L3.46615 16.7291C3.38739 16.7043 3.32481 16.6442 3.29692 16.5668L2.81151 15.2184ZM11.9948 2.40429C11.6593 1.46842 10.3319 1.47958 10.0122 2.42096L8.54168 6.75071C8.41827 7.11407 8.12852 7.3965 7.76212 7.51057L3.50645 8.83545C2.53138 9.139 2.51961 10.5148 3.48934 10.835L7.76156 12.2457C8.12355 12.3652 8.40721 12.6496 8.52579 13.0119L10.0085 17.5424C10.3215 18.4987 11.6703 18.5097 11.9989 17.5587L13.5761 12.993C13.6975 12.6415 13.9751 12.3662 14.3275 12.2475L18.5303 10.8331C19.4926 10.5093 19.4807 9.14421 18.513 8.83715L14.3265 7.50873C13.9697 7.39551 13.6861 7.12227 13.5598 6.76989L11.9948 2.40429ZM10.0567 7.26524L11.0204 4.42759L12.0537 7.30983C12.3484 8.13205 13.01 8.76962 13.8426 9.0338L16.4254 9.85335L13.8172 10.7311C12.9948 11.0079 12.3471 11.6504 12.0638 12.4706L11.0205 15.4906L10.0464 12.5143C9.76975 11.6689 9.10787 11.0052 8.26322 10.7264L5.61938 9.85339L8.23771 9.03825C9.09266 8.77209 9.76874 8.11309 10.0567 7.26524Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 3C10.3112 3 10.5901 3.19219 10.7009 3.483L12.0123 6.92548C12.1987 7.41482 12.5852 7.8013 13.0745 7.98771L16.517 9.29913C16.8078 9.40992 17 9.68879 17 10C17 10.3112 16.8078 10.5901 16.517 10.7009L13.0745 12.0123C12.5852 12.1987 12.1987 12.5852 12.0123 13.0745L10.7009 16.517C10.5901 16.8078 10.3112 17 10 17C9.68879 17 9.40992 16.8078 9.29913 16.517L7.98771 13.0745C7.8013 12.5852 7.41482 12.1987 6.92548 12.0123L3.483 10.7009C3.19219 10.5901 3 10.3112 3 10C3 9.68879 3.19219 9.40992 3.483 9.29913L6.92548 7.98771C7.41483 7.8013 7.8013 7.41482 7.98771 6.92548L9.29913 3.483C9.40992 3.19219 9.68879 3 10 3ZM10 5.85677L9.38945 7.45947C9.05075 8.34856 8.34856 9.05074 7.45948 9.38944L5.85677 10L7.45948 10.6106C8.34856 10.9493 9.05075 11.6514 9.38944 12.5405L10 14.1432L10.6106 12.5405C10.9493 11.6514 11.6514 10.9493 12.5405 10.6106L14.1432 10L12.5405 9.38945C11.6514 9.05075 10.9493 8.34856 10.6106 7.45948L10 5.85677Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.1284 14.3205C11.9232 15.2691 10.4027 15.835 8.74998 15.835C4.83704 15.835 1.66498 12.6629 1.66498 8.74998C1.66498 4.83704 4.83704 1.66498 8.74998 1.66498C12.6629 1.66498 15.835 4.83704 15.835 8.74998C15.835 10.4084 15.2651 11.9338 14.3106 13.141L18.0895 16.9087C18.4161 17.2343 18.4169 17.763 18.0913 18.0895C17.7657 18.4161 17.237 18.4169 16.9104 18.0913L13.1284 14.3205ZM8.74998 3.33498C5.75936 3.33498 3.33498 5.75936 3.33498 8.74998C3.33498 11.7406 5.75936 14.165 8.74998 14.165C10.2429 14.165 11.5948 13.5608 12.5743 12.5836C13.557 11.6033 14.165 10.2476 14.165 8.74998C14.165 5.75936 11.7406 3.33498 8.74998 3.33498ZM8.74998 5.75C8.86669 5.75 8.97126 5.82207 9.01281 5.93113L9.58328 7.42861C9.66894 7.65346 9.84652 7.83105 10.0714 7.91671L11.5689 8.48717C11.6779 8.52872 11.75 8.6333 11.75 8.75C11.75 8.8667 11.6779 8.97128 11.5689 9.01283L10.0714 9.58329C9.84652 9.66895 9.66894 9.84654 9.58328 10.0714L9.01281 11.5689C8.97126 11.6779 8.86669 11.75 8.74998 11.75C8.63328 11.75 8.5287 11.6779 8.48716 11.5689L7.91669 10.0714C7.83103 9.84654 7.65345 9.66895 7.42859 9.58329L5.93111 9.01283C5.82205 8.97128 5.74998 8.8667 5.74998 8.75C5.74998 8.6333 5.82205 8.52872 5.93111 8.48717L7.42859 7.91671C7.65345 7.83105 7.83103 7.65346 7.91669 7.4286L8.48716 5.93113C8.5287 5.82207 8.63328 5.75 8.74998 5.75Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.8917 14.5582L12.1833 2.89157C11.9665 2.50283 11.6498 2.17903 11.266 1.95362C10.8822 1.72822 10.4451 1.60937 10 1.60938C9.55489 1.60937 9.11785 1.72822 8.73402 1.95362C8.35019 2.17903 8.03351 2.50283 7.81668 2.89157L1.15001 14.5582C0.925677 14.9366 0.805132 15.3674 0.800551 15.8073C0.795969 16.2471 0.907512 16.6803 1.12392 17.0633C1.34033 17.4462 1.65393 17.7653 2.03308 17.9883C2.41223 18.2112 2.8435 18.3302 3.28335 18.3332H16.7167C17.1601 18.3376 17.5966 18.224 17.9816 18.004C18.3666 17.784 18.6861 17.4656 18.9075 17.0814C19.1289 16.6972 19.244 16.2611 19.2413 15.8177C19.2385 15.3743 19.1178 14.9396 18.8917 14.5582ZM10 6.66657C9.779 6.66657 9.56704 6.75437 9.41076 6.91065C9.25448 7.06693 9.16668 7.27889 9.16668 7.4999V10.8332C9.16668 11.0542 9.25448 11.2662 9.41076 11.4225C9.56704 11.5788 9.779 11.6666 10 11.6666C10.221 11.6666 10.433 11.5788 10.5893 11.4225C10.7455 11.2662 10.8333 11.0542 10.8333 10.8332V7.4999C10.8333 7.27889 10.7455 7.06693 10.5893 6.91065C10.433 6.75437 10.221 6.66657 10 6.66657ZM9.53704 13.4737C9.67408 13.3821 9.8352 13.3332 10 13.3332C10.221 13.3332 10.433 13.421 10.5893 13.5773C10.7455 13.7336 10.8333 13.9456 10.8333 14.1666C10.8333 14.3314 10.7845 14.4925 10.6929 14.6295C10.6013 14.7666 10.4712 14.8734 10.3189 14.9365C10.1666 14.9995 9.99909 15.016 9.83744 14.9839C9.67579 14.9517 9.5273 14.8724 9.41076 14.7558C9.29421 14.6393 9.21485 14.4908 9.18269 14.3291C9.15054 14.1675 9.16704 13.9999 9.23011 13.8477C9.29319 13.6954 9.4 13.5652 9.53704 13.4737Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.5 3.75C10.3806 3.75 9.43302 4.48572 9.11445 5.5H2.75C2.33579 5.5 2 5.83579 2 6.25C2 6.66421 2.33579 7 2.75 7H9.11445C9.43302 8.01428 10.3806 8.75 11.5 8.75C12.8807 8.75 14 7.63071 14 6.25C14 4.86929 12.8807 3.75 11.5 3.75ZM10.6364 6.25C10.6364 6.72697 11.023 7.11364 11.5 7.11364C11.977 7.11364 12.3636 6.72697 12.3636 6.25C12.3636 5.77303 11.977 5.38636 11.5 5.38636C11.023 5.38636 10.6364 5.77303 10.6364 6.25Z" />
|
|
4
|
+
<path d="M15.5 6.25C15.5 5.83579 15.8358 5.5 16.25 5.5H17.25C17.6642 5.5 18 5.83579 18 6.25C18 6.66421 17.6642 7 17.25 7H16.25C15.8358 7 15.5 6.66421 15.5 6.25Z" />
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 13.75C2 13.3358 2.33579 13 2.75 13H4.11445C4.43302 11.9857 5.38059 11.25 6.5 11.25C7.88071 11.25 9 12.3693 9 13.75C9 15.1307 7.88071 16.25 6.5 16.25C5.38059 16.25 4.43302 15.5143 4.11445 14.5H2.75C2.33579 14.5 2 14.1642 2 13.75ZM6.5 14.6136C6.02303 14.6136 5.63636 14.227 5.63636 13.75C5.63636 13.273 6.02303 12.8864 6.5 12.8864C6.97697 12.8864 7.36364 13.273 7.36364 13.75C7.36364 14.227 6.97697 14.6136 6.5 14.6136Z" />
|
|
6
|
+
<path d="M10.5 13.75C10.5 13.3358 10.8358 13 11.25 13H17.25C17.6642 13 18 13.3358 18 13.75C18 14.1642 17.6642 14.5 17.25 14.5H11.25C10.8358 14.5 10.5 14.1642 10.5 13.75Z" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M9 2C7.89543 2 7 2.89543 7 4V6C7 7.10457 7.89543 8 9 8H9.25V9.25H6.66667C6.02573 9.25 5.41104 9.50461 4.95783 9.95783C4.50461 10.411 4.25 11.0257 4.25 11.6667V12H4C2.89543 12 2 12.8954 2 14V16C2 17.1046 2.89543 18 4 18H6C7.10457 18 8 17.1046 8 16V14C8 12.8954 7.10457 12 6 12H5.75V11.6667C5.75 11.4236 5.84658 11.1904 6.01849 11.0185C6.19039 10.8466 6.42355 10.75 6.66667 10.75H13.3333C13.5764 10.75 13.8096 10.8466 13.9815 11.0185C14.1534 11.1904 14.25 11.4236 14.25 11.6667V12H14C12.8954 12 12 12.8954 12 14V16C12 17.1046 12.8954 18 14 18H16C17.1046 18 18 17.1046 18 16V14C18 12.8954 17.1046 12 16 12H15.75V11.6667C15.75 11.0257 15.4954 10.411 15.0422 9.95783C14.589 9.50461 13.9743 9.25 13.3333 9.25H10.75V8H11C12.1046 8 13 7.10457 13 6V4C13 2.89543 12.1046 2 11 2H9ZM8.5 4C8.5 3.72386 8.72386 3.5 9 3.5H11C11.2761 3.5 11.5 3.72386 11.5 4V6C11.5 6.27614 11.2761 6.5 11 6.5H9C8.72386 6.5 8.5 6.27614 8.5 6V4ZM4 13.5H6C6.27614 13.5 6.5 13.7239 6.5 14V16C6.5 16.2761 6.27614 16.5 6 16.5H4C3.72386 16.5 3.5 16.2761 3.5 16V14C3.5 13.7239 3.72386 13.5 4 13.5ZM14 13.5C13.7239 13.5 13.5 13.7239 13.5 14V16C13.5 16.2761 13.7239 16.5 14 16.5H16C16.2761 16.5 16.5 16.2761 16.5 16V14C16.5 13.7239 16.2761 13.5 16 13.5H14Z" class="uiIcons" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M9 2C7.89543 2 7 2.89543 7 4V6C7 7.10457 7.89543 8 9 8H9.25V9.25H6.66667C6.02573 9.25 5.41104 9.50461 4.95783 9.95783C4.50461 10.411 4.25 11.0257 4.25 11.6667V12H4C2.89543 12 2 12.8954 2 14V16C2 17.1046 2.89543 18 4 18H6C7.10457 18 8 17.1046 8 16V14C8 12.8954 7.10457 12 6 12H5.75V11.6667C5.75 11.4236 5.84658 11.1904 6.01849 11.0185C6.19039 10.8466 6.42355 10.75 6.66667 10.75H13.3333C13.5764 10.75 13.8096 10.8466 13.9815 11.0185C14.1534 11.1904 14.25 11.4236 14.25 11.6667V12H14C12.8954 12 12 12.8954 12 14V16C12 17.1046 12.8954 18 14 18H16C17.1046 18 18 17.1046 18 16V14C18 12.8954 17.1046 12 16 12H15.75V11.6667C15.75 11.0257 15.4954 10.411 15.0422 9.95783C14.589 9.50461 13.9743 9.25 13.3333 9.25H10.75V8H11C12.1046 8 13 7.10457 13 6V4C13 2.89543 12.1046 2 11 2H9ZM8.5 4C8.5 3.72386 8.72386 3.5 9 3.5H11C11.2761 3.5 11.5 3.72386 11.5 4V6C11.5 6.27614 11.2761 6.5 11 6.5H9C8.72386 6.5 8.5 6.27614 8.5 6V4ZM4 13.5H6C6.27614 13.5 6.5 13.7239 6.5 14V16C6.5 16.2761 6.27614 16.5 6 16.5H4C3.72386 16.5 3.5 16.2761 3.5 16V14C3.5 13.7239 3.72386 13.5 4 13.5ZM14 13.5C13.7239 13.5 13.5 13.7239 13.5 14V16C13.5 16.2761 13.7239 16.5 14 16.5H16C16.2761 16.5 16.5 16.2761 16.5 16V14C16.5 13.7239 16.2761 13.5 16 13.5H14Z" class="uiIcons" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 4.25C2 3.00736 3.00736 2 4.25 2H7C8.24264 2 9.25 3.00736 9.25 4.25V7C9.25 8.24264 8.24264 9.25 7 9.25H4.25C3.00736 9.25 2 8.24264 2 7V4.25ZM3.5 4.25C3.5 3.83579 3.83579 3.5 4.25 3.5H7C7.41421 3.5 7.75 3.83579 7.75 4.25V7C7.75 7.41421 7.41421 7.75 7 7.75H4.25C3.83579 7.75 3.5 7.41421 3.5 7V4.25Z" />
|
|
4
|
+
<path d="M14.38 9.22501C13.8968 9.22501 13.505 8.85825 13.505 8.375V6.48001H11.6C11.1168 6.48001 10.725 6.08826 10.725 5.60501C10.725 5.12176 11.1168 4.73001 11.6 4.73001H13.505V2.875C13.505 2.39175 13.8968 2 14.38 2C14.8633 2 15.255 2.39175 15.255 2.875V4.73001H17.1C17.5833 4.73001 17.975 5.12176 17.975 5.60501C17.975 6.08826 17.5833 6.48001 17.1 6.48001H15.255V8.375C15.255 8.85825 14.8633 9.22501 14.38 9.22501Z" />
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 10.75C11.7574 10.75 10.75 11.7574 10.75 13V15.75C10.75 16.9926 11.7574 18 13 18H15.75C16.9926 18 18 16.9926 18 15.75V13C18 11.7574 16.9926 10.75 15.75 10.75H13ZM13 12.25C12.5858 12.25 12.25 12.5858 12.25 13V15.75C12.25 16.1642 12.5858 16.5 13 16.5H15.75C16.1642 16.5 16.5 16.1642 16.5 15.75V13C16.5 12.5858 16.1642 12.25 15.75 12.25H13Z" />
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.05542 10.9001C4.92228 10.0333 6.32772 10.0333 7.19458 10.9001L9.09986 12.8054C9.96671 13.6723 9.96671 15.0777 9.09986 15.9446L7.19458 17.8499C6.32772 18.7167 4.92228 18.7167 4.05542 17.8499L2.15014 15.9446C1.28329 15.0777 1.28329 13.6723 2.15014 12.8054L4.05542 10.9001ZM5.11608 11.9608C5.39715 11.6797 5.85285 11.6797 6.13392 11.9608L8.0392 13.8661C8.32027 14.1472 8.32027 14.6028 8.0392 14.8839L6.13392 16.7892C5.85285 17.0703 5.39715 17.0703 5.11608 16.7892L3.2108 14.8839C2.92973 14.6028 2.92973 14.1472 3.2108 13.8661L5.11608 11.9608Z" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon"><g transform="translate(2 2)" class="uiIcons"><path d="M13,5.5 C11.6192881,5.5 10.5,4.38071187 10.5,3 C10.5,1.61928813 11.6192881,0.5 13,0.5 C14.3807119,0.5 15.5,1.61928813 15.5,3 C15.5,4.38071187 14.3807119,5.5 13,5.5 Z M13,4.5 C13.8284271,4.5 14.5,3.82842712 14.5,3 C14.5,2.17157288 13.8284271,1.5 13,1.5 C12.1715729,1.5 11.5,2.17157288 11.5,3 C11.5,3.82842712 12.1715729,4.5 13,4.5 Z" class="uiIcons"></path><path d="M3.84792306,11.2984524 C3.9211746,11.564702 4.19639462,11.7211578 4.46264417,11.6479062 C4.72889372,11.5746547 4.88534951,11.2994346 4.81209797,11.0331851 L3.70435615,7.00684322 L1.67008664,10.5303014 C0.758514918,12.1091899 1.29877374,14.1335932 2.87772975,15.0452039 C4.46434039,15.9612339 6.4713622,15.4203251 7.37736144,13.837705 L11.4339271,6.75160358 C11.5711198,6.51195223 11.4880607,6.20645976 11.2484093,6.06926705 C11.008758,5.93207434 10.7032655,6.01513348 10.5660728,6.25478483 L6.50950711,13.3408862 C5.87869037,14.4428113 4.48495401,14.8184347 3.37772975,14.1791785 C2.27745618,13.5439352 1.90045814,12.1312862 2.53611204,11.0303014 L3.37459003,9.57801488 L3.84792306,11.2984524 Z" class="uiIcons"></path></g></svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon"><path d="M1.5,6.5 L1.146447,6.14645 C1.052678,6.24021 1,6.36739 1,6.5 L1.5,6.5 Z M6.5,1.5 L6.5,1 C6.36739,1 6.24021,1.052678 6.14645,1.146447 L6.5,1.5 Z M1,6.5 L1,15.5 L2,15.5 L2,6.5 L1,6.5 Z M2.5,17 L12.5,17 L12.5,16 L2.5,16 L2.5,17 Z M14,15.5 L14,2.5 L13,2.5 L13,15.5 L14,15.5 Z M12.5,1 L6.5,1 L6.5,2 L12.5,2 L12.5,1 Z M6.14645,1.146447 L1.146447,6.14645 L1.853553,6.85355 L6.85355,1.853553 L6.14645,1.146447 Z M1.5,7 L5.5,7 L5.5,6 L1.5,6 L1.5,7 Z M7,5.5 L7,1.5 L6,1.5 L6,5.5 L7,5.5 Z M1,15.5 C1,16.3284 1.671573,17 2.5,17 L2.5,16 C2.223858,16 2,15.7761 2,15.5 L1,15.5 Z M12.5,17 C13.3284,17 14,16.3284 14,15.5 L13,15.5 C13,15.7761 12.7761,16 12.5,16 L12.5,17 Z M14,2.5 C14,1.671573 13.3284,1 12.5,1 L12.5,2 C12.7761,2 13,2.223858 13,2.5 L14,2.5 Z M5.5,7 C6.32843,7 7,6.32843 7,5.5 L6,5.5 C6,5.77614 5.77614,6 5.5,6 L5.5,7 Z" transform="translate(2 1)" class="uiIcons"></path></svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon"><path d="M10.5933 2.96669L10.9287 2.29586L10.9271 2.29504L10.5933 2.96669ZM15.9267 5.63335L15.5913 6.30417L15.5929 6.305L15.9267 5.63335ZM16.6667 6.82668L17.4167 6.82668L17.4167 6.82629L16.6667 6.82668ZM16.6667 13.18L17.4167 13.1804V13.18H16.6667ZM15.9267 14.3734L15.5929 13.7017L15.5913 13.7025L15.9267 14.3734ZM10.5933 17.04L10.2579 16.3692L10.2577 16.3693L10.5933 17.04ZM9.4 17.04L9.73563 16.3693L9.73542 16.3692L9.4 17.04ZM4.06667 14.3734L3.72919 15.0431L3.73126 15.0442L4.06667 14.3734ZM3.33334 13.1734L4.08334 13.1786V13.1734H3.33334ZM3.33334 6.82668L2.58334 6.82629V6.82668H3.33334ZM4.07334 5.63335L4.40709 6.305L4.40875 6.30417L4.07334 5.63335ZM9.40667 2.96669L9.07292 2.29504L9.07126 2.29586L9.40667 2.96669ZM10 2.82739V3.57739V2.82739ZM3.88208 5.43586C3.51159 5.25062 3.06109 5.40079 2.87585 5.77127C2.6906 6.14176 2.84077 6.59226 3.21126 6.7775L3.88208 5.43586ZM16.7887 6.7775C17.1592 6.59226 17.3094 6.14176 17.1242 5.77127C16.9389 5.40079 16.4884 5.25062 16.1179 5.43586L16.7887 6.7775ZM9.25 17.1733C9.25 17.5876 9.58579 17.9233 10 17.9233C10.4142 17.9233 10.75 17.5876 10.75 17.1733L9.25 17.1733ZM10.2579 3.63751L15.5913 6.30417L16.2621 4.96253L10.9287 2.29586L10.2579 3.63751ZM15.5929 6.305C15.6901 6.35329 15.7719 6.42774 15.8291 6.51997L17.1039 5.72946C16.8996 5.40006 16.6075 5.13418 16.2604 4.9617L15.5929 6.305ZM15.8291 6.51997C15.8863 6.6122 15.9166 6.71856 15.9167 6.82708L17.4167 6.82629C17.4165 6.4387 17.3081 6.05885 17.1039 5.72946L15.8291 6.51997ZM15.9167 6.82668V13.18H17.4167V6.82668H15.9167ZM15.9167 13.1796C15.9166 13.2881 15.8863 13.3945 15.8291 13.4867L17.1039 14.2772C17.3081 13.9479 17.4165 13.568 17.4167 13.1804L15.9167 13.1796ZM15.8291 13.4867C15.7719 13.579 15.6901 13.6534 15.5929 13.7017L16.2604 15.045C16.6075 14.8725 16.8996 14.6066 17.1039 14.2772L15.8291 13.4867ZM15.5913 13.7025L10.2579 16.3692L10.9287 17.7108L16.2621 15.0442L15.5913 13.7025ZM10.2577 16.3693C10.1767 16.4099 10.0873 16.431 9.99667 16.431V17.931C10.3203 17.931 10.6395 17.8556 10.929 17.7107L10.2577 16.3693ZM9.99667 16.431C9.90605 16.431 9.81668 16.4099 9.73563 16.3693L9.06438 17.7107C9.35381 17.8556 9.67302 17.931 9.99667 17.931V16.431ZM9.73542 16.3692L4.40208 13.7025L3.73126 15.0442L9.06459 17.7108L9.73542 16.3692ZM4.40415 13.7036C4.30706 13.6547 4.22558 13.5796 4.16889 13.4868L2.88897 14.269C3.09143 14.6003 3.38245 14.8684 3.72919 15.0431L4.40415 13.7036ZM4.16889 13.4868C4.1122 13.394 4.08256 13.2873 4.08332 13.1786L2.58336 13.1681C2.58065 13.5564 2.68651 13.9377 2.88897 14.269L4.16889 13.4868ZM4.08334 13.1734V6.82668H2.58334V13.1734H4.08334ZM4.08334 6.82708C4.0834 6.71856 4.11373 6.6122 4.17092 6.51997L2.89613 5.72946C2.69187 6.05885 2.58354 6.4387 2.58334 6.82629L4.08334 6.82708ZM4.17092 6.51997C4.22811 6.42774 4.3099 6.35329 4.40709 6.305L3.73959 4.9617C3.39249 5.13418 3.10039 5.40006 2.89613 5.72946L4.17092 6.51997ZM4.40875 6.30417L9.74208 3.63751L9.07126 2.29586L3.73793 4.96253L4.40875 6.30417ZM9.74042 3.63833C9.82108 3.59825 9.90993 3.57739 10 3.57739V2.07739C9.67832 2.07739 9.361 2.15189 9.07292 2.29504L9.74042 3.63833ZM10 3.57739C10.0901 3.57739 10.1789 3.59825 10.2596 3.63833L10.9271 2.29504C10.639 2.15189 10.3217 2.07739 10 2.07739V3.57739ZM3.21126 6.7775L9.66459 10.0042L10.3354 8.66253L3.88208 5.43586L3.21126 6.7775ZM10.3354 10.0042L16.7887 6.7775L16.1179 5.43586L9.66459 8.66253L10.3354 10.0042ZM10.75 17.1733L10.75 9.33335L9.25 9.33335L9.25 17.1733L10.75 17.1733Z" class="uiIcons"></path></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.6605 2.66055C10.6605 2.29574 10.3648 2 9.99998 2C9.63517 2 9.33943 2.29574 9.33943 2.66055V4.12844C9.33943 4.49325 9.63517 4.78899 9.99998 4.78899C10.3648 4.78899 10.6605 4.49325 10.6605 4.12844V2.66055ZM5.27735 4.3432C5.01939 4.08524 4.60115 4.08524 4.34319 4.3432C4.08523 4.60116 4.08523 5.01939 4.34319 5.27736L5.38099 6.31515C5.63895 6.57311 6.05719 6.57311 6.31515 6.31515C6.57311 6.05719 6.57311 5.63896 6.31515 5.38099L5.27735 4.3432ZM15.6568 5.27736C15.9147 5.01939 15.9147 4.60116 15.6568 4.3432C15.3988 4.08524 14.9806 4.08524 14.7226 4.3432L13.6848 5.38099C13.4269 5.63896 13.4269 6.05719 13.6848 6.31515C13.9428 6.57311 14.361 6.57311 14.619 6.31515L15.6568 5.27736ZM11.3979 6.6354C10.9559 6.45457 10.4823 6.36358 10.0048 6.36773C9.52728 6.37188 9.05536 6.47109 8.6166 6.65957C8.17783 6.84805 7.781 7.12203 7.44925 7.46551C6.9479 7.9846 6.61793 8.63848 6.49433 9.33948H2.66052C2.29571 9.33948 1.99997 9.63522 1.99997 10C1.99997 10.3648 2.29571 10.6606 2.66052 10.6606H17.1284C17.4932 10.6606 17.789 10.3648 17.789 10C17.789 9.63522 17.4932 9.33948 17.1284 9.33948H13.5777C13.5333 9.08741 13.462 8.84018 13.3646 8.60212C13.1837 8.16014 12.9167 7.7586 12.579 7.42094C12.2414 7.08327 11.8398 6.81623 11.3979 6.6354ZM12.2239 9.33948C12.201 9.25915 12.1736 9.17999 12.1418 9.10237C12.0274 8.82276 11.8585 8.56872 11.6449 8.35509C11.4312 8.14147 11.1772 7.97252 10.8976 7.85812C10.618 7.74372 10.3184 7.68616 10.0163 7.68878C9.71417 7.69141 9.41561 7.75417 9.13803 7.87341C8.86044 7.99266 8.60938 8.16599 8.3995 8.3833C8.13773 8.65433 7.9498 8.98345 7.84818 9.33948H12.2239ZM3.99997 13C3.99997 12.6352 4.29571 12.3395 4.66052 12.3395H15.1284C15.4932 12.3395 15.789 12.6352 15.789 13C15.789 13.3648 15.4932 13.6606 15.1284 13.6606H4.66052C4.29571 13.6606 3.99997 13.3648 3.99997 13ZM5.99997 16C5.99997 15.6352 6.29571 15.3395 6.66052 15.3395H13.1284C13.4932 15.3395 13.789 15.6352 13.789 16C13.789 16.3648 13.4932 16.6606 13.1284 16.6606H6.66052C6.29571 16.6606 5.99997 16.3648 5.99997 16Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.67653 3.58974C7.95903 3.73787 7.26835 4.00606 6.63458 4.38599C5.61829 4.99522 4.78643 5.86889 4.22775 6.91383C3.66907 7.95876 3.40451 9.13575 3.46231 10.3193C3.5201 11.5027 3.89807 12.6484 4.55591 13.6339C5.21374 14.6194 6.12677 15.4079 7.19758 15.9152C8.2684 16.4225 9.45684 16.6296 10.6361 16.5145C11.8154 16.3993 12.9414 15.9662 13.8938 15.2613C14.4106 14.8788 14.8657 14.4241 15.2467 13.9134C14.2868 14.0281 13.3065 13.9373 12.3726 13.6385C10.861 13.1548 9.56661 12.1567 8.71453 10.8177C7.86244 9.47868 7.50651 7.88341 7.70861 6.30919C7.83344 5.33685 8.16628 4.41052 8.67653 3.58974ZM10.095 2.00646C10.063 2.00217 10.0306 1.99999 9.99804 2C8.54982 2.00035 7.12885 2.39382 5.88672 3.13843C4.64458 3.88304 3.62787 4.95087 2.94504 6.22801C2.2622 7.50515 1.93886 8.9437 2.00949 10.3902C2.08013 11.8367 2.5421 13.2369 3.34612 14.4414C4.15014 15.646 5.26605 16.6096 6.57483 17.2297C7.8836 17.8497 9.33614 18.1029 10.7775 17.9621C12.2189 17.8214 13.595 17.292 14.7591 16.4305C15.9232 15.5689 16.8316 14.4075 17.3874 13.0702C17.4999 12.7994 17.4388 12.4875 17.2324 12.2792C17.026 12.0709 16.7147 12.0069 16.4428 12.117C15.287 12.585 14.0036 12.6332 12.8159 12.2532C11.6282 11.8731 10.6112 11.0889 9.94168 10.0368C9.27218 8.98472 8.99252 7.73129 9.15132 6.4944C9.31011 5.25751 9.89731 4.11537 10.8108 3.26651C11.0299 3.06297 11.102 2.7461 10.9927 2.46779C10.8834 2.18948 10.6148 2.00646 10.3158 2.00646H10.095Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.99997 2C10.3648 2 10.6605 2.29574 10.6605 2.66055V4.12844C10.6605 4.49325 10.3648 4.78899 9.99997 4.78899C9.63516 4.78899 9.33942 4.49325 9.33942 4.12844V2.66055C9.33942 2.29574 9.63516 2 9.99997 2ZM4.34318 4.3432C4.60114 4.08524 5.01938 4.08524 5.27734 4.3432L6.31513 5.38099C6.5731 5.63896 6.5731 6.05719 6.31513 6.31515C6.05717 6.57311 5.63894 6.57311 5.38098 6.31515L4.34318 5.27736C4.08522 5.01939 4.08522 4.60116 4.34318 4.3432ZM15.6568 4.3432C15.9147 4.60116 15.9147 5.01939 15.6568 5.27736L14.619 6.31515C14.361 6.57311 13.9428 6.57311 13.6848 6.31515C13.4268 6.05719 13.4268 5.63896 13.6848 5.38099L14.7226 4.3432C14.9806 4.08524 15.3988 4.08524 15.6568 4.3432ZM10.0048 6.36773C10.4823 6.36358 10.9559 6.45457 11.3978 6.6354C11.8398 6.81623 12.2414 7.08327 12.579 7.42094C12.9167 7.7586 13.1837 8.16014 13.3646 8.60212C13.5454 9.04409 13.6364 9.51766 13.6322 9.99517C13.6281 10.4727 13.5289 10.9446 13.3404 11.3834C13.1519 11.8221 12.8779 12.219 12.5344 12.5507C11.8562 13.2058 10.9477 13.5683 10.0048 13.5601C9.06183 13.5519 8.15983 13.1737 7.49304 12.5069C6.82625 11.8401 6.44803 10.9381 6.43984 9.99517C6.43164 9.05223 6.79413 8.14379 7.44923 7.46551C7.78098 7.12203 8.17782 6.84805 8.61658 6.65957C9.05535 6.47109 9.52726 6.37188 10.0048 6.36773ZM10.8976 7.85812C10.618 7.74372 10.3184 7.68616 10.0163 7.68878C9.71416 7.69141 9.4156 7.75417 9.13801 7.87341C8.86043 7.99266 8.60937 8.16599 8.39948 8.3833C7.98503 8.81241 7.7557 9.38714 7.76089 9.9837C7.76607 10.5803 8.00535 11.1509 8.4272 11.5728C8.84905 11.9946 9.4197 12.2339 10.0163 12.2391C10.6128 12.2443 11.1875 12.0149 11.6167 11.6005C11.834 11.3906 12.0073 11.1395 12.1265 10.8619C12.2458 10.5844 12.3085 10.2858 12.3112 9.9837C12.3138 9.68159 12.2562 9.38199 12.1418 9.10237C12.0274 8.82276 11.8585 8.56872 11.6449 8.35509C11.4312 8.14147 11.1772 7.97252 10.8976 7.85812ZM1.99997 10C1.99997 9.63519 2.29571 9.33945 2.66052 9.33945H4.12841C4.49322 9.33945 4.78896 9.63519 4.78896 10C4.78896 10.3648 4.49322 10.6606 4.12841 10.6606H2.66052C2.29571 10.6606 1.99997 10.3648 1.99997 10ZM15.211 10C15.211 9.63519 15.5067 9.33945 15.8715 9.33945H17.3394C17.7042 9.33945 18 9.63519 18 10C18 10.3648 17.7042 10.6606 17.3394 10.6606H15.8715C15.5067 10.6606 15.211 10.3648 15.211 10ZM6.31513 13.6848C6.5731 13.9428 6.5731 14.361 6.31513 14.619L5.27734 15.6568C5.01938 15.9148 4.60114 15.9148 4.34318 15.6568C4.08522 15.3988 4.08522 14.9806 4.34318 14.7226L5.38098 13.6848C5.63894 13.4269 6.05717 13.4269 6.31513 13.6848ZM13.6848 13.6848C13.9428 13.4269 14.361 13.4269 14.619 13.6848L15.6568 14.7226C15.9147 14.9806 15.9147 15.3988 15.6568 15.6568C15.3988 15.9148 14.9806 15.9148 14.7226 15.6568L13.6848 14.619C13.4268 14.361 13.4268 13.9428 13.6848 13.6848ZM9.99997 15.211C10.3648 15.211 10.6605 15.5067 10.6605 15.8716V17.3394C10.6605 17.7043 10.3648 18 9.99997 18C9.63516 18 9.33942 17.7043 9.33942 17.3394V15.8716C9.33942 15.5067 9.63516 15.211 9.99997 15.211Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M15.75 3.75C15.75 3.33579 15.4142 3 15 3C14.5858 3 14.25 3.33579 14.25 3.75V16.25C14.25 16.6642 14.5858 17 15 17C15.4142 17 15.75 16.6642 15.75 16.25V3.75Z" />
|
|
3
|
+
<path d="M6.78033 8.03033C7.07322 7.73744 7.07322 7.26256 6.78033 6.96967C6.48744 6.67678 6.01256 6.67678 5.71967 6.96967L3.21967 9.46967C2.92678 9.76256 2.92678 10.2374 3.21967 10.5303L5.71967 13.0303C6.01256 13.3232 6.48744 13.3232 6.78033 13.0303C7.07322 12.7374 7.07322 12.2626 6.78033 11.9697L5.56066 10.75H11.25C11.6642 10.75 12 10.4142 12 10C12 9.58579 11.6642 9.25 11.25 9.25H5.56066L6.78033 8.03033Z" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M5.5 16.25C5.5 16.6642 5.16421 17 4.75 17C4.33579 17 4 16.6642 4 16.25V3.75C4 3.33579 4.33579 3 4.75 3C5.16421 3 5.5 3.33579 5.5 3.75V16.25Z" />
|
|
3
|
+
<path d="M14.0303 13.0303C13.7374 13.3232 13.2626 13.3232 12.9697 13.0303C12.6768 12.7374 12.6768 12.2626 12.9697 11.9697L14.1893 10.75H8.5C8.08579 10.75 7.75 10.4142 7.75 10C7.75 9.58579 8.08579 9.25 8.5 9.25H14.1893L12.9697 8.03033C12.6768 7.73744 12.6768 7.26256 12.9697 6.96967C13.2626 6.67678 13.7374 6.67678 14.0303 6.96967L16.5303 9.46967C16.8232 9.76256 16.8232 10.2374 16.5303 10.5303L14.0303 13.0303Z" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.43433 7.43427C5.74675 7.12185 6.25328 7.12185 6.5657 7.43427L10 10.8686L13.4343 7.43427C13.7467 7.12185 14.2533 7.12185 14.5657 7.43427C14.8781 7.74669 14.8781 8.25322 14.5657 8.56564L10.5657 12.5656C10.2533 12.8781 9.74675 12.8781 9.43433 12.5656L5.43433 8.56564C5.12191 8.25322 5.12191 7.74669 5.43433 7.43427Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.43433 7.43427C5.74675 7.12185 6.25328 7.12185 6.5657 7.43427L10 10.8686L13.4343 7.43427C13.7467 7.12185 14.2533 7.12185 14.5657 7.43427C14.8781 7.74669 14.8781 8.25322 14.5657 8.56564L10.5657 12.5656C10.2533 12.8781 9.74675 12.8781 9.43433 12.5656L5.43433 8.56564C5.12191 8.25322 5.12191 7.74669 5.43433 7.43427Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.43433 14.5656C7.12191 14.2532 7.12191 13.7467 7.43433 13.4343L10.8686 9.99995L7.43433 6.56564C7.12191 6.25322 7.12191 5.74669 7.43433 5.43427C7.74675 5.12185 8.25328 5.12185 8.5657 5.43427L12.5657 9.43427C12.8781 9.74669 12.8781 10.2532 12.5657 10.5656L8.5657 14.5656C8.25328 14.8781 7.74675 14.8781 7.43433 14.5656Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.461 16.018C10.1749 15.7185 10.1858 15.2437 10.4853 14.9576L14.6306 10.9983H4C3.58579 10.9983 3.25 10.6625 3.25 10.2483C3.25 9.83412 3.58579 9.49833 4 9.49833H14.6297L10.4855 5.54252C10.1858 5.25652 10.1748 4.78177 10.4608 4.48215C10.7468 4.18252 11.2215 4.17148 11.5212 4.45748L17.0195 9.70581C17.1677 9.8473 17.2516 10.0433 17.2517 10.2482C17.2517 10.4531 17.1679 10.6491 17.0197 10.7907L11.5213 16.0424C11.2218 16.3285 10.7471 16.3176 10.461 16.018Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.5657 5.43427C12.8781 5.74669 12.8781 6.25322 12.5657 6.56564L9.13138 9.99995L12.5657 13.4343C12.8781 13.7467 12.8781 14.2532 12.5657 14.5656C12.2533 14.8781 11.7467 14.8781 11.4343 14.5656L7.43433 10.5656C7.12191 10.2532 7.12191 9.74669 7.43433 9.43427L11.4343 5.43427C11.7467 5.12185 12.2533 5.12185 12.5657 5.43427Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.43433 14.5656C7.12191 14.2532 7.12191 13.7467 7.43433 13.4343L10.8686 9.99995L7.43433 6.56564C7.12191 6.25322 7.12191 5.74669 7.43433 5.43427C7.74675 5.12185 8.25328 5.12185 8.5657 5.43427L12.5657 9.43427C12.8781 9.74669 12.8781 10.2532 12.5657 10.5656L8.5657 14.5656C8.25328 14.8781 7.74675 14.8781 7.43433 14.5656Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.5657 12.5656C14.2533 12.8781 13.7467 12.8781 13.4343 12.5656L10 9.13132L6.5657 12.5656C6.25328 12.8781 5.74675 12.8781 5.43433 12.5656C5.12191 12.2532 5.12191 11.7467 5.43433 11.4343L9.43433 7.43427C9.74675 7.12185 10.2533 7.12185 10.5657 7.43427L14.5657 11.4343C14.8781 11.7467 14.8781 12.2532 14.5657 12.5656Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M9.99999 1.66663C8.35182 1.66663 6.74065 2.15537 5.37024 3.07105C3.99983 3.98672 2.93173 5.28821 2.301 6.81093C1.67027 8.33365 1.50524 10.0092 1.82678 11.6257C2.14833 13.2422 2.942 14.7271 4.10744 15.8925C5.27287 17.058 6.75773 17.8516 8.37424 18.1732C9.99075 18.4947 11.6663 18.3297 13.189 17.699C14.7117 17.0682 16.0132 16.0001 16.9289 14.6297C17.8446 13.2593 18.3333 11.6481 18.3333 9.99996C18.3333 8.90561 18.1178 7.82198 17.699 6.81093C17.2802 5.79988 16.6664 4.88122 15.8925 4.1074C15.1187 3.33358 14.2001 2.71975 13.189 2.30096C12.178 1.88217 11.0943 1.66663 9.99999 1.66663ZM9.99999 16.6666C8.68145 16.6666 7.39252 16.2756 6.29619 15.5431C5.19986 14.8105 4.34538 13.7694 3.8408 12.5512C3.33621 11.333 3.20419 9.99256 3.46143 8.69936C3.71866 7.40615 4.3536 6.21826 5.28595 5.28591C6.2183 4.35356 7.40619 3.71863 8.69939 3.46139C9.9926 3.20416 11.333 3.33618 12.5512 3.84076C13.7694 4.34535 14.8106 5.19983 15.5431 6.29616C16.2757 7.39249 16.6667 8.68142 16.6667 9.99996C16.6667 11.7681 15.9643 13.4638 14.714 14.714C13.4638 15.9642 11.7681 16.6666 9.99999 16.6666Z"/>
|
|
3
|
+
<path d="M11.9697 9.53033C12.2626 9.82322 12.7374 9.82322 13.0303 9.53033C13.3232 9.23744 13.3232 8.76256 13.0303 8.46967L10.5303 5.96967C10.2374 5.67678 9.7626 5.67678 9.4697 5.96967L6.9697 8.46967C6.6768 8.76256 6.6768 9.23744 6.9697 9.53033C7.2626 9.82322 7.7374 9.82322 8.0303 9.53033L9.25 8.31066V13.5C9.25 13.9142 9.5858 14.25 10 14.25C10.4142 14.25 10.75 13.9142 10.75 13.5V8.31066L11.9697 9.53033Z" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.223 13.3864C2.9301 13.6792 2.93011 14.1541 3.223 14.447L6.05633 17.2803C6.34922 17.5732 6.8241 17.5732 7.11699 17.2803C7.40988 16.9875 7.40988 16.5126 7.11699 16.2197L5.56399 14.6667H16.25C16.6642 14.6667 17 14.3309 17 13.9167C17 13.5025 16.6642 13.1667 16.25 13.1667H5.56399L7.11699 11.6137C7.40988 11.3208 7.40988 10.8459 7.11699 10.553C6.8241 10.2601 6.34922 10.2601 6.05633 10.553L3.223 13.3864ZM2.99998 6.08335C2.99998 6.49756 3.33577 6.83335 3.74998 6.83335H14.436L12.883 8.38635C12.5901 8.67924 12.5901 9.15412 12.883 9.44701C13.1759 9.7399 13.6508 9.7399 13.9437 9.44701L16.777 6.61368C17.0699 6.32079 17.0699 5.84591 16.777 5.55302L13.9437 2.71969C13.6508 2.42679 13.1759 2.42679 12.883 2.71969C12.5901 3.01258 12.5901 3.48745 12.883 3.78035L14.436 5.33335H3.74998C3.33577 5.33335 2.99998 5.66913 2.99998 6.08335Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M3.5 6.25C3.5 5.83579 3.83579 5.5 4.25 5.5H15.75C16.1642 5.5 16.5 5.83579 16.5 6.25V8.25C16.5 8.66421 16.8358 9 17.25 9C17.6642 9 18 8.66421 18 8.25V6.25C18 5.00736 16.9926 4 15.75 4H4.25C3.00736 4 2 5.00736 2 6.25V11.75C2 12.9926 3.00736 14 4.25 14H12C12.4142 14 12.75 13.6642 12.75 13.25C12.75 12.8358 12.4142 12.5 12 12.5H4.25C3.83579 12.5 3.5 12.1642 3.5 11.75V6.25Z" class="uiIcons" />
|
|
3
|
+
<path d="M5.75 8.25C5.33579 8.25 5 8.58579 5 9C5 9.41421 5.33579 9.75 5.75 9.75H8.25C8.66421 9.75 9 9.41421 9 9C9 8.58579 8.66421 8.25 8.25 8.25H5.75Z" class="uiIcons" />
|
|
4
|
+
<path d="M15.7263 12.3869C15.8207 12.0202 16.1546 11.75 16.5496 11.75C17.019 11.75 17.3996 12.1306 17.3996 12.6C17.3996 12.7575 17.353 12.8753 17.1288 13.0917C17.0198 13.1969 16.8941 13.3012 16.7307 13.4369L16.6575 13.4977C16.467 13.6561 16.2449 13.8441 16.0193 14.0697C15.7264 14.3626 15.7264 14.8374 16.0193 15.1303C16.3122 15.4232 16.787 15.4232 17.0799 15.1303C17.2543 14.9559 17.4322 14.8044 17.6167 14.6509L17.6855 14.5938C17.8436 14.4627 18.0176 14.3185 18.1704 14.171C18.5462 13.8083 18.8996 13.3262 18.8996 12.6C18.8996 11.3021 17.8475 10.25 16.5496 10.25C15.4536 10.25 14.5345 10.9996 14.2737 12.0131C14.1704 12.4142 14.4119 12.8231 14.8131 12.9263C15.2142 13.0296 15.6231 12.7881 15.7263 12.3869Z" class="uiIcons" />
|
|
5
|
+
<path d="M16.5496 16.25C16.1354 16.25 15.7996 16.5858 15.7996 17C15.7996 17.4142 16.1354 17.75 16.5496 17.75H16.5576C16.9718 17.75 17.3076 17.4142 17.3076 17C17.3076 16.5858 16.9718 16.25 16.5576 16.25H16.5496Z" class="uiIcons" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" >
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.75 14.25C10.75 14.6642 10.4142 15 10 15C9.58579 15 9.25 14.6642 9.25 14.25V11.8107L7.52512 13.5355C7.23223 13.8284 6.75734 13.8284 6.46446 13.5355C6.17157 13.2426 6.17157 12.7678 6.46446 12.4749L8.18933 10.75H5.75C5.33579 10.75 5 10.4142 5 10C5 9.58579 5.33579 9.25 5.75 9.25H8.18933L6.46446 7.52513C6.17157 7.23224 6.17157 6.75736 6.46446 6.46447C6.75734 6.17158 7.23223 6.17158 7.52512 6.46447L9.25 8.18935V5.75C9.25 5.33579 9.58579 5 10 5C10.4142 5 10.75 5.33579 10.75 5.75V8.18933L12.4749 6.46447C12.7677 6.17158 13.2426 6.17158 13.5355 6.46447C13.8284 6.75735 13.8284 7.23224 13.5355 7.52513L11.8107 9.25H14.25C14.6642 9.25 15 9.58579 15 10C15 10.4142 14.6642 10.75 14.25 10.75H11.8107L13.5355 12.4749C13.8284 12.7678 13.8284 13.2427 13.5355 13.5355C13.2426 13.8284 12.7677 13.8284 12.4749 13.5355L10.75 11.8107V14.25Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.9375 10C10.9375 10.5178 10.5178 10.9375 10 10.9375C9.48227 10.9375 9.06254 10.5178 9.06254 10C9.06254 9.48223 9.48227 9.0625 10 9.0625C10.5178 9.0625 10.9375 9.48223 10.9375 10Z" />
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.04811 7.48744C3.40656 8.28408 3.90152 9.13438 4.5128 10C3.90152 10.8656 3.40656 11.7159 3.04811 12.5126C2.66538 13.3631 2.42115 14.1903 2.38084 14.9317C2.34056 15.6727 2.50302 16.4164 3.04331 16.9567C3.58361 17.497 4.3273 17.6595 5.06829 17.6192C5.80977 17.5789 6.63688 17.3346 7.48746 16.9519C8.28411 16.5935 9.13441 16.0985 10 15.4872C10.8656 16.0985 11.7159 16.5935 12.5126 16.9519C13.3632 17.3346 14.1903 17.5789 14.9318 17.6192C15.6728 17.6595 16.4164 17.497 16.9567 16.9567C17.497 16.4164 17.6595 15.6727 17.6192 14.9317C17.5789 14.1903 17.3347 13.3631 16.9519 12.5126C16.5935 11.7159 16.0985 10.8656 15.4873 10C16.0985 9.13438 16.5935 8.28408 16.9519 7.48744C17.3347 6.63685 17.5789 5.80974 17.6192 5.06827C17.6595 4.32727 17.497 3.58358 16.9567 3.04329C16.4164 2.50299 15.6728 2.34053 14.9318 2.38081C14.1903 2.42112 13.3632 2.66535 12.5126 3.04808C11.7159 3.40654 10.8656 3.90149 10 4.51277C9.13441 3.90149 8.28411 3.40654 7.48746 3.04808C6.63688 2.66535 5.80977 2.42112 5.06829 2.38081C4.3273 2.34053 3.58361 2.50299 3.04331 3.04329C2.50302 3.58358 2.34056 4.32727 2.38084 5.06827C2.42115 5.80974 2.66538 6.63685 3.04811 7.48744ZM4.41601 6.87194C4.67973 7.45804 5.03448 8.09053 5.47168 8.74659C5.947 8.16995 6.469 7.59465 7.03184 7.03181C7.59468 6.46897 8.16997 5.94697 8.74662 5.47166C8.09056 5.03445 7.45807 4.67971 6.87197 4.41598C6.11844 4.07693 5.47911 3.90536 4.98688 3.8786C4.49417 3.85182 4.23687 3.97104 4.10397 4.10395C3.97107 4.23685 3.85185 4.49414 3.87863 4.98685C3.90539 5.47908 4.07696 6.11841 4.41601 6.87194ZM6.87197 15.584C7.45807 15.3203 8.09056 14.9656 8.74662 14.5283C8.16997 14.053 7.59468 13.531 7.03184 12.9682C6.469 12.4054 5.947 11.8301 5.47168 11.2534C5.03448 11.9095 4.67973 12.542 4.41601 13.1281C4.07696 13.8816 3.90539 14.5209 3.87863 15.0132C3.85185 15.5059 3.97107 15.7632 4.10397 15.8961C4.23687 16.029 4.49417 16.1482 4.98688 16.1214C5.47911 16.0946 6.11844 15.9231 6.87197 15.584ZM8.0925 11.9075C8.72401 12.539 9.3661 13.1099 10 13.613C10.634 13.1099 11.2761 12.539 11.9076 11.9075C12.5391 11.276 13.1099 10.6339 13.6131 10C13.1099 9.36607 12.5391 8.72398 11.9076 8.09247C11.2761 7.46096 10.634 6.89012 10 6.38696C9.3661 6.89012 8.72401 7.46096 8.0925 8.09247C7.46099 8.72398 6.89014 9.36607 6.38699 10C6.89014 10.6339 7.46099 11.276 8.0925 11.9075ZM13.1281 15.584C12.542 15.3203 11.9095 14.9656 11.2534 14.5283C11.8301 14.053 12.4054 13.531 12.9682 12.9682C13.5311 12.4054 14.0531 11.8301 14.5284 11.2534C14.9656 11.9095 15.3203 12.542 15.584 13.1281C15.9231 13.8816 16.0947 14.5209 16.1214 15.0132C16.1482 15.5059 16.029 15.7632 15.8961 15.8961C15.7632 16.029 15.5059 16.1482 15.0132 16.1214C14.5209 16.0946 13.8816 15.9231 13.1281 15.584ZM15.584 6.87194C15.3203 7.45805 14.9656 8.09053 14.5284 8.74659C14.0531 8.16994 13.5311 7.59465 12.9682 7.03181C12.4054 6.46897 11.8301 5.94697 11.2534 5.47166C11.9095 5.03445 12.542 4.67971 13.1281 4.41599C13.8816 4.07693 14.5209 3.90536 15.0132 3.8786C15.5059 3.85182 15.7632 3.97104 15.8961 4.10395C16.029 4.23685 16.1482 4.49414 16.1214 4.98685C16.0947 5.47908 15.9231 6.11841 15.584 6.87194Z" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.0013 9.1665C9.78029 9.1665 9.56833 9.2543 9.41205 9.41058C9.25577 9.56686 9.16797 9.77882 9.16797 9.99984V13.3332C9.16797 13.5542 9.25577 13.7661 9.41205 13.9224C9.56833 14.0787 9.78029 14.1665 10.0013 14.1665C10.2223 14.1665 10.4343 14.0787 10.5906 13.9224C10.7468 13.7661 10.8346 13.5542 10.8346 13.3332V9.99984C10.8346 9.77882 10.7468 9.56686 10.5906 9.41058C10.4343 9.2543 10.2223 9.1665 10.0013 9.1665ZM10.318 5.89984C10.1151 5.81649 9.88752 5.81649 9.68464 5.89984C9.58235 5.9395 9.48889 5.99897 9.40964 6.07484C9.33603 6.15584 9.27684 6.24885 9.23464 6.34984C9.18799 6.44874 9.16516 6.55719 9.16797 6.6665C9.16734 6.77618 9.18836 6.88489 9.22983 6.98643C9.2713 7.08796 9.3324 7.1803 9.40964 7.25817C9.49064 7.33178 9.58365 7.39097 9.68464 7.43317C9.81089 7.48504 9.94794 7.5051 10.0838 7.4916C10.2196 7.47809 10.35 7.43144 10.4636 7.35573C10.5771 7.28002 10.6704 7.17757 10.7351 7.0574C10.7998 6.93722 10.834 6.80299 10.8346 6.6665C10.8316 6.44586 10.7453 6.23453 10.593 6.07484C10.5137 5.99897 10.4203 5.9395 10.318 5.89984ZM10.0013 1.6665C8.35313 1.6665 6.74196 2.15525 5.37155 3.07092C4.00114 3.9866 2.93304 5.28809 2.30231 6.81081C1.67158 8.33353 1.50655 10.0091 1.8281 11.6256C2.14964 13.2421 2.94331 14.727 4.10875 15.8924C5.27419 17.0578 6.75905 17.8515 8.37555 18.173C9.99206 18.4946 11.6676 18.3296 13.1903 17.6988C14.7131 17.0681 16.0145 16 16.9302 14.6296C17.8459 13.2592 18.3346 11.648 18.3346 9.99984C18.3346 8.90549 18.1191 7.82186 17.7003 6.81081C17.2815 5.79976 16.6677 4.8811 15.8939 4.10728C15.12 3.33346 14.2014 2.71963 13.1903 2.30084C12.1793 1.88205 11.0957 1.6665 10.0013 1.6665V1.6665ZM10.0013 16.6665C8.68276 16.6665 7.39383 16.2755 6.2975 15.543C5.20118 14.8104 4.34669 13.7692 3.84211 12.5511C3.33752 11.3329 3.2055 9.99244 3.46274 8.69924C3.71997 7.40603 4.35491 6.21814 5.28726 5.28579C6.21961 4.35344 7.4075 3.7185 8.7007 3.46127C9.99391 3.20403 11.3344 3.33606 12.5525 3.84064C13.7707 4.34522 14.8119 5.19971 15.5444 6.29604C16.277 7.39236 16.668 8.6813 16.668 9.99984C16.668 11.7679 15.9656 13.4636 14.7154 14.7139C13.4651 15.9641 11.7694 16.6665 10.0013 16.6665V16.6665Z" fill="#6E7A83"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.89108 1.57179C9.25446 1.52439 9.62463 1.5 10 1.5C10.3754 1.5 10.7455 1.52439 11.1089 1.57179C11.6566 1.64323 12.0426 2.14509 11.9712 2.69274C11.8997 3.24038 11.3979 3.62643 10.8502 3.55499C10.5724 3.51875 10.2886 3.5 10 3.5C9.71136 3.5 9.4276 3.51875 9.14978 3.55499C8.60213 3.62643 8.10027 3.24038 8.02883 2.69274C7.9574 2.14509 8.34344 1.64323 8.89108 1.57179ZM6.22704 3.44018C6.56356 3.87809 6.48136 4.5059 6.04345 4.84242C5.5928 5.18873 5.18873 5.5928 4.84242 6.04345C4.5059 6.48136 3.87809 6.56356 3.44018 6.22704C3.00226 5.89052 2.92006 5.26271 3.25658 4.82479C3.70881 4.23631 4.23631 3.70881 4.82479 3.25658C5.26271 2.92006 5.89052 3.00226 6.22704 3.44018ZM13.773 3.44018C14.1095 3.00226 14.7373 2.92006 15.1752 3.25658C15.7637 3.70881 16.2912 4.23631 16.7434 4.82479C17.0799 5.26271 16.9977 5.89052 16.5598 6.22704C16.1219 6.56356 15.4941 6.48136 15.1576 6.04345C14.8113 5.5928 14.4072 5.18873 13.9566 4.84242C13.5186 4.5059 13.4364 3.87809 13.773 3.44018ZM2.69274 8.02883C3.24038 8.10027 3.62643 8.60213 3.55499 9.14978C3.51875 9.4276 3.5 9.71136 3.5 10C3.5 10.2886 3.51875 10.5724 3.55499 10.8502C3.62643 11.3979 3.24038 11.8997 2.69274 11.9712C2.14509 12.0426 1.64323 11.6566 1.57179 11.1089C1.52439 10.7455 1.5 10.3754 1.5 10C1.5 9.62463 1.52439 9.25446 1.57179 8.89108C1.64323 8.34344 2.14509 7.95739 2.69274 8.02883ZM17.3073 8.02883C17.8549 7.9574 18.3568 8.34344 18.4282 8.89108C18.4756 9.25446 18.5 9.62463 18.5 10C18.5 10.3754 18.4756 10.7455 18.4282 11.1089C18.3568 11.6566 17.8549 12.0426 17.3073 11.9712C16.7596 11.8997 16.3736 11.3979 16.445 10.8502C16.4812 10.5724 16.5 10.2886 16.5 10C16.5 9.71136 16.4812 9.4276 16.445 9.14978C16.3736 8.60213 16.7596 8.10027 17.3073 8.02883ZM3.44018 13.773C3.87809 13.4364 4.5059 13.5186 4.84242 13.9566C5.18873 14.4072 5.5928 14.8113 6.04345 15.1576C6.48136 15.4941 6.56356 16.1219 6.22704 16.5598C5.89052 16.9977 5.26271 17.0799 4.82479 16.7434C4.23631 16.2912 3.70881 15.7637 3.25658 15.1752C2.92006 14.7373 3.00226 14.1095 3.44018 13.773ZM16.5598 13.773C16.9977 14.1095 17.0799 14.7373 16.7434 15.1752C16.2912 15.7637 15.7637 16.2912 15.1752 16.7434C14.7373 17.0799 14.1095 16.9977 13.773 16.5598C13.4364 16.1219 13.5186 15.4941 13.9566 15.1576C14.4072 14.8113 14.8113 14.4072 15.1576 13.9566C15.4941 13.5186 16.1219 13.4364 16.5598 13.773ZM8.02883 17.3073C8.10027 16.7596 8.60213 16.3736 9.14978 16.445C9.4276 16.4812 9.71136 16.5 10 16.5C10.2886 16.5 10.5724 16.4812 10.8502 16.445C11.3979 16.3736 11.8997 16.7596 11.9712 17.3073C12.0426 17.8549 11.6566 18.3568 11.1089 18.4282C10.7455 18.4756 10.3754 18.5 10 18.5C9.62463 18.5 9.25446 18.4756 8.89108 18.4282C8.34344 18.3568 7.95739 17.8549 8.02883 17.3073Z" fill="#6E7A83"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M13.0919 6.90852C13.0144 6.83041 12.9222 6.76842 12.8207 6.72611C12.7191 6.6838 12.6102 6.66202 12.5002 6.66202C12.3902 6.66202 12.2813 6.6838 12.1797 6.72611C12.0782 6.76842 11.986 6.83041 11.9085 6.90852L10.0002 8.82519L8.09185 6.90852C7.93493 6.7516 7.72211 6.66344 7.50019 6.66344C7.27827 6.66344 7.06544 6.7516 6.90852 6.90852C6.7516 7.06544 6.66344 7.27827 6.66344 7.50019C6.66344 7.72211 6.7516 7.93493 6.90852 8.09185L8.82519 10.0002L6.90852 11.9085C6.83041 11.986 6.76842 12.0782 6.72611 12.1797C6.6838 12.2813 6.66202 12.3902 6.66202 12.5002C6.66202 12.6102 6.6838 12.7191 6.72611 12.8207C6.76842 12.9222 6.83041 13.0144 6.90852 13.0919C6.98599 13.17 7.07816 13.232 7.17971 13.2743C7.28126 13.3166 7.39018 13.3384 7.50019 13.3384C7.6102 13.3384 7.71912 13.3166 7.82067 13.2743C7.92222 13.232 8.01439 13.17 8.09185 13.0919L10.0002 11.1752L11.9085 13.0919C11.986 13.17 12.0782 13.232 12.1797 13.2743C12.2813 13.3166 12.3902 13.3384 12.5002 13.3384C12.6102 13.3384 12.7191 13.3166 12.8207 13.2743C12.9222 13.232 13.0144 13.17 13.0919 13.0919C13.17 13.0144 13.232 12.9222 13.2743 12.8207C13.3166 12.7191 13.3384 12.6102 13.3384 12.5002C13.3384 12.3902 13.3166 12.2813 13.2743 12.1797C13.232 12.0782 13.17 11.986 13.0919 11.9085L11.1752 10.0002L13.0919 8.09185C13.17 8.01439 13.232 7.92222 13.2743 7.82067C13.3166 7.71912 13.3384 7.6102 13.3384 7.50019C13.3384 7.39018 13.3166 7.28126 13.2743 7.17971C13.232 7.07816 13.17 6.98599 13.0919 6.90852V6.90852ZM15.8919 4.10852C15.1231 3.3126 14.2036 2.67775 13.1869 2.24101C12.1702 1.80427 11.0767 1.57438 9.9702 1.56477C8.8637 1.55515 7.76637 1.766 6.74224 2.18501C5.7181 2.60401 4.78767 3.22279 4.00523 4.00523C3.22279 4.78767 2.60401 5.7181 2.18501 6.74224C1.766 7.76637 1.55515 8.8637 1.56477 9.9702C1.57438 11.0767 1.80427 12.1702 2.24101 13.1869C2.67775 14.2036 3.3126 15.1231 4.10852 15.8919C4.87724 16.6878 5.79678 17.3226 6.81348 17.7594C7.83018 18.1961 8.92368 18.426 10.0302 18.4356C11.1367 18.4452 12.234 18.2344 13.2581 17.8154C14.2823 17.3964 15.2127 16.7776 15.9951 15.9951C16.7776 15.2127 17.3964 14.2823 17.8154 13.2581C18.2344 12.234 18.4452 11.1367 18.4356 10.0302C18.426 8.92368 18.1961 7.83018 17.7594 6.81348C17.3226 5.79678 16.6878 4.87724 15.8919 4.10852V4.10852ZM14.7169 14.7169C13.6269 15.808 12.1923 16.4875 10.6575 16.6396C9.12273 16.7917 7.58269 16.4069 6.29979 15.5508C5.01689 14.6948 4.07049 13.4204 3.62183 11.9448C3.17318 10.4692 3.25003 8.88364 3.83928 7.45834C4.42854 6.03304 5.49375 4.85614 6.85343 4.12816C8.21311 3.40017 9.78314 3.16613 11.296 3.46592C12.8089 3.7657 14.1711 4.58076 15.1504 5.77224C16.1297 6.96371 16.6656 8.45789 16.6669 10.0002C16.6698 10.8763 16.499 11.7442 16.1643 12.5538C15.8296 13.3635 15.3376 14.0986 14.7169 14.7169V14.7169Z" fill="#E5484D"/>
|
|
3
|
+
</svg>
|