@fibery/ui-kit 1.17.1 → 1.19.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.
Files changed (121) hide show
  1. package/index.ts +1 -1
  2. package/package.json +29 -23
  3. package/src/antd/styles.ts +1 -1
  4. package/src/back-button.tsx +3 -0
  5. package/src/{Button → button}/actions-button.tsx +2 -2
  6. package/src/{Button → button}/button-base.tsx +2 -2
  7. package/src/{Button → button}/button-group.tsx +1 -1
  8. package/src/{Button → button}/button.tsx +3 -3
  9. package/src/{Button → button}/icon-button.tsx +1 -0
  10. package/src/button.tsx +3 -0
  11. package/src/create-inline-theme.ts +2 -0
  12. package/src/design-system.ts +1009 -0
  13. package/src/emoji-picker/app-icon-picker.tsx +2 -2
  14. package/src/emoji-picker/emoji-picker-content-with-color.tsx +7 -7
  15. package/src/emoji-picker/emoji-picker.tsx +11 -5
  16. package/src/emoji-picker/icon-emoji-picker.tsx +2 -2
  17. package/src/emoji-picker/primitives/category.tsx +2 -2
  18. package/src/emoji-picker/primitives/content.tsx +3 -2
  19. package/src/emoji-picker/primitives/emoji.tsx +1 -1
  20. package/src/emoji-picker/primitives/footer.tsx +1 -1
  21. package/src/emoji-picker/primitives/header.tsx +1 -1
  22. package/src/emoji-picker/primitives/layout.ts +1 -1
  23. package/src/emoji-picker/primitives/search.tsx +2 -2
  24. package/src/emoji-picker/primitives/skin-tone.tsx +2 -2
  25. package/src/emoji-picker/stores/lazy-emoji-data-store.tsx +3 -3
  26. package/src/emoji-picker/stores/lazy-icon-data-store.tsx +1 -1
  27. package/src/error-alert.tsx +3 -3
  28. package/src/form-field-loader.tsx +1 -1
  29. package/src/icons/Icon.tsx +5 -5
  30. package/src/icons/ast/Activity.ts +1 -1
  31. package/src/icons/ast/BellFilled.ts +8 -0
  32. package/src/icons/ast/BellOff.ts +8 -0
  33. package/src/icons/ast/BellRinging.ts +8 -0
  34. package/src/icons/ast/Clock.ts +8 -0
  35. package/src/icons/ast/ClockAlarm.ts +8 -0
  36. package/src/icons/ast/Copy.ts +1 -1
  37. package/src/icons/ast/Export.ts +8 -0
  38. package/src/icons/ast/ExtensionComments.ts +1 -1
  39. package/src/icons/ast/Favorites.ts +1 -1
  40. package/src/icons/ast/FavoritesChecked.ts +1 -1
  41. package/src/icons/ast/FavoritesOff.ts +8 -0
  42. package/src/icons/ast/GlobeSimple.ts +8 -0
  43. package/src/icons/ast/Import.ts +8 -0
  44. package/src/icons/ast/Lab.ts +8 -0
  45. package/src/icons/ast/Link.ts +8 -0
  46. package/src/icons/ast/Monitor.ts +8 -0
  47. package/src/icons/ast/Network.ts +8 -0
  48. package/src/icons/ast/Pencil.ts +8 -0
  49. package/src/icons/ast/People.ts +8 -0
  50. package/src/icons/ast/RicheditorCommentCreate.ts +1 -1
  51. package/src/icons/ast/RicheditorLinkCreate.ts +1 -1
  52. package/src/icons/ast/RicheditorOpenLink.ts +1 -1
  53. package/src/icons/ast/RicheditorUnlink.ts +1 -1
  54. package/src/icons/ast/ShieldKeyhole.ts +8 -0
  55. package/src/icons/ast/Success.ts +8 -0
  56. package/src/icons/ast/Terminal.ts +8 -0
  57. package/src/icons/ast/TypeUrl.ts +1 -1
  58. package/src/icons/ast/WarningTriangle.ts +8 -0
  59. package/src/icons/ast/index.tsx +19 -4
  60. package/src/icons/{getIconContainerStyle.tsx → get-icon-container-style.tsx} +1 -1
  61. package/src/icons/react/BellFilled.tsx +12 -0
  62. package/src/icons/react/BellOff.tsx +12 -0
  63. package/src/icons/react/BellRinging.tsx +12 -0
  64. package/src/icons/react/Clock.tsx +12 -0
  65. package/src/icons/react/ClockAlarm.tsx +12 -0
  66. package/src/icons/react/Export.tsx +12 -0
  67. package/src/icons/react/FavoritesOff.tsx +12 -0
  68. package/src/icons/react/GlobeSimple.tsx +12 -0
  69. package/src/icons/react/Import.tsx +12 -0
  70. package/src/icons/react/Lab.tsx +12 -0
  71. package/src/icons/react/Link.tsx +12 -0
  72. package/src/icons/react/Monitor.tsx +12 -0
  73. package/src/icons/react/Network.tsx +12 -0
  74. package/src/icons/react/Pencil.tsx +12 -0
  75. package/src/icons/react/People.tsx +12 -0
  76. package/src/icons/react/ShieldKeyhole.tsx +12 -0
  77. package/src/icons/react/Success.tsx +12 -0
  78. package/src/icons/react/Terminal.tsx +12 -0
  79. package/src/icons/react/WarningTriangle.tsx +12 -0
  80. package/src/icons/react/index.tsx +19 -4
  81. package/src/{Item.tsx → item.tsx} +1 -1
  82. package/src/loaders.tsx +19 -6
  83. package/src/loading-sausage.tsx +3 -1
  84. package/src/select/custom-select-partials/clear-indicator.tsx +22 -0
  85. package/src/select/custom-select-partials/drop-down-indicator.tsx +26 -0
  86. package/src/select/custom-select-partials/group-heading.tsx +54 -0
  87. package/src/select/custom-select-partials/menu.tsx +25 -0
  88. package/src/select/custom-select-partials/no-option-message.tsx +10 -0
  89. package/src/select/custom-select-partials/option.tsx +65 -0
  90. package/src/{Select → select}/index.tsx +54 -48
  91. package/src/{Select → select}/select-in-popover.tsx +5 -5
  92. package/src/{Select → select}/styles.ts +9 -53
  93. package/src/{ThemeProvider.tsx → theme-provider.tsx} +11 -1
  94. package/src/theme-styles.ts +2 -5
  95. package/src/toast/primitives.tsx +145 -0
  96. package/src/toast/toast-action.tsx +20 -0
  97. package/src/toast/toast-queue.tsx +121 -0
  98. package/src/toast/toast.tsx +114 -0
  99. package/src/toast/toaster.tsx +72 -0
  100. package/src/tooltip.tsx +3 -3
  101. package/src/BackButton.tsx +0 -3
  102. package/src/Button.tsx +0 -3
  103. package/src/Select/components.tsx +0 -90
  104. package/src/designSystem.ts +0 -951
  105. package/src/icons/ast/AppTemplatesOneColor.ts +0 -8
  106. package/src/icons/ast/CopyUrl.ts +0 -8
  107. package/src/icons/ast/FavoritesMenu.ts +0 -8
  108. package/src/icons/ast/Markdown.ts +0 -8
  109. package/src/icons/react/AppTemplatesOneColor.tsx +0 -12
  110. package/src/icons/react/CopyUrl.tsx +0 -12
  111. package/src/icons/react/FavoritesMenu.tsx +0 -12
  112. package/src/icons/react/Markdown.tsx +0 -12
  113. /package/src/{Button → button}/actions-button-compact.tsx +0 -0
  114. /package/src/{Button/AddButton.tsx → button/add-button.tsx} +0 -0
  115. /package/src/{Button/BackButton.tsx → button/back-button.tsx} +0 -0
  116. /package/src/icons/{generateIconFromAst.ts → generate-icon-from-ast.ts} +0 -0
  117. /package/src/icons/{IconAsPaths.ts → get-paths.ts} +0 -0
  118. /package/src/icons/{getShiftStyle.ts → get-shift-style.ts} +0 -0
  119. /package/src/{Pallete.ts → pallete.ts} +0 -0
  120. /package/src/{Select → select}/select-control-settings-context.tsx +0 -0
  121. /package/src/{Select → select}/select-loader.tsx +0 -0
