@fibery/ui-kit 1.17.1 → 1.18.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/index.ts +1 -1
- package/package.json +26 -21
- package/src/Button/actions-button.tsx +2 -2
- package/src/Button/button-base.tsx +2 -2
- package/src/Button/button-group.tsx +1 -1
- package/src/Button/button.tsx +3 -3
- package/src/Button/icon-button.tsx +1 -0
- package/src/Select/custom-select-partials/clear-indicator.tsx +22 -0
- package/src/Select/custom-select-partials/drop-down-indicator.tsx +26 -0
- package/src/Select/custom-select-partials/group-heading.tsx +54 -0
- package/src/Select/custom-select-partials/menu.tsx +25 -0
- package/src/Select/custom-select-partials/no-option-message.tsx +10 -0
- package/src/Select/custom-select-partials/option.tsx +92 -0
- package/src/Select/index.tsx +18 -47
- package/src/Select/select-in-popover.tsx +2 -2
- package/src/Select/styles.ts +11 -53
- package/src/antd/styles.ts +1 -1
- package/src/back-button.tsx +3 -0
- package/src/create-inline-theme.ts +2 -0
- package/src/design-system.ts +961 -0
- package/src/emoji-picker/app-icon-picker.tsx +2 -2
- package/src/emoji-picker/emoji-picker-content-with-color.tsx +4 -4
- package/src/emoji-picker/emoji-picker.tsx +11 -5
- package/src/emoji-picker/icon-emoji-picker.tsx +2 -2
- package/src/emoji-picker/primitives/category.tsx +1 -1
- package/src/emoji-picker/primitives/content.tsx +3 -2
- package/src/emoji-picker/primitives/emoji.tsx +1 -1
- package/src/emoji-picker/primitives/footer.tsx +1 -1
- package/src/emoji-picker/primitives/header.tsx +1 -1
- package/src/emoji-picker/primitives/layout.ts +1 -1
- package/src/emoji-picker/primitives/search.tsx +1 -1
- package/src/emoji-picker/primitives/skin-tone.tsx +1 -1
- package/src/emoji-picker/stores/lazy-emoji-data-store.tsx +3 -3
- package/src/emoji-picker/stores/lazy-icon-data-store.tsx +1 -1
- package/src/error-alert.tsx +2 -2
- package/src/form-field-loader.tsx +1 -1
- package/src/icons/Icon.tsx +4 -4
- package/src/icons/ast/Activity.ts +1 -1
- package/src/icons/ast/BellFilled.ts +8 -0
- package/src/icons/ast/BellOff.ts +8 -0
- package/src/icons/ast/BellRinging.ts +8 -0
- package/src/icons/ast/Export.ts +8 -0
- package/src/icons/ast/Favorites.ts +1 -1
- package/src/icons/ast/FavoritesChecked.ts +1 -1
- package/src/icons/ast/FavoritesOff.ts +8 -0
- package/src/icons/ast/GlobeSimple.ts +8 -0
- package/src/icons/ast/Import.ts +8 -0
- package/src/icons/ast/Lab.ts +8 -0
- package/src/icons/ast/Link.ts +8 -0
- package/src/icons/ast/Network.ts +8 -0
- package/src/icons/ast/Pencil.ts +8 -0
- package/src/icons/ast/People.ts +8 -0
- package/src/icons/ast/RicheditorLinkCreate.ts +1 -1
- package/src/icons/ast/RicheditorOpenLink.ts +1 -1
- package/src/icons/ast/RicheditorUnlink.ts +1 -1
- package/src/icons/ast/ShieldKeyhole.ts +8 -0
- package/src/icons/ast/Terminal.ts +8 -0
- package/src/icons/ast/TypeUrl.ts +1 -1
- package/src/icons/ast/index.tsx +14 -4
- package/src/icons/{getIconContainerStyle.tsx → get-icon-container-style.tsx} +1 -1
- package/src/icons/react/BellFilled.tsx +12 -0
- package/src/icons/react/BellOff.tsx +12 -0
- package/src/icons/react/BellRinging.tsx +12 -0
- package/src/icons/react/Export.tsx +12 -0
- package/src/icons/react/FavoritesOff.tsx +12 -0
- package/src/icons/react/GlobeSimple.tsx +12 -0
- package/src/icons/react/Import.tsx +12 -0
- package/src/icons/react/Lab.tsx +12 -0
- package/src/icons/react/Link.tsx +12 -0
- package/src/icons/react/Network.tsx +12 -0
- package/src/icons/react/Pencil.tsx +12 -0
- package/src/icons/react/People.tsx +12 -0
- package/src/icons/react/ShieldKeyhole.tsx +12 -0
- package/src/icons/react/Terminal.tsx +12 -0
- package/src/icons/react/index.tsx +14 -4
- package/src/{Item.tsx → item.tsx} +1 -1
- package/src/loaders.tsx +19 -6
- package/src/loading-sausage.tsx +3 -1
- package/src/{ThemeProvider.tsx → theme-provider.tsx} +11 -1
- package/src/theme-styles.ts +2 -5
- package/src/toast/index.tsx +47 -0
- package/src/toast/primitives.tsx +140 -0
- package/src/tooltip.tsx +3 -3
- package/src/BackButton.tsx +0 -3
- package/src/Select/components.tsx +0 -90
- package/src/designSystem.ts +0 -951
- package/src/icons/ast/AppTemplatesOneColor.ts +0 -8
- package/src/icons/ast/CopyUrl.ts +0 -8
- package/src/icons/ast/FavoritesMenu.ts +0 -8
- package/src/icons/ast/Markdown.ts +0 -8
- package/src/icons/react/AppTemplatesOneColor.tsx +0 -12
- package/src/icons/react/CopyUrl.tsx +0 -12
- package/src/icons/react/FavoritesMenu.tsx +0 -12
- package/src/icons/react/Markdown.tsx +0 -12
- /package/src/Button/{AddButton.tsx → add-button.tsx} +0 -0
- /package/src/Button/{BackButton.tsx → back-button.tsx} +0 -0
- /package/src/{Button.tsx → button.tsx} +0 -0
- /package/src/icons/{generateIconFromAst.ts → generate-icon-from-ast.ts} +0 -0
- /package/src/icons/{IconAsPaths.ts → get-paths.ts} +0 -0
- /package/src/icons/{getShiftStyle.ts → get-shift-style.ts} +0 -0
- /package/src/{Pallete.ts → pallete.ts} +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {CustomEmoji, EmojiItem} from "@fibery/emoji-data";
|
|
2
|
-
import {useThemeMode} from "../
|
|
3
|
-
import {cardTypeColors, getIconColor} from "../
|
|
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
3
|
import {IconButton} from "../Button/icon-button";
|
|
4
4
|
import {CollapsibleContent, CollapsibleRoot, CollapsibleTrigger} from "../Collapsible";
|
|
5
5
|
import {ColorPicker} from "../ColorPicker";
|
|
6
|
-
import {useThemeMode} from "../
|
|
7
|
-
import {getIconColor, space} from "../
|
|
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
|
|
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
|
|
1
|
+
import {EmojiItem} from "@fibery/emoji-data";
|
|
2
2
|
import {css} from "@linaria/core";
|
|
3
|
-
import {Button} from "../
|
|
4
|
-
import {cardTypeColors, space} from "../
|
|
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
|
-
<
|
|
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 "../
|
|
3
|
+
import {Button} from "../button";
|
|
4
4
|
import {AntTabs} from "../antd";
|
|
5
|
-
import {space, textStyles} from "../
|
|
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";
|
|
@@ -3,7 +3,7 @@ import {css} from "@linaria/core";
|
|
|
3
3
|
import {memo} from "react";
|
|
4
4
|
import {useInView} from "react-intersection-observer";
|
|
5
5
|
import {IconButton} from "../../Button/icon-button";
|
|
6
|
-
import {space, textStyles, themeVars} from "../../
|
|
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 "../../
|
|
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 "../../
|
|
4
|
+
import {themeVars} from "../../design-system";
|
|
5
5
|
import {useEmojiDataStoreSelector} from "../stores/emoji-data-store";
|
|
6
6
|
|
|
7
7
|
const emojiWrapperCss = css`
|
|
@@ -3,7 +3,7 @@ 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
5
|
import {IconButton} from "../../Button/icon-button";
|
|
6
|
-
import {border, space, textStyles, themeVars} from "../../
|
|
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,7 +1,7 @@
|
|
|
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 "../../
|
|
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";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {makeEmojiData} from "@fibery/emoji-data";
|
|
2
2
|
import {Suspense, lazy} from "react";
|
|
3
|
-
import {EmojiDataStoreProvider} from "./
|
|
4
|
-
import {getEmojiSet} from "
|
|
5
|
-
import {loadEmojiData} from "
|
|
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 "../../
|
|
4
|
+
import {getImageUrl} from "../../app-icon-with-fallback";
|
|
5
5
|
|
|
6
6
|
const EMPTY_DATA = {
|
|
7
7
|
aliases: {},
|
package/src/error-alert.tsx
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {css} from "@linaria/core";
|
|
2
|
-
import {layout, border, space, textStyles, themeVars} from "./
|
|
2
|
+
import {layout, border, space, textStyles, themeVars} from "./design-system";
|
|
3
3
|
import {Button} from "./Button/button";
|
|
4
4
|
import CloseIcon from "./icons/react/Close";
|
|
5
|
-
import {useTheme} from "./
|
|
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 "./
|
|
4
|
+
import {space, border, themeVars} from "./design-system";
|
|
5
5
|
|
|
6
6
|
const loaderStyle = css`
|
|
7
7
|
border-radius: ${border.radius6}px;
|
package/src/icons/Icon.tsx
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {css} from "@linaria/core";
|
|
2
|
-
import {themeVars, iconSize as defaultIconSize, radius, viewBoxSize} from "../
|
|
3
|
-
import {generateIconFromAst} from "./
|
|
2
|
+
import {themeVars, iconSize as defaultIconSize, radius, viewBoxSize} from "../design-system";
|
|
3
|
+
import {generateIconFromAst} from "./generate-icon-from-ast";
|
|
4
4
|
import {IconProps} from "./types";
|
|
5
|
-
import {getShiftStyle} from "./
|
|
6
|
-
import {getIconContainerStyle} from "./
|
|
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`
|
|
@@ -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.
|
|
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":"M5.226 1.95a.753.753 0 0 1-.385.992 2.259 2.259 0 0 0-1.338 1.87.753.753 0 0 1-1.5-.13 3.765 3.765 0 0 1 2.23-3.118.753.753 0 0 1 .993.385Z"},"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":[]},{"type":"element","tagName":"path","properties":{"d":"M15.159 2.942a.753.753 0 1 1 .608-1.378 3.764 3.764 0 0 1 2.23 3.118.753.753 0 0 1-1.5.13 2.258 2.258 0 0 0-1.338-1.87Z"},"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 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 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.
|
|
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.
|
|
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 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 RicheditorLinkCreate: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"
|
|
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":"
|
|
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":"
|
|
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;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const Terminal: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M10.75 11.5a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5ZM7.28 12.78l2.25-2.25a.75.75 0 0 0 0-1.06L7.28 7.22a.75.75 0 0 0-1.06 1.06L7.94 10l-1.72 1.72a.75.75 0 1 0 1.06 1.06Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M4.25 3A2.25 2.25 0 0 0 2 5.25v9.5A2.25 2.25 0 0 0 4.25 17h11.5A2.25 2.25 0 0 0 18 14.75v-9.5A2.25 2.25 0 0 0 15.75 3H4.25ZM3.5 5.25a.75.75 0 0 1 .75-.75h11.5a.75.75 0 0 1 .75.75v9.5a.75.75 0 0 1-.75.75H4.25a.75.75 0 0 1-.75-.75v-9.5Z"},"children":[]}],"metadata":""}]},"name":"terminal"};
|
|
7
|
+
|
|
8
|
+
export default Terminal;
|
package/src/icons/ast/TypeUrl.ts
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const TypeUrl: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"
|
|
6
|
+
const TypeUrl: 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":"type-url"};
|
|
7
7
|
|
|
8
8
|
export default TypeUrl;
|