@fibery/ui-kit 1.37.0 → 1.38.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/CHANGELOG.md +14 -0
- package/package.json +8 -5
- package/src/actions-menu/actions-menu-item.tsx +18 -6
- package/src/actions-menu/actions-menu-props.tsx +4 -0
- package/src/actions-menu/actions-menu-sub-command-menu.tsx +7 -4
- package/src/actions-menu/actions-menu-sub-menu.tsx +9 -3
- package/src/actions-menu/actions-menu.tsx +24 -8
- package/src/actions-panel.tsx +12 -2
- package/src/axis-header.tsx +136 -76
- package/src/box.tsx +1 -1
- package/src/breadcrumb.tsx +78 -0
- package/src/button/actions-button-compact.tsx +4 -1
- package/src/button/base-button.tsx +5 -3
- package/src/button/button-group.tsx +1 -1
- package/src/button/button.tsx +31 -0
- package/src/button/icon-button.tsx +9 -0
- package/src/button/select-button.tsx +4 -0
- package/src/card-container.tsx +7 -4
- package/src/color-picker/swatch.tsx +1 -0
- package/src/command-menu/index.tsx +3 -3
- package/src/context-menu/index.tsx +10 -1
- package/src/date-picker/date-range-picker.tsx +6 -3
- package/src/date-picker/relative-date-picker.tsx +6 -2
- package/src/date-picker/single-date-picker.tsx +8 -5
- package/src/date-picker/styles.ts +32 -26
- package/src/date-picker/types.ts +3 -1
- package/src/day-select/day-select.tsx +21 -75
- package/src/day-select/iso-week-day-select.tsx +1 -1
- package/src/day-select/mount-day-select.tsx +2 -2
- package/src/day-select/week-day-select.tsx +1 -5
- package/src/design-system.ts +21 -12
- package/src/dropdown-menu/index.tsx +8 -1
- package/src/emoji-picker/app-icon-picker.tsx +6 -4
- package/src/emoji-picker/emoji-picker-preview-footer.tsx +1 -1
- package/src/emoji-picker/emoji-picker.tsx +3 -0
- package/src/emoji-picker/emoji.tsx +2 -1
- package/src/emoji-picker/icon-emoji-picker.tsx +10 -1
- package/src/emoji-picker/primitives/footer.tsx +0 -1
- package/src/emoji-picker/primitives/skin-tone.tsx +1 -0
- package/src/emoji-picker/use-responsive-emoji-size.ts +11 -0
- package/src/emoji-picker/utils/emoji-set.ts +2 -1
- package/src/empty-state/empty-state.tsx +6 -0
- package/src/field-icon.tsx +4 -1
- package/src/file-item.tsx +164 -47
- package/src/html-styles.ts +8 -0
- package/src/icons/ast/ActivityFilled.ts +8 -0
- package/src/icons/ast/AiAssistantFilled.ts +8 -0
- package/src/icons/ast/CollapseAllHorizontal.ts +8 -0
- package/src/icons/ast/DateRange.ts +1 -1
- package/src/icons/ast/EntityCreateFilled.ts +8 -0
- package/src/icons/ast/ExpandAllHorizontal.ts +8 -0
- package/src/icons/ast/GlobeUnpublish.ts +8 -0
- package/src/icons/ast/HomeFilled.ts +8 -0
- package/src/icons/ast/KeyboardHideDown.ts +8 -0
- package/src/icons/ast/LayoutMultiple.ts +8 -0
- package/src/icons/ast/RicheditorHistoryRedo.ts +1 -1
- package/src/icons/ast/RicheditorHistoryUndo.ts +1 -1
- package/src/icons/ast/SearchFilled.ts +8 -0
- package/src/icons/ast/SettingsFilled.ts +8 -0
- package/src/icons/ast/SlideMenuFilled.ts +8 -0
- package/src/icons/ast/TypeDate.ts +1 -1
- package/src/icons/ast/index.tsx +12 -0
- package/src/icons/react/ActivityFilled.tsx +13 -0
- package/src/icons/react/AiAssistantFilled.tsx +13 -0
- package/src/icons/react/CollapseAllHorizontal.tsx +13 -0
- package/src/icons/react/EntityCreateFilled.tsx +13 -0
- package/src/icons/react/ExpandAllHorizontal.tsx +13 -0
- package/src/icons/react/GlobeUnpublish.tsx +13 -0
- package/src/icons/react/HomeFilled.tsx +13 -0
- package/src/icons/react/KeyboardHideDown.tsx +13 -0
- package/src/icons/react/LayoutMultiple.tsx +13 -0
- package/src/icons/react/SearchFilled.tsx +13 -0
- package/src/icons/react/SettingsFilled.tsx +13 -0
- package/src/icons/react/SlideMenuFilled.tsx +13 -0
- package/src/icons/react/index.tsx +12 -0
- package/src/icons/svg/activity-filled.svg +4 -0
- package/src/icons/svg/ai-assistant-filled.svg +3 -0
- package/src/icons/svg/collapse-all-horizontal.svg +3 -0
- package/src/icons/svg/date-range.svg +3 -3
- package/src/icons/svg/entity-create-filled.svg +4 -0
- package/src/icons/svg/expand-all-horizontal.svg +3 -0
- package/src/icons/svg/globe-unpublish.svg +4 -0
- package/src/icons/svg/home-filled.svg +3 -0
- package/src/icons/svg/keyboard-hide-down.svg +1 -0
- package/src/icons/svg/layout-multiple.svg +3 -0
- package/src/icons/svg/richeditor/history/redo.svg +3 -2
- package/src/icons/svg/richeditor/history/undo.svg +3 -2
- package/src/icons/svg/search-filled.svg +3 -0
- package/src/icons/svg/settings-filled.svg +3 -0
- package/src/icons/svg/slide-menu-filled.svg +1 -0
- package/src/icons/svg/type/date.svg +3 -2
- package/src/images-gallery/images-gallery.tsx +254 -0
- package/src/images-gallery/zoom.tsx +112 -0
- package/src/is-in-popup.ts +1 -1
- package/src/layout-styles.ts +21 -1
- package/src/lists/actions-menu-row-surface.tsx +3 -1
- package/src/lists/list-row-surface.tsx +7 -1
- package/src/mobile-keyboard-aware-popup.tsx +87 -0
- package/src/mobile-styles.ts +8 -0
- package/src/modal-menu/contexts/modal-menu-context.tsx +22 -0
- package/src/modal-menu/contexts/modal-submenu-context.tsx +16 -0
- package/src/modal-menu/index.tsx +14 -0
- package/src/modal-menu/modal-menu-content.tsx +68 -0
- package/src/modal-menu/modal-menu-group.tsx +10 -0
- package/src/modal-menu/modal-menu-item.tsx +37 -0
- package/src/modal-menu/modal-menu-label.tsx +24 -0
- package/src/modal-menu/modal-menu-root.tsx +57 -0
- package/src/modal-menu/modal-menu-separator.tsx +14 -0
- package/src/modal-menu/modal-menu-trigger.tsx +37 -0
- package/src/modal-menu/modal-submenu-content.tsx +49 -0
- package/src/modal-menu/modal-submenu-trigger.tsx +34 -0
- package/src/modal-menu/modal-submenu.tsx +17 -0
- package/src/online-users.tsx +3 -3
- package/src/palette.ts +1 -1
- package/src/popover/index.tsx +687 -0
- package/src/popover/mobile-popup-context.tsx +29 -0
- package/src/{popup → popover}/modifiers.tsx +0 -7
- package/src/{popup → popover}/popup-modifiers-context.ts +3 -3
- package/src/reactions/reaction-button.tsx +30 -45
- package/src/reactions/reaction-picker.tsx +39 -45
- package/src/select/index.tsx +8 -4
- package/src/select/select-in-popover.tsx +21 -33
- package/src/tab-nav/tab-nav.tsx +35 -9
- package/src/toast/primitives.tsx +8 -1
- package/src/toggle-button/round-toggle-button.tsx +23 -0
- package/src/toggle-button/toggle-button-group.tsx +34 -0
- package/src/toggle-button/toggle-button.tsx +164 -0
- package/src/toggle.tsx +3 -3
- package/src/tooltip.tsx +2 -2
- package/src/unit/styles.ts +2 -2
- package/src/use-is-phone.tsx +28 -3
- package/src/use-is-support-hover.ts +1 -1
- package/src/use-on-screen-keyboard-data.tsx +66 -0
- package/src/workflow-progress-icon.tsx +16 -22
- package/src/popup/index.tsx +0 -383
- /package/src/{popup → popover}/popup-stack-context.tsx +0 -0
- /package/src/{popup → popover}/reference.ts +0 -0
- /package/src/{popup → popover}/styles.ts +0 -0
- /package/src/{popup → popover}/use-click-outside.ts +0 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const CollapseAllHorizontal: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M3.381 13.119a.8.8 0 0 0 1.132 1.131l3.334-3.566a.8.8 0 0 0 0-1.131L4.513 5.987A.8.8 0 0 0 3.38 7.12l2.769 3-2.769 3Zm13.238-6a.8.8 0 1 0-1.132-1.132l-3.571 3.566a.8.8 0 0 0 0 1.131l3.571 3.566a.8.8 0 1 0 1.132-1.131l-3.006-3 3.006-3Z"},"children":[]}],"metadata":""}]},"name":"collapse-all-horizontal"};
|
|
7
|
+
|
|
8
|
+
export default CollapseAllHorizontal;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const DateRange: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"
|
|
6
|
+
const DateRange: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M15.6 3H14V1.804a.8.8 0 0 0-1.6 0V3H7.6V1.804a.8.8 0 0 0-1.6 0V3H4.4A2.4 2.4 0 0 0 2 5.4v9.2A2.4 2.4 0 0 0 4.4 17h11.2a2.4 2.4 0 0 0 2.4-2.4V5.4A2.4 2.4 0 0 0 15.6 3Zm.566 12.166a.8.8 0 0 0 .234-.566V5.4a.8.8 0 0 0-.8-.8H4.4a.8.8 0 0 0-.8.8v9.2a.8.8 0 0 0 .8.8h11.2a.8.8 0 0 0 .566-.234Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M8.78 8.08a.75.75 0 0 0-1.06-1.06l-2.5 2.5a.75.75 0 0 0 0 1.06l2.5 2.5a.75.75 0 0 0 1.06-1.06L7.56 10.8h4.88l-1.22 1.22a.75.75 0 1 0 1.06 1.06l2.5-2.5a.75.75 0 0 0 0-1.06l-2.5-2.5a.75.75 0 1 0-1.06 1.06l1.22 1.22H7.56l1.22-1.22Z"},"children":[]}],"metadata":""}]},"name":"date-range"};
|
|
7
7
|
|
|
8
8
|
export default DateRange;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const EntityCreateFilled: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M11.5 2a.75.75 0 0 1 .53 1.28L7.366 7.944A1.25 1.25 0 0 0 7 8.828v2.922c0 .69.56 1.25 1.25 1.25h2.922c.331 0 .65-.132.884-.366L16.72 7.97A.75.75 0 0 1 18 8.5v6.75A2.75 2.75 0 0 1 15.25 18H4.75A2.75 2.75 0 0 1 2 15.25V4.75A2.75 2.75 0 0 1 4.75 2h6.75Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M14.85 2.625a1.785 1.785 0 0 1 2.525 2.524l-.225.224-5.803 5.805a.752.752 0 0 1-.532.22H9.353a.75.75 0 0 1-.75-.75V9.184c0-.2.079-.39.22-.53l5.804-5.805.224-.225Z"},"children":[]}],"metadata":""}]},"name":"entity-create-filled"};
|
|
7
|
+
|
|
8
|
+
export default EntityCreateFilled;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const ExpandAllHorizontal: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M7.847 13.119a.8.8 0 0 1-1.131 1.131L3.38 10.684a.8.8 0 0 1 0-1.131l3.335-3.566A.8.8 0 0 1 7.847 7.12l-2.769 3 2.77 3Zm4.069-6a.8.8 0 1 1 1.131-1.132l3.572 3.566a.8.8 0 0 1 0 1.131l-3.572 3.566a.8.8 0 1 1-1.131-1.131l3.006-3-3.006-3Z"},"children":[]}],"metadata":""}]},"name":"expand-all-horizontal"};
|
|
7
|
+
|
|
8
|
+
export default ExpandAllHorizontal;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const GlobeUnpublish: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M2.22 2.72a.75.75 0 0 1 1.06 0l14.5 14.5a.75.75 0 0 1-1.06 1.06l-1.71-1.709A7.84 7.84 0 0 1 10 18.375 7.875 7.875 0 0 1 3.928 5.488L2.22 3.78a.75.75 0 0 1 0-1.06Zm1.449 8.53a6.38 6.38 0 0 0 4.555 5.374c-1.32-1.854-1.947-3.674-2.102-5.374H3.669Zm9.314 3.294a12.63 12.63 0 0 1-1.207 2.08 6.353 6.353 0 0 0 2.17-1.118l-.963-.962ZM7.63 11.25c.174 1.605.855 3.377 2.37 5.23.865-1.058 1.457-2.091 1.839-3.08l-2.15-2.15H7.63ZM6.493 3.31a8.002 8.002 0 0 1 11.368 5.705 8.001 8.001 0 0 1-.576 4.79.75.75 0 1 1-1.365-.62 6.502 6.502 0 0 0-4.892-9.103 6.502 6.502 0 0 0-3.878.576.75.75 0 0 1-.657-1.348ZM4.994 6.555A6.342 6.342 0 0 0 3.67 9.75h2.436a9.593 9.593 0 0 1 .293-1.791L4.994 6.555Zm2.714 2.272c-.025.17-.084.747-.099.923h.954l-.855-.923Z"},"children":[]}],"metadata":""}]},"name":"globe-unpublish"};
|
|
7
|
+
|
|
8
|
+
export default GlobeUnpublish;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const HomeFilled: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M14.59 18.285a2.91 2.91 0 0 0 2.91-2.91V7.54c0-.5-.205-.976-.561-1.32l-.163-.138-5.669-4.309a1.829 1.829 0 0 0-2.088-.087l-.126.087-5.67 4.309A1.83 1.83 0 0 0 2.5 7.54v7.834a2.91 2.91 0 0 0 2.91 2.91h9.18Zm-1.195-5.706a.75.75 0 0 0-1.004-.052l-.057.052a3.301 3.301 0 0 1-4.544.117l-.123-.117-.056-.052a.75.75 0 0 0-1.056 1.056l.052.056.178.17a4.8 4.8 0 0 0 6.61-.17l.05-.056a.75.75 0 0 0-.05-1.004Z"},"children":[]}],"metadata":""}]},"name":"home-filled"};
|
|
7
|
+
|
|
8
|
+
export default HomeFilled;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const KeyboardHideDown: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M12.02 16.09a.751.751 0 0 1 .96 1.152L10 19.727l-2.98-2.483a.75.75 0 0 1 .96-1.153L10 17.773zM5.008 9.25a.75.75 0 0 1 0 1.5H5a.75.75 0 0 1 0-1.5zM11.667 9.25a.75.75 0 0 1 0 1.5H8.334a.75.75 0 0 1 0-1.5zM15.008 9.25a.75.75 0 0 1 0 1.5H15a.75.75 0 0 1 0-1.5zM5.008 5.916a.75.75 0 0 1 0 1.5H5a.75.75 0 0 1 0-1.5zM8.342 5.916a.75.75 0 0 1 0 1.5h-.008a.75.75 0 0 1 0-1.5zM11.675 5.916a.75.75 0 0 1 0 1.5h-.008a.75.75 0 0 1 0-1.5zM15.008 5.916a.75.75 0 0 1 0 1.5H15a.75.75 0 0 1 0-1.5z"},"children":[]},{"type":"element","tagName":"path","properties":{"clipRule":"evenodd","d":"M16.667 2.583A2.417 2.417 0 0 1 19.084 5v6.666a2.417 2.417 0 0 1-2.417 2.417H3.334a2.417 2.417 0 0 1-2.417-2.417V5a2.417 2.417 0 0 1 2.417-2.417zm-13.333 1.5A.917.917 0 0 0 2.417 5v6.666c0 .507.41.917.917.917h13.333c.506 0 .917-.41.917-.917V5a.917.917 0 0 0-.917-.917z","fillRule":"evenodd"},"children":[]}],"metadata":""}]},"name":"keyboard-hide-down"};
|
|
7
|
+
|
|
8
|
+
export default KeyboardHideDown;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const LayoutMultiple: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M12 4.256c0-1.362 1.37-2.205 2.446-1.504l2.77 1.804c.486.317.784.887.784 1.503v9.684c0 1.363-1.37 2.205-2.446 1.504L13 15.584v.16c0 1.362-1.37 2.204-2.446 1.503L8 15.584v.16c0 1.362-1.37 2.204-2.446 1.503l-2.77-1.802C2.298 15.128 2 14.557 2 13.94V4.256c0-1.362 1.37-2.205 2.446-1.504L7 4.415v-.159c0-1.362 1.37-2.205 2.446-1.504L12 4.415v-.159Zm-8.266-.215c-.153-.1-.35.02-.35.215v9.685c0 .088.043.17.112.215l2.77 1.803c.153.1.35-.02.35-.216V6.06a.256.256 0 0 0-.112-.215l-2.77-1.803Zm5 0c-.153-.1-.35.02-.35.215v9.685c0 .088.043.17.112.215l2.77 1.803c.153.1.35-.02.35-.216V6.06a.256.256 0 0 0-.112-.215l-2.77-1.803Zm5 0c-.153-.1-.35.02-.35.215v9.685c0 .088.043.17.112.215l2.77 1.803c.153.1.35-.02.35-.216V6.06a.256.256 0 0 0-.112-.215l-2.77-1.803Z"},"children":[]}],"metadata":""}]},"name":"layout-multiple"};
|
|
7
|
+
|
|
8
|
+
export default LayoutMultiple;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const RicheditorHistoryRedo: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"
|
|
6
|
+
const RicheditorHistoryRedo: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M4.64 11.348c0-2.403 1.623-4.06 4.272-4.06h3.474l1.342.058-.961-.797-1.33-1.301a.697.697 0 0 1-.234-.527c0-.416.293-.721.732-.721.193 0 .393.082.545.229l3.293 3.257a.784.784 0 0 1 0 1.107l-3.293 3.253a.805.805 0 0 1-.545.234c-.44 0-.732-.31-.732-.726 0-.229.093-.393.234-.528l1.33-1.3.96-.797-1.34.064H8.922c-1.775 0-2.8 1.037-2.8 2.52 0 1.476 1.025 2.542 2.8 2.542h1.389c.44 0 .762.34.762.756 0 .41-.323.75-.762.75H8.847c-2.607 0-4.207-1.582-4.207-4.013Z"},"children":[]}],"metadata":""}]},"name":"richeditor-history-redo"};
|
|
7
7
|
|
|
8
8
|
export default RicheditorHistoryRedo;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const RicheditorHistoryUndo: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"
|
|
6
|
+
const RicheditorHistoryUndo: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M15.361 11.348c0-2.403-1.623-4.06-4.271-4.06H7.615l-1.342.058.961-.797 1.33-1.301a.697.697 0 0 0 .235-.527c0-.416-.293-.721-.733-.721a.799.799 0 0 0-.545.229L4.23 7.486a.784.784 0 0 0 0 1.107l3.292 3.253a.806.806 0 0 0 .545.234c.44 0 .733-.31.733-.726a.697.697 0 0 0-.235-.528l-1.33-1.3-.96-.797 1.341.064h3.463c1.776 0 2.8 1.037 2.8 2.52 0 1.476-1.024 2.542-2.8 2.542H9.69c-.439 0-.761.34-.761.756 0 .41.322.75.761.75h1.465c2.608 0 4.207-1.582 4.207-4.013Z"},"children":[]}],"metadata":""}]},"name":"richeditor-history-undo"};
|
|
7
7
|
|
|
8
8
|
export default RicheditorHistoryUndo;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const SearchFilled: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M13.875 8.75a5.125 5.125 0 1 0-10.25 0 5.125 5.125 0 0 0 10.25 0Zm2.25 0c0 1.63-.531 3.137-1.427 4.357l3.598 3.597a1.126 1.126 0 0 1-1.592 1.592l-3.597-3.598a7.375 7.375 0 1 1 3.018-5.948Z"},"children":[]}],"metadata":""}]},"name":"search-filled"};
|
|
7
|
+
|
|
8
|
+
export default SearchFilled;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const SettingsFilled: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M10.5 1.35a1.966 1.966 0 0 1 1.827 1.257l.427 1.102 1.316.758 1.187-.18a1.965 1.965 0 0 1 1.965.962l.002.004.483.847a1.968 1.968 0 0 1-.157 2.213l-.726.925v1.518l.748.928a1.966 1.966 0 0 1 .16 2.216l-.484.847-.002.004a1.966 1.966 0 0 1-1.965.963l-.012-.001-1.174-.18-1.317.758-.426 1.1a1.966 1.966 0 0 1-1.828 1.26H9.5a1.966 1.966 0 0 1-1.827-1.258l-.427-1.102-1.316-.758-1.187.18a1.965 1.965 0 0 1-1.965-.962l-.002-.004-.483-.847a1.968 1.968 0 0 1 .157-2.213l.726-.925V9.244l-.748-.928a1.966 1.966 0 0 1-.16-2.216l.486-.851a1.966 1.966 0 0 1 1.966-.963l.011.001 1.177.18 1.34-.76.425-1.099A1.97 1.97 0 0 1 9.5 1.35h1Zm-.5 5.9a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Z"},"children":[]}],"metadata":""}]},"name":"settings-filled"};
|
|
7
|
+
|
|
8
|
+
export default SettingsFilled;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const SlideMenuFilled: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"clipRule":"evenodd","d":"M18 5.75A2.75 2.75 0 0 0 15.25 3H4.75A2.75 2.75 0 0 0 2 5.75v8.5A2.75 2.75 0 0 0 4.75 17h10.5A2.75 2.75 0 0 0 18 14.25zM7 4.5c.69 0 1.25.56 1.25 1.25v8.5c0 .69-.56 1.25-1.25 1.25H4.75c-.69 0-1.25-.56-1.25-1.25v-8.5c0-.69.56-1.25 1.25-1.25z","fillRule":"evenodd"},"children":[]}],"metadata":""}]},"name":"slide-menu-filled"};
|
|
7
|
+
|
|
8
|
+
export default SlideMenuFilled;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const TypeDate: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M15.6
|
|
6
|
+
const TypeDate: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"height":20,"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M15.6 3H14V1.804a.8.8 0 0 0-1.6 0V3H7.6V1.804a.8.8 0 0 0-1.6 0V3H4.4A2.4 2.4 0 0 0 2 5.4v9.2A2.4 2.4 0 0 0 4.4 17h11.2a2.4 2.4 0 0 0 2.4-2.4V5.4A2.4 2.4 0 0 0 15.6 3Zm.566 12.166a.8.8 0 0 0 .234-.566V9H3.6v5.6a.8.8 0 0 0 .8.8h11.2a.8.8 0 0 0 .566-.234ZM3.6 7.4h12.8v-2a.8.8 0 0 0-.8-.8H4.4a.8.8 0 0 0-.8.8v2Z"},"children":[]}],"metadata":""}]},"name":"type-date"};
|
|
7
7
|
|
|
8
8
|
export default TypeDate;
|
package/src/icons/ast/index.tsx
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
// This icon file is generated automatically.
|
|
2
2
|
export { default as Abort } from './Abort';
|
|
3
3
|
export { default as AccessTemplate } from './AccessTemplate';
|
|
4
|
+
export { default as ActivityFilled } from './ActivityFilled';
|
|
4
5
|
export { default as ActivityLog } from './ActivityLog';
|
|
5
6
|
export { default as Activity } from './Activity';
|
|
6
7
|
export { default as AddAfter } from './AddAfter';
|
|
@@ -11,6 +12,7 @@ export { default as AddGroup } from './AddGroup';
|
|
|
11
12
|
export { default as AddIntegration } from './AddIntegration';
|
|
12
13
|
export { default as AddReactions } from './AddReactions';
|
|
13
14
|
export { default as Add } from './Add';
|
|
15
|
+
export { default as AiAssistantFilled } from './AiAssistantFilled';
|
|
14
16
|
export { default as AiAssistant } from './AiAssistant';
|
|
15
17
|
export { default as AiAvatar } from './AiAvatar';
|
|
16
18
|
export { default as AiFiberyBuild } from './AiFiberyBuild';
|
|
@@ -73,6 +75,7 @@ export { default as ClockAlarm } from './ClockAlarm';
|
|
|
73
75
|
export { default as ClockForward } from './ClockForward';
|
|
74
76
|
export { default as Clock } from './Clock';
|
|
75
77
|
export { default as Close } from './Close';
|
|
78
|
+
export { default as CollapseAllHorizontal } from './CollapseAllHorizontal';
|
|
76
79
|
export { default as CollapseAll } from './CollapseAll';
|
|
77
80
|
export { default as ColorCodingFilled } from './ColorCodingFilled';
|
|
78
81
|
export { default as ColorCoding } from './ColorCoding';
|
|
@@ -104,9 +107,11 @@ export { default as DynamicFilterValue } from './DynamicFilterValue';
|
|
|
104
107
|
export { default as EditValue } from './EditValue';
|
|
105
108
|
export { default as Email } from './Email';
|
|
106
109
|
export { default as EmojiDelete } from './EmojiDelete';
|
|
110
|
+
export { default as EntityCreateFilled } from './EntityCreateFilled';
|
|
107
111
|
export { default as EntityCreate } from './EntityCreate';
|
|
108
112
|
export { default as EntityMerge } from './EntityMerge';
|
|
109
113
|
export { default as Equation } from './Equation';
|
|
114
|
+
export { default as ExpandAllHorizontal } from './ExpandAllHorizontal';
|
|
110
115
|
export { default as ExpandAll } from './ExpandAll';
|
|
111
116
|
export { default as Export } from './Export';
|
|
112
117
|
export { default as ExtensionAssignments } from './ExtensionAssignments';
|
|
@@ -140,6 +145,7 @@ export { default as Gift } from './Gift';
|
|
|
140
145
|
export { default as Github } from './Github';
|
|
141
146
|
export { default as Gitlab } from './Gitlab';
|
|
142
147
|
export { default as GlobeSimple } from './GlobeSimple';
|
|
148
|
+
export { default as GlobeUnpublish } from './GlobeUnpublish';
|
|
143
149
|
export { default as Globe } from './Globe';
|
|
144
150
|
export { default as GoTo } from './GoTo';
|
|
145
151
|
export { default as GoogleDrive } from './GoogleDrive';
|
|
@@ -150,6 +156,7 @@ export { default as Headphones } from './Headphones';
|
|
|
150
156
|
export { default as Hide } from './Hide';
|
|
151
157
|
export { default as Highlights } from './Highlights';
|
|
152
158
|
export { default as Hint } from './Hint';
|
|
159
|
+
export { default as HomeFilled } from './HomeFilled';
|
|
153
160
|
export { default as Home } from './Home';
|
|
154
161
|
export { default as ImageXmark } from './ImageXmark';
|
|
155
162
|
export { default as ImportFilled } from './ImportFilled';
|
|
@@ -167,8 +174,10 @@ export { default as ItemsTimeline } from './ItemsTimeline';
|
|
|
167
174
|
export { default as Items } from './Items';
|
|
168
175
|
export { default as Jira } from './Jira';
|
|
169
176
|
export { default as Key } from './Key';
|
|
177
|
+
export { default as KeyboardHideDown } from './KeyboardHideDown';
|
|
170
178
|
export { default as Lab } from './Lab';
|
|
171
179
|
export { default as LayoutDouble } from './LayoutDouble';
|
|
180
|
+
export { default as LayoutMultiple } from './LayoutMultiple';
|
|
172
181
|
export { default as LayoutSingle } from './LayoutSingle';
|
|
173
182
|
export { default as LeftPanel } from './LeftPanel';
|
|
174
183
|
export { default as LevelPlus } from './LevelPlus';
|
|
@@ -283,6 +292,7 @@ export { default as RightPanel } from './RightPanel';
|
|
|
283
292
|
export { default as Rows } from './Rows';
|
|
284
293
|
export { default as RuleScheduled } from './RuleScheduled';
|
|
285
294
|
export { default as SearchAdd } from './SearchAdd';
|
|
295
|
+
export { default as SearchFilled } from './SearchFilled';
|
|
286
296
|
export { default as SearchRemove } from './SearchRemove';
|
|
287
297
|
export { default as Search } from './Search';
|
|
288
298
|
export { default as SelfReferenceOff } from './SelfReferenceOff';
|
|
@@ -290,6 +300,7 @@ export { default as SelfReferenceOn } from './SelfReferenceOn';
|
|
|
290
300
|
export { default as SendArrow } from './SendArrow';
|
|
291
301
|
export { default as SendBackward } from './SendBackward';
|
|
292
302
|
export { default as SendToBack } from './SendToBack';
|
|
303
|
+
export { default as SettingsFilled } from './SettingsFilled';
|
|
293
304
|
export { default as SettingsOff } from './SettingsOff';
|
|
294
305
|
export { default as Settings } from './Settings';
|
|
295
306
|
export { default as Share } from './Share';
|
|
@@ -303,6 +314,7 @@ export { default as SimpleCompass } from './SimpleCompass';
|
|
|
303
314
|
export { default as SlackIcon } from './SlackIcon';
|
|
304
315
|
export { default as Slack } from './Slack';
|
|
305
316
|
export { default as SlideMenuClose } from './SlideMenuClose';
|
|
317
|
+
export { default as SlideMenuFilled } from './SlideMenuFilled';
|
|
306
318
|
export { default as SlideMenuOpen } from './SlideMenuOpen';
|
|
307
319
|
export { default as SlideMenu } from './SlideMenu';
|
|
308
320
|
export { default as SmartFolder } from './SmartFolder';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import {forwardRef} from 'react';
|
|
4
|
+
import ActivityFilledSvg from '../ast/ActivityFilled';
|
|
5
|
+
import { Icon } from '../Icon';
|
|
6
|
+
import { IconBaseProps } from '../types';
|
|
7
|
+
|
|
8
|
+
const ActivityFilled = forwardRef<SVGSVGElement, IconBaseProps>(function ActivityFilled(
|
|
9
|
+
props: IconBaseProps,
|
|
10
|
+
ref: React.Ref<SVGSVGElement>
|
|
11
|
+
) {return <Icon {...props} className={props.className} ref={ref} icon={ActivityFilledSvg} />});
|
|
12
|
+
|
|
13
|
+
export default ActivityFilled;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import {forwardRef} from 'react';
|
|
4
|
+
import AiAssistantFilledSvg from '../ast/AiAssistantFilled';
|
|
5
|
+
import { Icon } from '../Icon';
|
|
6
|
+
import { IconBaseProps } from '../types';
|
|
7
|
+
|
|
8
|
+
const AiAssistantFilled = forwardRef<SVGSVGElement, IconBaseProps>(function AiAssistantFilled(
|
|
9
|
+
props: IconBaseProps,
|
|
10
|
+
ref: React.Ref<SVGSVGElement>
|
|
11
|
+
) {return <Icon {...props} className={props.className} ref={ref} icon={AiAssistantFilledSvg} />});
|
|
12
|
+
|
|
13
|
+
export default AiAssistantFilled;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import {forwardRef} from 'react';
|
|
4
|
+
import CollapseAllHorizontalSvg from '../ast/CollapseAllHorizontal';
|
|
5
|
+
import { Icon } from '../Icon';
|
|
6
|
+
import { IconBaseProps } from '../types';
|
|
7
|
+
|
|
8
|
+
const CollapseAllHorizontal = forwardRef<SVGSVGElement, IconBaseProps>(function CollapseAllHorizontal(
|
|
9
|
+
props: IconBaseProps,
|
|
10
|
+
ref: React.Ref<SVGSVGElement>
|
|
11
|
+
) {return <Icon {...props} className={props.className} ref={ref} icon={CollapseAllHorizontalSvg} />});
|
|
12
|
+
|
|
13
|
+
export default CollapseAllHorizontal;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import {forwardRef} from 'react';
|
|
4
|
+
import EntityCreateFilledSvg from '../ast/EntityCreateFilled';
|
|
5
|
+
import { Icon } from '../Icon';
|
|
6
|
+
import { IconBaseProps } from '../types';
|
|
7
|
+
|
|
8
|
+
const EntityCreateFilled = forwardRef<SVGSVGElement, IconBaseProps>(function EntityCreateFilled(
|
|
9
|
+
props: IconBaseProps,
|
|
10
|
+
ref: React.Ref<SVGSVGElement>
|
|
11
|
+
) {return <Icon {...props} className={props.className} ref={ref} icon={EntityCreateFilledSvg} />});
|
|
12
|
+
|
|
13
|
+
export default EntityCreateFilled;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import {forwardRef} from 'react';
|
|
4
|
+
import ExpandAllHorizontalSvg from '../ast/ExpandAllHorizontal';
|
|
5
|
+
import { Icon } from '../Icon';
|
|
6
|
+
import { IconBaseProps } from '../types';
|
|
7
|
+
|
|
8
|
+
const ExpandAllHorizontal = forwardRef<SVGSVGElement, IconBaseProps>(function ExpandAllHorizontal(
|
|
9
|
+
props: IconBaseProps,
|
|
10
|
+
ref: React.Ref<SVGSVGElement>
|
|
11
|
+
) {return <Icon {...props} className={props.className} ref={ref} icon={ExpandAllHorizontalSvg} />});
|
|
12
|
+
|
|
13
|
+
export default ExpandAllHorizontal;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import {forwardRef} from 'react';
|
|
4
|
+
import GlobeUnpublishSvg from '../ast/GlobeUnpublish';
|
|
5
|
+
import { Icon } from '../Icon';
|
|
6
|
+
import { IconBaseProps } from '../types';
|
|
7
|
+
|
|
8
|
+
const GlobeUnpublish = forwardRef<SVGSVGElement, IconBaseProps>(function GlobeUnpublish(
|
|
9
|
+
props: IconBaseProps,
|
|
10
|
+
ref: React.Ref<SVGSVGElement>
|
|
11
|
+
) {return <Icon {...props} className={props.className} ref={ref} icon={GlobeUnpublishSvg} />});
|
|
12
|
+
|
|
13
|
+
export default GlobeUnpublish;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import {forwardRef} from 'react';
|
|
4
|
+
import HomeFilledSvg from '../ast/HomeFilled';
|
|
5
|
+
import { Icon } from '../Icon';
|
|
6
|
+
import { IconBaseProps } from '../types';
|
|
7
|
+
|
|
8
|
+
const HomeFilled = forwardRef<SVGSVGElement, IconBaseProps>(function HomeFilled(
|
|
9
|
+
props: IconBaseProps,
|
|
10
|
+
ref: React.Ref<SVGSVGElement>
|
|
11
|
+
) {return <Icon {...props} className={props.className} ref={ref} icon={HomeFilledSvg} />});
|
|
12
|
+
|
|
13
|
+
export default HomeFilled;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import {forwardRef} from 'react';
|
|
4
|
+
import KeyboardHideDownSvg from '../ast/KeyboardHideDown';
|
|
5
|
+
import { Icon } from '../Icon';
|
|
6
|
+
import { IconBaseProps } from '../types';
|
|
7
|
+
|
|
8
|
+
const KeyboardHideDown = forwardRef<SVGSVGElement, IconBaseProps>(function KeyboardHideDown(
|
|
9
|
+
props: IconBaseProps,
|
|
10
|
+
ref: React.Ref<SVGSVGElement>
|
|
11
|
+
) {return <Icon {...props} className={props.className} ref={ref} icon={KeyboardHideDownSvg} />});
|
|
12
|
+
|
|
13
|
+
export default KeyboardHideDown;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import {forwardRef} from 'react';
|
|
4
|
+
import LayoutMultipleSvg from '../ast/LayoutMultiple';
|
|
5
|
+
import { Icon } from '../Icon';
|
|
6
|
+
import { IconBaseProps } from '../types';
|
|
7
|
+
|
|
8
|
+
const LayoutMultiple = forwardRef<SVGSVGElement, IconBaseProps>(function LayoutMultiple(
|
|
9
|
+
props: IconBaseProps,
|
|
10
|
+
ref: React.Ref<SVGSVGElement>
|
|
11
|
+
) {return <Icon {...props} className={props.className} ref={ref} icon={LayoutMultipleSvg} />});
|
|
12
|
+
|
|
13
|
+
export default LayoutMultiple;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import {forwardRef} from 'react';
|
|
4
|
+
import SearchFilledSvg from '../ast/SearchFilled';
|
|
5
|
+
import { Icon } from '../Icon';
|
|
6
|
+
import { IconBaseProps } from '../types';
|
|
7
|
+
|
|
8
|
+
const SearchFilled = forwardRef<SVGSVGElement, IconBaseProps>(function SearchFilled(
|
|
9
|
+
props: IconBaseProps,
|
|
10
|
+
ref: React.Ref<SVGSVGElement>
|
|
11
|
+
) {return <Icon {...props} className={props.className} ref={ref} icon={SearchFilledSvg} />});
|
|
12
|
+
|
|
13
|
+
export default SearchFilled;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import {forwardRef} from 'react';
|
|
4
|
+
import SettingsFilledSvg from '../ast/SettingsFilled';
|
|
5
|
+
import { Icon } from '../Icon';
|
|
6
|
+
import { IconBaseProps } from '../types';
|
|
7
|
+
|
|
8
|
+
const SettingsFilled = forwardRef<SVGSVGElement, IconBaseProps>(function SettingsFilled(
|
|
9
|
+
props: IconBaseProps,
|
|
10
|
+
ref: React.Ref<SVGSVGElement>
|
|
11
|
+
) {return <Icon {...props} className={props.className} ref={ref} icon={SettingsFilledSvg} />});
|
|
12
|
+
|
|
13
|
+
export default SettingsFilled;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import {forwardRef} from 'react';
|
|
4
|
+
import SlideMenuFilledSvg from '../ast/SlideMenuFilled';
|
|
5
|
+
import { Icon } from '../Icon';
|
|
6
|
+
import { IconBaseProps } from '../types';
|
|
7
|
+
|
|
8
|
+
const SlideMenuFilled = forwardRef<SVGSVGElement, IconBaseProps>(function SlideMenuFilled(
|
|
9
|
+
props: IconBaseProps,
|
|
10
|
+
ref: React.Ref<SVGSVGElement>
|
|
11
|
+
) {return <Icon {...props} className={props.className} ref={ref} icon={SlideMenuFilledSvg} />});
|
|
12
|
+
|
|
13
|
+
export default SlideMenuFilled;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
// This icon file is generated automatically.
|
|
2
2
|
export { default as Abort } from './Abort';
|
|
3
3
|
export { default as AccessTemplate } from './AccessTemplate';
|
|
4
|
+
export { default as ActivityFilled } from './ActivityFilled';
|
|
4
5
|
export { default as ActivityLog } from './ActivityLog';
|
|
5
6
|
export { default as Activity } from './Activity';
|
|
6
7
|
export { default as AddAfter } from './AddAfter';
|
|
@@ -11,6 +12,7 @@ export { default as AddGroup } from './AddGroup';
|
|
|
11
12
|
export { default as AddIntegration } from './AddIntegration';
|
|
12
13
|
export { default as AddReactions } from './AddReactions';
|
|
13
14
|
export { default as Add } from './Add';
|
|
15
|
+
export { default as AiAssistantFilled } from './AiAssistantFilled';
|
|
14
16
|
export { default as AiAssistant } from './AiAssistant';
|
|
15
17
|
export { default as AiAvatar } from './AiAvatar';
|
|
16
18
|
export { default as AiFiberyBuild } from './AiFiberyBuild';
|
|
@@ -73,6 +75,7 @@ export { default as ClockAlarm } from './ClockAlarm';
|
|
|
73
75
|
export { default as ClockForward } from './ClockForward';
|
|
74
76
|
export { default as Clock } from './Clock';
|
|
75
77
|
export { default as Close } from './Close';
|
|
78
|
+
export { default as CollapseAllHorizontal } from './CollapseAllHorizontal';
|
|
76
79
|
export { default as CollapseAll } from './CollapseAll';
|
|
77
80
|
export { default as ColorCodingFilled } from './ColorCodingFilled';
|
|
78
81
|
export { default as ColorCoding } from './ColorCoding';
|
|
@@ -104,9 +107,11 @@ export { default as DynamicFilterValue } from './DynamicFilterValue';
|
|
|
104
107
|
export { default as EditValue } from './EditValue';
|
|
105
108
|
export { default as Email } from './Email';
|
|
106
109
|
export { default as EmojiDelete } from './EmojiDelete';
|
|
110
|
+
export { default as EntityCreateFilled } from './EntityCreateFilled';
|
|
107
111
|
export { default as EntityCreate } from './EntityCreate';
|
|
108
112
|
export { default as EntityMerge } from './EntityMerge';
|
|
109
113
|
export { default as Equation } from './Equation';
|
|
114
|
+
export { default as ExpandAllHorizontal } from './ExpandAllHorizontal';
|
|
110
115
|
export { default as ExpandAll } from './ExpandAll';
|
|
111
116
|
export { default as Export } from './Export';
|
|
112
117
|
export { default as ExtensionAssignments } from './ExtensionAssignments';
|
|
@@ -140,6 +145,7 @@ export { default as Gift } from './Gift';
|
|
|
140
145
|
export { default as Github } from './Github';
|
|
141
146
|
export { default as Gitlab } from './Gitlab';
|
|
142
147
|
export { default as GlobeSimple } from './GlobeSimple';
|
|
148
|
+
export { default as GlobeUnpublish } from './GlobeUnpublish';
|
|
143
149
|
export { default as Globe } from './Globe';
|
|
144
150
|
export { default as GoTo } from './GoTo';
|
|
145
151
|
export { default as GoogleDrive } from './GoogleDrive';
|
|
@@ -150,6 +156,7 @@ export { default as Headphones } from './Headphones';
|
|
|
150
156
|
export { default as Hide } from './Hide';
|
|
151
157
|
export { default as Highlights } from './Highlights';
|
|
152
158
|
export { default as Hint } from './Hint';
|
|
159
|
+
export { default as HomeFilled } from './HomeFilled';
|
|
153
160
|
export { default as Home } from './Home';
|
|
154
161
|
export { default as ImageXmark } from './ImageXmark';
|
|
155
162
|
export { default as ImportFilled } from './ImportFilled';
|
|
@@ -167,8 +174,10 @@ export { default as ItemsTimeline } from './ItemsTimeline';
|
|
|
167
174
|
export { default as Items } from './Items';
|
|
168
175
|
export { default as Jira } from './Jira';
|
|
169
176
|
export { default as Key } from './Key';
|
|
177
|
+
export { default as KeyboardHideDown } from './KeyboardHideDown';
|
|
170
178
|
export { default as Lab } from './Lab';
|
|
171
179
|
export { default as LayoutDouble } from './LayoutDouble';
|
|
180
|
+
export { default as LayoutMultiple } from './LayoutMultiple';
|
|
172
181
|
export { default as LayoutSingle } from './LayoutSingle';
|
|
173
182
|
export { default as LeftPanel } from './LeftPanel';
|
|
174
183
|
export { default as LevelPlus } from './LevelPlus';
|
|
@@ -283,6 +292,7 @@ export { default as RightPanel } from './RightPanel';
|
|
|
283
292
|
export { default as Rows } from './Rows';
|
|
284
293
|
export { default as RuleScheduled } from './RuleScheduled';
|
|
285
294
|
export { default as SearchAdd } from './SearchAdd';
|
|
295
|
+
export { default as SearchFilled } from './SearchFilled';
|
|
286
296
|
export { default as SearchRemove } from './SearchRemove';
|
|
287
297
|
export { default as Search } from './Search';
|
|
288
298
|
export { default as SelfReferenceOff } from './SelfReferenceOff';
|
|
@@ -290,6 +300,7 @@ export { default as SelfReferenceOn } from './SelfReferenceOn';
|
|
|
290
300
|
export { default as SendArrow } from './SendArrow';
|
|
291
301
|
export { default as SendBackward } from './SendBackward';
|
|
292
302
|
export { default as SendToBack } from './SendToBack';
|
|
303
|
+
export { default as SettingsFilled } from './SettingsFilled';
|
|
293
304
|
export { default as SettingsOff } from './SettingsOff';
|
|
294
305
|
export { default as Settings } from './Settings';
|
|
295
306
|
export { default as Share } from './Share';
|
|
@@ -303,6 +314,7 @@ export { default as SimpleCompass } from './SimpleCompass';
|
|
|
303
314
|
export { default as SlackIcon } from './SlackIcon';
|
|
304
315
|
export { default as Slack } from './Slack';
|
|
305
316
|
export { default as SlideMenuClose } from './SlideMenuClose';
|
|
317
|
+
export { default as SlideMenuFilled } from './SlideMenuFilled';
|
|
306
318
|
export { default as SlideMenuOpen } from './SlideMenuOpen';
|
|
307
319
|
export { default as SlideMenu } from './SlideMenu';
|
|
308
320
|
export { default as SmartFolder } from './SmartFolder';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12.4006 16.5C12.5919 16.5 12.6883 16.4996 12.7551 16.5498C12.808 16.5897 12.8493 16.6672 12.8537 16.7334C12.8591 16.8168 12.8127 16.8878 12.7199 17.0293C12.1393 17.9149 11.1382 18.5 10.0002 18.5C8.86236 18.4999 7.86185 17.9147 7.28144 17.0293C7.18865 16.8877 7.14221 16.8168 7.14765 16.7334C7.15209 16.6672 7.19333 16.5897 7.24628 16.5498C7.31305 16.4996 7.40939 16.5 7.60077 16.5H12.4006Z" />
|
|
3
|
+
<path d="M10.0002 2C11.5091 2 12.9664 2.5588 14.048 3.56836C15.1314 4.57954 15.7502 5.96311 15.7502 7.41699C15.7502 9.52228 16.2785 10.967 16.8674 11.9307C17.1396 12.3761 17.3513 12.692 17.508 12.9258C17.5307 12.9596 17.552 12.9919 17.5725 13.0225C17.6488 13.1367 17.7264 13.2535 17.7824 13.3545C17.8109 13.4059 17.8467 13.4759 17.8752 13.5557C17.9016 13.6298 17.9417 13.7669 17.9269 13.9355C17.9178 14.0405 17.8959 14.222 17.7922 14.4082C17.6878 14.5954 17.5438 14.7095 17.4572 14.7734C17.3402 14.8598 17.2227 14.8995 17.1584 14.918C17.0852 14.939 17.0134 14.9516 16.9533 14.96C16.8335 14.9767 16.6942 14.9851 16.549 14.9902C16.2687 15.0002 15.8801 15 15.3937 15H4.60663C4.12028 15 3.7317 15.0002 3.45136 14.9902C3.30614 14.9851 3.16688 14.9767 3.04706 14.96C2.98689 14.9516 2.91517 14.939 2.84198 14.918C2.7776 14.8994 2.66014 14.8598 2.54315 14.7734C2.45654 14.7095 2.31249 14.5953 2.20819 14.4082C2.10449 14.2221 2.08261 14.0405 2.07343 13.9355C2.05867 13.7668 2.09973 13.6298 2.12616 13.5557C2.15465 13.4758 2.19039 13.4059 2.21894 13.3545C2.27497 13.2536 2.35164 13.1367 2.42792 13.0225C2.44843 12.9917 2.47055 12.9598 2.49335 12.9258C2.6501 12.692 2.86079 12.3761 3.133 11.9307C3.72193 10.967 4.25013 9.52239 4.25019 7.41699C4.25019 5.96305 4.86989 4.57955 5.95331 3.56836C7.03492 2.55896 8.49141 2.00004 10.0002 2Z" />
|
|
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="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.40429Z" />
|
|
3
|
+
</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="M3.38138 13.1186C3.06896 13.4311 3.06896 13.9376 3.38138 14.25C3.6938 14.5624 4.20033 14.5624 4.51275 14.25L7.84703 10.6843C8.15953 10.3719 8.15953 9.86535 7.84703 9.55295L4.51276 5.98724C4.20034 5.67484 3.69381 5.67484 3.38139 5.98724C3.06897 6.29964 3.06897 6.80624 3.38139 7.11864L6.15003 10.1186L3.38138 13.1186ZM16.6186 7.11864C16.9311 6.80624 16.9311 6.29964 16.6186 5.98724C16.3062 5.67484 15.7997 5.67484 15.4873 5.98724L11.9157 9.55295C11.6033 9.86535 11.6033 10.3719 11.9157 10.6843L15.4873 14.25C15.7997 14.5624 16.3062 14.5624 16.6186 14.25C16.9311 13.9376 16.9311 13.4311 16.6186 13.1186L13.6127 10.1186L16.6186 7.11864Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
|
|
3
|
-
d="
|
|
4
|
-
</svg>
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.6 3H14V1.80391C14 1.59174 13.9157 1.38825 13.7657 1.23822C13.6157 1.0882 13.4122 1.00391 13.2 1.00391C12.9878 1.00391 12.7843 1.0882 12.6343 1.23822C12.4843 1.38825 12.4 1.59174 12.4 1.80391V3H7.6V1.80391C7.6 1.59174 7.51571 1.38825 7.36569 1.23822C7.21566 1.0882 7.01217 1.00391 6.8 1.00391C6.58783 1.00391 6.38434 1.0882 6.23431 1.23822C6.08429 1.38825 6 1.59174 6 1.80391V3H4.4C3.76348 3 3.15303 3.25286 2.70294 3.70294C2.25286 4.15303 2 4.76348 2 5.4V14.6C2 15.2365 2.25286 15.847 2.70294 16.2971C3.15303 16.7471 3.76348 17 4.4 17H15.6C16.2365 17 16.847 16.7471 17.2971 16.2971C17.7471 15.847 18 15.2365 18 14.6V5.4C18 4.76348 17.7471 4.15303 17.2971 3.70294C16.847 3.25286 16.2365 3 15.6 3ZM16.1657 15.1657C16.3157 15.0157 16.4 14.8122 16.4 14.6V7.4V5.4C16.4 5.18783 16.3157 4.98434 16.1657 4.83431C16.0157 4.68429 15.8122 4.6 15.6 4.6H4.4C4.18783 4.6 3.98434 4.68429 3.83431 4.83431C3.68429 4.98434 3.6 5.18783 3.6 5.4V7.4V14.6C3.6 14.8122 3.68429 15.0157 3.83431 15.1657C3.98434 15.3157 4.18783 15.4 4.4 15.4H15.6C15.8122 15.4 16.0157 15.3157 16.1657 15.1657Z" />
|
|
3
|
+
<path d="M8.78033 8.08033C9.07322 7.78744 9.07322 7.31256 8.78033 7.01967C8.48744 6.72678 8.01256 6.72678 7.71967 7.01967L5.21967 9.51967C4.92678 9.81256 4.92678 10.2874 5.21967 10.5803L7.71967 13.0803C8.01256 13.3732 8.48744 13.3732 8.78033 13.0803C9.07322 12.7874 9.07322 12.3126 8.78033 12.0197L7.56066 10.8H12.4393L11.2197 12.0197C10.9268 12.3126 10.9268 12.7874 11.2197 13.0803C11.5126 13.3732 11.9874 13.3732 12.2803 13.0803L14.7803 10.5803C15.0732 10.2874 15.0732 9.81256 14.7803 9.51967L12.2803 7.01967C11.9874 6.72678 11.5126 6.72678 11.2197 7.01967C10.9268 7.31256 10.9268 7.78744 11.2197 8.08033L12.4393 9.3H7.56066L8.78033 8.08033Z" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M11.5 2C11.8033 2 12.0773 2.18263 12.1934 2.46289C12.3094 2.74313 12.2448 3.06579 12.0303 3.28027L7.36621 7.94434C7.13186 8.17869 7.00008 8.49671 7 8.82812V11.75C7 12.4404 7.55964 13 8.25 13H11.1719C11.5033 12.9999 11.8213 12.8681 12.0557 12.6338L16.7197 7.96973C16.9342 7.75525 17.2569 7.6906 17.5371 7.80664C17.8174 7.92273 18 8.19665 18 8.5V15.25C18 16.7688 16.7688 18 15.25 18H4.75C3.23122 18 2 16.7688 2 15.25V4.75C2 3.23122 3.23122 2 4.75 2H11.5Z" />
|
|
3
|
+
<path d="M14.8506 2.625C15.5476 1.92807 16.678 1.92807 17.375 2.625C18.072 3.32197 18.0719 4.45243 17.375 5.14941L17.1504 5.37305L11.3467 11.1777C11.206 11.3184 11.0143 11.3975 10.8154 11.3975H9.35254C8.93833 11.3975 8.60254 11.0617 8.60254 10.6475V9.18457C8.60254 8.98575 8.68173 8.79493 8.82227 8.6543L14.627 2.84961L14.8506 2.625Z" />
|
|
4
|
+
</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="M7.84709 13.1186C8.15951 13.4311 8.15951 13.9376 7.84709 14.25C7.53467 14.5624 7.02814 14.5624 6.71572 14.25L3.38144 10.6843C3.06894 10.3719 3.06894 9.86535 3.38144 9.55295L6.71571 5.98724C7.02813 5.67484 7.53466 5.67484 7.84708 5.98724C8.1595 6.29964 8.1595 6.80624 7.84708 7.11864L5.07844 10.1186L7.84709 13.1186ZM11.9157 7.11864C11.6032 6.80624 11.6032 6.29964 11.9157 5.98724C12.2281 5.67484 12.7346 5.67484 13.047 5.98724L16.6186 9.55295C16.9311 9.86535 16.9311 10.3719 16.6186 10.6843L13.047 14.25C12.7346 14.5624 12.2281 14.5624 11.9157 14.25C11.6032 13.9376 11.6032 13.4311 11.9157 13.1186L14.9216 10.1186L11.9157 7.11864Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M2.21967 2.71972C2.51257 2.42688 2.98734 2.42685 3.28022 2.71972L17.7802 17.2197C18.073 17.5126 18.073 17.9874 17.7802 18.2803C17.4873 18.5731 17.0126 18.5731 16.7197 18.2803L15.0107 16.5713C13.6489 17.6964 11.9044 18.375 9.99994 18.375C5.65071 18.375 2.12497 14.8492 2.12494 10.5C2.12496 8.59551 2.80246 6.85006 3.92768 5.48828L2.21967 3.78027C1.92678 3.48738 1.92678 3.01262 2.21967 2.71972ZM3.66889 11.25C3.97008 13.8197 5.79922 15.922 8.22357 16.624C6.90471 14.7697 6.27669 12.95 6.12201 11.25H3.66889ZM12.9833 14.5439C12.6708 15.229 12.2738 15.9246 11.7763 16.624C12.5753 16.3926 13.3089 16.0081 13.9452 15.5058L12.9833 14.5439ZM7.62982 11.25C7.80357 12.855 8.4851 14.6273 9.99994 16.4795C10.8651 15.4216 11.4566 14.3889 11.8388 13.3994L9.68939 11.25H7.62982ZM6.4931 3.30957C7.97293 2.58786 9.63985 2.34018 11.2656 2.60058C12.8912 2.86104 14.3968 3.61691 15.5771 4.76464C16.7575 5.91253 17.5556 7.39677 17.8613 9.01464C18.1669 10.6325 17.9652 12.3053 17.2851 13.8047C17.114 14.1818 16.6701 14.3487 16.2929 14.1777C15.9157 14.0066 15.7488 13.5627 15.9199 13.1855C16.4725 11.9672 16.635 10.6075 16.3867 9.29296C16.1382 7.97854 15.4902 6.77244 14.5312 5.83984C13.5722 4.90742 12.3489 4.29365 11.0283 4.08203C9.70733 3.87045 8.35271 4.07178 7.15033 4.6582C6.7781 4.83955 6.32893 4.68469 6.1474 4.3125C5.96593 3.94023 6.12086 3.49112 6.4931 3.30957ZM4.99408 6.55468C4.2833 7.45529 3.80937 8.55137 3.66889 9.74999H6.10541C6.12676 9.43681 6.1626 9.12887 6.21283 8.82714C6.26217 8.53082 6.32479 8.24113 6.39838 7.95898L4.99408 6.55468ZM7.70795 8.82714C7.68297 8.99752 7.62357 9.57391 7.60931 9.74999H8.56342L7.70795 8.82714Z" />
|
|
3
|
+
</svg>
|
|
4
|
+
|
|
@@ -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.5898 18.285C16.1974 18.285 17.4999 16.9825 17.5 15.3749V7.54091C17.5 7.04106 17.2954 6.56467 16.9385 6.22157L16.7764 6.0829L11.1074 1.77431C10.4939 1.30732 9.65953 1.27952 9.01855 1.68739L8.89258 1.77431L3.22363 6.0829C2.76783 6.42887 2.5 6.96839 2.5 7.54091V15.3749C2.50006 16.9825 3.80258 18.285 5.41016 18.285H14.5898ZM13.3947 12.5787C13.1202 12.3041 12.6854 12.2868 12.3908 12.5269L12.3342 12.5787C11.0862 13.8266 9.08525 13.8658 7.79025 12.6959L7.6672 12.5787L7.61056 12.5269C7.31598 12.2866 6.88126 12.3041 6.60665 12.5787C6.33205 12.8533 6.31459 13.288 6.55489 13.5826L6.60665 13.6392L6.78536 13.8091C8.66919 15.5114 11.5792 15.4548 13.3947 13.6392L13.4455 13.5826C13.6861 13.288 13.6693 12.8534 13.3947 12.5787Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="m12.0192 16.0902c.318-.265.7914-.222 1.0567.0957.2651.3181.2223.7914-.0957 1.0566l-2.98051 2.4834-2.98046-2.4834c-.31772-.2652-.36073-.7386-.09571-1.0566.26511-.3179.73851-.3605 1.05664-.0957l2.01953 1.6826z"/><path d="m5.00848 9.25034c.41401.00024.75.33593.75.74996-.00018.4139-.3361.7498-.75.75h-.00879c-.41396-.0001-.74981-.336-.75-.75 0-.41408.33593-.7498.75-.74996z"/><path d="m11.6667 9.25034c.4141.00016.75.33588.75.74996-.0002.414-.3361.7499-.75.75h-3.33302c-.4141 0-.74982-.3359-.75-.75 0-.41418.33579-.74996.75-.74996z"/><path d="m15.0085 9.25034c.414.00024.75.33593.75.74996-.0002.4139-.3361.7498-.75.75h-.0088c-.414-.0001-.7498-.336-.75-.75 0-.41408.3359-.7498.75-.74996z"/><path d="m5.00848 5.91635c.4139.00025.74983.33609.75.75 0 .41406-.33599.74976-.75.75h-.00879c-.41407-.00016-.75-.33589-.75-.75.00018-.41396.33604-.74983.75-.75z"/><path d="m8.34247 5.91635c.41376.00041.74983.33619.75.75 0 .41396-.33614.74959-.75.75h-.00879c-.41421 0-.75-.33579-.75-.75.00017-.41406.33589-.75.75-.75z"/><path d="m11.6755 5.91635c.4139.00025.7498.33609.75.75 0 .41406-.336.74976-.75.75h-.0088c-.4142 0-.75-.33579-.75-.75.0002-.41406.3359-.75.75-.75z"/><path d="m15.0085 5.91635c.4139.00025.7498.33609.75.75 0 .41406-.336.74976-.75.75h-.0088c-.4141-.00016-.75-.33589-.75-.75.0002-.41396.336-.74983.75-.75z"/><path clip-rule="evenodd" d="m16.6667 2.58334c1.3347 0 2.417 1.08231 2.417 2.417v6.66606c0 1.3347-1.0823 2.4169-2.417 2.4169h-13.33302c-1.33468 0-2.416993-1.0822-2.416993-2.4169v-6.66606c0-1.33469 1.082303-2.417 2.416993-2.417zm-13.33302 1.5c-.50626 0-.91699.41073-.91699.917v6.66606c0 .5062.41072.9169.91699.9169h13.33302c.5063 0 .917-.4107.917-.9169v-6.66606c0-.50627-.4107-.917-.917-.917z" fill-rule="evenodd"/></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12 4.25624C12 2.8936 13.3696 2.05149 14.4463 2.75233L17.2158 4.55604C17.7021 4.87287 17.9999 5.44337 18 6.05897V15.7435C18 17.1062 16.6304 17.9484 15.5537 17.2474L13 15.5844V15.7435C13 17.1062 11.6304 17.9484 10.5537 17.2474L8 15.5844V15.7435C8 17.1062 6.63038 17.9484 5.55371 17.2474L2.78418 15.4447C2.29763 15.1279 2.00002 14.5566 2 13.9408V4.25624C2 2.8936 3.36963 2.05149 4.44629 2.75233L7 4.41542V4.25624C7 2.8936 8.36963 2.05149 9.44629 2.75233L12 4.41542V4.25624ZM3.73438 4.04139C3.58056 3.94123 3.38477 4.06156 3.38477 4.25624V13.9408C3.38479 14.0286 3.42687 14.1103 3.49609 14.1557L6.26562 15.9594C6.41942 16.0594 6.61523 15.9382 6.61523 15.7435V6.05897C6.61514 5.97125 6.57313 5.88938 6.50391 5.84413L3.73438 4.04139ZM8.73438 4.04139C8.58056 3.94123 8.38477 4.06156 8.38477 4.25624V13.9408C8.38479 14.0286 8.42687 14.1103 8.49609 14.1557L11.2656 15.9594C11.4194 16.0594 11.6152 15.9382 11.6152 15.7435V6.05897C11.6151 5.97125 11.5731 5.88938 11.5039 5.84413L8.73438 4.04139ZM13.7344 4.04139C13.5806 3.94123 13.3848 4.06156 13.3848 4.25624V13.9408C13.3848 14.0286 13.4269 14.1103 13.4961 14.1557L16.2656 15.9594C16.4194 16.0594 16.6152 15.9382 16.6152 15.7435V6.05897C16.6151 5.97125 16.5731 5.88938 16.5039 5.84413L13.7344 4.04139Z" />
|
|
3
|
+
</svg>
|