@firstnoodle-ui/bui 0.0.27 → 0.0.28
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/LICENSE +21 -21
- package/dist/bui.css +1 -1
- package/dist/components/calendar-view/CalendarView.vue.d.ts +21 -0
- package/dist/components/calendar-view/components/DateButton.vue.d.ts +10 -0
- package/dist/components/calendar-view/components/DecadeView.vue.d.ts +12 -0
- package/dist/components/calendar-view/components/MonthView.vue.d.ts +17 -0
- package/dist/components/calendar-view/components/YearView.vue.d.ts +13 -0
- package/dist/components/calendar-view/composables/useCalendar.d.ts +44 -0
- package/dist/components/calendar-view/index.d.ts +1 -0
- package/dist/components/calendar-view/utils/enums.d.ts +29 -0
- package/dist/components/calendar-view/utils/index.d.ts +23 -0
- package/dist/components/calendar-view/utils/types.d.ts +12 -0
- package/dist/components/calendar-view/utils/utils/calendar.d.ts +22 -0
- package/dist/components/calendar-view/utils/utils/date.d.ts +15 -0
- package/dist/components/calendar-view/utils/utils/format.d.ts +18 -0
- package/dist/components/calendar-view/utils/utils/time.d.ts +35 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/components/notification-badge/NotificationBadge.vue.d.ts +5 -0
- package/dist/components/notification-badge/index.d.ts +1 -0
- package/dist/components/select-list/components/option-group/OptionGroup.vue.d.ts +1 -0
- package/dist/components/select-list/components/select-list-option/SelectListOption.vue.d.ts +1 -0
- package/dist/components/select-list/types.d.ts +1 -0
- package/dist/components/types.d.ts +1 -1
- package/dist/index.mjs +7056 -6465
- package/dist/utils/capitalizeFirstLetter.d.ts +1 -0
- package/package.json +4 -3
- package/src/components/application-wrapper/ApplicationWrapper.vue +8 -0
- package/src/components/application-wrapper/index.ts +1 -0
- package/src/components/aside-section-label/AsideSectionLabel.vue +16 -0
- package/src/components/aside-section-label/index.ts +1 -0
- package/src/components/button/Button.vue +246 -0
- package/src/components/button/NotificationBadge.vue +15 -0
- package/src/components/button/components/button-label/ButtonLabel.vue +9 -0
- package/src/components/button/components/button-label/index.ts +1 -0
- package/src/components/button/components/index.ts +3 -0
- package/src/components/button/components/left-group/LeftGroup.vue +5 -0
- package/src/components/button/components/left-group/index.ts +1 -0
- package/src/components/button/components/notification-badge/NotificationBadge.vue +17 -0
- package/src/components/button/components/notification-badge/index.ts +1 -0
- package/src/components/button/index.ts +1 -0
- package/src/components/button-group/ButtonGroup.vue +97 -0
- package/src/components/button-group/index.ts +1 -0
- package/src/components/calendar-view/CalendarView.vue +106 -0
- package/src/components/calendar-view/components/DateButton.vue +23 -0
- package/src/components/calendar-view/components/DecadeView.vue +50 -0
- package/src/components/calendar-view/components/MonthView.vue +72 -0
- package/src/components/calendar-view/components/NavButton.vue +16 -0
- package/src/components/calendar-view/components/YearView.vue +52 -0
- package/src/components/calendar-view/composables/useCalendar.ts +138 -0
- package/src/components/calendar-view/index.ts +1 -0
- package/src/components/calendar-view/utils/enums.ts +31 -0
- package/src/components/calendar-view/utils/index.ts +240 -0
- package/src/components/calendar-view/utils/types.ts +13 -0
- package/src/components/calendar-view/utils/utils/calendar.ts +70 -0
- package/src/components/calendar-view/utils/utils/date.ts +130 -0
- package/src/components/calendar-view/utils/utils/format.ts +61 -0
- package/src/components/calendar-view/utils/utils/time.ts +70 -0
- package/src/components/checkbox/Checkbox.vue +51 -0
- package/src/components/checkbox/CircleIndicator.vue +26 -0
- package/src/components/checkbox/DefaultIndicator.vue +19 -0
- package/src/components/checkbox/index.ts +1 -0
- package/src/components/collapse/Collapse.vue +114 -0
- package/src/components/collapse/index.ts +1 -0
- package/src/components/confirm-cancel/ConfirmCancel.vue +66 -0
- package/src/components/confirm-cancel/index.ts +1 -0
- package/src/components/confirm-cancel/types.ts +18 -0
- package/src/components/content-slider/ContentSlider.vue +79 -0
- package/src/components/content-slider/index.ts +1 -0
- package/src/components/data-point/DataPoint.vue +5 -0
- package/src/components/data-point/index.ts +1 -0
- package/src/components/delete-button/DeleteButton.vue +19 -0
- package/src/components/delete-button/index.ts +1 -0
- package/src/components/dialog/Dialog.vue +70 -0
- package/src/components/dialog/index.ts +1 -0
- package/src/components/fade-in-up/FadeInUp.vue +17 -0
- package/src/components/fade-in-up/index.ts +1 -0
- package/src/components/filter-chip/FilterChip.vue +28 -0
- package/src/components/filter-chip/index.ts +1 -0
- package/src/components/first-paint/FirstPaint.vue +21 -0
- package/src/components/first-paint/index.ts +1 -0
- package/src/components/first-paint/style.scss +23 -0
- package/src/components/flexbox/Flexbox.vue +51 -0
- package/src/components/flexbox/index.ts +1 -0
- package/src/components/horizontal-layout/Aside.vue +114 -0
- package/src/components/horizontal-layout/HorizontalLayout.vue +118 -0
- package/src/components/horizontal-layout/index.ts +2 -0
- package/src/components/icon/Icon.vue +1263 -0
- package/src/components/icon/index.ts +1 -0
- package/src/components/icon/utils/combine-svgs.cjs +55 -0
- package/src/components/icon/utils/combined-svgs.txt +1150 -0
- package/src/components/icon/utils/svgs/admin.svg +16 -0
- package/src/components/icon/utils/svgs/arrow-deviate.svg +3 -0
- package/src/components/icon/utils/svgs/arrow-down-plus.svg +4 -0
- package/src/components/icon/utils/svgs/arrow-down.svg +3 -0
- package/src/components/icon/utils/svgs/arrow-from.svg +3 -0
- package/src/components/icon/utils/svgs/arrow-left.svg +3 -0
- package/src/components/icon/utils/svgs/arrow-move.svg +15 -0
- package/src/components/icon/utils/svgs/arrow-right.svg +3 -0
- package/src/components/icon/utils/svgs/arrow-sub.svg +3 -0
- package/src/components/icon/utils/svgs/arrow-trend.svg +15 -0
- package/src/components/icon/utils/svgs/arrow-up-plus.svg +4 -0
- package/src/components/icon/utils/svgs/arrow-up.svg +3 -0
- package/src/components/icon/utils/svgs/authority.svg +5 -0
- package/src/components/icon/utils/svgs/beams.svg +5 -0
- package/src/components/icon/utils/svgs/bell.svg +15 -0
- package/src/components/icon/utils/svgs/bold.svg +3 -0
- package/src/components/icon/utils/svgs/box.svg +5 -0
- package/src/components/icon/utils/svgs/building.svg +15 -0
- package/src/components/icon/utils/svgs/bullet-list.svg +8 -0
- package/src/components/icon/utils/svgs/calendar.svg +21 -0
- package/src/components/icon/utils/svgs/camera.svg +5 -0
- package/src/components/icon/utils/svgs/categories.svg +3 -0
- package/src/components/icon/utils/svgs/check-circled.svg +16 -0
- package/src/components/icon/utils/svgs/check-outline.svg +15 -0
- package/src/components/icon/utils/svgs/check.svg +3 -0
- package/src/components/icon/utils/svgs/chevron-down.svg +3 -0
- package/src/components/icon/utils/svgs/chevron-left-double.svg +4 -0
- package/src/components/icon/utils/svgs/chevron-left.svg +3 -0
- package/src/components/icon/utils/svgs/chevron-right-double.svg +4 -0
- package/src/components/icon/utils/svgs/chevron-right.svg +3 -0
- package/src/components/icon/utils/svgs/chevron-up.svg +3 -0
- package/src/components/icon/utils/svgs/clock.svg +4 -0
- package/src/components/icon/utils/svgs/close-outline.svg +3 -0
- package/src/components/icon/utils/svgs/close.svg +3 -0
- package/src/components/icon/utils/svgs/columns.svg +3 -0
- package/src/components/icon/utils/svgs/conclusion.svg +17 -0
- package/src/components/icon/utils/svgs/copy.svg +16 -0
- package/src/components/icon/utils/svgs/crosshair.svg +15 -0
- package/src/components/icon/utils/svgs/dash.svg +3 -0
- package/src/components/icon/utils/svgs/dashboard.svg +3 -0
- package/src/components/icon/utils/svgs/delete.svg +4 -0
- package/src/components/icon/utils/svgs/delta.svg +3 -0
- package/src/components/icon/utils/svgs/download.svg +3 -0
- package/src/components/icon/utils/svgs/drag.svg +8 -0
- package/src/components/icon/utils/svgs/drilldown.svg +8 -0
- package/src/components/icon/utils/svgs/edit.svg +16 -0
- package/src/components/icon/utils/svgs/envelope.svg +3 -0
- package/src/components/icon/utils/svgs/error.svg +3 -0
- package/src/components/icon/utils/svgs/export-document.svg +16 -0
- package/src/components/icon/utils/svgs/filter.svg +6 -0
- package/src/components/icon/utils/svgs/filters.svg +4 -0
- package/src/components/icon/utils/svgs/flag.svg +3 -0
- package/src/components/icon/utils/svgs/folder.svg +15 -0
- package/src/components/icon/utils/svgs/frequency.svg +3 -0
- package/src/components/icon/utils/svgs/fullscreen-off.svg +3 -0
- package/src/components/icon/utils/svgs/fullscreen-on.svg +3 -0
- package/src/components/icon/utils/svgs/graduate.svg +3 -0
- package/src/components/icon/utils/svgs/hamburger.svg +5 -0
- package/src/components/icon/utils/svgs/handshake.svg +15 -0
- package/src/components/icon/utils/svgs/heading-1.svg +4 -0
- package/src/components/icon/utils/svgs/heading-2.svg +4 -0
- package/src/components/icon/utils/svgs/heading.svg +3 -0
- package/src/components/icon/utils/svgs/home.svg +3 -0
- package/src/components/icon/utils/svgs/id-card.svg +6 -0
- package/src/components/icon/utils/svgs/id.svg +4 -0
- package/src/components/icon/utils/svgs/indent-left.svg +7 -0
- package/src/components/icon/utils/svgs/indent-right.svg +7 -0
- package/src/components/icon/utils/svgs/information.svg +17 -0
- package/src/components/icon/utils/svgs/italics.svg +3 -0
- package/src/components/icon/utils/svgs/itenary.svg +11 -0
- package/src/components/icon/utils/svgs/keyboard.svg +11 -0
- package/src/components/icon/utils/svgs/lightning.svg +15 -0
- package/src/components/icon/utils/svgs/link.svg +4 -0
- package/src/components/icon/utils/svgs/list-collapse.svg +6 -0
- package/src/components/icon/utils/svgs/list-expand.svg +6 -0
- package/src/components/icon/utils/svgs/location.svg +4 -0
- package/src/components/icon/utils/svgs/lock-locked.svg +4 -0
- package/src/components/icon/utils/svgs/lock-unlocked.svg +4 -0
- package/src/components/icon/utils/svgs/magnifying-glass.svg +15 -0
- package/src/components/icon/utils/svgs/map.svg +3 -0
- package/src/components/icon/utils/svgs/megaphone.svg +3 -0
- package/src/components/icon/utils/svgs/message.svg +15 -0
- package/src/components/icon/utils/svgs/microscope.svg +3 -0
- package/src/components/icon/utils/svgs/moon.svg +3 -0
- package/src/components/icon/utils/svgs/new-document.svg +4 -0
- package/src/components/icon/utils/svgs/news.svg +15 -0
- package/src/components/icon/utils/svgs/numbered-list.svg +7 -0
- package/src/components/icon/utils/svgs/open-link.svg +16 -0
- package/src/components/icon/utils/svgs/options.svg +5 -0
- package/src/components/icon/utils/svgs/page.svg +7 -0
- package/src/components/icon/utils/svgs/paper-plane.svg +15 -0
- package/src/components/icon/utils/svgs/paper.svg +3 -0
- package/src/components/icon/utils/svgs/pen-and-paper.svg +4 -0
- package/src/components/icon/utils/svgs/phase.svg +15 -0
- package/src/components/icon/utils/svgs/photo.svg +4 -0
- package/src/components/icon/utils/svgs/pie-chart.svg +3 -0
- package/src/components/icon/utils/svgs/plus.svg +3 -0
- package/src/components/icon/utils/svgs/point-left.svg +3 -0
- package/src/components/icon/utils/svgs/point-up.svg +3 -0
- package/src/components/icon/utils/svgs/popup.svg +16 -0
- package/src/components/icon/utils/svgs/question.svg +17 -0
- package/src/components/icon/utils/svgs/radio-tower.svg +3 -0
- package/src/components/icon/utils/svgs/recycle.svg +3 -0
- package/src/components/icon/utils/svgs/redo.svg +3 -0
- package/src/components/icon/utils/svgs/refresh.svg +3 -0
- package/src/components/icon/utils/svgs/route.svg +3 -0
- package/src/components/icon/utils/svgs/rows.svg +3 -0
- package/src/components/icon/utils/svgs/scope.svg +7 -0
- package/src/components/icon/utils/svgs/settings.svg +16 -0
- package/src/components/icon/utils/svgs/share.svg +11 -0
- package/src/components/icon/utils/svgs/sign-in.svg +4 -0
- package/src/components/icon/utils/svgs/sign-up.svg +3 -0
- package/src/components/icon/utils/svgs/sort-down.svg +20 -0
- package/src/components/icon/utils/svgs/sort-up.svg +20 -0
- package/src/components/icon/utils/svgs/sort.svg +7 -0
- package/src/components/icon/utils/svgs/square-solid.svg +3 -0
- package/src/components/icon/utils/svgs/star-solid.svg +15 -0
- package/src/components/icon/utils/svgs/star.svg +15 -0
- package/src/components/icon/utils/svgs/stop-watch.svg +5 -0
- package/src/components/icon/utils/svgs/structure.svg +3 -0
- package/src/components/icon/utils/svgs/sun.svg +23 -0
- package/src/components/icon/utils/svgs/table.svg +3 -0
- package/src/components/icon/utils/svgs/tag.svg +15 -0
- package/src/components/icon/utils/svgs/team.svg +15 -0
- package/src/components/icon/utils/svgs/telescope.svg +15 -0
- package/src/components/icon/utils/svgs/trash.svg +6 -0
- package/src/components/icon/utils/svgs/triangle-angle.svg +3 -0
- package/src/components/icon/utils/svgs/triangle-side.svg +3 -0
- package/src/components/icon/utils/svgs/underline.svg +4 -0
- package/src/components/icon/utils/svgs/undo.svg +3 -0
- package/src/components/icon/utils/svgs/user.svg +16 -0
- package/src/components/icon/utils/svgs/venn.svg +3 -0
- package/src/components/icon/utils/svgs/video.svg +3 -0
- package/src/components/icon/utils/svgs/visibility-off-alt.svg +19 -0
- package/src/components/icon/utils/svgs/visibility-off.svg +3 -0
- package/src/components/icon/utils/svgs/visibility-on.svg +16 -0
- package/src/components/icon/utils/svgs/warning.svg +5 -0
- package/src/components/index.ts +45 -0
- package/src/components/input/Input.vue +118 -0
- package/src/components/input/index.ts +1 -0
- package/src/components/input-number/InputNumber.vue +112 -0
- package/src/components/input-number/StepButton.vue +23 -0
- package/src/components/input-number/index.ts +1 -0
- package/src/components/load-spinner/LoadSpinner.vue +13 -0
- package/src/components/load-spinner/index.ts +1 -0
- package/src/components/modal/Modal.vue +111 -0
- package/src/components/modal/index.ts +1 -0
- package/src/components/nav-item/NavItem.vue +62 -0
- package/src/components/nav-item/index.ts +1 -0
- package/src/components/notification/Notification.vue +53 -0
- package/src/components/notification/index.ts +1 -0
- package/src/components/notification-badge/NotificationBadge.vue +7 -0
- package/src/components/notification-badge/index.ts +1 -0
- package/src/components/pagination/Pagination.vue +65 -0
- package/src/components/pagination/index.ts +1 -0
- package/src/components/pop-confirm/PopConfirm.vue +90 -0
- package/src/components/pop-confirm/index.ts +1 -0
- package/src/components/pop-select/FooterButton.vue +5 -0
- package/src/components/pop-select/PopSelect.vue +346 -0
- package/src/components/pop-select/ResultFilters.vue +28 -0
- package/src/components/pop-select/enums.ts +7 -0
- package/src/components/pop-select/index.ts +2 -0
- package/src/components/pop-select/option.vue +51 -0
- package/src/components/popper/Popper.vue +239 -0
- package/src/components/popper/PopperContent.vue +5 -0
- package/src/components/popper/index.ts +2 -0
- package/src/components/popper/middleware.ts +19 -0
- package/src/components/screen-overlay/ScreenOverlay.vue +53 -0
- package/src/components/screen-overlay/index.ts +1 -0
- package/src/components/scrollbar/Bar.vue +106 -0
- package/src/components/scrollbar/ScrollBottomLoader.vue +25 -0
- package/src/components/scrollbar/Scrollbar.vue +219 -0
- package/src/components/scrollbar/enums.ts +23 -0
- package/src/components/scrollbar/index.ts +3 -0
- package/src/components/scrollbar/style.scss +77 -0
- package/src/components/scrollbar/types.ts +32 -0
- package/src/components/select-list/SelectList.vue +476 -0
- package/src/components/select-list/components/SelectListFilterChip.vue +34 -0
- package/src/components/select-list/components/index.ts +3 -0
- package/src/components/select-list/components/option-group/OptionGroup.vue +20 -0
- package/src/components/select-list/components/option-group/index.ts +1 -0
- package/src/components/select-list/components/select-list-option/SelectListOption.vue +83 -0
- package/src/components/select-list/components/select-list-option/index.ts +1 -0
- package/src/components/select-list/components/status-cards/error-card/ErrorCard.vue +17 -0
- package/src/components/select-list/components/status-cards/error-card/index.ts +1 -0
- package/src/components/select-list/components/status-cards/idle-card/IdleCard.vue +11 -0
- package/src/components/select-list/components/status-cards/idle-card/index.ts +1 -0
- package/src/components/select-list/components/status-cards/index.ts +4 -0
- package/src/components/select-list/components/status-cards/loading-card/LoadingCard.vue +10 -0
- package/src/components/select-list/components/status-cards/loading-card/index.ts +1 -0
- package/src/components/select-list/components/status-cards/no-match-card/NoMatchCard.vue +15 -0
- package/src/components/select-list/components/status-cards/no-match-card/index.ts +1 -0
- package/src/components/select-list/components/status-cards/status-card/StatusCard.vue +25 -0
- package/src/components/select-list/components/status-cards/status-card/index.ts +1 -0
- package/src/components/select-list/index.ts +5 -0
- package/src/components/select-list/types.ts +49 -0
- package/src/components/side-over/SideOver.vue +87 -0
- package/src/components/side-over/index.ts +1 -0
- package/src/components/status-select/StatusIndicator.vue +78 -0
- package/src/components/status-select/StatusSelect.vue +62 -0
- package/src/components/status-select/index.ts +1 -0
- package/src/components/switch/Switch.vue +52 -0
- package/src/components/switch/index.ts +1 -0
- package/src/components/tab/Tab.vue +65 -0
- package/src/components/tab/index.ts +1 -0
- package/src/components/tag/Tag.vue +34 -0
- package/src/components/tag/index.ts +1 -0
- package/src/components/text-editor/TextEditor.vue +399 -0
- package/src/components/text-editor/components/Dialog.vue +11 -0
- package/src/components/text-editor/components/FormattingButton.vue +46 -0
- package/src/components/text-editor/components/InsertLinkDialog.vue +81 -0
- package/src/components/text-editor/components/InsertTextDialog.vue +36 -0
- package/src/components/text-editor/components/index.ts +3 -0
- package/src/components/text-editor/index.ts +1 -0
- package/src/components/text-highlight/TextHighlight.vue +113 -0
- package/src/components/text-highlight/index.ts +1 -0
- package/src/components/text-viewer/TextViewer.vue +5 -0
- package/src/components/text-viewer/index.ts +1 -0
- package/src/components/toggle-button/ToggleButton.vue +105 -0
- package/src/components/toggle-button/index.ts +1 -0
- package/src/components/tooltip/Tooltip.vue +54 -0
- package/src/components/tooltip/index.ts +1 -0
- package/src/components/types.ts +232 -0
- package/src/components/vertical-layout/RunningSection.vue +54 -0
- package/src/components/vertical-layout/VerticalLayout.vue +37 -0
- package/src/components/vertical-layout/index.ts +3 -0
- package/src/components/vertical-layout/types.ts +2 -0
- package/src/components/window-frame/WindowFrame.vue +20 -0
- package/src/components/window-frame/index.ts +1 -0
- package/src/composables/index.ts +5 -0
- package/src/composables/useClickOutside.ts +48 -0
- package/src/composables/useEscapeKey.ts +12 -0
- package/src/composables/useMounted.ts +7 -0
- package/src/composables/useNextFrame.ts +10 -0
- package/src/composables/useTrapFocus.ts +61 -0
- package/src/index.ts +5 -0
- package/src/main.css +140 -0
- package/src/utils/array.ts +11 -0
- package/src/utils/capitalizeFirstLetter.ts +4 -0
- package/src/utils/clamp.ts +9 -0
- package/src/utils/debounce.ts +8 -0
- package/src/utils/index.ts +5 -0
- package/src/utils/scrollIntoView.ts +25 -0
- package/src/utils/scrollbarWidth.ts +27 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1_492)">
|
|
3
|
+
<mask id="mask0_1_492" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="16" height="16">
|
|
4
|
+
<path d="M16 0H0V16H16V0Z" fill="white"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_1_492)">
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 3.5C6.61929 3.5 5.5 4.61929 5.5 6C5.5 7.38071 6.61929 8.5 8 8.5C9.38071 8.5 10.5 7.38071 10.5 6C10.5 4.61929 9.38071 3.5 8 3.5ZM6.5 6C6.5 5.17157 7.17157 4.5 8 4.5C8.82843 4.5 9.5 5.17157 9.5 6C9.5 6.82843 8.82843 7.5 8 7.5C7.17157 7.5 6.5 6.82843 6.5 6Z" fill="black"/>
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 1.59012L8 -0.0098877L0 1.59012V9.50002C0 11.4812 1.2957 13.1132 2.87265 14.2216C4.45348 15.3326 6.42695 16 8 16C9.57305 16 11.5465 15.3326 13.1274 14.2216C14.7043 13.1132 16 11.4812 16 9.50002V1.59012ZM1 9.50002V2.40992L8 1.00992L15 2.40992V9.50002C15 10.685 14.3906 11.7781 13.4358 12.6842C13.2696 11.6329 12.7961 10.7009 12.1942 9.98954C11.4544 9.11528 10.4524 8.50002 9.5 8.50002C9.22386 8.50002 9 8.72388 9 9.00002C9 9.27616 9.22386 9.50002 9.5 9.50002C10.0476 9.50002 10.7956 9.88475 11.4308 10.6355C12.0411 11.3568 12.4839 12.3472 12.4996 13.4402C11.0666 14.4314 9.31699 15 8 15C6.68301 15 4.9334 14.4314 3.50043 13.4402C3.51607 12.3472 3.95887 11.3568 4.56919 10.6355C5.20444 9.88475 5.9524 9.50002 6.5 9.50002C6.77614 9.50002 7 9.27616 7 9.00002C7 8.72388 6.77614 8.50002 6.5 8.50002C5.5476 8.50002 4.54556 9.11528 3.80581 9.98954C3.20391 10.7009 2.73045 11.6329 2.56425 12.6842C1.60941 11.7781 1 10.685 1 9.50002Z" fill="black"/>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
<defs>
|
|
12
|
+
<clipPath id="clip0_1_492">
|
|
13
|
+
<rect width="16" height="16" fill="white"/>
|
|
14
|
+
</clipPath>
|
|
15
|
+
</defs>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M4.49999 2.29285L7.2071 4.99995L6.49999 5.70706L4.99988 4.20685V10.3498L10.9661 8.21962L10.9669 5.23885L9.49999 6.70706L8.79288 5.99995L11.5 3.29285L14.2071 5.99995L13.5 6.70706L11.9669 5.17385L11.9671 8.92373L4.99988 11.4118L4.99999 14.5H3.99999L3.99988 4.20485L2.49999 5.70706L1.79288 4.99995L4.49999 2.29285Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M1.29291 10.293L6.00001 15.0001L10.7071 10.293L10 9.58586L6.50012 13.0861L6.50001 1.29297H5.50001L5.50012 13.0861L2.00001 9.58586L1.29291 10.293Z" fill="black"/>
|
|
3
|
+
<path d="M13 3.5V1.5H12V3.5H10V4.5H12V6.5H13V4.5H15V3.5H13Z" fill="black"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.7071 8.00008L11 4.29297L10.2929 5.00008L12.792 7.49997L4.93699 7.50007C4.71497 6.63746 3.93192 6.00008 3 6.00008C1.89543 6.00008 1 6.89551 1 8.00008C1 9.10465 1.89543 10.0001 3 10.0001C3.93192 10.0001 4.71497 9.36269 4.93699 8.50007L12.792 8.49997L10.2929 11.0001L11 11.7072L14.7071 8.00008ZM4 8.00008C4 8.55236 3.55228 9.00008 3 9.00008C2.44772 9.00008 2 8.55236 2 8.00008C2 7.44779 2.44772 7.00008 3 7.00008C3.55228 7.00008 4 7.44779 4 8.00008Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1_853)">
|
|
3
|
+
<mask id="mask0_1_853" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="16" height="16">
|
|
4
|
+
<path d="M16 0H0V16H16V0Z" fill="white"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_1_853)">
|
|
7
|
+
<path d="M8 0.292969L10.7071 3.00008L10 3.70718L8.49989 2.20597V7.49997H13.7929L12.2929 6.00008L13 5.29297L15.7071 8.00008L13 10.7072L12.2929 10.0001L13.7929 8.49997H8.49989V13.792L10 12.293L10.7071 13.0001L8 15.7072L5.29289 13.0001L6 12.293L7.49989 13.794V8.49997H2.20689L3.70711 10.0001L3 10.7072L0.292892 8.00008L3 5.29297L3.70711 6.00008L2.20489 7.49997H7.49989V2.20597L6 3.70718L5.29289 3.00008L8 0.292969Z" fill="black"/>
|
|
8
|
+
</g>
|
|
9
|
+
</g>
|
|
10
|
+
<defs>
|
|
11
|
+
<clipPath id="clip0_1_853">
|
|
12
|
+
<rect width="16" height="16" fill="white"/>
|
|
13
|
+
</clipPath>
|
|
14
|
+
</defs>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.5 4C5.5 4.93192 4.86261 5.71497 4 5.93699V7.5C4 8.88071 5.11929 10 6.5 10H13.2929L11.1464 7.85355L11.8536 7.14645L15.2071 10.5L11.8536 13.8536L11.1464 13.1464L13.2929 11H6.5C4.567 11 3 9.433 3 7.5V5.93699C2.13739 5.71497 1.5 4.93192 1.5 4C1.5 2.89543 2.39543 2 3.5 2C4.60457 2 5.5 2.89543 5.5 4ZM3.5 5C4.05228 5 4.5 4.55228 4.5 4C4.5 3.44772 4.05228 3 3.5 3C2.94772 3 2.5 3.44772 2.5 4C2.5 4.55228 2.94772 5 3.5 5Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1_1043)">
|
|
3
|
+
<mask id="mask0_1_1043" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="16" height="16">
|
|
4
|
+
<path d="M16 0H0V16H16V0Z" fill="white"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_1_1043)">
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 1C4.13401 1 1 4.13401 1 8H0C0 3.58172 3.58172 0 8 0C12.4183 0 16 3.58172 16 8C16 12.4183 12.4183 16 8 16C4.96894 16 2.33236 14.3141 0.975485 11.8313L0.801925 11.5137L1.14071 11.1522L5 7.29289L7 9.29289L10.2929 6H8V5H12V9H11V6.70711L7 10.7071L5 8.70711L2.03764 11.6695C3.27087 13.6689 5.48031 15 8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1Z" fill="black"/>
|
|
8
|
+
</g>
|
|
9
|
+
</g>
|
|
10
|
+
<defs>
|
|
11
|
+
<clipPath id="clip0_1_1043">
|
|
12
|
+
<rect width="16" height="16" fill="white"/>
|
|
13
|
+
</clipPath>
|
|
14
|
+
</defs>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.7071 6.00007L6.00001 1.29297L1.29291 6.00007L2.00001 6.70718L5.49991 3.20697L5.50001 15.0001H6.50001L6.49991 3.20697L10 6.70718L10.7071 6.00007Z" fill="black"/>
|
|
3
|
+
<path d="M13 11.5V9.5H12V11.5H10V12.5H12V14.5H13V12.5H15V11.5H13Z" fill="black"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M3.5 1L2.78571 2.92308H1L2.42857 4.07692L1.71429 6L3.5 4.84615L5.25 5.96154L4.57143 4.07692L6 2.92308H4.21429L3.5 1Z" fill="black"/>
|
|
3
|
+
<path d="M15.9952 12.8494C15.8922 10.6993 14.1614 9 12 9C11.7239 9 11.5 9.22386 11.5 9.5C11.5 9.77614 11.7239 10 12 10C13.6721 10 15 11.355 15 13.0523V14.74L14.9932 14.7995C14.9663 14.9143 14.8638 15 14.7428 15H5.25723L5.19853 14.9931C5.08528 14.9661 5 14.8629 5 14.74V13.0523L5.00504 12.8718C5.09529 11.2599 6.38766 10 8 10C8.27614 10 8.5 9.77614 8.5 9.5C8.5 9.22386 8.27614 9 8 9C5.77109 9 4 10.8071 4 13.0523V14.74L4.00649 14.8686C4.07086 15.5031 4.60616 16 5.25723 16H14.7428L14.8713 15.9935C15.5054 15.9288 16 15.3912 16 14.74V13.0523L15.9952 12.8494Z" fill="black"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.5 5C13.5 2.8065 11.9516 1 10 1C8.04841 1 6.5 2.8065 6.5 5C6.5 7.1935 8.04841 9 10 9C11.9516 9 13.5 7.1935 13.5 5ZM7.5 5C7.5 3.32751 8.63785 2 10 2C11.3621 2 12.5 3.32751 12.5 5C12.5 6.67249 11.3621 8 10 8C8.63785 8 7.5 6.67249 7.5 5Z" fill="black"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M14.4962 11.7157C14.3456 6.04814 9.70392 1.5 4 1.5H3.5V2.5H4L4.27048 2.50378C9.39211 2.64696 13.5 6.84376 13.5 12V12.5H14.5V12L14.4962 11.7157Z" fill="black"/>
|
|
3
|
+
<path d="M3.5 5.5C7.28545 5.5 10.3691 8.50478 10.4959 12.2593L10.5 12.5V13H9.5V12.5C9.5 9.2616 6.93443 6.62243 3.72494 6.50414L3.5 6.5H3V5.5H3.5Z" fill="black"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 9C2.34315 9 1 10.3431 1 12C1 13.6569 2.34315 15 4 15C5.65685 15 7 13.6569 7 12C7 10.3431 5.65685 9 4 9ZM4 10C5.10457 10 6 10.8954 6 12C6 13.1046 5.10457 14 4 14C2.89543 14 2 13.1046 2 12C2 10.8954 2.89543 10 4 10Z" fill="black"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1_549)">
|
|
3
|
+
<mask id="mask0_1_549" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="16" height="16">
|
|
4
|
+
<path d="M16 0H0V16H16V0Z" fill="white"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_1_549)">
|
|
7
|
+
<path d="M8 0C8.55228 0 9 0.447715 9 1L8.99518 1.09876C11.2171 1.5403 12.8925 3.44067 12.995 5.77298L13.0004 6.04796L13.0189 6.55133L13.0429 6.91583C13.0477 6.97895 13.053 7.0432 13.0587 7.10849C13.1322 7.94645 13.2644 8.78355 13.4687 9.55973C13.8556 11.03 14.4524 12.0883 15.2572 12.5713C15.6649 12.8159 15.5278 13.4181 15.0912 13.4924L15 13.5L10.9584 13.5007C10.7201 14.9192 9.48625 16 8 16C6.51374 16 5.27992 14.9192 5.04159 13.5007L0.999995 13.5C0.492884 13.5 0.307903 12.8322 0.742747 12.5713C1.54762 12.0883 2.14442 11.03 2.53133 9.55973C2.73559 8.78355 2.86777 7.94645 2.94127 7.10849C2.95845 6.91261 2.97154 6.72616 2.98107 6.55133L2.9962 6.19768L3.00459 5.78201C3.10319 3.44571 4.77981 1.54106 7.00489 1.0976L7 1C7 0.447715 7.44771 0 8 0ZM9.935 13.5H6.064L6.08468 13.5776C6.30315 14.303 6.92247 14.8548 7.68519 14.9754L7.85074 14.9945L8 15C8.84725 15 9.57146 14.4732 9.8629 13.7292L9.91532 13.5776L9.935 13.5ZM8 2C5.84353 2 4.10806 3.67013 4.00486 5.7991L3.99207 6.33563C3.98229 6.5957 3.96473 6.8848 3.93745 7.19587C3.85935 8.08619 3.71864 8.97735 3.49841 9.81423C3.26467 10.7024 2.95757 11.473 2.56352 12.0987L2.41164 12.3265L2.282 12.499H13.717L13.5884 12.3265C13.2198 11.8047 12.9208 11.1664 12.682 10.4307L12.5833 10.1095L12.5016 9.81423C12.2814 8.97735 12.1407 8.08619 12.0626 7.19587C12.0444 6.98849 12.0305 6.79088 12.0204 6.60512L12.0079 6.33563L11.9951 5.7991C11.8919 3.67013 10.1565 2 8 2Z" fill="black"/>
|
|
8
|
+
</g>
|
|
9
|
+
</g>
|
|
10
|
+
<defs>
|
|
11
|
+
<clipPath id="clip0_1_549">
|
|
12
|
+
<rect width="16" height="16" fill="white"/>
|
|
13
|
+
</clipPath>
|
|
14
|
+
</defs>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 3C3 2.44772 3.44772 2 4 2H8C9.13107 2 10.1497 2.25231 10.8976 2.88806C11.6733 3.54733 12 4.48267 12 5.5C12 6.31801 11.7959 6.98447 11.4388 7.4995C11.4795 7.52463 11.5198 7.55059 11.5595 7.5774C12.493 8.20754 13 9.2097 13 10.5C13 11.7998 12.4824 12.7768 11.5145 13.3575C10.6471 13.8779 9.54196 14 8.5 14H4C3.44772 14 3 13.5523 3 13V3ZM8.5 6.8125C8.92823 6.8125 9.31844 6.73945 9.57634 6.5702C9.75908 6.45028 10 6.20797 10 5.5C10 4.91733 9.82674 4.60267 9.60235 4.41194C9.35029 4.19769 8.86893 4 8 4H5V6.8125H8.5ZM5 8.8125H8.5C9.41583 8.8125 10.0557 8.97535 10.4405 9.2351C10.757 9.44871 11 9.7903 11 10.5C11 11.2002 10.7676 11.4732 10.4855 11.6425C10.1029 11.8721 9.45804 12 8.5 12H5V8.8125Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.7924 3.59439C15.9227 3.68836 16 3.83929 16 4.00001V12.5714C16 12.7882 15.8603 12.9803 15.654 13.0471L8.15403 15.4757C8.00185 15.525 7.83527 15.4985 7.7059 15.4044C7.57654 15.3103 7.5 15.16 7.5 15V6.50001C7.5 6.28479 7.63771 6.09373 7.84189 6.02567L15.3419 3.52567C15.4944 3.47484 15.662 3.50041 15.7924 3.59439ZM8.5 6.86039V14.3125L15 12.2078V4.69372L8.5 6.86039Z" fill="black"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.207645 3.59439C0.338029 3.50041 0.50564 3.47484 0.658114 3.52567L8.15811 6.02567C8.36228 6.09372 8.5 6.28479 8.5 6.50001V15C8.5 15.1605 8.4229 15.3113 8.29275 15.4053C8.16259 15.4993 7.99521 15.5251 7.8428 15.4746L0.342805 12.9908C0.138164 12.923 0 12.7317 0 12.5161V4.00001C0 3.83929 0.0772606 3.68836 0.207645 3.59439ZM1 4.69372V12.155L7.5 14.3077V6.86039L1 4.69372Z" fill="black"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.84189 1.02566C7.94452 0.991447 8.05548 0.991447 8.15811 1.02566L15.6581 3.52566C15.8623 3.59372 16 3.78478 16 4C16 4.21522 15.8623 4.40628 15.6581 4.47434L8.15811 6.97434C8.05548 7.00855 7.94452 7.00855 7.84189 6.97434L0.341886 4.47434C0.137715 4.40628 0 4.21521 0 4C0 3.78478 0.137715 3.59372 0.341886 3.52566L7.84189 1.02566ZM2.08114 4L8 5.97295L13.9189 4L8 2.02705L2.08114 4Z" fill="black"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1_561)">
|
|
3
|
+
<mask id="mask0_1_561" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="16" height="16">
|
|
4
|
+
<path d="M16 0H0V16H16V0Z" fill="white"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_1_561)">
|
|
7
|
+
<path d="M14 0V15H16V16H0V15H2V0H14ZM13 0.999H3V14.999H5V13H4V12H12V13H11V14.999H13V0.999ZM7.5 13H6V14.999H7.5V13ZM10 13H8.5V14.999H10V13ZM9 9V10H7V9H9ZM6 9V10H4V9H6ZM12 9V10H10V9H12ZM9 6V7H7V6H9ZM6 6V7H4V6H6ZM12 6V7H10V6H12ZM9 3V4H7V3H9ZM6 3V4H4V3H6ZM12 3V4H10V3H12Z" fill="black"/>
|
|
8
|
+
</g>
|
|
9
|
+
</g>
|
|
10
|
+
<defs>
|
|
11
|
+
<clipPath id="clip0_1_561">
|
|
12
|
+
<rect width="16" height="16" fill="white"/>
|
|
13
|
+
</clipPath>
|
|
14
|
+
</defs>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14 4H6V3H14V4Z" fill="black"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 4H2V3H4V4Z" fill="black"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14 9H6V8H14V9Z" fill="black"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 9H2V8H4V9Z" fill="black"/>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14 14H6V13H14V14Z" fill="black"/>
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 14H2V13H4V14Z" fill="black"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1_574)">
|
|
3
|
+
<mask id="mask0_1_574" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="16" height="16">
|
|
4
|
+
<path d="M16 0H0V16H16V0Z" fill="white"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_1_574)">
|
|
7
|
+
<path d="M5 9V10H3V9H5Z" fill="black"/>
|
|
8
|
+
<path d="M9 10V9H7V10H9Z" fill="black"/>
|
|
9
|
+
<path d="M13 9V10H11V9H13Z" fill="black"/>
|
|
10
|
+
<path d="M5 13V12H3V13H5Z" fill="black"/>
|
|
11
|
+
<path d="M9 12V13H7V12H9Z" fill="black"/>
|
|
12
|
+
<path d="M13 13V12H11V13H13Z" fill="black"/>
|
|
13
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M5 2V0H4V2H0V16H16V2H12V0H11V2H5ZM1 3H14.999L14.9992 6H1V3ZM1 7V14.999H15L14.9993 7H1Z" fill="black"/>
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
<defs>
|
|
17
|
+
<clipPath id="clip0_1_574">
|
|
18
|
+
<rect width="16" height="16" fill="white"/>
|
|
19
|
+
</clipPath>
|
|
20
|
+
</defs>
|
|
21
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 9C12 11.2091 10.2091 13 8 13C5.79086 13 4 11.2091 4 9C4 6.79086 5.79086 5 8 5C10.2091 5 12 6.79086 12 9ZM11 9C11 10.6569 9.65685 12 8 12C6.34315 12 5 10.6569 5 9C5 7.34315 6.34315 6 8 6C9.65685 6 11 7.34315 11 9Z" fill="black"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 6C0 4.89543 0.895431 4 2 4H3.38197C3.76074 4 4.107 3.786 4.27639 3.44721L4.44721 3.10557C4.786 2.428 5.47852 2 6.23607 2H9.76393C10.5215 2 11.214 2.428 11.5528 3.10557L11.7236 3.44721C11.893 3.786 12.2393 4 12.618 4H14C15.1046 4 16 4.89543 16 6V13C16 14.1046 15.1046 15 14 15H2C0.895431 15 0 14.1046 0 13V6ZM15 6V13C15 13.5523 14.5523 14 14 14H2C1.44772 14 1 13.5523 1 13V6C1 5.44772 1.44772 5 2 5H3.38197C4.13951 5 4.83204 4.572 5.17082 3.89443L5.34164 3.55279C5.51103 3.214 5.8573 3 6.23607 3H9.76393C10.1427 3 10.489 3.214 10.6584 3.55279L10.8292 3.89443C11.168 4.572 11.8605 5 12.618 5H14C14.5523 5 15 5.44772 15 6Z" fill="black"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.5 7.5C8.5 7.22386 8.27614 7 8 7C6.89543 7 6 7.89543 6 9C6 9.27614 6.22386 9.5 6.5 9.5C6.77614 9.5 7 9.27614 7 9C7 8.44772 7.44772 8 8 8C8.27614 8 8.5 7.77614 8.5 7.5Z" fill="black"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M5 11V15H1V11H5ZM10 11V15H6V11H10ZM15 11V15H11V11H15ZM4 12H2V14H4V12ZM9 12H7V14H9V12ZM14 12H12V14H14V12ZM5 6V10H1V6H5ZM10 6V10H6V6H10ZM15 6V10H11V6H15ZM4 7H2V9H4V7ZM9 7H7V9H9V7ZM14 7H12V9H14V7ZM5 1V5H1V1H5ZM10 1V5H6V1H10ZM15 1V5H11V1H15ZM4 2H2V4H4V2ZM9 2H7V4H9V2ZM14 2H12V4H14V2Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1_600)">
|
|
3
|
+
<mask id="mask0_1_600" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="16" height="16">
|
|
4
|
+
<path d="M16 0H0V16H16V0Z" fill="white"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_1_600)">
|
|
7
|
+
<path d="M12.0035 5.85353L11.2963 5.14642L7.003 9.43898L4.80783 7.1503L4.09305 7.84965L6.99612 10.8609L12.0035 5.85353Z" fill="black"/>
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 8C16 12.4183 12.4183 16 8 16C3.58172 16 0 12.4183 0 8C0 3.58172 3.58172 0 8 0C12.4183 0 16 3.58172 16 8ZM15 8C15 11.866 11.866 15 8 15C4.13401 15 1 11.866 1 8C1 4.13401 4.13401 1 8 1C11.866 1 15 4.13401 15 8Z" fill="black"/>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
<defs>
|
|
12
|
+
<clipPath id="clip0_1_600">
|
|
13
|
+
<rect width="16" height="16" fill="white"/>
|
|
14
|
+
</clipPath>
|
|
15
|
+
</defs>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1_592)">
|
|
3
|
+
<mask id="mask0_1_592" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="16" height="16">
|
|
4
|
+
<path d="M16 0H0V16H16V0Z" fill="white"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_1_592)">
|
|
7
|
+
<path d="M15.6971 5.11714L6.71713 14.0971L0.302917 7.68282L2.8686 5.11714L6.71713 8.96566L13.1314 2.55145L15.6971 5.11714ZM14.2826 5.11658L13.1315 3.96541L6.71713 10.3799L2.8685 6.53079L1.71733 7.68196L6.71728 12.6819L14.2826 5.11658Z" fill="black"/>
|
|
8
|
+
</g>
|
|
9
|
+
</g>
|
|
10
|
+
<defs>
|
|
11
|
+
<clipPath id="clip0_1_592">
|
|
12
|
+
<rect width="16" height="16" fill="white"/>
|
|
13
|
+
</clipPath>
|
|
14
|
+
</defs>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8 14.7071L8.70711 14L2.708 8.00002L8.70711 2.00002L8 1.29291L1.29289 8.00002L8 14.7071Z" fill="black"/>
|
|
3
|
+
<path d="M13 14.7071L13.7071 14L7.707 8.00002L13.7071 2.00002L13 1.29291L6.29289 8.00002L13 14.7071Z" fill="black"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M3.00001 14.7071L2.29291 14L8.29201 8.00002L2.29291 2.00002L3.00001 1.29291L9.70712 8.00002L3.00001 14.7071Z" fill="black"/>
|
|
3
|
+
<path d="M8.00001 14.7071L7.29291 14L13.293 8.00002L7.29291 2.00002L8.00001 1.29291L14.7071 8.00002L8.00001 14.7071Z" fill="black"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.424 4.26501C10.5704 4.03084 10.4992 3.72236 10.265 3.57601C10.0308 3.42965 9.72235 3.50084 9.576 3.73501L7.076 7.73501C6.94152 7.95017 6.98952 8.23194 7.18765 8.39044L9.68765 10.3904C9.90328 10.5629 10.2179 10.528 10.3904 10.3124C10.5629 10.0967 10.528 9.78208 10.3123 9.60957L8.15988 7.8876L10.424 4.26501Z" fill="black"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 8C15 11.866 11.866 15 8 15C4.13401 15 1 11.866 1 8C1 4.13401 4.13401 1 8 1C11.866 1 15 4.13401 15 8ZM14 8C14 11.3137 11.3137 14 8 14C4.68629 14 2 11.3137 2 8C2 4.68629 4.68629 2 8 2C11.3137 2 14 4.68629 14 8Z" fill="black"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M11.9342 1.54291L8.00002 5.47701L4.06581 1.54291L1.54291 4.0658L5.47702 8.00001L1.54291 11.9342L4.06581 14.4571L8.00002 10.523L11.9342 14.4571L14.4571 11.9342L10.523 8.00001L14.4571 4.0658L11.9342 1.54291ZM11.934 2.95701L13.043 4.06601L9.1087 8.00001L13.043 11.934L11.934 13.043L8.00002 9.1087L4.06602 13.043L2.95702 11.934L6.89134 8.00001L2.95702 4.06601L4.06602 2.95701L8.00002 6.89133L11.934 2.95701Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M11.6464 3.64642L12.3536 4.35353L8.70745 8.00042L12.3536 11.6464L11.6464 12.3535L8.00045 8.70742L4.35355 12.3535L3.64645 11.6464L7.29345 8.00042L3.64645 4.35353L4.35355 3.64642L8.00045 7.29342L11.6464 3.64642Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1_623)">
|
|
3
|
+
<mask id="mask0_1_623" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="16" height="16">
|
|
4
|
+
<path d="M16 0H0V16H16V0Z" fill="white"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_1_623)">
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.3808 0.939693L11.4411 1.28171L13.8352 7.85957L14.7749 7.51755L15.1169 8.45724L7.59938 11.1934L7.25736 10.2537L8.19704 9.91169L7.17098 7.09261L0.593119 9.48675L0.251099 8.54706L6.82896 6.15292L5.80289 3.33383L4.8632 3.67585L4.52118 2.73616L12.0387 0L12.3808 0.939693ZM9.13673 9.56967L12.8955 8.20159L10.5014 1.62374L6.74259 2.99182L9.13673 9.56967Z" fill="black"/>
|
|
8
|
+
<path d="M15 14H8V13H15V14Z" fill="black"/>
|
|
9
|
+
<path d="M16 16H7V15H16V16Z" fill="black"/>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
<defs>
|
|
13
|
+
<clipPath id="clip0_1_623">
|
|
14
|
+
<rect width="16" height="16" fill="white"/>
|
|
15
|
+
</clipPath>
|
|
16
|
+
</defs>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1_631)">
|
|
3
|
+
<mask id="mask0_1_631" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="16" height="16">
|
|
4
|
+
<path d="M16 0H0V16H16V0Z" fill="white"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_1_631)">
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 12V0H0V12H12ZM1 1H11V11H1V1Z" fill="black"/>
|
|
8
|
+
<path d="M16 16V3H13V4H15V15H4V13H3V16H16Z" fill="black"/>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
<defs>
|
|
12
|
+
<clipPath id="clip0_1_631">
|
|
13
|
+
<rect width="16" height="16" fill="white"/>
|
|
14
|
+
</clipPath>
|
|
15
|
+
</defs>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1_638)">
|
|
3
|
+
<mask id="mask0_1_638" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="16" height="16">
|
|
4
|
+
<path d="M16 0H0V16H16V0Z" fill="white"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_1_638)">
|
|
7
|
+
<path d="M8.5 0L8.50033 1.51897C11.6916 1.7619 14.2387 4.30926 14.4811 7.50067L16 7.5V8.5L14.481 8.50033C14.2381 11.6913 11.6913 14.2381 8.50033 14.481L8.5 16H7.5L7.50067 14.4811C4.30926 14.2387 1.7619 11.6916 1.51897 8.50033L0 8.5V7.5L1.51889 7.50067C1.76136 4.30893 4.30893 1.76136 7.50067 1.51889L7.5 0H8.5ZM8.50061 2.52239L8.5 4H7.5L7.50039 2.52239C4.86151 2.76 2.76 4.86151 2.52239 7.50039L4 7.5V8.5L2.52239 8.50061C2.76053 11.139 4.86184 13.24 7.50039 13.4776L7.5 12H8.5L8.50061 13.4776C11.1387 13.2395 13.2395 11.1387 13.4776 8.50061L12 8.5V7.5L13.4776 7.50039C13.247 4.93945 11.261 2.8846 8.73199 2.54828L8.50061 2.52239Z" fill="black"/>
|
|
8
|
+
</g>
|
|
9
|
+
</g>
|
|
10
|
+
<defs>
|
|
11
|
+
<clipPath id="clip0_1_638">
|
|
12
|
+
<rect width="16" height="16" fill="white"/>
|
|
13
|
+
</clipPath>
|
|
14
|
+
</defs>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8 3.5C12.0609 3.5 15.368 6.72747 15.4961 10.7573L15.5 11V11.5H12.5V10.5H14.48L14.4635 10.3069C14.3211 8.96384 13.7697 7.74283 12.9362 6.77086L11.3536 8.35355L10.6464 7.64645L12.2288 6.06354C11.2107 5.19057 9.91943 4.6271 8.50083 4.51901L8.5 6.5H7.5L7.50072 4.51889C6.0816 4.62669 4.78983 5.19017 3.77139 6.06336L7.74122 10.0338C7.82376 10.0118 7.91051 10 8 10C8.55229 10 9 10.4477 9 11C9 11.5523 8.55229 12 8 12C7.44772 12 7 11.5523 7 11C7 10.9105 7.01176 10.8238 7.03381 10.7412L3.06366 6.77104C2.23022 7.74298 1.67886 8.96392 1.53651 10.3069L1.519 10.5H3.5V11.5H0.5V11C0.5 6.85786 3.85786 3.5 8 3.5Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M11.3536 6.35353L10.6465 5.64642L9.00042 7.29342L7.35353 5.64642L6.64642 6.35353L8.29342 8.00042L6.64642 9.64642L7.35353 10.3536L9.00042 8.70742L10.6465 10.3536L11.3536 9.64642L9.70742 8.00042L11.3536 6.35353Z" fill="black"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.5 2.5H4.75968L0.35968 8L4.75968 13.5H15.5V2.5ZM1.6403 8L5.2403 3.5H14.5V12.5H5.2403L1.6403 8Z" fill="black"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.99997 1.5C5.8284 1.5 6.49997 2.17157 6.49997 3C6.49997 3.82843 5.8284 4.5 4.99997 4.5C4.17154 4.5 3.49997 3.82843 3.49997 3C3.49997 2.17157 4.17154 1.5 4.99997 1.5ZM4.99997 3.5C5.27611 3.5 5.49997 3.27614 5.49997 3C5.49997 2.72386 5.27611 2.5 4.99997 2.5C4.72383 2.5 4.49997 2.72386 4.49997 3C4.49997 3.27614 4.72383 3.5 4.99997 3.5Z" fill="black"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.49997 8C6.49997 7.17157 5.8284 6.5 4.99997 6.5C4.17154 6.5 3.49997 7.17157 3.49997 8C3.49997 8.82843 4.17154 9.5 4.99997 9.5C5.8284 9.5 6.49997 8.82843 6.49997 8ZM5.49997 8C5.49997 8.27614 5.27611 8.5 4.99997 8.5C4.72383 8.5 4.49997 8.27614 4.49997 8C4.49997 7.72386 4.72383 7.5 4.99997 7.5C5.27611 7.5 5.49997 7.72386 5.49997 8Z" fill="black"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.99997 11.5C5.8284 11.5 6.49997 12.1716 6.49997 13C6.49997 13.8284 5.8284 14.5 4.99997 14.5C4.17154 14.5 3.49997 13.8284 3.49997 13C3.49997 12.1716 4.17154 11.5 4.99997 11.5ZM4.99997 13.5C5.27611 13.5 5.49997 13.2761 5.49997 13C5.49997 12.7239 5.27611 12.5 4.99997 12.5C4.72383 12.5 4.49997 12.7239 4.49997 13C4.49997 13.2761 4.72383 13.5 4.99997 13.5Z" fill="black"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11 1.5C11.8284 1.5 12.5 2.17157 12.5 3C12.5 3.82843 11.8284 4.5 11 4.5C10.1715 4.5 9.49997 3.82843 9.49997 3C9.49997 2.17157 10.1715 1.5 11 1.5ZM11 3.5C11.2761 3.5 11.5 3.27614 11.5 3C11.5 2.72386 11.2761 2.5 11 2.5C10.7238 2.5 10.5 2.72386 10.5 3C10.5 3.27614 10.7238 3.5 11 3.5Z" fill="black"/>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.5 8C12.5 7.17157 11.8284 6.5 11 6.5C10.1715 6.5 9.49997 7.17157 9.49997 8C9.49997 8.82843 10.1715 9.5 11 9.5C11.8284 9.5 12.5 8.82843 12.5 8ZM11.5 8C11.5 8.27614 11.2761 8.5 11 8.5C10.7238 8.5 10.5 8.27614 10.5 8C10.5 7.72386 10.7238 7.5 11 7.5C11.2761 7.5 11.5 7.72386 11.5 8Z" fill="black"/>
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11 11.5C11.8284 11.5 12.5 12.1716 12.5 13C12.5 13.8284 11.8284 14.5 11 14.5C10.1715 14.5 9.49997 13.8284 9.49997 13C9.49997 12.1716 10.1715 11.5 11 11.5ZM11 13.5C11.2761 13.5 11.5 13.2761 11.5 13C11.5 12.7239 11.2761 12.5 11 12.5C10.7238 12.5 10.5 12.7239 10.5 13C10.5 13.2761 10.7238 13.5 11 13.5Z" fill="black"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.85359 2.14636L0.146484 2.85347L2.50004 5.20702L4.85359 2.85347L4.14648 2.14636L2.50004 3.79281L0.85359 2.14636Z" fill="black"/>
|
|
3
|
+
<path d="M6 3H15V4H6V3Z" fill="black"/>
|
|
4
|
+
<path d="M9 8H15V9H9V8Z" fill="black"/>
|
|
5
|
+
<path d="M9 13H15V14H9V13Z" fill="black"/>
|
|
6
|
+
<path d="M6.35353 15.3535L5.64642 14.6464L6.79287 13.5L5.64642 12.3535L6.35353 11.6464L8.20708 13.5L6.35353 15.3535Z" fill="black"/>
|
|
7
|
+
<path d="M5.64642 9.64642L6.35353 10.3535L8.20708 8.49997L6.35353 6.64642L5.64642 7.35353L6.79287 8.49997L5.64642 9.64642Z" fill="black"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1_673)">
|
|
3
|
+
<mask id="mask0_1_673" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="16" height="16">
|
|
4
|
+
<path d="M16 0H0V16H16V0Z" fill="white"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_1_673)">
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2073 4.49688L11.4999 0.793091L0 12.2899V15.997H3.70711L4.498 15.2051L4.50355 15.2106L5.21066 14.5035L5.205 14.4981L12.498 7.20509L12.5036 7.21064L13.2107 6.50353L13.205 6.49809L15.2073 4.49688ZM1 12.703L1.497 12.2041L3.79 14.4971L3.292 14.997H1V12.703ZM2.204 11.4971L9.498 4.20509L11.79 6.49709L4.497 13.7901L2.204 11.4971ZM10.205 3.49809L11.5 2.20598L13.792 4.49698L12.497 5.79009L10.205 3.49809Z" fill="black"/>
|
|
8
|
+
<path d="M14 16V15H7V16H14Z" fill="black"/>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
<defs>
|
|
12
|
+
<clipPath id="clip0_1_673">
|
|
13
|
+
<rect width="16" height="16" fill="white"/>
|
|
14
|
+
</clipPath>
|
|
15
|
+
</defs>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 14V2H16V14H0ZM14.2315 3H1.76851L8 8.81606L14.2315 3ZM1 3.65061V12.2567L5.23251 7.60095L1 3.65061ZM14.3634 13H1.67574L5.96362 8.28333L7.65884 9.86553C7.85095 10.0448 8.14906 10.0448 8.34116 9.86553L10.0382 8.28163L14.3634 13ZM15 12.2146V3.65062L10.7693 7.59929L15 12.2146Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8 1C11.866 1 15 4.13401 15 8C15 11.866 11.866 15 8 15C4.13401 15 1 11.866 1 8C1 4.13401 4.13401 1 8 1ZM12.582 4.12616L4.12616 12.582C5.17142 13.4666 6.52342 14 8 14C11.3137 14 14 11.3137 14 8C14 6.52342 13.4666 5.17142 12.582 4.12616ZM8 2C4.68629 2 2 4.68629 2 8C2 9.47705 2.53372 10.8294 3.41883 11.8748L11.8748 3.41883C10.8294 2.53372 9.47705 2 8 2Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1_684)">
|
|
3
|
+
<mask id="mask0_1_684" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="16" height="16">
|
|
4
|
+
<path d="M16 0H0V16H16V0Z" fill="white"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_1_684)">
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 5.5H10.5V1H5V3H4V0H11L16 5V16H4V14H5V15H15V5.5ZM11.5 1.91421L14.0858 4.5H11.5V1.91421Z" fill="black"/>
|
|
8
|
+
<path d="M9.70711 8.49709L6 4.78998L5.29289 5.49709L7.792 7.99698L0 7.99709V8.99709L7.792 8.99698L5.29289 11.4971L6 12.2042L9.70711 8.49709Z" fill="black"/>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
<defs>
|
|
12
|
+
<clipPath id="clip0_1_684">
|
|
13
|
+
<rect width="16" height="16" fill="white"/>
|
|
14
|
+
</clipPath>
|
|
15
|
+
</defs>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M15 4V3H1V4H15Z" fill="black"/>
|
|
3
|
+
<path d="M13 7V6H3V7H13Z" fill="black"/>
|
|
4
|
+
<path d="M11 9V10H5V9H11Z" fill="black"/>
|
|
5
|
+
<path d="M9 13V12H7V13H9Z" fill="black"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.95852 7.5C6.44502 7.5 7.679 6.41886 7.91704 5H16V4H7.91704C7.679 2.58114 6.44502 1.5 4.95852 1.5C3.47202 1.5 2.23804 2.58114 2 4H0V5H2C2.23804 6.41886 3.47202 7.5 4.95852 7.5ZM4.95852 6.5C6.06309 6.5 6.95852 5.60457 6.95852 4.5C6.95852 3.39543 6.06309 2.5 4.95852 2.5C3.85395 2.5 2.95852 3.39543 2.95852 4.5C2.95852 5.60457 3.85395 6.5 4.95852 6.5Z" fill="black"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.04148 12H0V11H8.04148C8.27952 9.58114 9.5135 8.5 11 8.5C12.4865 8.5 13.7205 9.58114 13.9585 11H16V12H13.9585C13.7205 13.4189 12.4865 14.5 11 14.5C9.5135 14.5 8.27952 13.4189 8.04148 12ZM13 11.5C13 12.6046 12.1046 13.5 11 13.5C9.89543 13.5 9 12.6046 9 11.5C9 10.3954 9.89543 9.5 11 9.5C12.1046 9.5 13 10.3954 13 11.5Z" fill="black"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M4 0H13.5C13.9158 0 14.1378 0.469155 13.9095 0.787802L13.8536 0.853553L11.207 3.5L13.8536 6.14645C14.1265 6.41943 13.9954 6.86036 13.6656 6.97308L13.586 6.99304L13.5 7H5V15H7V16H2V15H4V0ZM12.292 1H5V6H12.293L10.1464 3.85355C9.99458 3.70168 9.96083 3.47642 10.0452 3.29193L10.0886 3.21569L10.1464 3.14645L12.292 1Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1_720)">
|
|
3
|
+
<mask id="mask0_1_720" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="16" height="16">
|
|
4
|
+
<path d="M16 0H0V16H16V0Z" fill="white"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_1_720)">
|
|
7
|
+
<path d="M16 4V15H0V1H7L9 4H16ZM1 5V14H15V5H1ZM6.464 2H1V4H7.797L6.464 2Z" fill="black"/>
|
|
8
|
+
</g>
|
|
9
|
+
</g>
|
|
10
|
+
<defs>
|
|
11
|
+
<clipPath id="clip0_1_720">
|
|
12
|
+
<rect width="16" height="16" fill="white"/>
|
|
13
|
+
</clipPath>
|
|
14
|
+
</defs>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M7 9.00004V14H6L5.99945 10.7063L1.85355 14.8536L1.14645 14.1465L5.29145 10.0003L2 10V9.00004H7ZM14.2426 1.05029L14.9497 1.7574L10.7084 5.99829L14 6.00004V7.00004H9V2.00004H10L9.99945 5.29329L14.2426 1.05029Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M5.68198 9.61091L6.38909 10.318L2.707 13.999L6 14V15H1V10H2V13.292L5.68198 9.61091ZM15 1V6H14V2.706L10.0607 6.64645L9.35355 5.93934L13.292 2H10V1H15Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 6.8125L0 5.5L8 2L16 5.5L15 5.9375V10.8486L15.916 12.2227L15.084 12.7774L14.5 11.9014L13.916 12.7774L13.084 12.2227L14 10.8486V6.375L13 6.81249V10.559L8 13.059L3 10.559V6.8125ZM4 7.25V9.94098L8 11.941L12 9.94099V7.24999L8 9L4 7.25ZM8 7.90848L2.49489 5.5L8 3.09152L13.5051 5.5L8 7.90848Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1_738)">
|
|
3
|
+
<mask id="mask0_1_738" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="16" height="16">
|
|
4
|
+
<path d="M16 0H0V16H16V0Z" fill="white"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_1_738)">
|
|
7
|
+
<path d="M5.29289 3C5.81321 3 6.31459 3.18373 6.71029 3.51526L6.75195 3.55267C7.43792 3.19371 8.2079 3 9 3C10.2949 3 11.5631 3.35381 12.6685 4.02027L12.9415 4.19338L14.151 4.999L16 5V5.99194L13.8486 6L12.3868 5.02543C11.3838 4.3568 10.2054 4 9 4C7.95144 4 6.95175 4.42764 6.22867 5.17818L6.07805 5.34391L5.53008 5.98321C5.05094 6.5422 5.08295 7.37585 5.60355 7.89645C6.06564 8.35853 6.79569 8.38934 7.29351 7.98886L7.39645 7.89645L8.64645 6.64645C8.84171 6.45118 9.15829 6.45118 9.35355 6.64645C9.52712 6.82001 9.5464 7.08944 9.41141 7.28431L9.35355 7.35355L9.207 7.5L12.707 11H16V12L12.8042 12.0019C12.171 13.1242 11.1946 13.5379 9.99085 13.2141L9.843 13.17L9.81437 13.2569C9.32607 14.5557 8.18459 14.8519 6.62707 14.1248L6.583 14.102L6.48258 14.1815C5.75234 14.7128 4.96369 14.6431 4.26819 13.9772L1.43934 11.1464C1.36433 11.0714 1.26793 11.0227 1.16448 11.0062L1.08579 11H0V10H1.08579C1.43388 10 1.7695 10.121 2.03642 10.3397L2.14645 10.4393L4.86614 13.1595C5.32922 13.6575 5.66184 13.6575 6.13711 13.156C6.29317 12.9914 6.54053 12.9524 6.73964 13.0612C8.18281 13.8492 8.79139 13.6464 9.00751 12.4137C9.06439 12.0892 9.41395 11.9075 9.71219 12.0473C10.6912 12.5061 11.3446 12.4005 11.822 11.6931L11.885 11.592L8.499 8.207L8.10355 8.60355C7.21794 9.48917 5.78206 9.48917 4.89645 8.60355C4.04874 7.75585 3.95873 6.42268 4.65973 5.47203L4.77082 5.33242L5.31879 4.69312C5.48818 4.49549 5.6719 4.31329 5.86775 4.14753C5.73328 4.07262 5.58394 4.02528 5.4291 4.0077L5.29289 4H4.75C4.1035 4 3.4678 4.15618 2.8965 4.4537L2.68538 4.57187L1.13849 5.5H0V4.5L0.862 4.499L2.17089 3.71437C2.87206 3.29367 3.66427 3.05159 4.47804 3.00738L4.75 3H5.29289Z" fill="black"/>
|
|
8
|
+
</g>
|
|
9
|
+
</g>
|
|
10
|
+
<defs>
|
|
11
|
+
<clipPath id="clip0_1_738">
|
|
12
|
+
<rect width="16" height="16" fill="white"/>
|
|
13
|
+
</clipPath>
|
|
14
|
+
</defs>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M3 1V11.5H4V6.5H12V9H13V1H12V5.5H4V1H3Z" fill="black"/>
|
|
3
|
+
<path d="M13 10C13 10 12.4314 9.9753 12.2764 10.0528L10.8292 10.7764L11.2764 11.6708L12 11.309V14H11V15H14V14H13V10Z" fill="black"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M3 1V11.5H4V6.5H12V9H13V1H12V5.5H4V1H3Z" fill="black"/>
|
|
3
|
+
<path d="M11.6035 11.6035C11.6683 11.5388 11.725 11.4723 11.7798 11.4083C11.9659 11.1903 12.1285 11 12.5 11C12.6633 11 12.7877 11.0465 12.8628 11.1107C12.9246 11.1635 13 11.2668 13 11.5C13 11.6245 12.9528 11.7832 12.8269 11.9898C12.7013 12.1959 12.5179 12.4164 12.2915 12.658C12.1405 12.8191 11.9839 12.9757 11.821 13.1385L11.8169 13.1426C11.7335 13.226 11.6485 13.311 11.5616 13.3992C11.3129 13.6519 11.0587 13.9217 10.85 14.2C10.7364 14.3515 10.7181 14.5542 10.8028 14.7236C10.8875 14.893 11.0606 15 11.25 15H14V14H12.374C12.4189 13.955 12.4647 13.9092 12.511 13.8628L12.5123 13.8616C12.6823 13.6915 12.8594 13.5143 13.021 13.342C13.2633 13.0836 13.5018 12.8041 13.6809 12.5102C13.8597 12.2168 14 11.8755 14 11.5C14 11.0144 13.8254 10.6177 13.5122 10.3503C13.2123 10.0941 12.8367 10 12.5 10C11.9802 10 11.5992 10.2069 11.3342 10.4301C11.205 10.5388 11.1039 10.6508 11.0292 10.7387C11.0044 10.7678 10.9793 10.7982 10.9591 10.8228L10.9582 10.8238L10.9364 10.8502C10.9242 10.8649 10.9149 10.8758 10.9074 10.8844L10.899 10.8937L10.8964 10.8965L11.6035 11.6035Z" fill="black"/>
|
|
4
|
+
</svg>
|