@fibery/ui-kit 1.5.0 → 1.7.1
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 +0 -1
- package/package.json +38 -24
- package/src/Button/AddButton.tsx +13 -0
- package/src/{BackButton.tsx → Button/BackButton.tsx} +3 -4
- package/src/Button/button-base.tsx +190 -0
- package/src/Button/button-group.tsx +76 -0
- package/src/Button/button.tsx +242 -0
- package/src/Button/icon-button-with-tooltip.tsx +15 -0
- package/src/Button/icon-button.tsx +42 -0
- package/src/Item.tsx +5 -2
- package/src/Pallete.ts +191 -191
- package/src/Select/components.tsx +22 -21
- package/src/Select/index.tsx +60 -25
- package/src/Select/select-control-settings-context.tsx +20 -0
- package/src/Select/select-in-popover.tsx +333 -0
- package/src/Select/styles.ts +27 -1
- package/src/ThemeProvider.tsx +1 -1
- package/src/antd/styles.ts +3 -3
- package/src/designSystem.ts +80 -63
- package/src/error-alert.tsx +2 -2
- package/src/icons/Icon.tsx +17 -12
- package/src/icons/ast/AddGroup.ts +8 -0
- package/src/icons/ast/AiAssistant.ts +8 -0
- package/src/icons/ast/AiAvatar.ts +8 -0
- package/src/icons/ast/ArrowBottom.ts +3 -27
- package/src/icons/ast/ArrowCollapse.ts +3 -27
- package/src/icons/ast/ArrowCollapseVertical.ts +3 -27
- package/src/icons/ast/ArrowLeft.ts +3 -27
- package/src/icons/ast/ArrowRight.ts +3 -27
- package/src/icons/ast/ArrowTop.ts +3 -27
- package/src/icons/ast/Atom.ts +8 -0
- package/src/icons/ast/Copy.ts +8 -0
- package/src/icons/ast/DynamicFilterValue.ts +8 -0
- package/src/icons/ast/ExtensionAssignments.ts +3 -35
- package/src/icons/ast/FileUpload.ts +8 -0
- package/src/icons/ast/FormWithCover.ts +8 -0
- package/src/icons/ast/FormWithoutCover.ts +8 -0
- package/src/icons/ast/Github.ts +3 -27
- package/src/icons/ast/Gitlab.ts +3 -25
- package/src/icons/ast/Hint.ts +1 -1
- package/src/icons/ast/Jira.ts +8 -0
- package/src/icons/ast/Markdown.ts +8 -0
- package/src/icons/ast/Minus.ts +3 -23
- package/src/icons/ast/MoreCompact.ts +1 -1
- package/src/icons/ast/RicheditorBlockFile.ts +8 -0
- package/src/icons/ast/RicheditorBlockH4.ts +1 -1
- package/src/icons/ast/SimpleCompass.ts +8 -0
- package/src/icons/ast/Templates.ts +8 -0
- package/src/icons/ast/TypeLocation.ts +8 -0
- package/src/icons/ast/ViewForm.ts +3 -25
- package/src/icons/ast/ViewMap.ts +8 -0
- package/src/icons/ast/index.tsx +199 -182
- package/src/icons/react/AddGroup.tsx +12 -0
- package/src/icons/react/AiAssistant.tsx +12 -0
- package/src/icons/react/AiAvatar.tsx +12 -0
- package/src/icons/react/Atom.tsx +12 -0
- package/src/icons/react/Copy.tsx +12 -0
- package/src/icons/react/DynamicFilterValue.tsx +12 -0
- package/src/icons/react/FileUpload.tsx +12 -0
- package/src/icons/react/FormWithCover.tsx +12 -0
- package/src/icons/react/FormWithoutCover.tsx +12 -0
- package/src/icons/react/Github.tsx +8 -6
- package/src/icons/react/Gitlab.tsx +8 -6
- package/src/icons/react/Jira.tsx +12 -0
- package/src/icons/react/Markdown.tsx +12 -0
- package/src/icons/react/Minus.tsx +8 -6
- package/src/icons/react/RicheditorBlockFile.tsx +12 -0
- package/src/icons/react/SimpleCompass.tsx +12 -0
- package/src/icons/react/Templates.tsx +12 -0
- package/src/icons/react/TypeLocation.tsx +12 -0
- package/src/icons/react/ViewForm.tsx +8 -6
- package/src/icons/react/ViewMap.tsx +12 -0
- package/src/icons/react/index.tsx +199 -182
- package/src/tooltip.tsx +132 -152
- package/src/Button.d.ts +0 -28
- package/src/Button.js +0 -360
- package/src/antd/ant-tooltip.tsx +0 -5
- package/src/icons/IconAsBackground.tsx +0 -15
|
@@ -1,32 +1,8 @@
|
|
|
1
|
+
|
|
1
2
|
// This icon file is generated automatically.
|
|
2
3
|
|
|
3
|
-
import {IconDefinition} from
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
4
5
|
|
|
5
|
-
const ArrowTop: IconDefinition = {
|
|
6
|
-
icon: {
|
|
7
|
-
type: "root",
|
|
8
|
-
children: [
|
|
9
|
-
{
|
|
10
|
-
type: "element",
|
|
11
|
-
tagName: "svg",
|
|
12
|
-
properties: {viewBox: "0 0 20 20"},
|
|
13
|
-
children: [
|
|
14
|
-
{
|
|
15
|
-
type: "element",
|
|
16
|
-
tagName: "path",
|
|
17
|
-
properties: {
|
|
18
|
-
fillRule: "evenodd",
|
|
19
|
-
clipRule: "evenodd",
|
|
20
|
-
d: "M14.566 12.566a.8.8 0 0 1-1.132 0L10 9.13l-3.434 3.435a.8.8 0 1 1-1.132-1.132l4-4a.8.8 0 0 1 1.132 0l4 4a.8.8 0 0 1 0 1.132Z",
|
|
21
|
-
},
|
|
22
|
-
children: [],
|
|
23
|
-
},
|
|
24
|
-
],
|
|
25
|
-
metadata: "",
|
|
26
|
-
},
|
|
27
|
-
],
|
|
28
|
-
},
|
|
29
|
-
name: "arrow-top",
|
|
30
|
-
};
|
|
6
|
+
const ArrowTop: 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.566 12.566a.8.8 0 0 1-1.132 0L10 9.13l-3.434 3.435a.8.8 0 1 1-1.132-1.132l4-4a.8.8 0 0 1 1.132 0l4 4a.8.8 0 0 1 0 1.132Z"},"children":[]}],"metadata":""}]},"name":"arrow-top"};
|
|
31
7
|
|
|
32
8
|
export default ArrowTop;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const Atom: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"d":"M10.938 10a.937.937 0 1 1-1.875 0 .937.937 0 0 1 1.874 0Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M3.048 7.487c.359.797.854 1.647 1.465 2.513a15.345 15.345 0 0 0-1.465 2.513c-.383.85-.627 1.677-.667 2.419-.04.74.122 1.484.662 2.025.54.54 1.284.703 2.025.662.742-.04 1.569-.284 2.42-.667A15.341 15.341 0 0 0 10 15.487a15.34 15.34 0 0 0 2.513 1.465c.85.383 1.677.627 2.419.667.74.04 1.484-.122 2.025-.662.54-.54.703-1.284.662-2.025-.04-.742-.284-1.569-.667-2.42A15.346 15.346 0 0 0 15.487 10a15.35 15.35 0 0 0 1.465-2.513c.383-.85.627-1.677.667-2.419.04-.74-.122-1.484-.662-2.025-.54-.54-1.284-.702-2.025-.662-.742.04-1.569.284-2.42.667-.796.359-1.646.853-2.512 1.465a15.347 15.347 0 0 0-2.513-1.465c-.85-.383-1.677-.627-2.419-.667-.74-.04-1.484.122-2.025.662-.54.54-.702 1.284-.662 2.025.04.742.284 1.569.667 2.42Zm1.368-.615c.264.586.618 1.219 1.056 1.875a24.21 24.21 0 0 1 1.56-1.715 24.205 24.205 0 0 1 1.715-1.56 13.194 13.194 0 0 0-1.875-1.056c-.754-.34-1.393-.51-1.885-.537-.493-.027-.75.092-.883.225s-.252.39-.225.883c.026.492.198 1.131.537 1.885Zm2.456 8.712a13.183 13.183 0 0 0 1.875-1.056 24.212 24.212 0 0 1-1.715-1.56 24.188 24.188 0 0 1-1.56-1.715 13.197 13.197 0 0 0-1.056 1.875c-.339.754-.51 1.393-.537 1.885-.027.493.092.75.225.883s.39.252.883.225c.492-.026 1.131-.198 1.885-.537Zm1.22-3.676A22.432 22.432 0 0 0 10 13.613a22.416 22.416 0 0 0 1.908-1.705A22.447 22.447 0 0 0 13.613 10a22.445 22.445 0 0 0-1.705-1.908A22.425 22.425 0 0 0 10 6.387a22.44 22.44 0 0 0-1.908 1.705A22.435 22.435 0 0 0 6.387 10a22.437 22.437 0 0 0 1.705 1.908Zm5.036 3.676a13.185 13.185 0 0 1-1.875-1.056 24.192 24.192 0 0 0 1.715-1.56 24.17 24.17 0 0 0 1.56-1.715c.438.656.792 1.289 1.056 1.875.34.754.51 1.393.537 1.885.027.493-.092.75-.225.883s-.39.252-.883.225c-.492-.026-1.131-.198-1.885-.537Zm2.456-8.712a13.19 13.19 0 0 1-1.056 1.875 24.19 24.19 0 0 0-1.56-1.715 24.186 24.186 0 0 0-1.715-1.56 13.196 13.196 0 0 1 1.875-1.056c.754-.34 1.393-.51 1.885-.537.493-.027.75.092.883.225s.252.39.225.883c-.026.492-.198 1.131-.537 1.885Z"},"children":[]}],"metadata":""}]},"name":"atom"};
|
|
7
|
+
|
|
8
|
+
export default Atom;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const Copy: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M7.5 9.25c0-.966.784-1.75 1.75-1.75h7c.966 0 1.75.784 1.75 1.75v7A1.75 1.75 0 0 1 16.25 18h-7a1.75 1.75 0 0 1-1.75-1.75v-7ZM9.25 9a.25.25 0 0 0-.25.25v7c0 .138.112.25.25.25h7a.25.25 0 0 0 .25-.25v-7a.25.25 0 0 0-.25-.25h-7Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M3.75 2A1.75 1.75 0 0 0 2 3.75v7c0 .966.784 1.75 1.75 1.75H6V11H3.75a.25.25 0 0 1-.25-.25v-7a.25.25 0 0 1 .25-.25h7a.25.25 0 0 1 .25.25V6h1.5V3.75A1.75 1.75 0 0 0 10.75 2h-7Z"},"children":[]}],"metadata":""}]},"name":"copy"};
|
|
7
|
+
|
|
8
|
+
export default Copy;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const DynamicFilterValue: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"d":"m7.774 4.995-1.378.254v.221c0 .214.016.222.311.18.517-.065 1.214.115 1.55.41.394.353.517.657.968 2.42l.378 1.501-.386.673c-1.033 1.805-2.239 3.338-2.616 3.338-.099 0-.345-.13-.542-.287-.287-.23-.435-.287-.713-.287-.673 0-1.05.681-.73 1.313.156.32.762.59 1.164.524 1.01-.163 1.895-1.082 3.413-3.51l.607-.976.065.32c.37 1.657.755 3.101.927 3.47.18.353.287.468.574.599.295.123.41.14.673.065.393-.098.861-.435 1.444-1.033.426-.427 1.255-1.567 1.189-1.624-.017-.017-.115-.066-.214-.123-.155-.083-.196-.058-.377.262-.115.189-.41.541-.656.771-.443.427-.78.59-.968.476-.197-.123-.41-.812-.927-2.953l-.524-2.215.533-.804c.664-1 1.312-1.673 1.681-1.739.156-.024.451.009.68.074.968.304 1.6.041 1.6-.656 0-.279-.05-.419-.238-.624-.196-.221-.295-.262-.73-.295-.426-.033-.55 0-.919.197-.672.369-1.402 1.099-2.1 2.116-.352.517-.656.927-.672.919-.017-.016-.132-.427-.271-.91-.132-.484-.32-1.034-.419-1.223-.254-.508-.738-1.115-.886-1.107a74.99 74.99 0 0 0-1.491.263Z"},"children":[]}],"metadata":""}]},"name":"dynamic-filter-value"};
|
|
7
|
+
|
|
8
|
+
export default DynamicFilterValue;
|
|
@@ -1,40 +1,8 @@
|
|
|
1
|
+
|
|
1
2
|
// This icon file is generated automatically.
|
|
2
3
|
|
|
3
|
-
import {IconDefinition} from
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
4
5
|
|
|
5
|
-
const ExtensionAssignments: IconDefinition = {
|
|
6
|
-
icon: {
|
|
7
|
-
type: "root",
|
|
8
|
-
children: [
|
|
9
|
-
{
|
|
10
|
-
type: "element",
|
|
11
|
-
tagName: "svg",
|
|
12
|
-
properties: {viewBox: "0 0 20 20"},
|
|
13
|
-
children: [
|
|
14
|
-
{
|
|
15
|
-
type: "element",
|
|
16
|
-
tagName: "path",
|
|
17
|
-
properties: {
|
|
18
|
-
fillRule: "evenodd",
|
|
19
|
-
clipRule: "evenodd",
|
|
20
|
-
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",
|
|
21
|
-
},
|
|
22
|
-
children: [],
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
type: "element",
|
|
26
|
-
tagName: "path",
|
|
27
|
-
properties: {
|
|
28
|
-
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",
|
|
29
|
-
},
|
|
30
|
-
children: [],
|
|
31
|
-
},
|
|
32
|
-
],
|
|
33
|
-
metadata: "",
|
|
34
|
-
},
|
|
35
|
-
],
|
|
36
|
-
},
|
|
37
|
-
name: "extension-assignments",
|
|
38
|
-
};
|
|
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":"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":"extension-assignments"};
|
|
39
7
|
|
|
40
8
|
export default ExtensionAssignments;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const FileUpload: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 48 48"},"children":[{"type":"element","tagName":"path","properties":{"d":"M42 30v7.2c0 1.68 0 2.52-.327 3.162a3 3 0 0 1-1.311 1.311C39.72 42 38.88 42 37.2 42H10.8c-1.68 0-2.52 0-3.162-.327a3 3 0 0 1-1.311-1.311C6 39.72 6 38.88 6 37.2V30M34 16 24 6 14 16M24 6v24","stroke":"#6E7A83","strokeWidth":3,"strokeLinecap":"round","strokeLinejoin":"round","fill":"none"},"children":[]}],"metadata":""}]},"name":"file-upload"};
|
|
7
|
+
|
|
8
|
+
export default FileUpload;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const FormWithCover: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":24},"children":[{"type":"element","tagName":"rect","properties":{"x":1.15,"y":0.75,"width":17.7,"height":22.5,"rx":1.75,"stroke":"currentColor","strokeWidth":1.5,"fill":"none"},"children":[]},{"type":"element","tagName":"rect","properties":{"x":4.6,"y":8.4,"width":10.8,"height":1.44,"rx":0.72,"fill":"currentColor"},"children":[]},{"type":"element","tagName":"rect","properties":{"x":4.6,"y":12,"width":10.8,"height":1.44,"rx":0.72,"fill":"currentColor"},"children":[]},{"type":"element","tagName":"rect","properties":{"x":4.6,"y":15.6,"width":7.2,"height":1.44,"rx":0.72,"fill":"currentColor"},"children":[]},{"type":"element","tagName":"rect","properties":{"x":4.6,"y":4.8,"width":10.8,"height":5.04,"rx":0.8,"fill":"currentColor"},"children":[]}],"metadata":""}]},"name":"form-with-cover"};
|
|
7
|
+
|
|
8
|
+
export default FormWithCover;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const FormWithoutCover: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":24},"children":[{"type":"element","tagName":"rect","properties":{"x":1.15,"y":0.75,"width":17.7,"height":22.5,"rx":1.75,"stroke":"currentColor","strokeWidth":1.5,"fill":"none"},"children":[]},{"type":"element","tagName":"rect","properties":{"x":4.6,"y":4.8,"width":10.8,"height":1.44,"rx":0.72,"fill":"currentColor"},"children":[]},{"type":"element","tagName":"rect","properties":{"x":4.6,"y":8.4,"width":10.8,"height":1.44,"rx":0.72,"fill":"currentColor"},"children":[]},{"type":"element","tagName":"rect","properties":{"x":4.6,"y":12,"width":7.2,"height":1.44,"rx":0.72,"fill":"currentColor"},"children":[]}],"metadata":""}]},"name":"form-without-cover"};
|
|
7
|
+
|
|
8
|
+
export default FormWithoutCover;
|
package/src/icons/ast/Github.ts
CHANGED
|
@@ -1,32 +1,8 @@
|
|
|
1
|
+
|
|
1
2
|
// This icon file is generated automatically.
|
|
2
3
|
|
|
3
|
-
import {IconDefinition} from
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
4
5
|
|
|
5
|
-
const Github: IconDefinition = {
|
|
6
|
-
icon: {
|
|
7
|
-
type: "root",
|
|
8
|
-
children: [
|
|
9
|
-
{
|
|
10
|
-
type: "element",
|
|
11
|
-
tagName: "svg",
|
|
12
|
-
properties: {viewBox: "0 0 20 20"},
|
|
13
|
-
children: [
|
|
14
|
-
{
|
|
15
|
-
type: "element",
|
|
16
|
-
tagName: "path",
|
|
17
|
-
properties: {
|
|
18
|
-
clipRule: "evenodd",
|
|
19
|
-
d: "M10 2c-4.42 0-8 3.58-8 8 0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27s1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 18 10c0-4.42-3.58-8-8-8z",
|
|
20
|
-
fillRule: "evenodd",
|
|
21
|
-
},
|
|
22
|
-
children: [],
|
|
23
|
-
},
|
|
24
|
-
],
|
|
25
|
-
metadata: "",
|
|
26
|
-
},
|
|
27
|
-
],
|
|
28
|
-
},
|
|
29
|
-
name: "github",
|
|
30
|
-
};
|
|
6
|
+
const Github: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"clipRule":"evenodd","d":"M10 2c-4.42 0-8 3.58-8 8 0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27s1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 18 10c0-4.42-3.58-8-8-8z","fillRule":"evenodd"},"children":[]}],"metadata":""}]},"name":"github"};
|
|
31
7
|
|
|
32
8
|
export default Github;
|
package/src/icons/ast/Gitlab.ts
CHANGED
|
@@ -1,30 +1,8 @@
|
|
|
1
|
+
|
|
1
2
|
// This icon file is generated automatically.
|
|
2
3
|
|
|
3
|
-
import {IconDefinition} from
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
4
5
|
|
|
5
|
-
const Gitlab: IconDefinition = {
|
|
6
|
-
icon: {
|
|
7
|
-
type: "root",
|
|
8
|
-
children: [
|
|
9
|
-
{
|
|
10
|
-
type: "element",
|
|
11
|
-
tagName: "svg",
|
|
12
|
-
properties: {viewBox: "0 0 20 20"},
|
|
13
|
-
children: [
|
|
14
|
-
{
|
|
15
|
-
type: "element",
|
|
16
|
-
tagName: "path",
|
|
17
|
-
properties: {
|
|
18
|
-
d: "m17.734 8.636-.022-.058-2.178-5.717a.57.57 0 0 0-.89-.236.586.586 0 0 0-.194.295l-1.47 4.526H7.025L5.555 2.92a.575.575 0 0 0-.194-.296.581.581 0 0 0-.666-.036.575.575 0 0 0-.224.272L2.289 8.575l-.022.058a4.09 4.09 0 0 0-.11 2.576 4.069 4.069 0 0 0 1.452 2.125l.007.006.02.014 3.318 2.5 1.64 1.249 1 .76a.67.67 0 0 0 .814 0l1-.76 1.64-1.25 3.338-2.514.009-.007a4.07 4.07 0 0 0 1.448-2.123 4.092 4.092 0 0 0-.109-2.573Z",
|
|
19
|
-
},
|
|
20
|
-
children: [],
|
|
21
|
-
},
|
|
22
|
-
],
|
|
23
|
-
metadata: "",
|
|
24
|
-
},
|
|
25
|
-
],
|
|
26
|
-
},
|
|
27
|
-
name: "gitlab",
|
|
28
|
-
};
|
|
6
|
+
const Gitlab: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"m17.734 8.636-.022-.058-2.178-5.717a.57.57 0 0 0-.89-.236.586.586 0 0 0-.194.295l-1.47 4.526H7.025L5.555 2.92a.575.575 0 0 0-.194-.296.581.581 0 0 0-.666-.036.575.575 0 0 0-.224.272L2.289 8.575l-.022.058a4.09 4.09 0 0 0-.11 2.576 4.069 4.069 0 0 0 1.452 2.125l.007.006.02.014 3.318 2.5 1.64 1.249 1 .76a.67.67 0 0 0 .814 0l1-.76 1.64-1.25 3.338-2.514.009-.007a4.07 4.07 0 0 0 1.448-2.123 4.092 4.092 0 0 0-.109-2.573Z"},"children":[]}],"metadata":""}]},"name":"gitlab"};
|
|
29
7
|
|
|
30
8
|
export default Gitlab;
|
package/src/icons/ast/Hint.ts
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const Hint: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"
|
|
6
|
+
const Hint: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"d":"M10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm0 14.4a6.4 6.4 0 1 1 0-12.8 6.4 6.4 0 0 1 0 12.8Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M10.759 11.5c0 .276-.216.5-.5.5H9.5a.505.505 0 0 1-.5-.5V11c0-.651 2.25-1.94 2.25-3 0-.348-.224-1.25-1.25-1.25-1.02 0-1.211.984-1.244 1.25 0 0-1.486.022-1.485 0-.001-.934.734-2.75 2.73-2.75 1.72 0 2.75 1.398 2.75 2.75 0 1.373-1.991 2.61-1.991 3v.5Zm-.76 3.5A1 1 0 1 1 10 13a1 1 0 0 1 0 2Z"},"children":[]}],"metadata":""}]},"name":"hint"};
|
|
7
7
|
|
|
8
8
|
export default Hint;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const Jira: 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.1 11.063 7.357 7.459a.764.764 0 0 0 1.086 0l7.359-7.459a1.523 1.523 0 0 0 0-2.126l-7.359-7.459a.767.767 0 0 0-.555-.228.763.763 0 0 0-.531.228L2.098 8.937a1.523 1.523 0 0 0 0 2.126H2.1Zm6.47-6.498v.018ZM3.224 10l4.97-5.037c.095.747.363 1.458.779 2.078L6.597 9.449a.784.784 0 0 0 0 1.101l2.855 2.894c.501.543.8 1.247.847 1.99-.03.471-.163.93-.388 1.344L3.223 10Zm8.206 5.422v-.005Zm.378-.384a4.82 4.82 0 0 0-.779-2.079l2.375-2.408a.784.784 0 0 0 0-1.1l-2.848-2.888a3.24 3.24 0 0 1-.854-1.997c.03-.475.164-.933.388-1.344L16.777 10l-4.97 5.038ZM10 8.203 8.227 10 10 11.797 11.773 10 10 8.203Z"},"children":[]}],"metadata":""}]},"name":"jira"};
|
|
7
|
+
|
|
8
|
+
export default Jira;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const Markdown: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":40,"height":40,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M30.087 13.125a1.15 1.15 0 0 0-2.3 0v9.599l-2.849-2.85a1.15 1.15 0 0 0-1.626 1.627l4.812 4.812c.45.45 1.178.45 1.627 0l4.812-4.812a1.15 1.15 0 0 0-1.626-1.627l-2.85 2.85v-9.599ZM8.438 13.687a1.15 1.15 0 0 0-1.963.813v11a1.15 1.15 0 0 0 2.3 0v-8.224l3.537 3.537c.449.45 1.177.45 1.626 0l3.537-3.537V25.5a1.15 1.15 0 0 0 2.3 0v-11a1.15 1.15 0 0 0-1.963-.813l-4.687 4.687-4.687-4.687Z","fill":"#232428"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M4.875 6.475a3.9 3.9 0 0 0-3.9 3.9v19.25a3.9 3.9 0 0 0 3.9 3.9h30.25a3.9 3.9 0 0 0 3.9-3.9v-19.25a3.9 3.9 0 0 0-3.9-3.9H4.875ZM3.744 9.244a1.6 1.6 0 0 1 1.131-.469h30.25a1.6 1.6 0 0 1 1.6 1.6v19.25a1.6 1.6 0 0 1-1.6 1.6H4.875a1.6 1.6 0 0 1-1.6-1.6v-19.25a1.6 1.6 0 0 1 .469-1.131Z","fill":"#232428"},"children":[]}],"metadata":""}]},"name":"markdown"};
|
|
7
|
+
|
|
8
|
+
export default Markdown;
|
package/src/icons/ast/Minus.ts
CHANGED
|
@@ -1,28 +1,8 @@
|
|
|
1
|
+
|
|
1
2
|
// This icon file is generated automatically.
|
|
2
3
|
|
|
3
|
-
import {IconDefinition} from
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
4
5
|
|
|
5
|
-
const Minus: IconDefinition = {
|
|
6
|
-
icon: {
|
|
7
|
-
type: "root",
|
|
8
|
-
children: [
|
|
9
|
-
{
|
|
10
|
-
type: "element",
|
|
11
|
-
tagName: "svg",
|
|
12
|
-
properties: {width: 20, height: 20},
|
|
13
|
-
children: [
|
|
14
|
-
{
|
|
15
|
-
type: "element",
|
|
16
|
-
tagName: "path",
|
|
17
|
-
properties: {d: "M4.75 9.25a.75.75 0 0 0 0 1.5h10.5a.75.75 0 0 0 0-1.5H4.75Z"},
|
|
18
|
-
children: [],
|
|
19
|
-
},
|
|
20
|
-
],
|
|
21
|
-
metadata: "",
|
|
22
|
-
},
|
|
23
|
-
],
|
|
24
|
-
},
|
|
25
|
-
name: "minus",
|
|
26
|
-
};
|
|
6
|
+
const Minus: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"d":"M4.75 9.25a.75.75 0 0 0 0 1.5h10.5a.75.75 0 0 0 0-1.5H4.75Z"},"children":[]}],"metadata":""}]},"name":"minus"};
|
|
27
7
|
|
|
28
8
|
export default Minus;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const MoreCompact: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{
|
|
6
|
+
const MoreCompact: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{},"children":[{"type":"element","tagName":"path","properties":{"d":"M6.5 10a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm5 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm3.5 1.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Z"},"children":[]}],"metadata":""}]},"name":"more-compact"};
|
|
7
7
|
|
|
8
8
|
export default MoreCompact;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const RicheditorBlockFile: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"d":"M6.63 12.5a.75.75 0 0 1 .75-.75h5.24a.75.75 0 0 1 0 1.5H7.38a.75.75 0 0 1-.75-.75Zm.75-3.25a.75.75 0 0 0 0 1.5h5.24a.75.75 0 0 0 0-1.5H7.38Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M4.88 1.75A1.372 1.372 0 0 0 3.5 3.125v13.75a1.369 1.369 0 0 0 1.38 1.375h10.25a1.37 1.37 0 0 0 1.37-1.375v-10a.75.75 0 0 0-.22-.53L11.91 1.97a.75.75 0 0 0-.53-.22h-6.5Zm5.65 1.5H5v13.5h10V7.625h-3.72a.75.75 0 0 1-.75-.75V3.25Zm3.41 2.875h-1.91V4.212l1.91 1.913Z"},"children":[]}],"metadata":""}]},"name":"richeditor-block-file"};
|
|
7
|
+
|
|
8
|
+
export default RicheditorBlockFile;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const RicheditorBlockH4: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"
|
|
6
|
+
const RicheditorBlockH4: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M2.57 16.26c.673 0 1.072-.407 1.072-1.112v-4.225h4.866v4.225c0 .706.399 1.112 1.063 1.112.672 0 1.07-.407 1.07-1.112V5.112c0-.705-.398-1.112-1.07-1.112-.664 0-1.063.407-1.063 1.112v4.01H3.642v-4.01C3.642 4.407 3.243 4 2.57 4 1.907 4 1.5 4.407 1.5 5.112v10.036c0 .706.407 1.112 1.07 1.112Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M17.948 7.808c0-.577-.387-.958-.952-.958-.38 0-.596.172-.83.46-.2.24-.345.42-.466.57-.284.352-.427.53-.809.897l-2.73 2.608c-.387.356-.526.597-.526.959 0 .482.298.819.901.819h3.514v2.161c0 .578.387.959.952.959s.946-.381.946-.959v-2.161h.262c.495 0 .79-.311.79-.762 0-.463-.295-.762-.79-.762h-.262V7.81Zm-3.793 3.793L16.05 9.78v1.86h-1.895v-.038Z"},"children":[]}],"metadata":""}]},"name":"richeditor-block-h-4"};
|
|
7
7
|
|
|
8
8
|
export default RicheditorBlockH4;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const SimpleCompass: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20","fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M7.241 9.655 10 4.138l2.759 5.517H7.24Z","fill":"#6E7A83"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M7.241 11.034 10 16.552l2.759-5.518H7.24Z","fill":"#C1C8CD"},"children":[]}],"metadata":""}]},"name":"simple-compass"};
|
|
7
|
+
|
|
8
|
+
export default SimpleCompass;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const Templates: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"d":"M5 3a.75.75 0 0 0 0 1.5h11.75v9.25a.75.75 0 0 0 1.5 0V4.375A1.375 1.375 0 0 0 16.875 3H5Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M3.125 5.5c-.76 0-1.375.616-1.375 1.375v8.75c0 .76.616 1.375 1.375 1.375h11.25c.76 0 1.375-.616 1.375-1.375v-8.75c0-.76-.616-1.375-1.375-1.375H3.125Zm.125 10V7h11v8.5h-11Z"},"children":[]}],"metadata":""}]},"name":"templates"};
|
|
7
|
+
|
|
8
|
+
export default Templates;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const TypeLocation: 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.467a5.867 5.867 0 0 0-5.867 5.866c0 1.588.716 3.083 1.917 4.643 1.015 1.317 2.313 2.604 3.704 3.984l.246.244.246-.244c1.391-1.38 2.69-2.667 3.704-3.984 1.2-1.56 1.917-3.055 1.917-4.643A5.867 5.867 0 0 0 10 2.467ZM2.533 8.333a7.467 7.467 0 1 1 14.934 0c0 2.095-.951 3.933-2.25 5.62-1.085 1.409-2.475 2.786-3.864 4.164-.263.26-.526.521-.787.782a.8.8 0 0 1-1.132 0c-.26-.26-.524-.522-.787-.782-1.39-1.378-2.779-2.755-3.864-4.165-1.299-1.686-2.25-3.524-2.25-5.619ZM10 6.633a1.7 1.7 0 1 0 0 3.4 1.7 1.7 0 0 0 0-3.4Zm-3.3 1.7a3.3 3.3 0 1 1 6.6 0 3.3 3.3 0 0 1-6.6 0Z"},"children":[]}],"metadata":""}]},"name":"type-location"};
|
|
7
|
+
|
|
8
|
+
export default TypeLocation;
|
|
@@ -1,30 +1,8 @@
|
|
|
1
|
+
|
|
1
2
|
// This icon file is generated automatically.
|
|
2
3
|
|
|
3
|
-
import {IconDefinition} from
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
4
5
|
|
|
5
|
-
const ViewForm: IconDefinition = {
|
|
6
|
-
icon: {
|
|
7
|
-
type: "root",
|
|
8
|
-
children: [
|
|
9
|
-
{
|
|
10
|
-
type: "element",
|
|
11
|
-
tagName: "svg",
|
|
12
|
-
properties: {viewBox: "0 0 20 20"},
|
|
13
|
-
children: [
|
|
14
|
-
{
|
|
15
|
-
type: "element",
|
|
16
|
-
tagName: "path",
|
|
17
|
-
properties: {
|
|
18
|
-
d: "M16 5.5A1.5 1.5 0 0 0 14.5 4h-9A1.5 1.5 0 0 0 4 5.5v4.25a1.5 1.5 0 0 0 1.5 1.5h9a1.5 1.5 0 0 0 1.5-1.5V5.5ZM15 14.5a1.5 1.5 0 0 0-1.5-1.5h-7a1.5 1.5 0 0 0 0 3h7a1.5 1.5 0 0 0 1.5-1.5Z",
|
|
19
|
-
},
|
|
20
|
-
children: [],
|
|
21
|
-
},
|
|
22
|
-
],
|
|
23
|
-
metadata: "",
|
|
24
|
-
},
|
|
25
|
-
],
|
|
26
|
-
},
|
|
27
|
-
name: "view-form",
|
|
28
|
-
};
|
|
6
|
+
const ViewForm: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M16 5.5A1.5 1.5 0 0 0 14.5 4h-9A1.5 1.5 0 0 0 4 5.5v4.25a1.5 1.5 0 0 0 1.5 1.5h9a1.5 1.5 0 0 0 1.5-1.5V5.5ZM15 14.5a1.5 1.5 0 0 0-1.5-1.5h-7a1.5 1.5 0 0 0 0 3h7a1.5 1.5 0 0 0 1.5-1.5Z"},"children":[]}],"metadata":""}]},"name":"view-form"};
|
|
29
7
|
|
|
30
8
|
export default ViewForm;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const ViewMap: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M7.814 3.67h.003c.135 0 .27.03.394.093l3.945 1.972 3.412-1.95a.875.875 0 0 1 1.309.76v8.727a.875.875 0 0 1-.44.76l-3.805 2.174a.87.87 0 0 1-.862.02l-3.922-1.962-3.412 1.95a.875.875 0 0 1-1.309-.76V6.727c0-.314.168-.604.44-.76L7.32 3.825a.87.87 0 0 1 .494-.153Zm3.495 3.598v6.77l-2.62-1.31v-6.77l2.62 1.31Z"},"children":[]}],"metadata":""}]},"name":"view-map"};
|
|
7
|
+
|
|
8
|
+
export default ViewMap;
|