@fibery/ui-kit 1.14.0 → 1.16.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 +4 -3
- package/src/antd/styles.ts +21 -4
- package/src/designSystem.ts +18 -28
- package/src/emoji-picker/app-icon-picker.tsx +31 -26
- package/src/emoji-picker/emoji-picker-content-with-color.tsx +107 -0
- package/src/emoji-picker/emoji-picker.tsx +34 -37
- package/src/emoji-picker/emoji.tsx +4 -7
- package/src/emoji-picker/icon-emoji-picker.tsx +17 -8
- package/src/emoji-picker/primitives/category.tsx +95 -25
- package/src/emoji-picker/primitives/emoji.tsx +37 -78
- package/src/emoji-picker/primitives/footer.tsx +3 -1
- package/src/emoji-picker/primitives/grid.tsx +53 -23
- package/src/emoji-picker/primitives/root.tsx +13 -3
- package/src/emoji-picker/primitives/search.tsx +38 -20
- package/src/emoji-picker/primitives/skin-tone.tsx +21 -11
- package/src/emoji-picker/stores/emoji-data-store.tsx +0 -1
- package/src/emoji-picker/stores/lazy-icon-data-store.tsx +44 -0
- package/src/emoji-picker/stores/static-emoji-data-store.tsx +16 -0
- package/src/emoji-picker/utils/emoji-set.ts +1 -1
- package/src/icons/ast/AiAssistant.ts +1 -1
- package/src/icons/ast/AiAvatar.ts +1 -1
- package/src/icons/ast/AppTemplates.ts +1 -1
- package/src/icons/ast/BellCircle.ts +8 -0
- package/src/icons/ast/BellX.ts +8 -0
- package/src/icons/ast/Bolt.ts +8 -0
- package/src/icons/ast/CheckCircle.ts +8 -0
- package/src/icons/ast/ClockForward.ts +8 -0
- package/src/icons/ast/ColorCodingFilled.ts +8 -0
- package/src/icons/ast/Delete.ts +1 -1
- package/src/icons/ast/EmojiDelete.ts +8 -0
- package/src/icons/ast/ExtensionAssignments.ts +1 -1
- package/src/icons/ast/Fields.ts +1 -1
- package/src/icons/ast/Figma.ts +8 -0
- package/src/icons/ast/GoogleDrive.ts +8 -0
- package/src/icons/ast/GoogleMap.ts +8 -0
- package/src/icons/ast/InvitePeople.ts +1 -1
- package/src/icons/ast/LineDivider.ts +8 -0
- package/src/icons/ast/Loom.ts +8 -0
- package/src/icons/ast/Miro.ts +8 -0
- package/src/icons/ast/Mixpanel.ts +8 -0
- package/src/icons/ast/Shared.ts +1 -1
- package/src/icons/ast/Twitter.ts +8 -0
- package/src/icons/ast/Youtube.ts +8 -0
- package/src/icons/ast/index.tsx +16 -0
- package/src/icons/react/BellCircle.tsx +12 -0
- package/src/icons/react/BellX.tsx +12 -0
- package/src/icons/react/Bolt.tsx +12 -0
- package/src/icons/react/CheckCircle.tsx +12 -0
- package/src/icons/react/ClockForward.tsx +12 -0
- package/src/icons/react/ColorCodingFilled.tsx +12 -0
- package/src/icons/react/EmojiDelete.tsx +12 -0
- package/src/icons/react/Figma.tsx +12 -0
- package/src/icons/react/GoogleDrive.tsx +12 -0
- package/src/icons/react/GoogleMap.tsx +12 -0
- package/src/icons/react/LineDivider.tsx +12 -0
- package/src/icons/react/Loom.tsx +12 -0
- package/src/icons/react/Miro.tsx +12 -0
- package/src/icons/react/Mixpanel.tsx +12 -0
- package/src/icons/react/Twitter.tsx +12 -0
- package/src/icons/react/Youtube.tsx +12 -0
- package/src/icons/react/index.tsx +16 -0
- package/src/Button/icon-button-with-tooltip.tsx +0 -15
- package/src/emoji-picker/index.tsx +0 -5
- package/src/emoji-picker/lazy-icon-data-store.tsx +0 -55
- /package/src/emoji-picker/{lazy-emoji-data-store.tsx → stores/lazy-emoji-data-store.tsx} +0 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import {RawCustomEmoji, makeEmojiData} from "@fibery/emoji-data";
|
|
2
|
+
import {Suspense, lazy} from "react";
|
|
3
|
+
import {EmojiDataStoreProvider} from "./emoji-data-store";
|
|
4
|
+
import {getImageUrl} from "../../AppIconWithFallback";
|
|
5
|
+
|
|
6
|
+
const EMPTY_DATA = {
|
|
7
|
+
aliases: {},
|
|
8
|
+
emojis: {},
|
|
9
|
+
categories: [],
|
|
10
|
+
compressed: false,
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
const LazyAppIcons = lazy(async () => {
|
|
14
|
+
const appIconsEmojiData = makeEmojiData(EMPTY_DATA);
|
|
15
|
+
|
|
16
|
+
const {default: appIcons} = await import("../../appIcons.json");
|
|
17
|
+
|
|
18
|
+
const custom = appIcons.map(
|
|
19
|
+
(appIcon): RawCustomEmoji => ({
|
|
20
|
+
...appIcon,
|
|
21
|
+
imageUrl: getImageUrl(appIcon) as string,
|
|
22
|
+
})
|
|
23
|
+
);
|
|
24
|
+
|
|
25
|
+
appIconsEmojiData.setCustom(custom);
|
|
26
|
+
|
|
27
|
+
return {
|
|
28
|
+
default: function EmojiDataStore({children}: React.PropsWithChildren) {
|
|
29
|
+
return <EmojiDataStoreProvider data={appIconsEmojiData}>{children}</EmojiDataStoreProvider>;
|
|
30
|
+
},
|
|
31
|
+
};
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
export const LazyIconDataStore: React.FC<
|
|
35
|
+
React.PropsWithChildren<{
|
|
36
|
+
fallback: React.ReactNode;
|
|
37
|
+
}>
|
|
38
|
+
> = ({fallback, children}) => {
|
|
39
|
+
return (
|
|
40
|
+
<Suspense fallback={fallback}>
|
|
41
|
+
<LazyAppIcons>{children}</LazyAppIcons>
|
|
42
|
+
</Suspense>
|
|
43
|
+
);
|
|
44
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import {FC, ReactNode, useMemo} from "react";
|
|
2
|
+
import {makeEmojiData} from "@fibery/emoji-data";
|
|
3
|
+
import {getEmojiSet} from "../utils/emoji-set";
|
|
4
|
+
import {EmojiDataStoreProvider} from "./emoji-data-store";
|
|
5
|
+
import rawData from "@fibery/emoji-data/data/all.json";
|
|
6
|
+
|
|
7
|
+
// Static means "preloaded", "non-lazy" here
|
|
8
|
+
|
|
9
|
+
interface EmojiDataProviderProps {
|
|
10
|
+
children?: ReactNode;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export const StaticEmojiDataStore: FC<EmojiDataProviderProps> = ({children}) => {
|
|
14
|
+
const emojiData = useMemo(() => makeEmojiData(rawData, {set: getEmojiSet()}), []);
|
|
15
|
+
return <EmojiDataStoreProvider data={emojiData}>{children}</EmojiDataStoreProvider>;
|
|
16
|
+
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import {SpritesheetSet} from "@fibery/emoji-data";
|
|
2
2
|
|
|
3
|
-
const isApple = () => /Mac|iPhone|iPad/.test(navigator.userAgent);
|
|
3
|
+
export const isApple = () => /Mac|iPhone|iPad/.test(navigator.userAgent);
|
|
4
4
|
|
|
5
5
|
export const getEmojiSet = (): SpritesheetSet => (isApple() ? "apple" : "twitter");
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const AiAssistant: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"
|
|
6
|
+
const AiAssistant: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M3 0c.117 0 .221.072.263.181l.57 1.498a.844.844 0 0 0 .488.488l1.498.57a.281.281 0 0 1 0 .526l-1.498.57a.844.844 0 0 0-.488.488l-.57 1.498a.281.281 0 0 1-.526 0l-.57-1.498a.844.844 0 0 0-.488-.488L.18 3.263a.281.281 0 0 1 0-.526l1.498-.57a.844.844 0 0 0 .488-.488L2.737.18A.281.281 0 0 1 3 0ZM3 14c.117 0 .221.072.263.181l.57 1.498a.844.844 0 0 0 .488.488l1.498.57a.281.281 0 0 1 0 .526l-1.498.57a.844.844 0 0 0-.488.488l-.57 1.498a.281.281 0 0 1-.526 0l-.57-1.498a.844.844 0 0 0-.488-.488l-1.498-.57a.281.281 0 0 1 0-.526l1.498-.57a.844.844 0 0 0 .488-.488l.57-1.498A.281.281 0 0 1 3 14Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M11.7 2.483a.75.75 0 0 0-1.4 0L8.777 6.476a2.25 2.25 0 0 1-1.302 1.302L3.483 9.299a.75.75 0 0 0 0 1.402l3.993 1.521a2.25 2.25 0 0 1 1.302 1.302l1.521 3.993a.75.75 0 0 0 1.402 0l1.521-3.993a2.25 2.25 0 0 1 1.302-1.302l3.993-1.521a.75.75 0 0 0 0-1.402l-3.993-1.521a2.25 2.25 0 0 1-1.302-1.302l-1.521-3.993ZM10.18 7.01 11 4.857l.82 2.153a3.75 3.75 0 0 0 2.17 2.17l2.153.82-2.153.82a3.75 3.75 0 0 0-2.17 2.17L11 15.143l-.82-2.153a3.75 3.75 0 0 0-2.17-2.17L5.857 10l2.153-.82a3.75 3.75 0 0 0 2.17-2.17Z"},"children":[]}],"metadata":""}]},"name":"ai-assistant"};
|
|
7
7
|
|
|
8
8
|
export default AiAssistant;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const AiAvatar: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"
|
|
6
|
+
const AiAvatar: 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 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10Zm0-15.833a.562.562 0 0 1 .525.36l1.016 2.64c.175.457.232.592.309.701.077.11.173.204.281.281.11.078.245.135.701.31l2.64 1.016a.562.562 0 0 1 0 1.05l-2.64 1.015c-.456.176-.591.232-.7.31a1.198 1.198 0 0 0-.281.28c-.078.11-.135.245-.31.702l-1.016 2.64a.562.562 0 0 1-1.05 0l-1.015-2.64c-.176-.457-.232-.592-.31-.7a1.194 1.194 0 0 0-.28-.282c-.11-.078-.245-.134-.702-.31l-2.64-1.015a.562.562 0 0 1 0-1.05l2.64-1.016c.457-.175.592-.232.701-.309.11-.077.204-.172.281-.281.078-.11.134-.245.31-.701l1.015-2.64A.562.562 0 0 1 10 4.166Zm0 2.128-.514 1.34c-.143.37-.25.647-.42.885-.15.211-.334.396-.545.546-.239.17-.516.277-.886.42L6.295 10l1.336.513c.372.143.65.25.89.42.21.15.396.335.546.546.17.24.277.517.42.89L10 13.704l.518-1.345c.141-.368.247-.642.416-.88.15-.21.335-.395.546-.546.24-.17.517-.277.89-.42L13.704 10l-1.338-.515c-.37-.142-.648-.25-.887-.419a2.321 2.321 0 0 1-.546-.546c-.17-.24-.277-.518-.42-.89L10 6.295Z"},"children":[]}],"metadata":""}]},"name":"ai-avatar"};
|
|
7
7
|
|
|
8
8
|
export default AiAvatar;
|
|
@@ -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":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"
|
|
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":"M2 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.25Zm1.5 0a.75.75 0 0 1 .75-.75H7a.75.75 0 0 1 .75.75V7a.75.75 0 0 1-.75.75H4.25A.75.75 0 0 1 3.5 7V4.25Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M14.38 9.225c-.483 0-.875-.367-.875-.85V6.48H11.6a.875.875 0 0 1 0-1.75h1.905V2.875a.875.875 0 0 1 1.75 0V4.73H17.1a.875.875 0 1 1 0 1.75h-1.845v1.895c0 .483-.392.85-.875.85Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M13 10.75A2.25 2.25 0 0 0 10.75 13v2.75A2.25 2.25 0 0 0 13 18h2.75A2.25 2.25 0 0 0 18 15.75V13a2.25 2.25 0 0 0-2.25-2.25H13Zm0 1.5a.75.75 0 0 0-.75.75v2.75c0 .414.336.75.75.75h2.75a.75.75 0 0 0 .75-.75V13a.75.75 0 0 0-.75-.75H13ZM4.055 10.9a2.22 2.22 0 0 1 3.14 0L9.1 12.805a2.22 2.22 0 0 1 0 3.14L7.195 17.85a2.22 2.22 0 0 1-3.14 0L2.15 15.945a2.22 2.22 0 0 1 0-3.14L4.055 10.9Zm1.061 1.06a.72.72 0 0 1 1.018 0l1.905 1.906a.72.72 0 0 1 0 1.018l-1.905 1.905a.72.72 0 0 1-1.018 0l-1.905-1.905a.72.72 0 0 1 0-1.018l1.905-1.905Z"},"children":[]}],"metadata":""}]},"name":"app-templates"};
|
|
7
7
|
|
|
8
8
|
export default AppTemplates;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const BellCircle: 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 2c-1.509 0-2.966.559-4.047 1.569C4.869 4.579 4.25 5.963 4.25 7.417c0 2.105-.528 3.55-1.117 4.514l-.008.014c-.315.514-.56.916-.726 1.207-.082.145-.155.28-.208.397a1.632 1.632 0 0 0-.077.201.937.937 0 0 0-.04.352c.009.105.03.287.135.474.105.187.25.3.334.363a.94.94 0 0 0 .298.144c.073.02.144.033.205.042.12.017.259.026.405.031.29.01.694.01 1.203.01H6.75v.084a3.25 3.25 0 0 0 6.5 0v-.083h2.096c.51 0 .914 0 1.203-.011a4.06 4.06 0 0 0 .405-.031c.06-.009.132-.021.205-.042a.94.94 0 0 0 .298-.144c.085-.063.23-.176.334-.363.105-.187.126-.37.136-.474a.936.936 0 0 0-.04-.352 1.616 1.616 0 0 0-.078-.2 5.134 5.134 0 0 0-.208-.398c-.165-.29-.411-.693-.726-1.207l-.008-.014c-.388-.635-.747-1.474-.948-2.567a.75.75 0 0 0-1.475.272c.235 1.276.66 2.287 1.143 3.077.241.395.432.707.576.951a80.41 80.41 0 0 1-.835.003H4.672c-.338 0-.613 0-.836-.003.145-.244.336-.556.577-.95.738-1.209 1.337-2.926 1.337-5.297 0-1.022.434-2.013 1.226-2.752C7.77 3.925 8.856 3.5 10 3.5c.291 0 .579.028.86.081a.75.75 0 0 0 .28-1.473A6.095 6.095 0 0 0 10 2ZM8.25 15.167v.083a1.75 1.75 0 0 0 3.5 0v-.083h-3.5Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M18 4.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Z"},"children":[]}],"metadata":""}]},"name":"bell-circle"};
|
|
7
|
+
|
|
8
|
+
export default BellCircle;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const BellX: 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 2c-1.509 0-2.966.559-4.047 1.569C4.869 4.579 4.25 5.963 4.25 7.417c0 2.105-.528 3.55-1.117 4.514l-.008.014c-.315.514-.56.916-.726 1.207-.082.145-.155.28-.208.397a1.632 1.632 0 0 0-.077.201.937.937 0 0 0-.04.352c.009.105.03.287.135.474.105.187.25.3.334.363a.94.94 0 0 0 .298.144c.073.02.144.033.205.042.12.017.259.026.405.031.29.01.694.01 1.203.01H6.75v.084a3.25 3.25 0 0 0 6.5 0v-.083h2.096c.51 0 .914 0 1.203-.011.146-.005.285-.014.405-.031a1.49 1.49 0 0 0 .205-.042.94.94 0 0 0 .298-.144c.085-.063.23-.176.334-.363a1.15 1.15 0 0 0 .135-.474.934.934 0 0 0-.04-.352 1.648 1.648 0 0 0-.077-.2 5.134 5.134 0 0 0-.208-.398c-.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.848C12.966 2.559 11.51 2 10 2ZM8.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":[]},{"type":"element","tagName":"path","properties":{"d":"M8.28 6.22a.75.75 0 0 0-1.06 1.06L8.94 9l-1.72 1.72a.75.75 0 1 0 1.06 1.06L10 10.06l1.72 1.72a.75.75 0 1 0 1.06-1.06L11.06 9l1.72-1.72a.75.75 0 0 0-1.06-1.06L10 7.94 8.28 6.22Z"},"children":[]}],"metadata":""}]},"name":"bell-x"};
|
|
7
|
+
|
|
8
|
+
export default BellX;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const Bolt: 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":"M11.114 1.055a.75.75 0 0 1 .463.79l-.726 5.738h4.437c.2 0 .398 0 .56.015.153.014.43.05.67.243.279.223.44.562.436.92-.003.307-.15.544-.237.672-.09.134-.216.287-.343.443l-.008.009L9.767 18.7a.75.75 0 0 1-1.344-.544l.726-5.74H4.712c-.2 0-.398 0-.56-.014-.153-.014-.43-.05-.67-.243a1.167 1.167 0 0 1-.436-.92c.003-.307.15-.544.237-.672.09-.134.216-.287.343-.443l.008-.009 6.599-8.814a.75.75 0 0 1 .881-.246Zm-6.207 9.862H10a.75.75 0 0 1 .744.844l-.477 3.768 4.826-6.446H10a.75.75 0 0 1-.744-.844l.477-3.768-4.826 6.446Z"},"children":[]}],"metadata":""}]},"name":"bolt"};
|
|
7
|
+
|
|
8
|
+
export default Bolt;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const CheckCircle: 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-13Zm4.155 3.432a.75.75 0 0 1 0 1.06L9.08 13.069a.75.75 0 0 1-1.06 0l-2.175-2.175a.75.75 0 1 1 1.06-1.06l1.645 1.644 4.545-4.545a.75.75 0 0 1 1.06 0Z"},"children":[]}],"metadata":""}]},"name":"check-circle"};
|
|
7
|
+
|
|
8
|
+
export default CheckCircle;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const ClockForward: 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.455 4.07A7.417 7.417 0 1 0 17.417 10a.75.75 0 0 0-1.5 0 5.917 5.917 0 1 1-2.62-4.913h-.592a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 .75-.75v-2.5a.75.75 0 0 0-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":"clock-forward"};
|
|
7
|
+
|
|
8
|
+
export default ClockForward;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const ColorCodingFilled: 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 2.05a7.95 7.95 0 1 0 0 15.9 3.15 3.15 0 0 0 3.15-3.15v-.48c0-.326.002-.402.01-.453a.85.85 0 0 1 .707-.706c.051-.009.127-.01.453-.01h.48A3.15 3.15 0 0 0 17.95 10 7.95 7.95 0 0 0 10 2.05ZM7.65 6.4a1.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 0ZM6.4 8.45a1.15 1.15 0 1 0 0 2.3 1.15 1.15 0 0 0 0-2.3Z"},"children":[]}],"metadata":""}]},"name":"color-coding-filled"};
|
|
7
|
+
|
|
8
|
+
export default ColorCodingFilled;
|
package/src/icons/ast/Delete.ts
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const Delete: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"
|
|
6
|
+
const Delete: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M8.25 8a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-1.5 0v-4.5A.75.75 0 0 1 8.25 8ZM12.5 8.75a.75.75 0 0 0-1.5 0v4.5a.75.75 0 0 0 1.5 0v-4.5Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M6.5 4.5V2.528a1.583 1.583 0 0 1 .475-1.132l.04-.048c.042-.05.13-.149.269-.233.263-.158.562-.17.8-.17h3.833A1.584 1.584 0 0 1 13.5 2.527V4.5h3.25a.75.75 0 0 1 0 1.5h-.223l-.777 9.561a2.417 2.417 0 0 1-2.417 2.383H6.667a2.417 2.417 0 0 1-2.417-2.383L3.473 6H3.25a.75.75 0 0 1 0-1.5H6.5Zm1.524-2.031.024-.024h3.869a.083.083 0 0 1 .083.083V4.5H8V2.528c0-.022.009-.044.024-.06ZM4.978 6l.77 9.467.002.06a.917.917 0 0 0 .917.917h6.666a.917.917 0 0 0 .917-.916c0-.02 0-.04.002-.061L15.022 6H4.978Z"},"children":[]}],"metadata":""}]},"name":"delete"};
|
|
7
7
|
|
|
8
8
|
export default Delete;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const EmojiDelete: 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":"M6.5 4.5V2.528a1.583 1.583 0 0 1 .475-1.132l.04-.048c.042-.05.13-.149.269-.233.263-.158.562-.17.8-.17h3.833A1.584 1.584 0 0 1 13.5 2.527V4.5h3.25a.75.75 0 0 1 0 1.5h-.223l-.777 9.561a2.417 2.417 0 0 1-2.417 2.383H6.667a2.417 2.417 0 0 1-2.417-2.383L3.473 6H3.25a.75.75 0 0 1 0-1.5H6.5Zm1.524-2.031.024-.024h3.869a.083.083 0 0 1 .083.083V4.5H8V2.528c0-.022.009-.044.024-.06ZM4.978 6l.77 9.467.002.06a.917.917 0 0 0 .917.917h6.666a.917.917 0 0 0 .917-.916c0-.02 0-.04.002-.061L15.022 6H4.978Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M12.008 13.2c-.45.327-1.134.677-2.007.677-.874 0-1.56-.35-2.009-.677a3.924 3.924 0 0 1-.521-.454c-.06-.063-.17-.194-.204-.235a.751.751 0 0 1 1.197-.904c.072.075.27.278.41.38.284.206.666.39 1.127.39.46 0 .841-.184 1.125-.39.14-.102.338-.305.41-.38a.751.751 0 0 1 1.197.904c-.034.04-.143.172-.204.235a3.93 3.93 0 0 1-.52.454Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M7.383 9.393a1.017 1.017 0 1 1 2.034 0 1.017 1.017 0 0 1-2.034 0Zm3.2 0a1.017 1.017 0 1 1 2.034 0 1.017 1.017 0 0 1-2.034 0Z"},"children":[]}],"metadata":""}]},"name":"emoji-delete"};
|
|
7
|
+
|
|
8
|
+
export default EmojiDelete;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const ExtensionAssignments: 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 ExtensionAssignments: 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":"extension-assignments"};
|
|
7
7
|
|
|
8
8
|
export default ExtensionAssignments;
|
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":{"fillRule":"evenodd","clipRule":"evenodd","d":"M1 10a6 6 0 0 1 6-6h6a6 6 0 0 1 0 12H7a6 6 0 0 1-6-6Zm1.5 0A4.5 4.5 0 0 1 7 5.5h6a4.5 4.5 0 1 1 0 9H7A4.5 4.5 0 0 1 2.5 10Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M13 12.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z"},"children":[]}],"metadata":""}]},"name":"fields"};
|
|
7
7
|
|
|
8
8
|
export default Fields;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const Figma: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M10 10a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z","fill":"#1ABCFE"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M4 16a3 3 0 0 1 3-3h3v3a3 3 0 1 1-6 0Z","fill":"#0ACF83"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M10 1v6h3a3 3 0 1 0 0-6h-3Z","fill":"#FF7262"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M4 4a3 3 0 0 0 3 3h3V1H7a3 3 0 0 0-3 3Z","fill":"#F24E1E"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M4 10a3 3 0 0 0 3 3h3V7H7a3 3 0 0 0-3 3Z","fill":"#A259FF"},"children":[]}],"metadata":""}]},"name":"figma"};
|
|
7
|
+
|
|
8
|
+
export default Figma;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const GoogleDrive: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"m2.36 15.784.795 1.37c.165.29.402.516.68.681l2.835-4.907H1c0 .32.082.639.247.928l1.114 1.928Z","fill":"#0066DA"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M10 7.155 7.165 2.247a1.872 1.872 0 0 0-.68.68L1.247 12a1.868 1.868 0 0 0-.247.928h5.67L10 7.155Z","fill":"#00AC47"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M16.165 17.835c.278-.165.515-.392.68-.68l.33-.567 1.578-2.732c.165-.289.247-.609.247-.928h-5.67l1.206 2.371 1.629 2.536Z","fill":"#EA4335"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"m10 7.155 2.835-4.908A1.813 1.813 0 0 0 11.907 2H8.093c-.33 0-.65.093-.928.247L10 7.155Z","fill":"#00832D"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M13.33 12.928H6.67l-2.835 4.907c.278.165.598.247.928.247h10.474c.33 0 .65-.092.928-.247l-2.835-4.907Z","fill":"#2684FC"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"m16.134 7.464-2.619-4.536a1.873 1.873 0 0 0-.68-.68L10 7.154l3.33 5.773h5.66c0-.32-.083-.64-.248-.928l-2.608-4.536Z","fill":"#FFBA00"},"children":[]}],"metadata":""}]},"name":"google-drive"};
|
|
7
|
+
|
|
8
|
+
export default GoogleDrive;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const GoogleMap: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M11.97 1.387a6.158 6.158 0 0 0-6.57 1.91l2.907 2.446 3.662-4.356Z","fill":"#1A73E8"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M5.399 3.297a6.128 6.128 0 0 0-1.442 3.955c0 1.157.231 2.095.61 2.935l3.738-4.444L5.4 3.297Z","fill":"#EA4335"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M10.11 4.9a2.353 2.353 0 0 1 1.798 3.872l3.663-4.355a6.165 6.165 0 0 0-3.6-3.03L8.305 5.743a2.347 2.347 0 0 1 1.806-.843Z","fill":"#4285F4"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M10.11 9.605a2.353 2.353 0 0 1-1.805-3.864l-3.738 4.446c.638 1.417 1.701 2.554 2.796 3.988l4.544-5.403c-.431.51-1.076.833-1.796.833Z","fill":"#FBBC04"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M11.817 15.65c2.052-3.21 4.446-4.667 4.446-8.398 0-1.023-.251-1.987-.692-2.835l-8.207 9.758c.348.456.699.941 1.041 1.476 1.248 1.928.902 3.084 1.707 3.084.803 0 .457-1.158 1.705-3.086Z","fill":"#34A853"},"children":[]}],"metadata":""}]},"name":"google-map"};
|
|
7
|
+
|
|
8
|
+
export default GoogleMap;
|
|
@@ -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":{"fillRule":"evenodd","clipRule":"evenodd","d":"
|
|
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":"M8.502 10.7c1.27 0 2.629.198 3.784.747 1.174.557 2.155 1.489 2.565 2.92.18.63.172 1.405.136 1.96C14.92 17.33 14.067 18 13.152 18H3.85c-.915 0-1.77-.67-1.835-1.672-.036-.556-.045-1.33.136-1.961.41-1.431 1.392-2.363 2.566-2.92 1.156-.549 2.515-.747 3.785-.747Zm3.14 2.102c.87.412 1.499 1.043 1.767 1.978.105.367.115.921.081 1.45-.008.126-.123.27-.338.27H3.85c-.215 0-.33-.144-.338-.27-.034-.529-.024-1.084.081-1.45.268-.935.898-1.565 1.768-1.978.887-.421 2.005-.602 3.141-.602 1.137 0 2.253.18 3.14.602ZM8.5 2a3.65 3.65 0 1 1 0 7.3 3.65 3.65 0 0 1 0-7.3Zm0 1.5a2.15 2.15 0 1 1 0 4.3 2.15 2.15 0 0 1 0-4.3Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M16.75 7.25a.75.75 0 0 0-1.5 0v1.5h-1.5a.75.75 0 0 0 0 1.5h1.5v1.5a.75.75 0 0 0 1.5 0v-1.5h1.5a.75.75 0 0 0 0-1.5h-1.5v-1.5Z"},"children":[]}],"metadata":""}]},"name":"invite-people"};
|
|
7
7
|
|
|
8
8
|
export default InvitePeople;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const LineDivider: 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 10a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 10Z"},"children":[]}],"metadata":""}]},"name":"line-divider"};
|
|
7
|
+
|
|
8
|
+
export default LineDivider;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const Loom: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M19 9.013h-5.255l4.558-2.642-.987-1.742-4.558 2.642L15.4 2.713l-1.742-1.016-2.642 4.558V1H9.013v5.255L6.37 1.697l-1.742.987 2.642 4.558-4.558-2.613-.987 1.742 4.558 2.642H1v2.003h5.255L1.697 13.63l.987 1.742 4.558-2.642L4.6 17.287l1.742.987 2.642-4.558V19h2.003v-5.255l2.642 4.558 1.742-.987-2.642-4.558 4.558 2.642.987-1.742-4.558-2.642H19V9.013Zm-9 3.716A2.726 2.726 0 0 1 7.271 10c0-1.51 1.22-2.729 2.729-2.729 1.51 0 2.729 1.22 2.729 2.729 0 1.51-1.22 2.729-2.729 2.729Z","fill":"#625DF5"},"children":[]}],"metadata":""}]},"name":"loom"};
|
|
7
|
+
|
|
8
|
+
export default Loom;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const Miro: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M4.9 1h10.2C17.238 1 19 2.763 19 4.9v10.2c0 2.138-1.762 3.9-3.9 3.9H4.9C2.762 19 1 17.238 1 15.1V4.9C1 2.762 2.763 1 4.9 1Z","fill":"#FFD02F"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M13.488 3.25H11.5l1.65 2.888-3.6-2.888H7.562l1.8 3.525-3.75-3.525H3.625l1.987 4.5-1.987 9h1.987L9.4 7.113 7.562 16.75H9.55l3.637-10.275-1.65 10.275h1.988l3.6-11.25-3.637-2.25Z","fill":"#050038"},"children":[]}],"metadata":""}]},"name":"miro"};
|
|
7
|
+
|
|
8
|
+
export default Miro;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const Mixpanel: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M6.225 8.085h2.288c-.573-.359-.787-.859-1.073-1.787l-.86-3.184C6.19 1.682 5.867 1 4.294 1h-3.29v.86h.468c.965 0 1.074.358 1.36 1.432l.75 2.792c.392 1.356 1.002 2.001 2.644 2.001Zm5.294 0h2.288c1.647 0 2.216-.645 2.611-2.001l.75-2.792c.287-1.074.429-1.433 1.36-1.433h.468V1H15.74c-1.61 0-1.933.645-2.292 2.11l-.859 3.184c-.28.965-.497 1.432-1.07 1.791Zm-3.006 3.003h3.006V8.082H8.513v3.006Zm-7.51 7.085h3.29c1.573 0 1.896-.681 2.288-2.11l.859-3.184c.286-.928.5-1.432 1.073-1.787H6.225c-1.646 0-2.255.645-2.647 2.001l-.75 2.792c-.29 1.07-.396 1.429-1.36 1.429H1l.004.86Zm14.737 0h3.256v-.86h-.467c-.929 0-1.074-.358-1.36-1.431l-.75-2.793c-.392-1.36-.965-2.001-2.612-2.001h-2.284c.573.359.78.823 1.066 1.788l.86 3.183c.355 1.469.678 2.114 2.291 2.114Z","fill":"#1B0B3B"},"children":[]}],"metadata":""}]},"name":"mixpanel"};
|
|
7
|
+
|
|
8
|
+
export default Mixpanel;
|
package/src/icons/ast/Shared.ts
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const Shared: 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 Shared: 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":"shared"};
|
|
7
7
|
|
|
8
8
|
export default Shared;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const Twitter: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"rect","properties":{"x":1,"y":1,"width":18,"height":18,"rx":2,"fill":"#000"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M14.163 3.5h2.205L11.55 9.007l5.668 7.493H12.78l-3.476-4.545L5.327 16.5H3.12l5.153-5.89L2.836 3.5h4.55l3.143 4.154L14.163 3.5Zm-.774 11.68h1.222L6.723 4.75H5.41l7.978 10.43Z","fill":"#fff"},"children":[]}],"metadata":""}]},"name":"twitter"};
|
|
7
|
+
|
|
8
|
+
export default Twitter;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const Youtube: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M18.624 5.58a2.261 2.261 0 0 0-1.591-1.601C15.628 3.6 10 3.6 10 3.6s-5.629 0-7.032.379A2.262 2.262 0 0 0 1.376 5.58C1 6.993 1 9.94 1 9.94s0 2.949.376 4.362c.207.779.817 1.393 1.592 1.601 1.403.379 7.032.379 7.032.379s5.629 0 7.032-.379a2.262 2.262 0 0 0 1.592-1.601C19 12.889 19 9.94 19 9.94s0-2.948-.376-4.36Z","fill":"#ED1D24"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"m8.16 12.617 4.704-2.676-4.705-2.676v5.352Z","fill":"#fff"},"children":[]}],"metadata":""}]},"name":"youtube"};
|
|
7
|
+
|
|
8
|
+
export default Youtube;
|
package/src/icons/ast/index.tsx
CHANGED
|
@@ -34,10 +34,16 @@ export { default as Atom } from './Atom';
|
|
|
34
34
|
export { default as Back } from './Back';
|
|
35
35
|
export { default as BacklogIcon } from './BacklogIcon';
|
|
36
36
|
export { default as BatchActionsIcon } from './BatchActionsIcon';
|
|
37
|
+
export { default as BellCircle } from './BellCircle';
|
|
38
|
+
export { default as BellX } from './BellX';
|
|
39
|
+
export { default as Bolt } from './Bolt';
|
|
37
40
|
export { default as Cards } from './Cards';
|
|
41
|
+
export { default as CheckCircle } from './CheckCircle';
|
|
38
42
|
export { default as Checked } from './Checked';
|
|
39
43
|
export { default as ClearValue } from './ClearValue';
|
|
44
|
+
export { default as ClockForward } from './ClockForward';
|
|
40
45
|
export { default as Close } from './Close';
|
|
46
|
+
export { default as ColorCodingFilled } from './ColorCodingFilled';
|
|
41
47
|
export { default as ColorCoding } from './ColorCoding';
|
|
42
48
|
export { default as Columns2 } from './Columns2';
|
|
43
49
|
export { default as Columns4 } from './Columns4';
|
|
@@ -53,6 +59,7 @@ export { default as DragBlockHandle } from './DragBlockHandle';
|
|
|
53
59
|
export { default as DragHandle } from './DragHandle';
|
|
54
60
|
export { default as DynamicFilterValue } from './DynamicFilterValue';
|
|
55
61
|
export { default as Email } from './Email';
|
|
62
|
+
export { default as EmojiDelete } from './EmojiDelete';
|
|
56
63
|
export { default as ExtensionAssignments } from './ExtensionAssignments';
|
|
57
64
|
export { default as ExtensionAvatar } from './ExtensionAvatar';
|
|
58
65
|
export { default as ExtensionComments } from './ExtensionComments';
|
|
@@ -64,6 +71,7 @@ export { default as FavoritesMenu } from './FavoritesMenu';
|
|
|
64
71
|
export { default as Favorites } from './Favorites';
|
|
65
72
|
export { default as FiberyMono } from './FiberyMono';
|
|
66
73
|
export { default as Fields } from './Fields';
|
|
74
|
+
export { default as Figma } from './Figma';
|
|
67
75
|
export { default as FileUpload } from './FileUpload';
|
|
68
76
|
export { default as Filter } from './Filter';
|
|
69
77
|
export { default as FocusModeOff } from './FocusModeOff';
|
|
@@ -73,6 +81,8 @@ export { default as FormWithoutCover } from './FormWithoutCover';
|
|
|
73
81
|
export { default as Github } from './Github';
|
|
74
82
|
export { default as Gitlab } from './Gitlab';
|
|
75
83
|
export { default as Globe } from './Globe';
|
|
84
|
+
export { default as GoogleDrive } from './GoogleDrive';
|
|
85
|
+
export { default as GoogleMap } from './GoogleMap';
|
|
76
86
|
export { default as Hide } from './Hide';
|
|
77
87
|
export { default as Hint } from './Hint';
|
|
78
88
|
export { default as Home } from './Home';
|
|
@@ -83,12 +93,16 @@ export { default as Items } from './Items';
|
|
|
83
93
|
export { default as Jira } from './Jira';
|
|
84
94
|
export { default as LeftPanel } from './LeftPanel';
|
|
85
95
|
export { default as Levels } from './Levels';
|
|
96
|
+
export { default as LineDivider } from './LineDivider';
|
|
86
97
|
export { default as Lock } from './Lock';
|
|
98
|
+
export { default as Loom } from './Loom';
|
|
87
99
|
export { default as Markdown } from './Markdown';
|
|
88
100
|
export { default as MenuCollapser } from './MenuCollapser';
|
|
89
101
|
export { default as MessagePlusSquare } from './MessagePlusSquare';
|
|
90
102
|
export { default as Milestones } from './Milestones';
|
|
91
103
|
export { default as Minus } from './Minus';
|
|
104
|
+
export { default as Miro } from './Miro';
|
|
105
|
+
export { default as Mixpanel } from './Mixpanel';
|
|
92
106
|
export { default as MoreCompact } from './MoreCompact';
|
|
93
107
|
export { default as More } from './More';
|
|
94
108
|
export { default as MySpace } from './MySpace';
|
|
@@ -171,6 +185,7 @@ export { default as SortOnTop } from './SortOnTop';
|
|
|
171
185
|
export { default as Sort } from './Sort';
|
|
172
186
|
export { default as Spinner } from './Spinner';
|
|
173
187
|
export { default as Templates } from './Templates';
|
|
188
|
+
export { default as Twitter } from './Twitter';
|
|
174
189
|
export { default as TypeBoolean } from './TypeBoolean';
|
|
175
190
|
export { default as TypeButton } from './TypeButton';
|
|
176
191
|
export { default as TypeCheckbox } from './TypeCheckbox';
|
|
@@ -209,3 +224,4 @@ export { default as ViewTable } from './ViewTable';
|
|
|
209
224
|
export { default as ViewTimeline } from './ViewTimeline';
|
|
210
225
|
export { default as Views } from './Views';
|
|
211
226
|
export { default as Warning } from './Warning';
|
|
227
|
+
export { default as Youtube } from './Youtube';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import BellCircleSvg from '../ast/BellCircle';
|
|
4
|
+
import { Icon } from '../Icon';
|
|
5
|
+
import { IconBaseProps } from '../types';
|
|
6
|
+
|
|
7
|
+
const BellCircle = (
|
|
8
|
+
props: IconBaseProps,
|
|
9
|
+
): JSX.Element => <Icon {...props} icon={BellCircleSvg} />;
|
|
10
|
+
|
|
11
|
+
BellCircle.displayName = 'BellCircle';
|
|
12
|
+
export default BellCircle;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import BellXSvg from '../ast/BellX';
|
|
4
|
+
import { Icon } from '../Icon';
|
|
5
|
+
import { IconBaseProps } from '../types';
|
|
6
|
+
|
|
7
|
+
const BellX = (
|
|
8
|
+
props: IconBaseProps,
|
|
9
|
+
): JSX.Element => <Icon {...props} icon={BellXSvg} />;
|
|
10
|
+
|
|
11
|
+
BellX.displayName = 'BellX';
|
|
12
|
+
export default BellX;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import BoltSvg from '../ast/Bolt';
|
|
4
|
+
import { Icon } from '../Icon';
|
|
5
|
+
import { IconBaseProps } from '../types';
|
|
6
|
+
|
|
7
|
+
const Bolt = (
|
|
8
|
+
props: IconBaseProps,
|
|
9
|
+
): JSX.Element => <Icon {...props} icon={BoltSvg} />;
|
|
10
|
+
|
|
11
|
+
Bolt.displayName = 'Bolt';
|
|
12
|
+
export default Bolt;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import CheckCircleSvg from '../ast/CheckCircle';
|
|
4
|
+
import { Icon } from '../Icon';
|
|
5
|
+
import { IconBaseProps } from '../types';
|
|
6
|
+
|
|
7
|
+
const CheckCircle = (
|
|
8
|
+
props: IconBaseProps,
|
|
9
|
+
): JSX.Element => <Icon {...props} icon={CheckCircleSvg} />;
|
|
10
|
+
|
|
11
|
+
CheckCircle.displayName = 'CheckCircle';
|
|
12
|
+
export default CheckCircle;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import ClockForwardSvg from '../ast/ClockForward';
|
|
4
|
+
import { Icon } from '../Icon';
|
|
5
|
+
import { IconBaseProps } from '../types';
|
|
6
|
+
|
|
7
|
+
const ClockForward = (
|
|
8
|
+
props: IconBaseProps,
|
|
9
|
+
): JSX.Element => <Icon {...props} icon={ClockForwardSvg} />;
|
|
10
|
+
|
|
11
|
+
ClockForward.displayName = 'ClockForward';
|
|
12
|
+
export default ClockForward;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import ColorCodingFilledSvg from '../ast/ColorCodingFilled';
|
|
4
|
+
import { Icon } from '../Icon';
|
|
5
|
+
import { IconBaseProps } from '../types';
|
|
6
|
+
|
|
7
|
+
const ColorCodingFilled = (
|
|
8
|
+
props: IconBaseProps,
|
|
9
|
+
): JSX.Element => <Icon {...props} icon={ColorCodingFilledSvg} />;
|
|
10
|
+
|
|
11
|
+
ColorCodingFilled.displayName = 'ColorCodingFilled';
|
|
12
|
+
export default ColorCodingFilled;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import EmojiDeleteSvg from '../ast/EmojiDelete';
|
|
4
|
+
import { Icon } from '../Icon';
|
|
5
|
+
import { IconBaseProps } from '../types';
|
|
6
|
+
|
|
7
|
+
const EmojiDelete = (
|
|
8
|
+
props: IconBaseProps,
|
|
9
|
+
): JSX.Element => <Icon {...props} icon={EmojiDeleteSvg} />;
|
|
10
|
+
|
|
11
|
+
EmojiDelete.displayName = 'EmojiDelete';
|
|
12
|
+
export default EmojiDelete;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import FigmaSvg from '../ast/Figma';
|
|
4
|
+
import { Icon } from '../Icon';
|
|
5
|
+
import { IconBaseProps } from '../types';
|
|
6
|
+
|
|
7
|
+
const Figma = (
|
|
8
|
+
props: IconBaseProps,
|
|
9
|
+
): JSX.Element => <Icon {...props} icon={FigmaSvg} />;
|
|
10
|
+
|
|
11
|
+
Figma.displayName = 'Figma';
|
|
12
|
+
export default Figma;
|