@@ -1,6 +1,6 @@
1
1
  import {CustomEmoji, EmojiItem} from "@fibery/emoji-data";
2
- import {useThemeMode} from "../ThemeProvider";
3
- import {cardTypeColors, getIconColor} from "../designSystem";
2
+ import {useThemeMode} from "../theme-provider";
3
+ import {cardTypeColors, getIconColor} from "../design-system";
4
4
  import {$TSFixMe} from "../tsfixme";
5
5
  import {EmojiPickerContentWithColor} from "./emoji-picker-content-with-color";
6
6
  import {EmojiPickerContent} from "./primitives/content";
@@ -1,10 +1,10 @@
1
- import {css} from "@linaria/core";
1
+ import {css, cx} from "@linaria/core";
2
2
  import {useState} from "react";
3
- import {IconButton} from "../Button/icon-button";
4
- import {CollapsibleContent, CollapsibleRoot, CollapsibleTrigger} from "../Collapsible";
5
- import {ColorPicker} from "../ColorPicker";
6
- import {useThemeMode} from "../ThemeProvider";
7
- import {getIconColor, space} from "../designSystem";
3
+ import {IconButton} from "../button/icon-button";
4
+ import {CollapsibleContent, CollapsibleRoot, CollapsibleTrigger} from "../collapsible";
5
+ import {ColorPicker} from "../color-picker";
6
+ import {useThemeMode} from "../theme-provider";
7
+ import {getIconColor, space} from "../design-system";
8
8
  import ColorCoding from "../icons/react/ColorCoding";
9
9
  import ColorCodingFilled from "../icons/react/ColorCodingFilled";
10
10
  import {$TSFixMe} from "../tsfixme";
@@ -104,7 +104,7 @@ export const EmojiPickerContentWithColor: React.FC<EmojiPickerContentWithColorPr
104
104
  ) : null}
105
105
  </EmojiPickerHeader>
106
106
 
107
- <EmojiPickerGrid className={colorOpened ? disableScrollCss : undefined} renderEmoji={renderEmoji} />
107
+ <EmojiPickerGrid className={cx(colorOpened && disableScrollCss)} renderEmoji={renderEmoji} />
108
108
  </CollapsibleRoot>
109
109
  );
110
110
  };
@@ -1,13 +1,14 @@
1
- import {EmojiItem} from "@fibery/emoji-data/lib/src";
1
+ import {EmojiItem} from "@fibery/emoji-data";
2
2
  import {css} from "@linaria/core";
3
- import {Button} from "../Button";
4
- import {cardTypeColors, space} from "../designSystem";
3
+ import {Button} from "../button";
4
+ import {cardTypeColors, space} from "../design-system";
5
5
  import {$TSFixMe} from "../tsfixme";
6
6
  import {EmojiPickerContentWithColor} from "./emoji-picker-content-with-color";
7
7
  import {EmojiPickerContent} from "./primitives/content";
8
8
  import {EmojiPickerFooter} from "./primitives/footer";
9
9
  import {EmojiPickerRoot} from "./primitives/root";
10
10
  import {EmojiPickerSkinTone} from "./primitives/skin-tone";
11
+ import {measureScrollbar} from "@fibery/helpers/utils/measure-scrollbar";
11
12
 
12
13
  const i18n = {search: "Search emoji..."};
13
14
 
@@ -56,13 +57,18 @@ export const EmojiPicker: React.FC<EmojiPickerProps> = ({
56
57
  ) : null}
57
58
 
58
59
  {showSkinTones ? (
59
- <EmojiPickerSkinTone
60
+ <div
60
61
  className={css`
61
62
  position: absolute;
62
63
  top: 4px;
63
64
  right: ${space.l}px;
64
65
  `}
65
- />
66
+ style={{
67
+ right: space.l + measureScrollbar(),
68
+ }}
69
+ >
70
+ <EmojiPickerSkinTone />
71
+ </div>
66
72
  ) : null}
67
73
  </EmojiPickerFooter>
68
74
  ) : null}
@@ -1,8 +1,8 @@
1
1
  import {css} from "@linaria/core";
2
2
  import {compact} from "lodash";
3
- import {Button} from "../Button";
3
+ import {Button} from "../button";
4
4
  import {AntTabs} from "../antd";
5
- import {space, textStyles} from "../designSystem";
5
+ import {space, textStyles} from "../design-system";
6
6
  import {$TSFixMe} from "../tsfixme";
7
7
  import {AppIconPicker, AppIconPickerProps} from "./app-icon-picker";
8
8
  import {EmojiPicker, EmojiPickerProps} from "./emoji-picker";
@@ -2,8 +2,8 @@ import {Category, EmojiItem} from "@fibery/emoji-data";
2
2
  import {css} from "@linaria/core";
3
3
  import {memo} from "react";
4
4
  import {useInView} from "react-intersection-observer";
5
- import {IconButton} from "../../Button/icon-button";
6
- import {space, textStyles, themeVars} from "../../designSystem";
5
+ import {IconButton} from "../../button/icon-button";
6
+ import {space, textStyles, themeVars} from "../../design-system";
7
7
  import {Settings} from "../../icons/react";
8
8
  import {useEmojiDataStoreSelector} from "../stores/emoji-data-store";
9
9
  import {useEmojiPickerContentSettings} from "./content";
@@ -1,7 +1,8 @@
1
1
  import {createContext} from "@fibery/react/src/create-context";
2
+ import {measureScrollbar} from "@fibery/helpers/utils/measure-scrollbar";
2
3
  import {CSSProperties, css} from "@linaria/core";
3
4
  import {useMemo} from "react";
4
- import {themeVars} from "../../designSystem";
5
+ import {themeVars} from "../../design-system";
5
6
  import {contentHorizontalPadding, emojiPadding} from "./layout";
6
7
 
7
8
  const emojiPickerCss = css`
@@ -26,7 +27,7 @@ export const EmojiPickerContent: React.FC<React.PropsWithChildren<EmojiPickerCon
26
27
  emojiSize = 20,
27
28
  children,
28
29
  }) => {
29
- const width = perLine * (emojiSize + emojiPadding * 2) + contentHorizontalPadding * 2;
30
+ const width = perLine * (emojiSize + emojiPadding * 2) + contentHorizontalPadding * 2 + measureScrollbar();
30
31
 
31
32
  const contentSettings = useMemo(
32
33
  () => ({
@@ -1,7 +1,7 @@
1
1
  import {FC} from "react";
2
2
  import {EmojiItem, EmojiSkin} from "@fibery/emoji-data";
3
3
  import {css, cx} from "@linaria/core";
4
- import {themeVars} from "../../designSystem";
4
+ import {themeVars} from "../../design-system";
5
5
  import {useEmojiDataStoreSelector} from "../stores/emoji-data-store";
6
6
 
7
7
  const emojiWrapperCss = css`
@@ -1,5 +1,5 @@
1
1
  import {css} from "@linaria/core";
2
- import {space} from "../../designSystem";
2
+ import {space} from "../../design-system";
3
3
 
4
4
  const footerCss = css`
5
5
  position: relative;
@@ -1,5 +1,5 @@
1
1
  import {css} from "@linaria/core";
2
- import {space} from "../../designSystem";
2
+ import {space} from "../../design-system";
3
3
  import {contentHorizontalPadding} from "./layout";
4
4
 
5
5
  const pickerHeader = css`
@@ -1,4 +1,4 @@
1
- import {space} from "../../designSystem";
1
+ import {space} from "../../design-system";
2
2
 
3
3
  export const emojiPadding = space.s;
4
4
 
@@ -2,8 +2,8 @@ import {EmojiItem} from "@fibery/emoji-data";
2
2
  import {useComposedRefs} from "@fibery/react/src/use-composed-refs";
3
3
  import {css, cx} from "@linaria/core";
4
4
  import {startTransition, useId, useRef} from "react";
5
- import {IconButton} from "../../Button/icon-button";
6
- import {border, space, textStyles, themeVars} from "../../designSystem";
5
+ import {IconButton} from "../../button/icon-button";
6
+ import {border, space, textStyles, themeVars} from "../../design-system";
7
7
  import Close from "../../icons/react/Close";
8
8
  import Search from "../../icons/react/Search";
9
9
  import {useEmojiDataStore} from "../stores/emoji-data-store";
@@ -1,11 +1,11 @@
1
1
  import {EmojiSkin} from "@fibery/emoji-data";
