@univerjs/icons 1.13.0 → 1.14.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/dist/cjs/arrow-left-icon.cjs +38 -0
- package/dist/cjs/boxplot-icon.cjs +30 -22
- package/dist/cjs/connection-line-icon.cjs +47 -0
- package/dist/cjs/crop-icon.cjs +1 -1
- package/dist/cjs/{warn-icon.cjs → exclamation-icon.cjs} +6 -6
- package/dist/cjs/fountain-pen-icon.cjs +77 -0
- package/dist/cjs/hand-icon.cjs +70 -0
- package/dist/cjs/index.cjs +78 -78
- package/dist/cjs/mind-map-icon.cjs +67 -0
- package/dist/cjs/{more-function-icon.cjs → more-vertical-icon.cjs} +6 -6
- package/dist/cjs/resources-icon.cjs +45 -0
- package/dist/cjs/ruler-icon.cjs +75 -0
- package/dist/cjs/sticky-note-icon.cjs +44 -0
- package/dist/cjs/{solve-icon.cjs → success-outline-icon.cjs} +6 -6
- package/dist/cjs/transitions-icon.cjs +68 -0
- package/dist/cjs/typography-icon.cjs +6 -6
- package/dist/esm/arrow-left-icon.d.ts +3 -0
- package/dist/esm/arrow-left-icon.js +33 -0
- package/dist/esm/boxplot-icon.js +30 -22
- package/dist/esm/connection-line-icon.d.ts +3 -0
- package/dist/esm/connection-line-icon.js +42 -0
- package/dist/esm/crop-icon.js +1 -1
- package/dist/esm/exclamation-icon.d.ts +3 -0
- package/dist/esm/{warn-icon.js → exclamation-icon.js} +5 -5
- package/dist/esm/fountain-pen-icon.d.ts +3 -0
- package/dist/esm/fountain-pen-icon.js +72 -0
- package/dist/esm/{back-icon.d.ts → hand-icon.d.ts} +2 -2
- package/dist/esm/hand-icon.js +65 -0
- package/dist/esm/index.d.ts +12 -12
- package/dist/esm/index.js +13 -13
- package/dist/esm/{mistake-icon.d.ts → mind-map-icon.d.ts} +2 -2
- package/dist/esm/mind-map-icon.js +62 -0
- package/dist/esm/{more-function-icon.d.ts → more-vertical-icon.d.ts} +2 -2
- package/dist/esm/{more-function-icon.js → more-vertical-icon.js} +5 -5
- package/dist/esm/resources-icon.d.ts +3 -0
- package/dist/esm/resources-icon.js +40 -0
- package/dist/esm/{solve-icon.d.ts → ruler-icon.d.ts} +2 -2
- package/dist/esm/ruler-icon.js +70 -0
- package/dist/esm/{zoom-reduce-icon.d.ts → sticky-note-icon.d.ts} +2 -2
- package/dist/esm/sticky-note-icon.js +39 -0
- package/dist/esm/success-outline-icon.d.ts +3 -0
- package/dist/esm/{solve-icon.js → success-outline-icon.js} +5 -5
- package/dist/esm/transitions-icon.d.ts +3 -0
- package/dist/esm/transitions-icon.js +63 -0
- package/dist/esm/typography-icon.js +6 -6
- package/package.json +2 -2
- package/dist/cjs/back-icon.cjs +0 -35
- package/dist/cjs/correct-icon.cjs +0 -37
- package/dist/cjs/guide-icon.cjs +0 -37
- package/dist/cjs/left-icon.cjs +0 -37
- package/dist/cjs/mistake-icon.cjs +0 -35
- package/dist/cjs/resolved-icon.cjs +0 -37
- package/dist/cjs/zen-icon.cjs +0 -35
- package/dist/cjs/zoom-increase-icon.cjs +0 -35
- package/dist/cjs/zoom-reduce-icon.cjs +0 -37
- package/dist/esm/back-icon.js +0 -30
- package/dist/esm/correct-icon.d.ts +0 -3
- package/dist/esm/correct-icon.js +0 -32
- package/dist/esm/guide-icon.d.ts +0 -3
- package/dist/esm/guide-icon.js +0 -32
- package/dist/esm/left-icon.d.ts +0 -3
- package/dist/esm/left-icon.js +0 -32
- package/dist/esm/mistake-icon.js +0 -30
- package/dist/esm/resolved-icon.d.ts +0 -3
- package/dist/esm/resolved-icon.js +0 -32
- package/dist/esm/warn-icon.d.ts +0 -3
- package/dist/esm/zen-icon.d.ts +0 -3
- package/dist/esm/zen-icon.js +0 -30
- package/dist/esm/zoom-increase-icon.d.ts +0 -3
- package/dist/esm/zoom-increase-icon.js +0 -30
- package/dist/esm/zoom-reduce-icon.js +0 -32
|
@@ -4,7 +4,7 @@ Object.defineProperties(exports, {
|
|
|
4
4
|
});
|
|
5
5
|
let react = require("react");
|
|
6
6
|
let ts_base_js = require("./base.js");
|
|
7
|
-
//#region ts/
|
|
7
|
+
//#region ts/success-outline-icon.tsx
|
|
8
8
|
const element = {
|
|
9
9
|
"tag": "svg",
|
|
10
10
|
"attrs": {
|
|
@@ -34,14 +34,14 @@ const element = {
|
|
|
34
34
|
}
|
|
35
35
|
}]
|
|
36
36
|
};
|
|
37
|
-
const
|
|
37
|
+
const SuccessOutlineIcon = (0, react.forwardRef)(function SuccessOutlineIcon(props, ref) {
|
|
38
38
|
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
39
|
-
id: "
|
|
39
|
+
id: "success-outline-icon",
|
|
40
40
|
ref,
|
|
41
41
|
icon: element
|
|
42
42
|
}));
|
|
43
43
|
});
|
|
44
|
-
|
|
44
|
+
SuccessOutlineIcon.displayName = "SuccessOutlineIcon";
|
|
45
45
|
//#endregion
|
|
46
|
-
exports.
|
|
47
|
-
exports.default =
|
|
46
|
+
exports.SuccessOutlineIcon = SuccessOutlineIcon;
|
|
47
|
+
exports.default = SuccessOutlineIcon;
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
let react = require("react");
|
|
6
|
+
let ts_base_js = require("./base.js");
|
|
7
|
+
//#region ts/transitions-icon.tsx
|
|
8
|
+
const element = {
|
|
9
|
+
"tag": "svg",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
12
|
+
"fill": "none",
|
|
13
|
+
"viewBox": "0 0 16 16",
|
|
14
|
+
"width": "1em",
|
|
15
|
+
"height": "1em"
|
|
16
|
+
},
|
|
17
|
+
"children": [
|
|
18
|
+
{
|
|
19
|
+
"tag": "path",
|
|
20
|
+
"attrs": {
|
|
21
|
+
"stroke": "currentColor",
|
|
22
|
+
"d": "M7.92 2.93C8.88 2.16 10.16 1.82 11.45 2.08C13.73 2.57 15.17 4.81 14.7 7.07C14.41 8.39 13.53 9.44 12.4 9.99",
|
|
23
|
+
"strokeLinecap": "round",
|
|
24
|
+
"strokeWidth": 1.2
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"tag": "circle",
|
|
29
|
+
"attrs": {
|
|
30
|
+
"cx": 5.4,
|
|
31
|
+
"cy": 9.6,
|
|
32
|
+
"r": 4.3,
|
|
33
|
+
"stroke": "currentColor",
|
|
34
|
+
"strokeWidth": 1.2
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"tag": "path",
|
|
39
|
+
"attrs": {
|
|
40
|
+
"stroke": "currentColor",
|
|
41
|
+
"d": "M5.4 9.6L12.35 5.04",
|
|
42
|
+
"strokeLinecap": "round",
|
|
43
|
+
"strokeWidth": 1.2
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"tag": "path",
|
|
48
|
+
"attrs": {
|
|
49
|
+
"stroke": "currentColor",
|
|
50
|
+
"d": "M10.27 5.38L12.35 5.04L11.21 6.8",
|
|
51
|
+
"strokeLinecap": "round",
|
|
52
|
+
"strokeLinejoin": "round",
|
|
53
|
+
"strokeWidth": 1.2
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
]
|
|
57
|
+
};
|
|
58
|
+
const TransitionsIcon = (0, react.forwardRef)(function TransitionsIcon(props, ref) {
|
|
59
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
60
|
+
id: "transitions-icon",
|
|
61
|
+
ref,
|
|
62
|
+
icon: element
|
|
63
|
+
}));
|
|
64
|
+
});
|
|
65
|
+
TransitionsIcon.displayName = "TransitionsIcon";
|
|
66
|
+
//#endregion
|
|
67
|
+
exports.TransitionsIcon = TransitionsIcon;
|
|
68
|
+
exports.default = TransitionsIcon;
|
|
@@ -22,7 +22,7 @@ const element = {
|
|
|
22
22
|
"d": "M1.8 13.5L6.1 2.5L10.2 13.5",
|
|
23
23
|
"strokeLinecap": "round",
|
|
24
24
|
"strokeLinejoin": "round",
|
|
25
|
-
"strokeWidth": 1.
|
|
25
|
+
"strokeWidth": 1.35
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
{
|
|
@@ -31,7 +31,7 @@ const element = {
|
|
|
31
31
|
"stroke": "currentColor",
|
|
32
32
|
"d": "M3.7 9.4H8.2",
|
|
33
33
|
"strokeLinecap": "round",
|
|
34
|
-
"strokeWidth": 1.
|
|
34
|
+
"strokeWidth": 1.35
|
|
35
35
|
}
|
|
36
36
|
},
|
|
37
37
|
{
|
|
@@ -40,7 +40,7 @@ const element = {
|
|
|
40
40
|
"stroke": "currentColor",
|
|
41
41
|
"d": "M8.8 2.1H14.2",
|
|
42
42
|
"strokeLinecap": "round",
|
|
43
|
-
"strokeWidth": 1.
|
|
43
|
+
"strokeWidth": 1.2
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
46
|
{
|
|
@@ -49,7 +49,7 @@ const element = {
|
|
|
49
49
|
"stroke": "currentColor",
|
|
50
50
|
"d": "M10.2 5.9H14.2",
|
|
51
51
|
"strokeLinecap": "round",
|
|
52
|
-
"strokeWidth": 1.
|
|
52
|
+
"strokeWidth": 1.2
|
|
53
53
|
}
|
|
54
54
|
},
|
|
55
55
|
{
|
|
@@ -58,7 +58,7 @@ const element = {
|
|
|
58
58
|
"stroke": "currentColor",
|
|
59
59
|
"d": "M11.5 9.7H14.2",
|
|
60
60
|
"strokeLinecap": "round",
|
|
61
|
-
"strokeWidth": 1.
|
|
61
|
+
"strokeWidth": 1.2
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
64
|
{
|
|
@@ -67,7 +67,7 @@ const element = {
|
|
|
67
67
|
"stroke": "currentColor",
|
|
68
68
|
"d": "M12.7 13.5H14.2",
|
|
69
69
|
"strokeLinecap": "round",
|
|
70
|
-
"strokeWidth": 1.
|
|
70
|
+
"strokeWidth": 1.2
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
73
|
]
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/arrow-left-icon.tsx
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 20 21",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [{
|
|
14
|
+
"tag": "path",
|
|
15
|
+
"attrs": {
|
|
16
|
+
"fill": "currentColor",
|
|
17
|
+
"d": "M3.32508 11.7609C3.46644 11.8194 3.64565 11.8194 4.00407 11.8194H13.049L10.1235 14.745C9.87002 14.9984 9.7433 15.1251 9.68475 15.2665C9.60668 15.455 9.60668 15.6668 9.68475 15.8552C9.7433 15.9966 9.87002 16.1233 10.1235 16.3768C10.3769 16.6302 10.5036 16.7569 10.645 16.8155C10.8335 16.8935 11.0452 16.8935 11.2337 16.8155C11.3751 16.7569 11.5018 16.6302 11.7552 16.3768L16.5105 11.6215C16.5524 11.5803 16.5983 11.5344 16.6493 11.4834L16.6495 11.4831C16.8561 11.2765 16.9785 11.1542 17.0484 11.0394C17.0648 11.0128 17.0782 10.9866 17.0893 10.9599C17.1674 10.7714 17.1674 10.5596 17.0893 10.3711C17.0308 10.2298 16.904 10.1031 16.6506 9.84962C16.5685 9.76752 16.4997 9.69872 16.4394 9.64123L11.7542 4.95601C11.5007 4.70257 11.374 4.57585 11.2327 4.5173C11.0442 4.43923 10.8324 4.43923 10.6439 4.5173C10.5026 4.57585 10.3758 4.70257 10.1224 4.95601L10.1224 4.95601C9.86895 5.20945 9.74223 5.33617 9.68368 5.47753C9.60561 5.66601 9.60561 5.87779 9.68368 6.06627C9.74223 6.20764 9.86895 6.33436 10.1224 6.5878L13.0463 9.51175H4.00407C3.64565 9.51175 3.46644 9.51175 3.32508 9.5703C3.1366 9.64837 2.98685 9.79812 2.90877 9.98661C2.85022 10.128 2.85022 10.3072 2.85022 10.6656C2.85022 11.024 2.85022 11.2032 2.90877 11.3446C2.98685 11.5331 3.1366 11.6828 3.32508 11.7609Z",
|
|
18
|
+
"transform": "matrix(-1 0 0 1 20 0)",
|
|
19
|
+
"fillRule": "evenodd",
|
|
20
|
+
"clipRule": "evenodd"
|
|
21
|
+
}
|
|
22
|
+
}]
|
|
23
|
+
};
|
|
24
|
+
const ArrowLeftIcon = forwardRef(function ArrowLeftIcon(props, ref) {
|
|
25
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
26
|
+
id: "arrow-left-icon",
|
|
27
|
+
ref,
|
|
28
|
+
icon: element
|
|
29
|
+
}));
|
|
30
|
+
});
|
|
31
|
+
ArrowLeftIcon.displayName = "ArrowLeftIcon";
|
|
32
|
+
//#endregion
|
|
33
|
+
export { ArrowLeftIcon, ArrowLeftIcon as default };
|
package/dist/esm/boxplot-icon.js
CHANGED
|
@@ -6,7 +6,7 @@ const element = {
|
|
|
6
6
|
"attrs": {
|
|
7
7
|
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
8
|
"fill": "none",
|
|
9
|
-
"viewBox": "0 0
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
10
|
"width": "1em",
|
|
11
11
|
"height": "1em"
|
|
12
12
|
},
|
|
@@ -14,57 +14,65 @@ const element = {
|
|
|
14
14
|
{
|
|
15
15
|
"tag": "path",
|
|
16
16
|
"attrs": {
|
|
17
|
-
"
|
|
18
|
-
"d": "
|
|
17
|
+
"stroke": "currentColor",
|
|
18
|
+
"d": "M2.2 2.2V13.8H13.8",
|
|
19
|
+
"strokeLinecap": "round",
|
|
20
|
+
"strokeLinejoin": "round",
|
|
21
|
+
"strokeWidth": 1.2
|
|
19
22
|
}
|
|
20
23
|
},
|
|
21
24
|
{
|
|
22
25
|
"tag": "path",
|
|
23
26
|
"attrs": {
|
|
24
|
-
"
|
|
25
|
-
"d": "
|
|
27
|
+
"stroke": "currentColor",
|
|
28
|
+
"d": "M4.9 5.1H8.6V10.9H4.9V5.1Z",
|
|
29
|
+
"strokeLinejoin": "round",
|
|
30
|
+
"strokeWidth": 1.2
|
|
26
31
|
}
|
|
27
32
|
},
|
|
28
33
|
{
|
|
29
34
|
"tag": "path",
|
|
30
35
|
"attrs": {
|
|
31
|
-
"
|
|
32
|
-
"d": "
|
|
36
|
+
"stroke": "currentColor",
|
|
37
|
+
"d": "M6.75 3.4V5.1",
|
|
38
|
+
"strokeLinecap": "round",
|
|
39
|
+
"strokeWidth": 1.2
|
|
33
40
|
}
|
|
34
41
|
},
|
|
35
42
|
{
|
|
36
43
|
"tag": "path",
|
|
37
44
|
"attrs": {
|
|
38
|
-
"
|
|
39
|
-
"d": "
|
|
45
|
+
"stroke": "currentColor",
|
|
46
|
+
"d": "M6.75 10.9V12.6",
|
|
47
|
+
"strokeLinecap": "round",
|
|
48
|
+
"strokeWidth": 1.2
|
|
40
49
|
}
|
|
41
50
|
},
|
|
42
51
|
{
|
|
43
52
|
"tag": "path",
|
|
44
53
|
"attrs": {
|
|
45
|
-
"
|
|
46
|
-
"d": "
|
|
54
|
+
"stroke": "currentColor",
|
|
55
|
+
"d": "M10.4 3.8H13.7V9.6H10.4V3.8Z",
|
|
56
|
+
"strokeLinejoin": "round",
|
|
57
|
+
"strokeWidth": 1.2
|
|
47
58
|
}
|
|
48
59
|
},
|
|
49
60
|
{
|
|
50
61
|
"tag": "path",
|
|
51
62
|
"attrs": {
|
|
52
|
-
"
|
|
53
|
-
"d": "
|
|
63
|
+
"stroke": "currentColor",
|
|
64
|
+
"d": "M12.05 2.2V3.8",
|
|
65
|
+
"strokeLinecap": "round",
|
|
66
|
+
"strokeWidth": 1.2
|
|
54
67
|
}
|
|
55
68
|
},
|
|
56
69
|
{
|
|
57
70
|
"tag": "path",
|
|
58
71
|
"attrs": {
|
|
59
|
-
"
|
|
60
|
-
"d": "
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
{
|
|
64
|
-
"tag": "path",
|
|
65
|
-
"attrs": {
|
|
66
|
-
"fill": "currentColor",
|
|
67
|
-
"d": "M11 6V13H6V6H11ZM7.7998 11.2002H9.2002V7.7998H7.7998V11.2002Z"
|
|
72
|
+
"stroke": "currentColor",
|
|
73
|
+
"d": "M12.05 9.6V11.2",
|
|
74
|
+
"strokeLinecap": "round",
|
|
75
|
+
"strokeWidth": 1.2
|
|
68
76
|
}
|
|
69
77
|
}
|
|
70
78
|
]
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/connection-line-icon.tsx
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [{
|
|
14
|
+
"tag": "path",
|
|
15
|
+
"attrs": {
|
|
16
|
+
"stroke": "currentColor",
|
|
17
|
+
"d": "M1.42765 13.3707H4.67832C5.26375 13.3707 5.73832 12.8961 5.73832 12.3107V8.00003C5.73832 7.41462 6.2129 6.94003 6.79832 6.94003H14.0063",
|
|
18
|
+
"strokeLinecap": "round",
|
|
19
|
+
"strokeLinejoin": "round",
|
|
20
|
+
"strokeWidth": 1.35
|
|
21
|
+
}
|
|
22
|
+
}, {
|
|
23
|
+
"tag": "path",
|
|
24
|
+
"attrs": {
|
|
25
|
+
"stroke": "currentColor",
|
|
26
|
+
"d": "M10.685 3.05336L14.1477 6.94003L10.685 10.8267",
|
|
27
|
+
"strokeLinecap": "round",
|
|
28
|
+
"strokeLinejoin": "round",
|
|
29
|
+
"strokeWidth": 1.35
|
|
30
|
+
}
|
|
31
|
+
}]
|
|
32
|
+
};
|
|
33
|
+
const ConnectionLineIcon = forwardRef(function ConnectionLineIcon(props, ref) {
|
|
34
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
35
|
+
id: "connection-line-icon",
|
|
36
|
+
ref,
|
|
37
|
+
icon: element
|
|
38
|
+
}));
|
|
39
|
+
});
|
|
40
|
+
ConnectionLineIcon.displayName = "ConnectionLineIcon";
|
|
41
|
+
//#endregion
|
|
42
|
+
export { ConnectionLineIcon, ConnectionLineIcon as default };
|
package/dist/esm/crop-icon.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { createElement, forwardRef } from "react";
|
|
2
2
|
import { IconBase } from "./base.js";
|
|
3
|
-
//#region ts/
|
|
3
|
+
//#region ts/exclamation-icon.tsx
|
|
4
4
|
const element = {
|
|
5
5
|
"tag": "svg",
|
|
6
6
|
"attrs": {
|
|
@@ -26,13 +26,13 @@ const element = {
|
|
|
26
26
|
}
|
|
27
27
|
}]
|
|
28
28
|
};
|
|
29
|
-
const
|
|
29
|
+
const ExclamationIcon = forwardRef(function ExclamationIcon(props, ref) {
|
|
30
30
|
return createElement(IconBase, Object.assign({}, props, {
|
|
31
|
-
id: "
|
|
31
|
+
id: "exclamation-icon",
|
|
32
32
|
ref,
|
|
33
33
|
icon: element
|
|
34
34
|
}));
|
|
35
35
|
});
|
|
36
|
-
|
|
36
|
+
ExclamationIcon.displayName = "ExclamationIcon";
|
|
37
37
|
//#endregion
|
|
38
|
-
export {
|
|
38
|
+
export { ExclamationIcon, ExclamationIcon as default };
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/fountain-pen-icon.tsx
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [
|
|
14
|
+
{
|
|
15
|
+
"tag": "path",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"stroke": "currentColor",
|
|
18
|
+
"d": "M10.2663 2.33334L14.0663 6.13334",
|
|
19
|
+
"strokeLinecap": "round",
|
|
20
|
+
"strokeWidth": 1.35
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"tag": "path",
|
|
25
|
+
"attrs": {
|
|
26
|
+
"stroke": "currentColor",
|
|
27
|
+
"d": "M6.06634 4.86667C7.96634 5.26667 9.69967 5.13334 11.3997 4.23334L12.3997 5.23334C11.433 6.73334 11.333 8.36667 11.7997 10.3667L3.19967 13L6.06634 4.86667Z",
|
|
28
|
+
"strokeLinecap": "round",
|
|
29
|
+
"strokeLinejoin": "round",
|
|
30
|
+
"strokeWidth": 1.35
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"tag": "path",
|
|
35
|
+
"attrs": {
|
|
36
|
+
"stroke": "currentColor",
|
|
37
|
+
"d": "M3.19967 13L8.46634 7.73334",
|
|
38
|
+
"strokeLinecap": "round",
|
|
39
|
+
"strokeWidth": 1.35
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"tag": "circle",
|
|
44
|
+
"attrs": {
|
|
45
|
+
"cx": 4.33,
|
|
46
|
+
"cy": 14.07,
|
|
47
|
+
"r": .45,
|
|
48
|
+
"fill": "currentColor"
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"tag": "path",
|
|
53
|
+
"attrs": {
|
|
54
|
+
"stroke": "currentColor",
|
|
55
|
+
"d": "M6.06634 14.2C6.63301 13.5667 7.19967 13.5667 7.76634 14.2C8.33301 14.8333 8.89967 14.8333 9.46634 14.2C10.033 13.5667 10.5997 13.5667 11.1663 14.2C11.733 14.8333 12.2997 14.8333 12.8663 14.2",
|
|
56
|
+
"strokeLinecap": "round",
|
|
57
|
+
"strokeLinejoin": "round",
|
|
58
|
+
"strokeWidth": 1.35
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
]
|
|
62
|
+
};
|
|
63
|
+
const FountainPenIcon = forwardRef(function FountainPenIcon(props, ref) {
|
|
64
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
65
|
+
id: "fountain-pen-icon",
|
|
66
|
+
ref,
|
|
67
|
+
icon: element
|
|
68
|
+
}));
|
|
69
|
+
});
|
|
70
|
+
FountainPenIcon.displayName = "FountainPenIcon";
|
|
71
|
+
//#endregion
|
|
72
|
+
export { FountainPenIcon, FountainPenIcon as default };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { IconProps } from './base.js';
|
|
2
|
-
export declare const
|
|
3
|
-
export default
|
|
2
|
+
export declare const HandIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
|
|
3
|
+
export default HandIcon;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/hand-icon.tsx
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 24 24",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [
|
|
14
|
+
{
|
|
15
|
+
"tag": "path",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"stroke": "currentColor",
|
|
18
|
+
"d": "M18 11V6C18 4.89543 17.1046 4 16 4C14.8954 4 14 4.89543 14 6",
|
|
19
|
+
"strokeLinecap": "round",
|
|
20
|
+
"strokeLinejoin": "round",
|
|
21
|
+
"strokeWidth": 2.2
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"tag": "path",
|
|
26
|
+
"attrs": {
|
|
27
|
+
"stroke": "currentColor",
|
|
28
|
+
"d": "M14 10V4C14 2.89543 13.1046 2 12 2C10.8954 2 10 2.89543 10 4V6",
|
|
29
|
+
"strokeLinecap": "round",
|
|
30
|
+
"strokeLinejoin": "round",
|
|
31
|
+
"strokeWidth": 2.2
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"tag": "path",
|
|
36
|
+
"attrs": {
|
|
37
|
+
"stroke": "currentColor",
|
|
38
|
+
"d": "M10 10.5V6C10 4.89543 9.10457 4 8 4C6.89543 4 6 4.89543 6 6V14",
|
|
39
|
+
"strokeLinecap": "round",
|
|
40
|
+
"strokeLinejoin": "round",
|
|
41
|
+
"strokeWidth": 2.2
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"tag": "path",
|
|
46
|
+
"attrs": {
|
|
47
|
+
"stroke": "currentColor",
|
|
48
|
+
"d": "M18 8C18 6.89543 18.8954 6 20 6C21.1046 6 22 6.89543 22 8V14C22 18.4183 18.4183 22 14 22H12C9.2 22 7.5 21.14 6.01 19.66L2.41 16.06C1.62947 15.2795 1.62947 14.0145 2.41 13.234C3.19053 12.4535 4.45547 12.4535 5.236 13.234L7 15",
|
|
49
|
+
"strokeLinecap": "round",
|
|
50
|
+
"strokeLinejoin": "round",
|
|
51
|
+
"strokeWidth": 2.2
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
]
|
|
55
|
+
};
|
|
56
|
+
const HandIcon = forwardRef(function HandIcon(props, ref) {
|
|
57
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
58
|
+
id: "hand-icon",
|
|
59
|
+
ref,
|
|
60
|
+
icon: element
|
|
61
|
+
}));
|
|
62
|
+
});
|
|
63
|
+
HandIcon.displayName = "HandIcon";
|
|
64
|
+
//#endregion
|
|
65
|
+
export { HandIcon, HandIcon as default };
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export { AllBorderIcon } from './all-border-icon.js';
|
|
|
11
11
|
export { AmplifyIcon } from './amplify-icon.js';
|
|
12
12
|
export { AreaChartIcon } from './area-chart-icon.js';
|
|
13
13
|
export { ArrowDownIcon } from './arrow-down-icon.js';
|
|
14
|
+
export { ArrowLeftIcon } from './arrow-left-icon.js';
|
|
14
15
|
export { ArrowRightIcon } from './arrow-right-icon.js';
|
|
15
16
|
export { ArrowTiltDownIcon } from './arrow-tilt-down-icon.js';
|
|
16
17
|
export { ArrowTiltUpIcon } from './arrow-tilt-up-icon.js';
|
|
@@ -18,7 +19,6 @@ export { ArrowUpIcon } from './arrow-up-icon.js';
|
|
|
18
19
|
export { AscendingIcon } from './ascending-icon.js';
|
|
19
20
|
export { AutowrapIcon } from './autowrap-icon.js';
|
|
20
21
|
export { AvgIcon } from './avg-icon.js';
|
|
21
|
-
export { BackIcon } from './back-icon.js';
|
|
22
22
|
export { BanIcon } from './ban-icon.js';
|
|
23
23
|
export { BarChartIcon } from './bar-chart-icon.js';
|
|
24
24
|
export { BoldIcon } from './bold-icon.js';
|
|
@@ -44,9 +44,9 @@ export { ColumnIcon } from './column-icon.js';
|
|
|
44
44
|
export { ColumnSparklineIcon } from './column-sparkline-icon.js';
|
|
45
45
|
export { ComboChartIcon } from './combo-chart-icon.js';
|
|
46
46
|
export { CommentIcon } from './comment-icon.js';
|
|
47
|
+
export { ConnectionLineIcon } from './connection-line-icon.js';
|
|
47
48
|
export { ConvertIcon } from './convert-icon.js';
|
|
48
49
|
export { CopyIcon } from './copy-icon.js';
|
|
49
|
-
export { CorrectIcon } from './correct-icon.js';
|
|
50
50
|
export { CreateCopyIcon } from './create-copy-icon.js';
|
|
51
51
|
export { CropIcon } from './crop-icon.js';
|
|
52
52
|
export { CrossHighlightingIcon } from './cross-highlighting-icon.js';
|
|
@@ -70,6 +70,7 @@ export { DownloadImageIcon } from './download-image-icon.js';
|
|
|
70
70
|
export { DropdownIcon } from './dropdown-icon.js';
|
|
71
71
|
export { ErrorIcon } from './error-icon.js';
|
|
72
72
|
export { EuroIcon } from './euro-icon.js';
|
|
73
|
+
export { ExclamationIcon } from './exclamation-icon.js';
|
|
73
74
|
export { ExpandAscendingIcon } from './expand-ascending-icon.js';
|
|
74
75
|
export { ExpandDescendingIcon } from './expand-descending-icon.js';
|
|
75
76
|
export { ExponentialIcon } from './exponential-icon.js';
|
|
@@ -85,6 +86,7 @@ export { FolderIcon } from './folder-icon.js';
|
|
|
85
86
|
export { FontSizeIncreaseIcon } from './font-size-increase-icon.js';
|
|
86
87
|
export { FontSizeReduceIcon } from './font-size-reduce-icon.js';
|
|
87
88
|
export { FoodsIcon } from './foods-icon.js';
|
|
89
|
+
export { FountainPenIcon } from './fountain-pen-icon.js';
|
|
88
90
|
export { FreezeColumnIcon } from './freeze-column-icon.js';
|
|
89
91
|
export { FreezeRowIcon } from './freeze-row-icon.js';
|
|
90
92
|
export { FreezeToSelectedIcon } from './freeze-to-selected-icon.js';
|
|
@@ -99,13 +101,13 @@ export { GripHorizontalIcon } from './grip-horizontal-icon.js';
|
|
|
99
101
|
export { GripVerticalIcon } from './grip-vertical-icon.js';
|
|
100
102
|
export { GroupIcon } from './group-icon.js';
|
|
101
103
|
export { GroupSparklineIcon } from './group-sparkline-icon.js';
|
|
102
|
-
export { GuideIcon } from './guide-icon.js';
|
|
103
104
|
export { H1Icon } from './h1-icon.js';
|
|
104
105
|
export { H2Icon } from './h2-icon.js';
|
|
105
106
|
export { H3Icon } from './h3-icon.js';
|
|
106
107
|
export { H4Icon } from './h4-icon.js';
|
|
107
108
|
export { H5Icon } from './h5-icon.js';
|
|
108
109
|
export { H6Icon } from './h6-icon.js';
|
|
110
|
+
export { HandIcon } from './hand-icon.js';
|
|
109
111
|
export { HeaderFooterIcon } from './header-footer-icon.js';
|
|
110
112
|
export { HeatmapIcon } from './heatmap-icon.js';
|
|
111
113
|
export { HelpIcon } from './help-icon.js';
|
|
@@ -120,7 +122,6 @@ export { InfoIcon } from './info-icon.js';
|
|
|
120
122
|
export { InsertIcon } from './insert-icon.js';
|
|
121
123
|
export { ItalicIcon } from './italic-icon.js';
|
|
122
124
|
export { KeyboardIcon } from './keyboard-icon.js';
|
|
123
|
-
export { LeftIcon } from './left-icon.js';
|
|
124
125
|
export { LeftJustifyingIcon } from './left-justifying-icon.js';
|
|
125
126
|
export { LeftRotationFortyFiveDegreesIcon } from './left-rotation-forty-five-degrees-icon.js';
|
|
126
127
|
export { LeftRotationNinetyDegreesIcon } from './left-rotation-ninety-degrees-icon.js';
|
|
@@ -136,13 +137,13 @@ export { MenuIcon } from './menu-icon.js';
|
|
|
136
137
|
export { MergeAllIcon } from './merge-all-icon.js';
|
|
137
138
|
export { MermaidDiagramIcon } from './mermaid-diagram-icon.js';
|
|
138
139
|
export { MinIcon } from './min-icon.js';
|
|
139
|
-
export {
|
|
140
|
+
export { MindMapIcon } from './mind-map-icon.js';
|
|
140
141
|
export { MoreDownIcon } from './more-down-icon.js';
|
|
141
|
-
export { MoreFunctionIcon } from './more-function-icon.js';
|
|
142
142
|
export { MoreHorizontalIcon } from './more-horizontal-icon.js';
|
|
143
143
|
export { MoreLeftIcon } from './more-left-icon.js';
|
|
144
144
|
export { MoreRightIcon } from './more-right-icon.js';
|
|
145
145
|
export { MoreUpIcon } from './more-up-icon.js';
|
|
146
|
+
export { MoreVerticalIcon } from './more-vertical-icon.js';
|
|
146
147
|
export { MoveDownIcon } from './move-down-icon.js';
|
|
147
148
|
export { MoveUpIcon } from './move-up-icon.js';
|
|
148
149
|
export { MovingAverageIcon } from './moving-average-icon.js';
|
|
@@ -180,7 +181,7 @@ export { ReduceIcon } from './reduce-icon.js';
|
|
|
180
181
|
export { RelationshipIcon } from './relationship-icon.js';
|
|
181
182
|
export { RenameIcon } from './rename-icon.js';
|
|
182
183
|
export { ReplyToCommentIcon } from './reply-to-comment-icon.js';
|
|
183
|
-
export {
|
|
184
|
+
export { ResourcesIcon } from './resources-icon.js';
|
|
184
185
|
export { RestoreIcon } from './restore-icon.js';
|
|
185
186
|
export { RhomboidIcon } from './rhomboid-icon.js';
|
|
186
187
|
export { RightJustifyingIcon } from './right-justifying-icon.js';
|
|
@@ -190,6 +191,7 @@ export { RmbIcon } from './rmb-icon.js';
|
|
|
190
191
|
export { RoubleIcon } from './rouble-icon.js';
|
|
191
192
|
export { RoundnessIcon } from './roundness-icon.js';
|
|
192
193
|
export { RowIcon } from './row-icon.js';
|
|
194
|
+
export { RulerIcon } from './ruler-icon.js';
|
|
193
195
|
export { SankeyIcon } from './sankey-icon.js';
|
|
194
196
|
export { ScatterChartIcon } from './scatter-chart-icon.js';
|
|
195
197
|
export { SearchIcon } from './search-icon.js';
|
|
@@ -392,10 +394,11 @@ export { ShowDimensionsIcon } from './show-dimensions-icon.js';
|
|
|
392
394
|
export { ShowToolbarIcon } from './show-toolbar-icon.js';
|
|
393
395
|
export { SlideshowPlayIcon } from './slideshow-play-icon.js';
|
|
394
396
|
export { SlideshowThemeIcon } from './slideshow-theme-icon.js';
|
|
395
|
-
export {
|
|
397
|
+
export { StickyNoteIcon } from './sticky-note-icon.js';
|
|
396
398
|
export { StrikethroughIcon } from './strikethrough-icon.js';
|
|
397
399
|
export { SubscriptIcon } from './subscript-icon.js';
|
|
398
400
|
export { SuccessIcon } from './success-icon.js';
|
|
401
|
+
export { SuccessOutlineIcon } from './success-outline-icon.js';
|
|
399
402
|
export { SumIcon } from './sum-icon.js';
|
|
400
403
|
export { SuperscriptIcon } from './superscript-icon.js';
|
|
401
404
|
export { SymbolsIcon } from './symbols-icon.js';
|
|
@@ -404,6 +407,7 @@ export { TextIcon } from './text-icon.js';
|
|
|
404
407
|
export { TextTypeIcon } from './text-type-icon.js';
|
|
405
408
|
export { TextWrapShapeIcon } from './text-wrap-shape-icon.js';
|
|
406
409
|
export { TopmostIcon } from './topmost-icon.js';
|
|
410
|
+
export { TransitionsIcon } from './transitions-icon.js';
|
|
407
411
|
export { TriangleIcon } from './triangle-icon.js';
|
|
408
412
|
export { TruncationIcon } from './truncation-icon.js';
|
|
409
413
|
export { TypographyIcon } from './typography-icon.js';
|
|
@@ -418,16 +422,12 @@ export { UpIcon } from './up-icon.js';
|
|
|
418
422
|
export { VerticalCenterIcon } from './vertical-center-icon.js';
|
|
419
423
|
export { VerticalIntegrationIcon } from './vertical-integration-icon.js';
|
|
420
424
|
export { VerticalTextIcon } from './vertical-text-icon.js';
|
|
421
|
-
export { WarnIcon } from './warn-icon.js';
|
|
422
425
|
export { WarningIcon } from './warning-icon.js';
|
|
423
426
|
export { WaterfallChartIcon } from './waterfall-chart-icon.js';
|
|
424
427
|
export { WinlossSparklineIcon } from './winloss-sparkline-icon.js';
|
|
425
428
|
export { WriteIcon } from './write-icon.js';
|
|
426
|
-
export { ZenIcon } from './zen-icon.js';
|
|
427
429
|
export { ZoomInIcon } from './zoom-in-icon.js';
|
|
428
|
-
export { ZoomIncreaseIcon } from './zoom-increase-icon.js';
|
|
429
430
|
export { ZoomOutIcon } from './zoom-out-icon.js';
|
|
430
|
-
export { ZoomReduceIcon } from './zoom-reduce-icon.js';
|
|
431
431
|
export { DocMultiIcon } from './doc-multi-icon.js';
|
|
432
432
|
export { LoadingMultiIcon } from './loading-multi-icon.js';
|
|
433
433
|
export { SlideMultiIcon } from './slide-multi-icon.js';
|