@fibery/ui-kit 1.10.0 → 1.11.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/package.json +5 -5
- package/src/Button/button.tsx +14 -7
- package/src/designSystem.ts +86 -10
- package/src/emoji-mart/app-icon-picker.tsx +34 -16
- package/src/emoji-mart/data/get-data.tsx +51 -0
- package/src/emoji-mart/data.tsx +4 -0
- package/src/emoji-mart/emoji/emoji.tsx +26 -0
- package/src/emoji-mart/emoji/index.tsx +24 -0
- package/src/emoji-mart/emoji-index.ts +5 -0
- package/src/emoji-mart/emoji-mart.tsx +117 -36
- package/src/emoji-mart/emoji-picker.tsx +68 -22
- package/src/emoji-mart/emoji-support.ts +1 -0
- package/src/emoji-mart/icon-emoji-picker.tsx +37 -9
- package/src/icons/ast/Activity.ts +1 -1
- package/src/icons/ast/ActivityLog.ts +1 -1
- package/src/icons/ast/AddReactions.ts +1 -1
- package/src/icons/ast/AppStore.ts +1 -1
- package/src/icons/ast/AppStoreOneColor.ts +1 -1
- package/src/icons/ast/AppTemplates.ts +1 -1
- package/src/icons/ast/AppTemplatesOneColor.ts +1 -1
- package/src/icons/ast/AskForInput.ts +1 -1
- package/src/icons/ast/Cards.ts +1 -1
- package/src/icons/ast/ClearValue.ts +1 -1
- package/src/icons/ast/Close.ts +1 -1
- package/src/icons/ast/ColorCoding.ts +1 -1
- package/src/icons/ast/Columns.ts +1 -1
- package/src/icons/ast/Favorites.ts +1 -1
- package/src/icons/ast/FavoritesChecked.ts +1 -1
- package/src/icons/ast/FavoritesMenu.ts +1 -1
- package/src/icons/ast/Fields.ts +1 -1
- package/src/icons/ast/Filter.ts +1 -1
- package/src/icons/ast/FocusMode.ts +1 -1
- package/src/icons/ast/FocusModeOff.ts +1 -1
- package/src/icons/ast/ImageXmark.ts +8 -0
- package/src/icons/ast/InvitePeople.ts +1 -1
- package/src/icons/ast/Items.ts +1 -1
- package/src/icons/ast/Levels.ts +1 -1
- package/src/icons/ast/Lock.ts +1 -1
- package/src/icons/ast/MoreCompact.ts +1 -1
- package/src/icons/ast/MySpace.ts +1 -1
- package/src/icons/ast/OpenAsPage.ts +1 -1
- package/src/icons/ast/PageRegularMode.ts +1 -1
- package/src/icons/ast/PageWideMode.ts +1 -1
- package/src/icons/ast/Popup.ts +1 -1
- package/src/icons/ast/Posts.ts +1 -1
- package/src/icons/ast/RicheditorImageUpload.ts +1 -1
- package/src/icons/ast/Rows.ts +1 -1
- package/src/icons/ast/Search.ts +1 -1
- package/src/icons/ast/Settings.ts +1 -1
- package/src/icons/ast/Share.ts +1 -1
- package/src/icons/ast/Shared.ts +1 -1
- package/src/icons/ast/SidebarFields.ts +1 -1
- package/src/icons/ast/SidebarFieldsOpened.ts +1 -1
- package/src/icons/ast/Sort.ts +1 -1
- package/src/icons/ast/SortOnBottom.ts +1 -1
- package/src/icons/ast/SortOnTop.ts +1 -1
- package/src/icons/ast/TypeButton.ts +1 -1
- package/src/icons/ast/TypeEmoji.ts +1 -1
- package/src/icons/ast/Upgrade.ts +1 -1
- package/src/icons/ast/index.tsx +1 -0
- package/src/icons/react/ImageXmark.tsx +12 -0
- package/src/icons/react/index.tsx +1 -0
- package/src/emoji-mart/emoji.tsx +0 -24
|
@@ -1,32 +1,78 @@
|
|
|
1
|
-
import {forwardRef} from "react";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import {Suspense, forwardRef, lazy} from "react";
|
|
2
|
+
import {ColorPicker} from "../ColorPicker";
|
|
3
|
+
import {cardTypeColors} from "../designSystem";
|
|
4
|
+
import {$TSFixMe} from "../tsfixme";
|
|
5
|
+
import {EmojiMartWrapper, NimblePicker, NimblePickerProps} from "./emoji-mart";
|
|
6
|
+
import {EmojiDataProps, getEmojiDataProps} from "./data/get-data";
|
|
7
|
+
|
|
8
|
+
type NimblePickerWithData = Omit<NimblePickerProps, keyof EmojiDataProps>;
|
|
9
|
+
|
|
10
|
+
const NimblePickerWithData = lazy(async () => {
|
|
11
|
+
const emojiDataProps = await getEmojiDataProps();
|
|
12
|
+
|
|
13
|
+
return {
|
|
14
|
+
default: function EmojiPicker(props: NimblePickerWithData) {
|
|
15
|
+
return <NimblePicker {...props} {...emojiDataProps} />;
|
|
16
|
+
},
|
|
17
|
+
};
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
const EmojiPickerComponent: React.FC<NimblePickerWithData> = (props) => {
|
|
21
|
+
return (
|
|
22
|
+
<Suspense
|
|
23
|
+
fallback={
|
|
24
|
+
<div
|
|
25
|
+
className="emoji-mart"
|
|
26
|
+
style={{
|
|
27
|
+
height: "280px",
|
|
28
|
+
}}
|
|
29
|
+
/>
|
|
30
|
+
}
|
|
31
|
+
>
|
|
32
|
+
<NimblePickerWithData {...props} />
|
|
33
|
+
</Suspense>
|
|
34
|
+
);
|
|
35
|
+
};
|
|
5
36
|
|
|
6
37
|
export type EmojiPickerProps = {
|
|
7
38
|
borderless?: boolean;
|
|
8
|
-
|
|
39
|
+
color?: string;
|
|
40
|
+
getHoverColor?: (color: string) => string | undefined;
|
|
41
|
+
colors?: string[];
|
|
42
|
+
onColorSelect?: (c: $TSFixMe) => void;
|
|
43
|
+
} & NimblePickerWithData;
|
|
9
44
|
|
|
10
|
-
|
|
11
|
-
|
|
45
|
+
const i18n = {search: "Search emoji..."};
|
|
46
|
+
|
|
47
|
+
export const EmojiPicker = forwardRef<HTMLDivElement, EmojiPickerProps>(function EmojiPicker(
|
|
48
|
+
{
|
|
49
|
+
borderless = true,
|
|
50
|
+
color,
|
|
51
|
+
getHoverColor,
|
|
52
|
+
colors = cardTypeColors,
|
|
53
|
+
onColorSelect,
|
|
54
|
+
showSkinTones = true,
|
|
55
|
+
...pickerProps
|
|
56
|
+
},
|
|
12
57
|
ref
|
|
13
58
|
) {
|
|
14
|
-
const themeMode = useThemeMode();
|
|
15
|
-
const theme = useTheme();
|
|
16
|
-
|
|
17
59
|
return (
|
|
18
|
-
<EmojiMartWrapper
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
60
|
+
<EmojiMartWrapper
|
|
61
|
+
ref={ref}
|
|
62
|
+
emojiHoverColor={color ? getHoverColor?.(color) : undefined}
|
|
63
|
+
borderless={borderless}
|
|
64
|
+
hideCategories
|
|
65
|
+
shortSearch={showSkinTones}
|
|
66
|
+
>
|
|
67
|
+
<EmojiPickerComponent showSkinTones={showSkinTones} i18n={i18n} {...pickerProps} />
|
|
68
|
+
{onColorSelect ? (
|
|
69
|
+
<ColorPicker
|
|
70
|
+
colors={colors}
|
|
71
|
+
getSwatchHoverColor={getHoverColor}
|
|
72
|
+
color={color}
|
|
73
|
+
onChangeComplete={onColorSelect}
|
|
74
|
+
/>
|
|
75
|
+
) : null}
|
|
30
76
|
</EmojiMartWrapper>
|
|
31
77
|
);
|
|
32
78
|
});
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import {css} from "@linaria/core";
|
|
2
|
+
import {Button} from "../Button";
|
|
2
3
|
import {AntTabs} from "../antd";
|
|
3
|
-
import {AppIconPicker, AppIconPickerProps} from "./app-icon-picker";
|
|
4
4
|
import {space, textStyles} from "../designSystem";
|
|
5
|
+
import {$TSFixMe} from "../tsfixme";
|
|
6
|
+
import {AppIconPicker, AppIconPickerProps} from "./app-icon-picker";
|
|
5
7
|
import {EmojiPicker, EmojiPickerProps} from "./emoji-picker";
|
|
6
|
-
import {Button} from "../Button";
|
|
7
8
|
|
|
8
9
|
const TabHeader: React.FC<React.PropsWithChildren> = ({children}) => (
|
|
9
10
|
<div
|
|
@@ -18,36 +19,63 @@ const TabHeader: React.FC<React.PropsWithChildren> = ({children}) => (
|
|
|
18
19
|
type IconEmojiPickerProps = React.PropsWithChildren<{
|
|
19
20
|
onIconSelect: NonNullable<AppIconPickerProps["onSelect"]>;
|
|
20
21
|
onEmojiSelect: NonNullable<EmojiPickerProps["onSelect"]>;
|
|
22
|
+
onColorSelect?: (c: $TSFixMe) => void;
|
|
21
23
|
onReset?: () => void;
|
|
22
24
|
resetLabel?: string;
|
|
25
|
+
defaultTab?: "icons" | "emojis";
|
|
26
|
+
showColorPickerOnTabs?: ("icons" | "emojis")[];
|
|
27
|
+
color?: string;
|
|
28
|
+
getHoverColor?: (color: string) => string | undefined;
|
|
23
29
|
}>;
|
|
24
30
|
export const IconEmojiPicker: React.FC<IconEmojiPickerProps> = ({
|
|
25
31
|
onIconSelect,
|
|
26
32
|
onEmojiSelect,
|
|
33
|
+
onColorSelect,
|
|
34
|
+
defaultTab,
|
|
27
35
|
onReset,
|
|
28
36
|
resetLabel = "Reset",
|
|
37
|
+
showColorPickerOnTabs = ["icons", "emojis"],
|
|
38
|
+
color,
|
|
39
|
+
getHoverColor,
|
|
29
40
|
}) => {
|
|
30
41
|
return (
|
|
31
42
|
<AntTabs
|
|
32
43
|
animated={false}
|
|
33
44
|
destroyInactiveTabPane
|
|
45
|
+
defaultActiveKey={defaultTab}
|
|
34
46
|
items={[
|
|
35
47
|
{
|
|
36
|
-
key: "
|
|
37
|
-
label: <TabHeader>
|
|
38
|
-
children:
|
|
48
|
+
key: "emojis",
|
|
49
|
+
label: <TabHeader>Emojis</TabHeader>,
|
|
50
|
+
children: (
|
|
51
|
+
<EmojiPicker
|
|
52
|
+
autoFocus
|
|
53
|
+
color={color}
|
|
54
|
+
onColorSelect={showColorPickerOnTabs.includes("emojis") ? onColorSelect : undefined}
|
|
55
|
+
getHoverColor={getHoverColor}
|
|
56
|
+
onSelect={onEmojiSelect}
|
|
57
|
+
/>
|
|
58
|
+
),
|
|
39
59
|
},
|
|
40
60
|
{
|
|
41
|
-
key: "
|
|
42
|
-
label: <TabHeader>
|
|
43
|
-
children:
|
|
61
|
+
key: "icons",
|
|
62
|
+
label: <TabHeader>Icons</TabHeader>,
|
|
63
|
+
children: (
|
|
64
|
+
<AppIconPicker
|
|
65
|
+
autoFocus
|
|
66
|
+
color={color}
|
|
67
|
+
onColorSelect={showColorPickerOnTabs.includes("icons") ? onColorSelect : undefined}
|
|
68
|
+
getHoverColor={getHoverColor}
|
|
69
|
+
onSelect={onIconSelect}
|
|
70
|
+
/>
|
|
71
|
+
),
|
|
44
72
|
},
|
|
45
73
|
]}
|
|
46
74
|
tabBarExtraContent={
|
|
47
75
|
onReset ? (
|
|
48
76
|
<div
|
|
49
77
|
className={css`
|
|
50
|
-
padding-right: ${space.
|
|
78
|
+
padding-right: ${space.l}px;
|
|
51
79
|
`}
|
|
52
80
|
>
|
|
53
81
|
<Button size={":button-size/small"} onClick={onReset}>
|
|
@@ -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":{"d":"
|
|
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"};
|
|
7
7
|
|
|
8
8
|
export default Activity;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const ActivityLog: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"
|
|
6
|
+
const ActivityLog: 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.545 4.07A7.417 7.417 0 1 1 2.583 10a.75.75 0 0 1 1.5 0 5.917 5.917 0 1 0 2.62-4.913h.592a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75v-2.5a.75.75 0 0 1 1.5 0v.733ZM10 5.917a.75.75 0 0 1 .75.75v3.022l1.864 1.864a.75.75 0 0 1-1.061 1.06L9.47 10.53a.75.75 0 0 1-.22-.53V6.667a.75.75 0 0 1 .75-.75Z"},"children":[]}],"metadata":""}]},"name":"activity-log"};
|
|
7
7
|
|
|
8
8
|
export default ActivityLog;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const AddReactions: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"
|
|
6
|
+
const AddReactions: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M16.75 1.75a.75.75 0 0 0-1.5 0v1.5h-1.5a.75.75 0 0 0 0 1.5h1.5v1.5a.75.75 0 1 0 1.5 0v-1.5h1.5a.75.75 0 0 0 0-1.5h-1.5v-1.5Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M3.5 10a6.5 6.5 0 0 1 7.398-6.439.75.75 0 0 0 .204-1.486 8 8 0 1 0 6.822 6.822.75.75 0 0 0-1.485.205A6.5 6.5 0 1 1 3.5 10Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M7.825 6.713a1.112 1.112 0 1 0 0 2.224 1.112 1.112 0 0 0 0-2.224ZM12.175 6.713a1.113 1.113 0 1 0 0 2.225 1.113 1.113 0 0 0 0-2.226ZM8.238 11.643a3.707 3.707 0 0 1-.491-.428l-.149-.168a.75.75 0 0 0-1.198.903l.078.097a5.21 5.21 0 0 0 .878.81c.598.435 1.5.893 2.644.893 1.144 0 2.046-.458 2.644-.893a5.21 5.21 0 0 0 .879-.81l.077-.097a.75.75 0 0 0-1.198-.903l-.149.168c-.11.116-.276.272-.491.428-.433.315-1.031.607-1.762.607-.73 0-1.33-.292-1.762-.607Z"},"children":[]}],"metadata":""}]},"name":"add-reactions"};
|
|
7
7
|
|
|
8
8
|
export default AddReactions;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const AppStore: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"
|
|
6
|
+
const AppStore: 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":"app-store"};
|
|
7
7
|
|
|
8
8
|
export default AppStore;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const AppStoreOneColor: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"
|
|
6
|
+
const AppStoreOneColor: 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":"app-store-one-color"};
|
|
7
7
|
|
|
8
8
|
export default AppStoreOneColor;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const AppTemplates: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"
|
|
6
|
+
const AppTemplates: 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 2a2.25 2.25 0 0 0-2.25 2.25V7A2.25 2.25 0 0 0 13 9.25h2.75A2.25 2.25 0 0 0 18 7V4.25A2.25 2.25 0 0 0 15.75 2H13Zm-.75 2.25A.75.75 0 0 1 13 3.5h2.75a.75.75 0 0 1 .75.75V7a.75.75 0 0 1-.75.75H13a.75.75 0 0 1-.75-.75V4.25ZM4.25 10.75A2.25 2.25 0 0 0 2 13v2.75A2.25 2.25 0 0 0 4.25 18H7a2.25 2.25 0 0 0 2.25-2.25V13A2.25 2.25 0 0 0 7 10.75H4.25ZM3.5 13a.75.75 0 0 1 .75-.75H7a.75.75 0 0 1 .75.75v2.75a.75.75 0 0 1-.75.75H4.25a.75.75 0 0 1-.75-.75V13ZM2 4.25A2.25 2.25 0 0 1 4.25 2H7a2.25 2.25 0 0 1 2.25 2.25V7A2.25 2.25 0 0 1 7 9.25H4.25A2.25 2.25 0 0 1 2 7V4.25Zm2.25-.75a.75.75 0 0 0-.75.75V7c0 .414.336.75.75.75H7A.75.75 0 0 0 7.75 7V4.25A.75.75 0 0 0 7 3.5H4.25Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M14.38 18c-.483 0-.875-.367-.875-.85v-1.895H11.6a.875.875 0 1 1 0-1.75h1.905V11.65a.875.875 0 1 1 1.75 0v1.855H17.1a.875.875 0 1 1 0 1.75h-1.845v1.895c0 .483-.392.85-.875.85Z"},"children":[]}],"metadata":""}]},"name":"app-templates"};
|
|
7
7
|
|
|
8
8
|
export default AppTemplates;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const AppTemplatesOneColor: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"
|
|
6
|
+
const AppTemplatesOneColor: 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 2a2.25 2.25 0 0 0-2.25 2.25V7A2.25 2.25 0 0 0 13 9.25h2.75A2.25 2.25 0 0 0 18 7V4.25A2.25 2.25 0 0 0 15.75 2H13Zm-.75 2.25A.75.75 0 0 1 13 3.5h2.75a.75.75 0 0 1 .75.75V7a.75.75 0 0 1-.75.75H13a.75.75 0 0 1-.75-.75V4.25ZM4.25 10.75A2.25 2.25 0 0 0 2 13v2.75A2.25 2.25 0 0 0 4.25 18H7a2.25 2.25 0 0 0 2.25-2.25V13A2.25 2.25 0 0 0 7 10.75H4.25ZM3.5 13a.75.75 0 0 1 .75-.75H7a.75.75 0 0 1 .75.75v2.75a.75.75 0 0 1-.75.75H4.25a.75.75 0 0 1-.75-.75V13ZM2 4.25A2.25 2.25 0 0 1 4.25 2H7a2.25 2.25 0 0 1 2.25 2.25V7A2.25 2.25 0 0 1 7 9.25H4.25A2.25 2.25 0 0 1 2 7V4.25Zm2.25-.75a.75.75 0 0 0-.75.75V7c0 .414.336.75.75.75H7A.75.75 0 0 0 7.75 7V4.25A.75.75 0 0 0 7 3.5H4.25Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M14.38 18c-.483 0-.875-.367-.875-.85v-1.895H11.6a.875.875 0 1 1 0-1.75h1.905V11.65a.875.875 0 1 1 1.75 0v1.855H17.1a.875.875 0 1 1 0 1.75h-1.845v1.895c0 .483-.392.85-.875.85Z"},"children":[]}],"metadata":""}]},"name":"app-templates-one-color"};
|
|
7
7
|
|
|
8
8
|
export default AppTemplatesOneColor;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const AskForInput: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"
|
|
6
|
+
const AskForInput: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M3.5 6.25a.75.75 0 0 1 .75-.75h11.5a.75.75 0 0 1 .75.75v2a.75.75 0 0 0 1.5 0v-2A2.25 2.25 0 0 0 15.75 4H4.25A2.25 2.25 0 0 0 2 6.25v5.5A2.25 2.25 0 0 0 4.25 14H12a.75.75 0 0 0 0-1.5H4.25a.75.75 0 0 1-.75-.75v-5.5Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M5.75 8.25a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5ZM15.726 12.387a.85.85 0 0 1 1.674.213c0 .158-.047.275-.271.492-.11.105-.235.21-.398.345l-.074.06c-.19.16-.412.347-.638.573a.75.75 0 1 0 1.06 1.06 7.74 7.74 0 0 1 .538-.48l.069-.056c.158-.131.332-.275.484-.423.376-.363.73-.845.73-1.571a2.35 2.35 0 0 0-4.626-.587.75.75 0 1 0 1.452.374ZM16.55 16.25a.75.75 0 0 0 0 1.5h.008a.75.75 0 0 0 0-1.5h-.008Z"},"children":[]}],"metadata":""}]},"name":"ask-for-input"};
|
|
7
7
|
|
|
8
8
|
export default AskForInput;
|
package/src/icons/ast/Cards.ts
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const Cards: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"
|
|
6
|
+
const Cards: 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":"M4.25 4.5a.75.75 0 0 0-.75.75v9.5c0 .414.336.75.75.75h11.5a.75.75 0 0 0 .75-.75v-9.5a.75.75 0 0 0-.75-.75H4.25ZM2 5.25A2.25 2.25 0 0 1 4.25 3h11.5A2.25 2.25 0 0 1 18 5.25v9.5A2.25 2.25 0 0 1 15.75 17H4.25A2.25 2.25 0 0 1 2 14.75v-9.5Zm3 2.5A.75.75 0 0 1 5.75 7h8.5a.75.75 0 0 1 0 1.5h-8.5A.75.75 0 0 1 5 7.75Zm0 3a.75.75 0 0 1 .75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75Z"},"children":[]}],"metadata":""}]},"name":"cards"};
|
|
7
7
|
|
|
8
8
|
export default Cards;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const ClearValue: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"
|
|
6
|
+
const ClearValue: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M3.5 6.25a.75.75 0 0 1 .75-.75h11.5a.75.75 0 0 1 .75.75V9A.75.75 0 0 0 18 9V6.25A2.25 2.25 0 0 0 15.75 4H4.25A2.25 2.25 0 0 0 2 6.25v5.5A2.25 2.25 0 0 0 4.25 14H11a.75.75 0 0 0 0-1.5H4.25a.75.75 0 0 1-.75-.75v-5.5Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M5.75 8.25a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5ZM14.28 11.22a.75.75 0 1 0-1.06 1.06L14.94 14l-1.72 1.72a.75.75 0 1 0 1.06 1.06L16 15.06l1.72 1.72a.75.75 0 1 0 1.06-1.06L17.06 14l1.72-1.72a.75.75 0 1 0-1.06-1.06L16 12.94l-1.72-1.72Z"},"children":[]}],"metadata":""}]},"name":"clear-value"};
|
|
7
7
|
|
|
8
8
|
export default ClearValue;
|
package/src/icons/ast/Close.ts
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const Close: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"
|
|
6
|
+
const Close: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M3.728 15.172a.778.778 0 1 0 1.1 1.1L10 11.1l5.172 5.172a.778.778 0 0 0 1.1-1.1L11.1 10l5.172-5.172a.778.778 0 0 0-1.1-1.1L10 8.9 4.828 3.728a.778.778 0 1 0-1.1 1.1L8.9 10l-5.172 5.172Z"},"children":[]}],"metadata":""}]},"name":"close"};
|
|
7
7
|
|
|
8
8
|
export default Close;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const ColorCoding: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"
|
|
6
|
+
const ColorCoding: 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 3.55a6.45 6.45 0 1 0 0 12.9 1.65 1.65 0 0 0 1.65-1.65v-.532c0-.246 0-.451.029-.636a2.35 2.35 0 0 1 1.953-1.953c.185-.03.39-.03.636-.029h.532A1.65 1.65 0 0 0 16.45 10 6.45 6.45 0 0 0 10 3.55ZM2.05 10a7.95 7.95 0 1 1 15.9 0 3.15 3.15 0 0 1-3.15 3.15h-.48c-.326 0-.402.002-.453.01a.85.85 0 0 0-.707.707c-.008.051-.01.127-.01.453v.48A3.15 3.15 0 0 1 10 17.95 7.95 7.95 0 0 1 2.05 10Zm5.6-3.6a1.15 1.15 0 1 1 2.3 0 1.15 1.15 0 0 1-2.3 0Zm4 .8a1.15 1.15 0 1 1 2.3 0 1.15 1.15 0 0 1-2.3 0Zm-6.4 2.4a1.15 1.15 0 1 1 2.3 0 1.15 1.15 0 0 1-2.3 0Z"},"children":[]}],"metadata":""}]},"name":"color-coding"};
|
|
7
7
|
|
|
8
8
|
export default ColorCoding;
|
package/src/icons/ast/Columns.ts
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const Columns: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"
|
|
6
|
+
const Columns: 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":"M4.25 4.5a.75.75 0 0 0-.75.75v9.5c0 .414.336.75.75.75h2.5v-11h-2.5Zm4 0v11h3.5v-11h-3.5Zm5 0v11h2.5a.75.75 0 0 0 .75-.75v-9.5a.75.75 0 0 0-.75-.75h-2.5ZM2 5.25A2.25 2.25 0 0 1 4.25 3h11.5A2.25 2.25 0 0 1 18 5.25v9.5A2.25 2.25 0 0 1 15.75 17H4.25A2.25 2.25 0 0 1 2 14.75v-9.5Z"},"children":[]}],"metadata":""}]},"name":"columns"};
|
|
7
7
|
|
|
8
8
|
export default Columns;
|
|
@@ -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":"
|
|
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"};
|
|
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":{"d":"
|
|
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"};
|
|
7
7
|
|
|
8
8
|
export default FavoritesChecked;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const FavoritesMenu: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"
|
|
6
|
+
const FavoritesMenu: 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-menu"};
|
|
7
7
|
|
|
8
8
|
export default FavoritesMenu;
|
package/src/icons/ast/Fields.ts
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const Fields: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"
|
|
6
|
+
const Fields: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M4.75 2a.75.75 0 0 0 0 1.5h10.5a.75.75 0 0 0 0-1.5H4.75ZM4.75 16.5a.75.75 0 0 0 0 1.5h10.5a.75.75 0 0 0 0-1.5H4.75ZM12 10a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M2 10a4.5 4.5 0 0 1 4.5-4.5h7a4.5 4.5 0 1 1 0 9h-7A4.5 4.5 0 0 1 2 10Zm4.5-3a3 3 0 0 0 0 6h7a3 3 0 1 0 0-6h-7Z"},"children":[]}],"metadata":""}]},"name":"fields"};
|
|
7
7
|
|
|
8
8
|
export default Fields;
|
package/src/icons/ast/Filter.ts
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const Filter: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"
|
|
6
|
+
const Filter: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M15.676 2c.258 0 .494 0 .692.016.213.018.446.057.677.175.329.168.596.435.764.765.118.23.157.463.175.676.016.198.016.434.016.692V5.287c0 .225.001.465-.063.697a1.749 1.749 0 0 1-.27.562c-.141.195-.33.345-.505.485l-.044.035-3.799 3.04a6.505 6.505 0 0 0-.228.187.477.477 0 0 0-.043.041.25.25 0 0 0-.039.08.44.44 0 0 0-.005.06 6.424 6.424 0 0 0-.004.295v3.586c0 .286.002.591-.097.874-.085.247-.224.47-.407.656-.21.213-.484.348-.74.474l-.066.031-2.478 1.224c-.17.084-.34.169-.488.226-.154.059-.389.133-.661.091a1.25 1.25 0 0 1-.838-.52 1.288 1.288 0 0 1-.21-.634A6.281 6.281 0 0 1 7 16.239V10.5l-.025-.11a.233.233 0 0 0-.066-.098 6.422 6.422 0 0 0-.228-.187L2.882 7.066l-.044-.035c-.176-.14-.364-.29-.505-.485a1.75 1.75 0 0 1-.27-.562c-.064-.232-.064-.472-.063-.697V4.324c0-.258 0-.494.016-.692.018-.213.057-.446.175-.676a1.75 1.75 0 0 1 .765-.765c.23-.118.463-.157.676-.175C3.83 2 4.092 2 4.35 2h11.326ZM3.633 3.529a.627.627 0 0 1 .121-.018c.13-.01.304-.011.596-.011h11.3c.292 0 .467 0 .596.011a.625.625 0 0 1 .12.018.25.25 0 0 1 .105.104.638.638 0 0 1 .018.121c.01.13.011.304.011.596v.881c0 .149 0 .232-.003.295a.456.456 0 0 1-.006.06.252.252 0 0 1-.03.066c.004-.004-.002.005 0 0-.002.004-.022.03-.052.056a6.58 6.58 0 0 1-.228.187l-3.799 3.039-.044.035c-.176.14-.364.29-.505.485-.123.17-.215.36-.27.562-.064.232-.064.472-.063.697v3.57c0 .19 0 .298-.005.38a.516.516 0 0 1-.009.076.249.249 0 0 1-.058.092.51.51 0 0 1-.064.042c-.07.04-.168.089-.338.173l-2.454 1.212-.072.035v-5.58c0-.225.001-.465-.063-.697a1.75 1.75 0 0 0-.27-.562c-.141-.195-.33-.345-.505-.485l-.044-.035-3.799-3.04a6.484 6.484 0 0 1-.228-.186l-.02-.017a.127.127 0 0 1-.024-.025c-.035-.045-.04-.077-.044-.14a6.488 6.488 0 0 1-.003-.295V4.35c0-.292 0-.467.011-.596a.628.628 0 0 1 .018-.12.25.25 0 0 1 .104-.105Z"},"children":[]}],"metadata":""}]},"name":"filter"};
|
|
7
7
|
|
|
8
8
|
export default Filter;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const FocusMode: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"
|
|
6
|
+
const FocusMode: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M16.25 3H12a.75.75 0 0 0 0 1.5h2.44l-3.97 3.97a.75.75 0 0 0 1.06 1.06l3.97-3.97V8A.75.75 0 0 0 17 8V3.75a.75.75 0 0 0-.75-.75ZM3.75 17H8a.75.75 0 0 0 0-1.5H5.56l3.97-3.97a.75.75 0 1 0-1.06-1.06L4.5 14.44V12A.75.75 0 0 0 3 12v4.25a.75.75 0 0 0 .75.75Z"},"children":[]}],"metadata":""}]},"name":"focus-mode"};
|
|
7
7
|
|
|
8
8
|
export default FocusMode;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const FocusModeOff: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"
|
|
6
|
+
const FocusModeOff: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M11 9.75h4.25a.75.75 0 0 0 0-1.5h-2.44l3.97-3.97a.75.75 0 0 0-1.06-1.06l-3.97 3.97V4.75a.75.75 0 0 0-1.5 0V9a.75.75 0 0 0 .75.75ZM9 10.25H4.75a.75.75 0 0 0 0 1.5h2.44l-3.97 3.97a.75.75 0 1 0 1.06 1.06l3.97-3.97v2.44a.75.75 0 0 0 1.5 0V11a.75.75 0 0 0-.75-.75Z"},"children":[]}],"metadata":""}]},"name":"focus-mode-off"};
|
|
7
7
|
|
|
8
8
|
export default FocusModeOff;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const ImageXmark: 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.623 2H10a.755.755 0 0 1 0 1.51H5.653c-.52 0-.864 0-1.128.022-.256.02-.369.057-.439.093-.198.1-.36.263-.461.461-.036.07-.073.183-.093.439a15.5 15.5 0 0 0-.023 1.128v8.225l2.374-2.39.021-.021c.34-.337.626-.62.88-.835.266-.224.545-.414.882-.523a2.566 2.566 0 0 1 1.578 0c.337.11.616.3.882.523.254.214.54.498.88.835l1.045 1.036c.261-.257.49-.478.697-.652.27-.228.555-.42.899-.529a2.567 2.567 0 0 1 1.6.018c.34.117.62.316.886.55.112.099.23.212.358.338V10A.755.755 0 1 1 18 10v4.377c0 .482 0 .888-.027 1.221-.029.349-.09.683-.253 1A2.566 2.566 0 0 1 16.6 17.72a2.479 2.479 0 0 1-.891.243 4.908 4.908 0 0 1-.11.01c-.333.027-.74.027-1.22.027H5.622c-.482 0-.888 0-1.221-.027-.349-.029-.683-.09-1-.253A2.566 2.566 0 0 1 2.28 16.6a2.437 2.437 0 0 1-.237-.84C2 15.394 2 14.94 2 14.393v-8.77c0-.48 0-.887.027-1.22.029-.349.09-.683.253-1A2.566 2.566 0 0 1 3.4 2.28c.318-.162.652-.224 1-.253C4.736 2 5.142 2 5.624 2Zm10.26 14.39a1.056 1.056 0 0 0 .492-.476c.036-.07.073-.183.093-.439.021-.257.023-.591.023-1.09l-.546-.554c-.366-.38-.608-.63-.81-.808-.195-.172-.301-.229-.375-.254a1.057 1.057 0 0 0-.66-.008c-.074.024-.182.078-.38.245-.162.136-.35.317-.604.567l2.768 2.817Zm-4.367-2.291 2.35 2.392H5.654c-.52 0-.864-.001-1.128-.023-.256-.02-.369-.057-.439-.093a1.057 1.057 0 0 1-.464-.467l3.326-3.35c.365-.362.607-.602.808-.771.195-.164.3-.217.374-.241.211-.069.439-.069.65 0 .074.024.18.077.374.24.201.17.444.41.81.774l1.552 1.539Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M13.22 1.22a.75.75 0 0 1 1.06 0L16 2.94l1.72-1.72a.75.75 0 1 1 1.06 1.06L17.06 4l1.72 1.72a.75.75 0 0 1-1.06 1.06L16 5.06l-1.72 1.72a.75.75 0 1 1-1.06-1.06L14.94 4l-1.72-1.72a.75.75 0 0 1 0-1.06Z"},"children":[]}],"metadata":""}]},"name":"image-xmark"};
|
|
7
|
+
|
|
8
|
+
export default ImageXmark;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const InvitePeople: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M13
|
|
6
|
+
const InvitePeople: 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 3.25c-1.73 0-3 1.531-3 3.25s1.27 3.25 3 3.25c1.729 0 3-1.531 3-3.25s-1.271-3.25-3-3.25ZM11.5 6.5c0-1.043.744-1.75 1.5-1.75s1.5.707 1.5 1.75c0 1.043-.744 1.75-1.5 1.75s-1.5-.707-1.5-1.75ZM6.25 4.25c-1.6 0-2.75 1.429-2.75 3s1.15 3 2.75 3S9 8.821 9 7.25s-1.15-3-2.75-3ZM5 7.25c0-.914.64-1.5 1.25-1.5s1.25.586 1.25 1.5-.64 1.5-1.25 1.5S5 8.164 5 7.25ZM8.29 11.84c1.051-.965 2.617-1.59 4.71-1.59s3.658.625 4.71 1.59c1.045.96 1.536 2.217 1.54 3.38.003.99-.873 1.53-1.625 1.53H8.374c-.752 0-1.628-.54-1.624-1.53.004-1.163.494-2.42 1.54-3.38Zm1.014 1.105a3.243 3.243 0 0 0-1.04 2.053c-.013.139.1.252.239.252h8.996a.233.233 0 0 0 .238-.252 3.248 3.248 0 0 0-1.042-2.053c-.726-.667-1.907-1.195-3.695-1.195-1.789 0-2.97.528-3.696 1.195Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M6.249 10.75c.573 0 1.102.056 1.586.16a5.89 5.89 0 0 0-1.198 1.351 6.983 6.983 0 0 0-.388-.011c-1.49 0-2.472.45-3.08 1.016a2.91 2.91 0 0 0-.902 1.776.188.188 0 0 0 .192.207l3.29-.013a2.38 2.38 0 0 0 .516 1.514H2.37c-.753 0-1.648-.548-1.618-1.558a4.327 4.327 0 0 1 1.396-3.024c.929-.864 2.296-1.418 4.102-1.418Z"},"children":[]}],"metadata":""}]},"name":"invite-people"};
|
|
7
7
|
|
|
8
8
|
export default InvitePeople;
|