2
2
  import {css, cx} from "@linaria/core";
3
3
  import {useState} from "react";
4
- import {textStyles, themeVars} from "../../designSystem";
4
+ import {textStyles, themeVars} from "../../design-system";
5
5
  import {Emoji} from "./emoji";
6
6
  import {useEmojiPickerCtx, useEmojiPickerI18N} from "./root";
7
7
  import {useEmojiSkin, useSetEmojiSkin} from "./skin-provider";
8
- import {IconButton} from "../../Button/icon-button";
8
+ import {IconButton} from "../../button/icon-button";
9
9
 
10
10
  const skinToneWrapperCss = css`
11
11
  display: flex;
@@ -1,8 +1,8 @@
1
1
  import {makeEmojiData} from "@fibery/emoji-data";
2
2
  import {Suspense, lazy} from "react";
3
- import {EmojiDataStoreProvider} from "./stores/emoji-data-store";
4
- import {getEmojiSet} from "./utils/emoji-set";
5
- import {loadEmojiData} from "./utils/load-emoji-data";
3
+ import {EmojiDataStoreProvider} from "./emoji-data-store";
4
+ import {getEmojiSet} from "../utils/emoji-set";
5
+ import {loadEmojiData} from "../utils/load-emoji-data";
6
6
 
7
7
  const LazyEmojiDataStoreComponent = lazy(async () => {
8
8
  const rawData = await loadEmojiData();
@@ -1,7 +1,7 @@
1
1
  import {RawCustomEmoji, makeEmojiData} from "@fibery/emoji-data";
2
2
  import {Suspense, lazy} from "react";
3
3
  import {EmojiDataStoreProvider} from "./emoji-data-store";
4
- import {getImageUrl} from "../../AppIconWithFallback";
4
+ import {getImageUrl} from "../../app-icon-with-fallback";
5
5
 
6
6
  const EMPTY_DATA = {
7
7
  aliases: {},
@@ -1,8 +1,8 @@
1
1
  import {css} from "@linaria/core";
2
- import {layout, border, space, textStyles, themeVars} from "./designSystem";
3
- import {Button} from "./Button/button";
2
+ import {layout, border, space, textStyles, themeVars} from "./design-system";
3
+ import {Button} from "./button/button";
4
4
  import CloseIcon from "./icons/react/Close";
5
- import {useTheme} from "./ThemeProvider";
5
+ import {useTheme} from "./theme-provider";
6
6
 
7
7
  const errorAlert = css`
8
8
  background-color: ${themeVars.errorBgColor};
@@ -1,7 +1,7 @@
1
1
  import {PureComponent, ReactNode} from "react";
2
2
  import {css} from "@linaria/core";
3
3
  import cn from "classnames";
4
- import {space, border, themeVars} from "./designSystem";
4
+ import {space, border, themeVars} from "./design-system";
5
5
 
6
6
  const loaderStyle = css`
7
7
  border-radius: ${border.radius6}px;
@@ -1,14 +1,14 @@
1
1
  import {css} from "@linaria/core";
2
- import {themeVars, iconSize as defaultIconSize, radius, viewBoxSize} from "../designSystem";
3
- import {generateIconFromAst} from "./generateIconFromAst";
2
+ import {themeVars, iconSize as defaultIconSize, viewBoxSize, border} from "../design-system";
3
+ import {generateIconFromAst} from "./generate-icon-from-ast";
4
4
  import {IconProps} from "./types";
5
- import {getShiftStyle} from "./getShiftStyle";
6
- import {getIconContainerStyle} from "./getIconContainerStyle";
5
+ import {getShiftStyle} from "./get-shift-style";
6
+ import {getIconContainerStyle} from "./get-icon-container-style";
7
7
  import {forwardRef} from "react";
8
8
 
9
9
  const iconStyle = css`
10
10
  shape-rendering: geometricprecision;
11
- border-radius: ${radius}px;
11
+ border-radius: ${border.radius4}px;
12
12
  `;
13
13
 
14
14
  export const Icon = forwardRef<HTMLSpanElement, IconProps>(function Icon(
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const Activity: 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":"M5.953 3.569C7.034 2.559 8.49 2 10 2s2.966.559 4.047 1.569c1.084 1.01 1.703 2.394 1.703 3.848 0 2.105.528 3.55 1.117 4.514l.008.014c.315.514.56.916.726 1.207.082.145.155.28.208.397.026.058.055.128.077.201a.934.934 0 0 1 .04.352 1.15 1.15 0 0 1-.135.474c-.105.187-.25.3-.334.363a.94.94 0 0 1-.298.144 1.492 1.492 0 0 1-.204.042 4.06 4.06 0 0 1-.405.031c-.29.01-.695.01-1.204.01H13.25v.084a3.25 3.25 0 0 1-6.5 0v-.083H4.654c-.51 0-.914 0-1.203-.011a4.06 4.06 0 0 1-.405-.031 1.492 1.492 0 0 1-.205-.042.94.94 0 0 1-.298-.144 1.151 1.151 0 0 1-.334-.363 1.152 1.152 0 0 1-.135-.474.937.937 0 0 1 .04-.352c.022-.073.05-.143.077-.2.053-.118.126-.253.208-.398.165-.29.411-.693.726-1.207l.008-.014c.589-.964 1.117-2.409 1.117-4.514 0-1.454.62-2.837 1.703-3.848ZM8.25 15.167v.083a1.75 1.75 0 0 0 3.5 0v-.083h-3.5ZM10 3.5c-1.143 0-2.23.424-3.024 1.165-.792.74-1.226 1.73-1.226 2.752 0 2.371-.599 4.088-1.337 5.296-.241.395-.432.707-.577.951.223.003.498.003.836.003h10.656c.338 0 .613 0 .835-.003a86.666 86.666 0 0 0-.576-.95c-.738-1.209-1.337-2.926-1.337-5.297 0-1.022-.434-2.013-1.226-2.752C12.23 3.925 11.144 3.5 10 3.5Z"},"children":[]}],"metadata":""}]},"name":"activity"};
6
+ const Activity: 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":"M5.953 3.569C7.034 2.559 8.49 2 10 2s2.966.559 4.047 1.569c1.084 1.01 1.703 2.394 1.703 3.848 0 2.105.528 3.55 1.117 4.514.272.445.483.76.64.994l.065.098c.077.114.154.23.21.331.028.052.064.122.093.202a.897.897 0 0 1 .051.38c-.009.104-.03.286-.134.472a1.149 1.149 0 0 1-.335.365.94.94 0 0 1-.299.145 1.497 1.497 0 0 1-.205.042 4.07 4.07 0 0 1-.404.03c-.28.01-.669.01-1.155.01H13.25v.25a3.25 3.25 0 0 1-6.5 0V15H4.606c-.486 0-.874 0-1.155-.01a4.068 4.068 0 0 1-.404-.03 1.495 1.495 0 0 1-.205-.042.939.939 0 0 1-.3-.145 1.15 1.15 0 0 1-.334-.365 1.155 1.155 0 0 1-.135-.473.897.897 0 0 1 .052-.38c.029-.08.065-.15.093-.2.056-.101.133-.218.21-.332l.065-.098c.156-.233.368-.549.64-.994.589-.964 1.117-2.409 1.117-4.514 0-1.454.62-2.837 1.703-3.848ZM8.25 15v.25a1.75 1.75 0 0 0 3.5 0V15h-3.5ZM10 3.5c-1.143 0-2.23.424-3.024 1.165-.792.74-1.226 1.73-1.226 2.752 0 2.371-.599 4.088-1.337 5.296-.196.32-.363.579-.5.786l.72.001h10.733c.283 0 .521 0 .72-.002a26.199 26.199 0 0 1-.499-.785c-.738-1.208-1.337-2.925-1.337-5.296 0-1.022-.434-2.013-1.226-2.752C12.23 3.925 11.144 3.5 10 3.5Z"},"children":[]}],"metadata":""}]},"name":"activity"};
7
7
 
8
8
  export default Activity;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const BellFilled: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M5.953 3.569C7.034 2.559 8.49 2 10 2s2.966.559 4.047 1.569c1.084 1.01 1.703 2.394 1.703 3.848 0 2.105.528 3.55 1.117 4.514.272.445.484.76.64.994l.066.098c.076.114.153.23.209.331.028.052.064.122.093.202a.895.895 0 0 1 .052.38c-.01.104-.031.286-.135.472a1.149 1.149 0 0 1-.335.365.94.94 0 0 1-.299.145 1.494 1.494 0 0 1-.205.042c-.12.016-.259.025-.404.03-.28.01-.669.01-1.155.01H4.606c-.486 0-.874 0-1.154-.01a4.068 4.068 0 0 1-.405-.03 1.495 1.495 0 0 1-.205-.042.939.939 0 0 1-.299-.145 1.15 1.15 0 0 1-.335-.365 1.155 1.155 0 0 1-.134-.473.897.897 0 0 1 .051-.38c.029-.08.065-.15.093-.2.056-.101.133-.218.21-.332l.065-.098c.157-.233.368-.549.64-.994.589-.964 1.117-2.409 1.117-4.514 0-1.454.62-2.837 1.703-3.848ZM12.5 16.625c0 1.035-1.12 1.875-2.5 1.875s-2.5-.84-2.5-1.875c0-.345.281-.625.626-.625h3.749c.345 0 .625.28.625.625Z"},"children":[]}],"metadata":""}]},"name":"bell-filled"};
7
+
8
+ export default BellFilled;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const BellOff: 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":"M3.28 2.22a.75.75 0 0 0-1.06 1.06L4.57 5.632a5.135 5.135 0 0 0-.32 1.785c-.001 2.105-.529 3.55-1.118 4.514-.275.45-.487.766-.644 1l-.06.089c-.077.113-.154.23-.21.33a1.35 1.35 0 0 0-.093.201.896.896 0 0 0-.052.38c.009.106.03.288.135.475.105.187.25.3.334.363a.94.94 0 0 0 .296.143c.072.021.144.034.204.043.12.018.26.027.405.033.295.011.705.012 1.224.012H6.75v.25a3.25 3.25 0 0 0 6.5 0V15H13.939l2.78 2.78a.75.75 0 1 0 1.061-1.06L3.28 2.22Zm9.16 11.28L5.793 6.855c-.03.185-.044.373-.044.562 0 2.371-.599 4.088-1.337 5.296-.196.32-.363.578-.5.785.208.002.459.002.759.002h7.767Zm-4.19 1.75V15h3.5v.25a1.75 1.75 0 1 1-3.5 0Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M10 2c-.975 0-1.926.233-2.768.669A.75.75 0 1 0 7.92 4 4.532 4.532 0 0 1 10 3.5c1.143 0 2.23.424 3.024 1.165.792.74 1.226 1.73 1.226 2.752 0 1.97.413 3.49.98 4.644a.75.75 0 1 0 1.346-.66c-.46-.938-.826-2.231-.826-3.984 0-1.454-.62-2.837-1.703-3.848C12.966 2.559 11.51 2 10 2Z"},"children":[]}],"metadata":""}]},"name":"bell-off"};
7
+
8
+ export default BellOff;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const BellRinging: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M18.78 3.72a.75.75 0 1 1-1.06 1.06l-2.5-2.5a.75.75 0 0 1 1.06-1.06l2.5 2.5ZM1.22 4.78a.75.75 0 0 1 0-1.06l2.5-2.5a.75.75 0 0 1 1.06 1.06l-2.5 2.5a.75.75 0 0 1-1.06 0Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M5.953 3.569C7.034 2.559 8.49 2 10 2s2.966.559 4.047 1.569c1.084 1.01 1.703 2.394 1.703 3.848 0 2.105.528 3.55 1.117 4.514.272.445.483.76.64.994l.065.098c.077.114.154.23.21.331.028.052.064.122.093.202a.897.897 0 0 1 .051.38c-.009.104-.03.286-.134.472a1.149 1.149 0 0 1-.335.365.94.94 0 0 1-.299.145 1.497 1.497 0 0 1-.205.042 4.07 4.07 0 0 1-.404.03c-.28.01-.669.01-1.155.01H13.25v.25a3.25 3.25 0 0 1-6.5 0V15H4.606c-.486 0-.874 0-1.155-.01a4.068 4.068 0 0 1-.404-.03 1.495 1.495 0 0 1-.205-.042.939.939 0 0 1-.3-.145 1.15 1.15 0 0 1-.334-.365 1.155 1.155 0 0 1-.135-.473.897.897 0 0 1 .052-.38c.029-.08.065-.15.093-.2.056-.101.133-.218.21-.332l.065-.098c.156-.233.368-.549.64-.994.589-.964 1.117-2.409 1.117-4.514 0-1.454.62-2.837 1.703-3.848ZM8.25 15v.25a1.75 1.75 0 0 0 3.5 0V15h-3.5ZM10 3.5c-1.143 0-2.23.424-3.024 1.165-.792.74-1.226 1.73-1.226 2.752 0 2.371-.599 4.088-1.337 5.296-.196.32-.363.579-.5.786l.72.001h10.733c.283 0 .521 0 .72-.002a26.199 26.199 0 0 1-.499-.785c-.738-1.208-1.337-2.925-1.337-5.296 0-1.022-.434-2.013-1.226-2.752C12.23 3.925 11.144 3.5 10 3.5Z"},"children":[]}],"metadata":""}]},"name":"bell-ringing"};
7
+
8
+ export default BellRinging;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const Clock: 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":"M2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M10.75 6.375a.75.75 0 0 0-1.5 0V10c0 .199.079.39.22.53l2.265 2.266a.75.75 0 0 0 1.061-1.06L10.75 9.688V6.375Z"},"children":[]}],"metadata":""}]},"name":"clock"};
7
+
8
+ export default Clock;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const ClockAlarm: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M18.78 3.72a.75.75 0 1 1-1.06 1.06l-2.5-2.5a.75.75 0 0 1 1.06-1.06l2.5 2.5ZM1.22 4.78a.75.75 0 0 1 0-1.06l2.5-2.5a.75.75 0 0 1 1.06 1.06l-2.5 2.5a.75.75 0 0 1-1.06 0ZM10.75 6.375a.75.75 0 0 0-1.5 0V10c0 .199.079.39.22.53l2.265 2.266a.75.75 0 0 0 1.061-1.06L10.75 9.688V6.375Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13Z"},"children":[]}],"metadata":""}]},"name":"clock-alarm"};
7
+
8
+ export default ClockAlarm;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const Copy: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M7.5 9.25c0-.966.784-1.75 1.75-1.75h7c.966 0 1.75.784 1.75 1.75v7A1.75 1.75 0 0 1 16.25 18h-7a1.75 1.75 0 0 1-1.75-1.75v-7ZM9.25 9a.25.25 0 0 0-.25.25v7c0 .138.112.25.25.25h7a.25.25 0 0 0 .25-.25v-7a.25.25 0 0 0-.25-.25h-7Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M3.75 2A1.75 1.75 0 0 0 2 3.75v7c0 .966.784 1.75 1.75 1.75H6V11H3.75a.25.25 0 0 1-.25-.25v-7a.25.25 0 0 1 .25-.25h7a.25.25 0 0 1 .25.25V6h1.5V3.75A1.75 1.75 0 0 0 10.75 2h-7Z"},"children":[]}],"metadata":""}]},"name":"copy"};
6
+ const Copy: 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":"M7.5 9.25c0-.966.784-1.75 1.75-1.75h7c.966 0 1.75.784 1.75 1.75v7A1.75 1.75 0 0 1 16.25 18h-7a1.75 1.75 0 0 1-1.75-1.75v-7ZM9.25 9a.25.25 0 0 0-.25.25v7c0 .138.112.25.25.25h7a.25.25 0 0 0 .25-.25v-7a.25.25 0 0 0-.25-.25h-7Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M3.75 2A1.75 1.75 0 0 0 2 3.75v7c0 .966.784 1.75 1.75 1.75H6V11H3.75a.25.25 0 0 1-.25-.25v-7a.25.25 0 0 1 .25-.25h7a.25.25 0 0 1 .25.25V6h1.5V3.75A1.75 1.75 0 0 0 10.75 2h-7Z"},"children":[]}],"metadata":""}]},"name":"copy"};
7
7
 
8
8
  export default Copy;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const Export: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M9.47 1.22a.75.75 0 0 1 1.06 0l2.499 2.5a.75.75 0 0 1-1.06 1.06l-1.22-1.22v7.69a.75.75 0 1 1-1.499 0V3.56L8.031 4.78a.75.75 0 1 1-1.06-1.06l2.499-2.5Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M3.5 8.25a.75.75 0 0 1 .75-.75H5A.75.75 0 0 0 5 6h-.75A2.25 2.25 0 0 0 2 8.25v6.5A2.25 2.25 0 0 0 4.25 17h11.5A2.25 2.25 0 0 0 18 14.75v-6.5A2.25 2.25 0 0 0 15.75 6H15a.75.75 0 0 0 0 1.5h.75a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-.75.75H4.25a.75.75 0 0 1-.75-.75v-6.5Z"},"children":[]}],"metadata":""}]},"name":"export"};
7
+
8
+ export default Export;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const ExtensionComments: 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":"M13.435 17.5c.585 0 .932-.405.932-1.038V14.72h.289c2.087 0 3.344-1.23 3.344-3.348V5.848C18 3.737 16.78 2.5 14.605 2.5h-9.21C3.228 2.5 2 3.737 2 5.848v5.524c0 2.111 1.228 3.348 3.395 3.348h4.349l2.477 2.147c.499.434.802.633 1.214.633Zm-.354-1.592-2.29-2.226c-.31-.312-.52-.383-.96-.383H5.445c-1.351 0-2.009-.676-2.009-1.97V5.891c0-1.294.658-1.97 2.009-1.97h9.116c1.358 0 2 .676 2 1.97v5.438c0 1.294-.642 1.97-2 1.97h-.889c-.412 0-.592.163-.592.583v2.026Zm.13-9.13a.648.648 0 0 0-.652-.643H6.032a.648.648 0 0 0-.653.642c0 .355.293.642.653.642h6.527c.36 0 .652-.287.652-.642ZM9.948 8.703c.36 0 .653.288.653.642a.648.648 0 0 1-.653.643H6.032a.648.648 0 0 1-.653-.643c0-.354.293-.642.653-.642h3.916Z"},"children":[]}],"metadata":""}]},"name":"extension-comments"};
6
+ const ExtensionComments: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M6 7.75A.75.75 0 0 1 6.75 7h6.5a.75.75 0 0 1 0 1.5h-6.5A.75.75 0 0 1 6 7.75ZM6.75 10a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M2 5.75A2.75 2.75 0 0 1 4.75 3h10.5A2.75 2.75 0 0 1 18 5.75v7.5A2.75 2.75 0 0 1 15.25 16h-.75v1.75a.75.75 0 0 1-1.13.646L9.296 16H4.75A2.75 2.75 0 0 1 2 13.25v-7.5ZM4.75 4.5c-.69 0-1.25.56-1.25 1.25v7.5c0 .69.56 1.25 1.25 1.25H9.5c.134 0 .265.036.38.104L13 16.439V15.25a.75.75 0 0 1 .75-.75h1.5c.69 0 1.25-.56 1.25-1.25v-7.5c0-.69-.56-1.25-1.25-1.25H4.75Z"},"children":[]}],"metadata":""}]},"name":"extension-comments"};
7
7
 
8
8
  export default ExtensionComments;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const Favorites: 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":"M9.469 1.532a1.195 1.195 0 0 1 1.062 0c.289.143.444.397.524.542.086.154.175.354.268.562l1.643 3.685 4.013.424c.226.024.444.047.617.08.162.033.452.101.677.332.262.267.383.64.329 1.01-.047.32-.242.545-.354.666-.12.13-.283.276-.452.429l-2.997 2.7.837 3.948c.047.223.093.437.114.613.02.163.044.46-.106.746-.173.33-.49.562-.859.624-.318.054-.593-.06-.743-.13-.16-.074-.35-.184-.547-.297L10 15.45l-3.496 2.016c-.197.113-.386.223-.547.297-.15.07-.424.184-.742.13a1.195 1.195 0 0 1-.86-.624c-.15-.286-.125-.582-.105-.746.02-.176.066-.39.114-.613l.837-3.947-2.998-2.701c-.169-.153-.331-.3-.452-.429-.112-.121-.306-.347-.353-.666-.054-.37.067-.743.328-1.01.226-.23.516-.3.678-.331.173-.034.39-.057.617-.081l.029-.003 3.984-.42 1.63-3.66.013-.026c.092-.208.181-.408.268-.562.08-.145.235-.399.524-.542Zm.53 1.82-1.604 3.6-.012.029c-.044.1-.122.279-.254.425a1.195 1.195 0 0 1-.402.292c-.18.08-.375.1-.483.11-.011 0-.021.002-.03.003l-3.92.414 2.928 2.639.023.02c.08.072.227.202.326.373.083.145.136.306.153.472a1.56 1.56 0 0 1-.045.493l-.006.03-.818 3.857 3.415-1.97.026-.015c.094-.055.263-.155.456-.196.163-.034.332-.034.496 0 .193.041.362.14.455.196l.027.015 3.415 1.97-.818-3.857a1.56 1.56 0 0 1-.051-.524c.017-.165.07-.326.153-.471.098-.17.245-.3.326-.373a1.87 1.87 0 0 0 .023-.02l2.928-2.64-3.92-.413-.03-.003a1.56 1.56 0 0 1-.483-.11 1.195 1.195 0 0 1-.402-.292 1.558 1.558 0 0 1-.266-.454L10 3.352Z"},"children":[]}],"metadata":""}]},"name":"favorites"};
6
+ const Favorites: 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":"M9.469 1.625a1.195 1.195 0 0 1 1.062 0c.289.143.444.397.524.541.086.155.175.355.268.562l1.643 3.686 4.013.424c.226.023.444.046.617.08.162.033.451.101.677.332.262.267.383.64.329 1.01-.048.32-.242.545-.354.666-.12.13-.283.276-.452.428L14.8 12.056l.837 3.947c.047.223.093.437.114.612.02.164.044.46-.106.747-.173.33-.49.562-.86.624-.317.054-.592-.06-.742-.13-.16-.075-.35-.184-.547-.298L10 15.542l-3.496 2.016c-.197.114-.386.224-.547.298-.15.07-.424.184-.742.13a1.195 1.195 0 0 1-.86-.624c-.15-.286-.125-.583-.105-.747.02-.175.066-.39.114-.612l.837-3.947-2.998-2.702c-.169-.152-.331-.299-.452-.428-.112-.121-.306-.347-.353-.666-.054-.37.067-.743.328-1.01.226-.23.516-.3.678-.331a7.506 7.506 0 0 1 .646-.084l3.984-.42 1.63-3.66.013-.027c.092-.207.181-.407.268-.562.08-.144.235-.398.524-.541Zm.53 1.82-1.604 3.6a4.657 4.657 0 0 0-.013.028c-.043.1-.122.28-.253.426a1.195 1.195 0 0 1-.402.292 1.56 1.56 0 0 1-.514.112l-3.92.414 2.928 2.64a1.56 1.56 0 0 1 .35.393c.083.144.136.305.153.472a1.56 1.56 0 0 1-.051.523l-.818 3.856 3.415-1.97.026-.015c.094-.055.263-.154.456-.195.163-.035.332-.035.496 0 .193.041.362.14.455.195l.027.016 3.415 1.97-.818-3.857a1.56 1.56 0 0 1-.051-.524c.017-.166.07-.327.153-.471.098-.171.245-.301.326-.373l.023-.02 2.928-2.64-3.92-.414-.03-.003c-.109-.01-.304-.03-.484-.11a1.194 1.194 0 0 1-.401-.291 1.56 1.56 0 0 1-.254-.426l-.012-.028L10 3.445Z"},"children":[]}],"metadata":""}]},"name":"favorites"};
7
7
 
8
8
  export default Favorites;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const FavoritesChecked: 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":"M9.469 1.532a1.195 1.195 0 0 1 1.062 0c.289.143.444.397.524.542.086.154.175.354.268.562l1.643 3.685 4.013.424c.226.024.444.047.617.08.162.033.452.101.677.332.262.267.383.64.329 1.01-.047.32-.242.545-.354.666-.12.13-.283.276-.452.429l-2.997 2.7.837 3.948c.047.223.093.437.114.613.02.163.044.46-.106.746-.173.33-.49.562-.859.624-.318.054-.593-.06-.743-.13-.16-.074-.35-.184-.547-.297L10 15.45l-3.496 2.016c-.197.113-.386.223-.547.297-.15.07-.424.184-.742.13a1.195 1.195 0 0 1-.86-.624c-.15-.286-.125-.582-.105-.746.02-.176.066-.39.114-.613l.837-3.947-2.998-2.701c-.169-.153-.331-.3-.452-.429-.112-.121-.306-.347-.353-.666-.054-.37.067-.743.328-1.01.226-.23.516-.3.678-.331.173-.034.39-.057.617-.081l.029-.003 3.984-.42 1.63-3.66.013-.026c.092-.208.181-.408.268-.562.08-.145.235-.399.524-.542Z"},"children":[]}],"metadata":""}]},"name":"favorites-checked"};
6
+ const FavoritesChecked: 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":"M9.469 1.625a1.195 1.195 0 0 1 1.062 0c.289.143.444.397.524.541.086.155.175.355.268.562l1.643 3.686 4.013.424c.226.023.444.046.617.08.162.033.451.101.677.332.262.267.383.64.329 1.01-.048.32-.242.545-.354.666-.12.13-.283.276-.452.428L14.8 12.056l.837 3.947c.047.223.093.437.114.612.02.164.044.46-.106.747-.173.33-.49.562-.86.624-.317.054-.592-.06-.742-.13-.16-.075-.35-.184-.547-.298L10 15.542l-3.496 2.016c-.197.114-.386.224-.547.298-.15.07-.424.184-.742.13a1.195 1.195 0 0 1-.86-.624c-.15-.286-.125-.583-.105-.747.02-.175.066-.39.114-.612l.837-3.947-2.998-2.702c-.169-.152-.331-.299-.452-.428-.112-.121-.306-.347-.353-.666-.054-.37.067-.743.328-1.01.226-.23.516-.3.678-.331a7.506 7.506 0 0 1 .646-.084l3.984-.42 1.63-3.66.013-.027c.092-.207.181-.407.268-.562.08-.144.235-.398.524-.541Z"},"children":[]}],"metadata":""}]},"name":"favorites-checked"};
7
7
 
8
8
  export default FavoritesChecked;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const FavoritesOff: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"m10.001 3.445 1.476 3.312L12.6 7.879c.06.01.114.015.155.019l.031.003 3.92.414-1.93 1.74-.318.288a.75.75 0 0 0 1.004 1.114l1.345-1.211a.782.782 0 0 0 .043-.041l.946-.853c.17-.153.332-.3.452-.429.112-.121.306-.347.354-.666a1.195 1.195 0 0 0-.329-1.01c-.226-.23-.515-.3-.677-.331a7.511 7.511 0 0 0-.617-.081l-4.013-.424-1.643-3.685a7.506 7.506 0 0 0-.268-.562c-.08-.145-.235-.399-.524-.542a1.195 1.195 0 0 0-1.062 0c-.29.143-.444.397-.524.542-.087.154-.176.354-.268.562l-.38.85.002.003-.314.706a.75.75 0 1 0 1.37.61l.646-1.45Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M5.43 6.58 2.17 3.32a.75.75 0 0 1 1.06-1.06l14.5 14.5a.75.75 0 1 1-1.06 1.06l-.908-.907a1.09 1.09 0 0 1-.118.446c-.173.33-.49.562-.86.624-.317.054-.592-.06-.742-.13-.16-.074-.35-.184-.547-.297L10 15.54l-3.496 2.016c-.197.113-.386.223-.547.297-.15.07-.424.184-.742.13a1.195 1.195 0 0 1-.86-.624c-.15-.286-.125-.583-.105-.747.02-.175.066-.39.114-.612l.837-3.947L2.203 9.35c-.169-.152-.331-.298-.452-.428-.112-.121-.306-.347-.353-.666-.054-.37.067-.743.328-1.01.226-.23.516-.3.678-.331.173-.034.39-.057.617-.081L5.43 6.58Zm8.472 8.472.243 1.147-3.415-1.97-.027-.015c-.093-.055-.262-.155-.455-.196a1.197 1.197 0 0 0-.496 0c-.193.041-.362.14-.456.196l-.026.015-3.415 1.97.818-3.857.006-.03a1.56 1.56 0 0 0 .045-.493 1.195 1.195 0 0 0-.153-.472 1.56 1.56 0 0 0-.327-.373l-.023-.02-2.928-2.64 3.501-.369 7.108 7.107Z"},"children":[]}],"metadata":""}]},"name":"favorites-off"};
7
+
8
+ export default FavoritesOff;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const GlobeSimple: 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":"M2.537 9.25h3.064c.023-.397.068-.787.131-1.168.356-2.137 1.303-3.967 2.342-5.332a7.506 7.506 0 0 0-5.537 6.5ZM10 2.795c-1.16 1.22-2.394 3.17-2.788 5.534-.05.3-.086.607-.108.921h5.792a9.458 9.458 0 0 0-.108-.921C12.395 5.965 11.16 4.016 10 2.795Zm2.876 7.955H7.124c.184 1.948 1.002 4.107 2.876 6.36 1.874-2.253 2.692-4.412 2.876-6.36Zm-4.641 6.541c-1.678-2.263-2.45-4.482-2.616-6.541H2.537a7.506 7.506 0 0 0 5.698 6.541Zm3.53 0c1.678-2.263 2.45-4.482 2.616-6.541h3.082a7.506 7.506 0 0 1-5.698 6.541Zm5.698-8.041h-3.064a10.976 10.976 0 0 0-.131-1.168c-.356-2.137-1.303-3.967-2.342-5.332a7.506 7.506 0 0 1 5.537 6.5ZM1 10a9 9 0 1 1 18 0 9 9 0 0 1-18 0Z"},"children":[]}],"metadata":""}]},"name":"globe-simple"};
7
+
8
+ export default GlobeSimple;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const Import: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M9.47 11.78a.75.75 0 0 0 1.06 0l2.499-2.5a.75.75 0 0 0-1.06-1.06l-1.22 1.22V1.75a.75.75 0 1 0-1.499 0v7.69L8.031 8.22a.75.75 0 1 0-1.06 1.06l2.499 2.5Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M3.5 8.25a.75.75 0 0 1 .75-.75H5A.75.75 0 0 0 5 6h-.75A2.25 2.25 0 0 0 2 8.25v6.5A2.25 2.25 0 0 0 4.25 17h11.5A2.25 2.25 0 0 0 18 14.75v-6.5A2.25 2.25 0 0 0 15.75 6H15a.75.75 0 0 0 0 1.5h.75a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-.75.75H4.25a.75.75 0 0 1-.75-.75v-6.5Z"},"children":[]}],"metadata":""}]},"name":"import"};
7
+
8
+ export default Import;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const Lab: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M6.5 15.5H8V14H6.5v1.5ZM10 12.5H8.5V11H10v1.5ZM12 14h1.5v-1.5H12V14Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M12.725 5.867V3.5h.525a.75.75 0 0 0 0-1.5h-6.5a.75.75 0 0 0 0 1.5h.526v2.367l-4.367 8.732c-.16.315-.246.661-.253 1.014v.005A2.352 2.352 0 0 0 5.008 18h9.984a2.352 2.352 0 0 0 2.352-2.352v-.014a2.338 2.338 0 0 0-.252-1.014l-4.367-8.753ZM8.775 3.5v2.72l-.873 1.748c.244-.026.478-.03.703-.016.695.046 1.255.27 1.725.465l.1.042c.44.184.799.335 1.233.407.255.043.546.06.894.024l-1.332-2.67V3.5h-2.45ZM4.248 15.277 7.021 9.73c.647-.25 1.116-.304 1.487-.28.426.028.787.162 1.244.352l.116.05c.42.176.933.392 1.548.495.54.09 1.14.092 1.844-.047l2.49 4.993.004.006c.056.11.087.233.09.357a.852.852 0 0 1-.851.845H5.008a.852.852 0 0 1-.852-.86.838.838 0 0 1 .091-.363Z"},"children":[]}],"metadata":""}]},"name":"lab"};
7
+
8
+ export default Lab;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const Link: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M3.982 8.862a5.06 5.06 0 0 0 7.156 7.156l1.22-1.22a.746.746 0 1 0-1.056-1.056l-1.22 1.22a3.567 3.567 0 0 1-5.044-5.044l1.22-1.22a.747.747 0 0 0-1.056-1.056l-1.22 1.22Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M7.032 11.912a.747.747 0 0 0 1.056 1.056l4.88-4.88a.746.746 0 1 0-1.056-1.056l-4.88 4.88Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M7.642 5.202a.747.747 0 1 0 1.056 1.056l1.22-1.22a3.567 3.567 0 0 1 5.044 5.044l-1.22 1.22a.746.746 0 1 0 1.056 1.056l1.22-1.22a5.06 5.06 0 0 0-7.156-7.156l-1.22 1.22Z"},"children":[]}],"metadata":""}]},"name":"link"};
7
+
8
+ export default Link;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const Monitor: 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":"M2 4.5a2.25 2.25 0 0 1 2.25-2.25h11.5A2.25 2.25 0 0 1 18 4.5v8.25A2.25 2.25 0 0 1 15.75 15h-5v1.75h2.75a.75.75 0 0 1 0 1.5h-7a.75.75 0 0 1 0-1.5h2.75V15h-5A2.25 2.25 0 0 1 2 12.75V4.5Zm2.25-.75a.75.75 0 0 0-.75.75v8.25c0 .414.336.75.75.75h11.5a.75.75 0 0 0 .75-.75V4.5a.75.75 0 0 0-.75-.75H4.25Z"},"children":[]}],"metadata":""}]},"name":"monitor"};
7
+
8
+ export default Monitor;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const Network: 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":"M9 2a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h.25v1.25H6.667a2.417 2.417 0 0 0-2.417 2.417V12H4a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-.25v-.333a.917.917 0 0 1 .917-.917h6.666a.917.917 0 0 1 .917.917V12H14a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-.25v-.333a2.417 2.417 0 0 0-2.417-2.417H10.75V8H11a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H9Zm-.5 2a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5H9a.5.5 0 0 1-.5-.5V4ZM4 13.5h2a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5H4a.5.5 0 0 1-.5-.5v-2a.5.5 0 0 1 .5-.5Zm10 0a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5h-2Z"},"children":[]}],"metadata":""}]},"name":"network"};
7
+
8
+ export default Network;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const Pencil: 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":"M16.405 3.595a3.402 3.402 0 0 0-4.81 0L2.72 12.47a.75.75 0 0 0-.22.53v3.5a1 1 0 0 0 1 1H7a.75.75 0 0 0 .53-.22l8.875-8.875a3.402 3.402 0 0 0 0-4.81Zm-3.75 1.06a1.902 1.902 0 0 1 2.69 2.69l-.558.558-2.69-2.69.558-.558Zm-1.442 1.442L4 13.311V16h2.69l7.213-7.213-2.69-2.69Z"},"children":[]}],"metadata":""}]},"name":"pencil"};
7
+
8
+ export default Pencil;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const People: 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.37 11.149C9.323 10.672 8.104 10.5 7 10.5s-2.323.172-3.37.649c-1.06.483-1.983 1.302-2.351 2.587-.161.562-.152 1.244-.12 1.725.06.924.847 1.539 1.684 1.539h8.314c.837 0 1.625-.615 1.685-1.539.031-.48.04-1.163-.121-1.725-.368-1.285-1.29-2.104-2.351-2.587Zm.909 3c-.216-.755-.756-1.282-1.531-1.635C8.959 12.154 7.97 12 7 12c-.97 0-1.96.155-2.748.514-.775.353-1.315.88-1.531 1.635-.085.298-.096.761-.066 1.215a.12.12 0 0 0 .044.086c.03.027.08.05.144.05h8.314a.218.218 0 0 0 .144-.05.12.12 0 0 0 .044-.086c.03-.454.02-.917-.066-1.215ZM10.25 6.25a3.25 3.25 0 1 0-6.5 0 3.25 3.25 0 0 0 6.5 0Zm-1.5 0a1.75 1.75 0 1 0-3.5 0 1.75 1.75 0 0 0 3.5 0ZM13.818 5a2.75 2.75 0 1 1 0 5.5 2.75 2.75 0 0 1 0-5.5Zm0 1.5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M14.008 12.015a.75.75 0 0 0 .655.834c1.371.165 2.36.711 2.634 1.67.065.227.075.595.051.971a.07.07 0 0 1-.038.01h-2.06a.75.75 0 0 0 0 1.5h2.06c.759 0 1.48-.558 1.535-1.405.026-.406.035-.997-.106-1.49-.534-1.863-2.356-2.56-3.897-2.745a.75.75 0 0 0-.834.655Z"},"children":[]}],"metadata":""}]},"name":"people"};
7
+
8
+ export default People;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const RicheditorCommentCreate: 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.257 19.27c.672 0 1.07-.473 1.07-1.211v-2.034h.333c2.399 0 3.843-1.436 3.843-3.91v-6.45c0-2.465-1.403-3.91-3.901-3.91H5.018c-2.49 0-3.901 1.445-3.901 3.91v6.45c0 2.466 1.41 3.91 3.901 3.91h4.997l2.847 2.507c.573.506.922.738 1.395.738Zm-.407-1.859-2.631-2.598c-.357-.365-.598-.448-1.104-.448H5.076c-1.552 0-2.307-.789-2.307-2.3v-6.35c0-1.51.755-2.299 2.307-2.299h10.476c1.56 0 2.3.789 2.3 2.3v6.35c0 1.51-.74 2.299-2.3 2.299H14.53c-.473 0-.68.19-.68.68v2.366ZM14 6.75a.75.75 0 0 0-.75-.75h-7.5a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 .75-.75ZM10.25 9a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5h4.5Z"},"children":[]}],"metadata":""}]},"name":"richeditor-comment-create"};
6
+ const RicheditorCommentCreate: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M6 7.75A.75.75 0 0 1 6.75 7h6.5a.75.75 0 0 1 0 1.5h-6.5A.75.75 0 0 1 6 7.75ZM6.75 10a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M2 5.75A2.75 2.75 0 0 1 4.75 3h10.5A2.75 2.75 0 0 1 18 5.75v7.5A2.75 2.75 0 0 1 15.25 16h-.75v1.75a.75.75 0 0 1-1.13.646L9.296 16H4.75A2.75 2.75 0 0 1 2 13.25v-7.5ZM4.75 4.5c-.69 0-1.25.56-1.25 1.25v7.5c0 .69.56 1.25 1.25 1.25H9.5c.134 0 .265.036.38.104L13 16.439V15.25a.75.75 0 0 1 .75-.75h1.5c.69 0 1.25-.56 1.25-1.25v-7.5c0-.69-.56-1.25-1.25-1.25H4.75Z"},"children":[]}],"metadata":""}]},"name":"richeditor-comment-create"};
7
7
 
8
8
  export default RicheditorCommentCreate;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const RicheditorLinkCreate: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"m9.763 10.362 1.54-1.587c.416-.416.65-.98.652-1.566A2.199 2.199 0 0 0 9.749 5a2.221 2.221 0 0 0-1.565.652L4.11 9.723c-.4.4-.632.937-.649 1.501a2.191 2.191 0 0 0 .561 1.53l.09.108a.9.9 0 0 1-.652 1.522.89.89 0 0 1-.63-.267 2.443 2.443 0 0 1-.186-.16 3.973 3.973 0 0 1-.97-2.76 4.011 4.011 0 0 1 1.18-2.687l4.075-4.124a4.019 4.019 0 0 1 2.795-1.062 3.98 3.98 0 0 1 3.907 3.911 4.027 4.027 0 0 1-1.061 2.798l-1.514 1.55a.888.888 0 0 1-1.494-.598.898.898 0 0 1 .202-.623Zm-3.104 4.517A3.997 3.997 0 0 1 5.5 12.052a4.037 4.037 0 0 1 1.173-2.833l1.514-1.551a.897.897 0 0 1 1.217.006.89.89 0 0 1 .075 1.216l-1.54 1.55c-.416.417-.65.98-.652 1.567a2.2 2.2 0 0 0 2.206 2.208 2.222 2.222 0 0 0 1.565-.652l4.075-4.07c.4-.4.633-.937.65-1.501a2.191 2.191 0 0 0-.562-1.53l-.09-.108a.9.9 0 0 1 .652-1.522.889.889 0 0 1 .63.267c.066.065.128.133.186.205a3.982 3.982 0 0 1 .966 2.76 4.02 4.02 0 0 1-1.175 2.687l-4.075 4.079a4.03 4.03 0 0 1-2.824 1.192 3.99 3.99 0 0 1-2.832-1.143Z"},"children":[]}],"metadata":""}]},"name":"richeditor-link-create"};
6
+ const RicheditorLinkCreate: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M3.982 8.862a5.06 5.06 0 0 0 7.156 7.156l1.22-1.22a.746.746 0 1 0-1.056-1.056l-1.22 1.22a3.567 3.567 0 0 1-5.044-5.044l1.22-1.22a.747.747 0 0 0-1.056-1.056l-1.22 1.22Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M7.032 11.912a.747.747 0 0 0 1.056 1.056l4.88-4.88a.746.746 0 1 0-1.056-1.056l-4.88 4.88Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M7.642 5.202a.747.747 0 1 0 1.056 1.056l1.22-1.22a3.567 3.567 0 0 1 5.044 5.044l-1.22 1.22a.746.746 0 1 0 1.056 1.056l1.22-1.22a5.06 5.06 0 0 0-7.156-7.156l-1.22 1.22Z"},"children":[]}],"metadata":""}]},"name":"richeditor-link-create"};
7
7
 
8
8
  export default RicheditorLinkCreate;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const RicheditorOpenLink: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M14.25 5H9a.75.75 0 0 0 0 1.5h3.44l-7.22 7.22a.75.75 0 1 0 1.06 1.06l7.22-7.22V11a.75.75 0 0 0 1.5 0V5.75a.75.75 0 0 0-.75-.75Z"},"children":[]}],"metadata":""}]},"name":"richeditor-open-link"};
6
+ const RicheditorOpenLink: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M5.75 4.5c-.69 0-1.25.56-1.25 1.25v8.5c0 .69.56 1.25 1.25 1.25h8.5c.69 0 1.25-.56 1.25-1.25v-2.5a.75.75 0 0 1 1.5 0v2.5A2.75 2.75 0 0 1 14.25 17h-8.5A2.75 2.75 0 0 1 3 14.25v-8.5A2.75 2.75 0 0 1 5.75 3h2.5a.75.75 0 0 1 0 1.5h-2.5Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M16.25 3H12a.75.75 0 0 0 0 1.5h2.44l-6.22 6.22a.75.75 0 1 0 1.06 1.06l6.22-6.22V8A.75.75 0 0 0 17 8V3.75a.75.75 0 0 0-.75-.75Z"},"children":[]}],"metadata":""}]},"name":"richeditor-open-link"};
7
7
 
8
8
  export default RicheditorOpenLink;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const RicheditorUnlink: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M4.213 8.869c.21.027.423-.03.59-.16a.806.806 0 0 0-.384-1.437L3.025 6.92a.787.787 0 0 0-.856.27.8.8 0 0 0 .444 1.27l1.394.376a.614.614 0 0 0 .206.032Zm3.059-4.463a.799.799 0 0 0 .792.59.645.645 0 0 0 .206 0 .793.793 0 0 0 .476-.372.804.804 0 0 0 .08-.602l-.373-1.405a.801.801 0 0 0-.663-.61.787.787 0 0 0-.803.405.803.803 0 0 0-.064.62l.349 1.374Zm3.827 7.984a.79.79 0 0 0-1.149 0l-2.773 2.842a1.744 1.744 0 0 1-2.425 0 1.718 1.718 0 0 1-.507-1.222 1.728 1.728 0 0 1 .507-1.221l2.821-2.795a.798.798 0 0 0 .222-.897.799.799 0 0 0-.448-.452.787.787 0 0 0-.891.224L3.61 11.655a3.345 3.345 0 0 0-.972 2.363 3.364 3.364 0 0 0 .972 2.363 3.317 3.317 0 0 0 2.346.98 3.297 3.297 0 0 0 2.345-.98l2.797-2.818a.798.798 0 0 0 .189-.907.797.797 0 0 0-.189-.267ZM4.546 5.675a.79.79 0 0 0 1.348-.563.801.801 0 0 0-.23-.563L4.64 3.52a.789.789 0 0 0-1.076.042.801.801 0 0 0-.041 1.084l1.022 1.03Zm12.742 5.852-1.395-.375a.786.786 0 0 0-.882.261.8.8 0 0 0 .486 1.28l1.395.375h.206c.21.028.422-.03.59-.16a.806.806 0 0 0-.384-1.437l-.016.056Zm-4.66 4.056a.803.803 0 0 0-.372-.483.79.79 0 0 0-1.078.296.804.804 0 0 0-.079.602l.373 1.405a.798.798 0 0 0 .792.591.898.898 0 0 0 .206 0 .788.788 0 0 0 .485-.373.804.804 0 0 0 .078-.609l-.404-1.429Zm2.727-1.254a.79.79 0 0 0-1.076.042.801.801 0 0 0-.042 1.084l1.022 1.03a.79.79 0 0 0 1.348-.563.802.802 0 0 0-.23-.563l-1.022-1.03Zm1.886-8.327a3.339 3.339 0 0 0-.533-1.873 3.302 3.302 0 0 0-1.483-1.25 3.274 3.274 0 0 0-3.626.728L8.8 6.45a.816.816 0 0 0-.172.89.816.816 0 0 0 .75.501.804.804 0 0 0 .571-.24l2.774-2.843a1.744 1.744 0 0 1 2.425 0 1.718 1.718 0 0 1 .506 1.221A1.728 1.728 0 0 1 15.15 7.2l-2.821 2.794a.801.801 0 0 0 0 1.126.79.79 0 0 0 1.117 0l2.845-2.786a3.358 3.358 0 0 0 .95-2.332Z"},"children":[]}],"metadata":""}]},"name":"richeditor-unlink"};
6
+ const RicheditorUnlink: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M3.28 2.22a.75.75 0 0 0-1.06 1.06L8.94 10l-1.922 1.921a.75.75 0 1 0 1.061 1.06L10 11.062l6.72 6.72a.75.75 0 1 0 1.06-1.061L3.28 2.22Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M3.954 8.857a5.083 5.083 0 0 0 7.19 7.189l.612-.613a.75.75 0 1 0-1.06-1.06l-.614.612a3.583 3.583 0 1 1-5.067-5.067l.613-.613a.75.75 0 1 0-1.061-1.061l-.613.613ZM8.244 4.567a.75.75 0 1 0 1.06 1.06l.613-.612a3.583 3.583 0 0 1 5.068 5.067l-.613.613a.75.75 0 0 0 1.06 1.061l.614-.613a5.083 5.083 0 1 0-7.19-7.189l-.612.613Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M11.308 7.631a.75.75 0 1 0 1.06 1.06l.614-.612a.75.75 0 1 0-1.061-1.06l-.613.612Z"},"children":[]}],"metadata":""}]},"name":"richeditor-unlink"};
7
7
 
8
8
  export default RicheditorUnlink;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const ShieldKeyhole: 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 6a2.417 2.417 0 0 0-.75 4.715v1.535a.75.75 0 0 0 1.5 0v-1.535A2.418 2.418 0 0 0 10 6Zm-.917 2.417a.917.917 0 1 1 1.834 0 .917.917 0 0 1-1.834 0Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M10.572 1.155a1.75 1.75 0 0 0-1.144 0L3.866 3.08a1.723 1.723 0 0 0-1.162 1.516 39.942 39.942 0 0 0-.081 3.103c.02 1.208.116 2.542.409 3.517.489 1.63 1.653 3.213 2.812 4.494a28.561 28.561 0 0 0 3.105 2.92c.616.499 1.486.499 2.102 0a28.571 28.571 0 0 0 3.105-2.92c1.159-1.28 2.323-2.864 2.812-4.495.293-.974.389-2.308.409-3.516a39.933 39.933 0 0 0-.081-3.103 1.723 1.723 0 0 0-1.162-1.516l-5.562-1.925ZM10 2.572l5.643 1.925c.096.033.15.113.156.195.043.677.098 1.81.078 2.982-.02 1.191-.117 2.348-.345 3.11-.392 1.307-1.375 2.69-2.488 3.92-1.1 1.215-2.372 2.252-3.044 2.796-.036.03.034.004 0 .004-.672-.544-1.944-1.585-3.044-2.8-1.113-1.23-2.096-2.613-2.488-3.92-.229-.762-.325-1.919-.345-3.11A38.45 38.45 0 0 1 4.2 4.692a.223.223 0 0 1 .156-.195L10 2.572Z"},"children":[]}],"metadata":""}]},"name":"shield-keyhole"};
7
+
8
+ export default ShieldKeyhole;