@univerjs/icons 1.11.0 → 1.13.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/cursors-icon.cjs +37 -0
- package/dist/cjs/export-icon.cjs +2 -2
- package/dist/cjs/grip-horizontal-icon.cjs +84 -0
- package/dist/cjs/import-icon.cjs +41 -0
- package/dist/cjs/index.cjs +71 -29
- package/dist/cjs/mermaid-diagram-icon.cjs +88 -0
- package/dist/cjs/paint-icon.cjs +76 -0
- package/dist/cjs/precise-selection-icon.cjs +41 -0
- package/dist/cjs/{progress-0-icon.cjs → progress-0-double-icon.cjs} +6 -6
- package/dist/cjs/{progress-100-icon.cjs → progress-100-double-icon.cjs} +6 -6
- package/dist/cjs/{progress-25-icon.cjs → progress-25-double-icon.cjs} +6 -6
- package/dist/cjs/{progress-50-icon.cjs → progress-50-double-icon.cjs} +6 -6
- package/dist/cjs/{progress-75-icon.cjs → progress-75-double-icon.cjs} +6 -6
- package/dist/cjs/show-dimensions-icon.cjs +111 -0
- package/dist/cjs/show-toolbar-icon.cjs +43 -0
- package/dist/esm/cursors-icon.d.ts +3 -0
- package/dist/esm/cursors-icon.js +32 -0
- package/dist/esm/export-icon.js +2 -2
- package/dist/esm/grip-horizontal-icon.d.ts +3 -0
- package/dist/esm/grip-horizontal-icon.js +79 -0
- package/dist/esm/import-icon.d.ts +3 -0
- package/dist/esm/import-icon.js +36 -0
- package/dist/esm/index.d.ts +13 -7
- package/dist/esm/index.js +14 -8
- package/dist/esm/mermaid-diagram-icon.d.ts +3 -0
- package/dist/esm/mermaid-diagram-icon.js +83 -0
- package/dist/esm/paint-icon.d.ts +3 -0
- package/dist/esm/paint-icon.js +71 -0
- package/dist/esm/precise-selection-icon.d.ts +3 -0
- package/dist/esm/precise-selection-icon.js +36 -0
- package/dist/esm/progress-0-double-icon.d.ts +3 -0
- package/dist/esm/{progress-0-icon.js → progress-0-double-icon.js} +5 -5
- package/dist/esm/progress-100-double-icon.d.ts +3 -0
- package/dist/esm/{progress-100-icon.js → progress-100-double-icon.js} +5 -5
- package/dist/esm/progress-25-double-icon.d.ts +3 -0
- package/dist/esm/{progress-25-icon.js → progress-25-double-icon.js} +5 -5
- package/dist/esm/progress-50-double-icon.d.ts +3 -0
- package/dist/esm/{progress-50-icon.js → progress-50-double-icon.js} +5 -5
- package/dist/esm/progress-75-double-icon.d.ts +3 -0
- package/dist/esm/{progress-75-icon.js → progress-75-double-icon.js} +5 -5
- package/dist/esm/show-dimensions-icon.d.ts +3 -0
- package/dist/esm/show-dimensions-icon.js +106 -0
- package/dist/esm/{progress-100-icon.d.ts → show-toolbar-icon.d.ts} +2 -2
- package/dist/esm/show-toolbar-icon.js +38 -0
- package/package.json +8 -7
- package/dist/cjs/more-icon.cjs +0 -37
- package/dist/cjs/sequence-icon.cjs +0 -72
- package/dist/esm/more-icon.d.ts +0 -3
- package/dist/esm/more-icon.js +0 -32
- package/dist/esm/progress-0-icon.d.ts +0 -3
- package/dist/esm/progress-25-icon.d.ts +0 -3
- package/dist/esm/progress-50-icon.d.ts +0 -3
- package/dist/esm/progress-75-icon.d.ts +0 -3
- package/dist/esm/sequence-icon.d.ts +0 -3
- package/dist/esm/sequence-icon.js +0 -67
|
@@ -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/progress-100-icon.tsx
|
|
7
|
+
//#region ts/progress-100-double-icon.tsx
|
|
8
8
|
const element = {
|
|
9
9
|
"tag": "svg",
|
|
10
10
|
"attrs": {
|
|
@@ -33,14 +33,14 @@ const element = {
|
|
|
33
33
|
}
|
|
34
34
|
}]
|
|
35
35
|
};
|
|
36
|
-
const
|
|
36
|
+
const Progress100DoubleIcon = (0, react.forwardRef)(function Progress100DoubleIcon(props, ref) {
|
|
37
37
|
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
38
|
-
id: "progress-100-icon",
|
|
38
|
+
id: "progress-100-double-icon",
|
|
39
39
|
ref,
|
|
40
40
|
icon: element
|
|
41
41
|
}));
|
|
42
42
|
});
|
|
43
|
-
|
|
43
|
+
Progress100DoubleIcon.displayName = "Progress100DoubleIcon";
|
|
44
44
|
//#endregion
|
|
45
|
-
exports.
|
|
46
|
-
exports.default =
|
|
45
|
+
exports.Progress100DoubleIcon = Progress100DoubleIcon;
|
|
46
|
+
exports.default = Progress100DoubleIcon;
|
|
@@ -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/progress-25-icon.tsx
|
|
7
|
+
//#region ts/progress-25-double-icon.tsx
|
|
8
8
|
const element = {
|
|
9
9
|
"tag": "svg",
|
|
10
10
|
"attrs": {
|
|
@@ -43,14 +43,14 @@ const element = {
|
|
|
43
43
|
}
|
|
44
44
|
]
|
|
45
45
|
};
|
|
46
|
-
const
|
|
46
|
+
const Progress25DoubleIcon = (0, react.forwardRef)(function Progress25DoubleIcon(props, ref) {
|
|
47
47
|
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
48
|
-
id: "progress-25-icon",
|
|
48
|
+
id: "progress-25-double-icon",
|
|
49
49
|
ref,
|
|
50
50
|
icon: element
|
|
51
51
|
}));
|
|
52
52
|
});
|
|
53
|
-
|
|
53
|
+
Progress25DoubleIcon.displayName = "Progress25DoubleIcon";
|
|
54
54
|
//#endregion
|
|
55
|
-
exports.
|
|
56
|
-
exports.default =
|
|
55
|
+
exports.Progress25DoubleIcon = Progress25DoubleIcon;
|
|
56
|
+
exports.default = Progress25DoubleIcon;
|
|
@@ -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/progress-50-icon.tsx
|
|
7
|
+
//#region ts/progress-50-double-icon.tsx
|
|
8
8
|
const element = {
|
|
9
9
|
"tag": "svg",
|
|
10
10
|
"attrs": {
|
|
@@ -43,14 +43,14 @@ const element = {
|
|
|
43
43
|
}
|
|
44
44
|
]
|
|
45
45
|
};
|
|
46
|
-
const
|
|
46
|
+
const Progress50DoubleIcon = (0, react.forwardRef)(function Progress50DoubleIcon(props, ref) {
|
|
47
47
|
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
48
|
-
id: "progress-50-icon",
|
|
48
|
+
id: "progress-50-double-icon",
|
|
49
49
|
ref,
|
|
50
50
|
icon: element
|
|
51
51
|
}));
|
|
52
52
|
});
|
|
53
|
-
|
|
53
|
+
Progress50DoubleIcon.displayName = "Progress50DoubleIcon";
|
|
54
54
|
//#endregion
|
|
55
|
-
exports.
|
|
56
|
-
exports.default =
|
|
55
|
+
exports.Progress50DoubleIcon = Progress50DoubleIcon;
|
|
56
|
+
exports.default = Progress50DoubleIcon;
|
|
@@ -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/progress-75-icon.tsx
|
|
7
|
+
//#region ts/progress-75-double-icon.tsx
|
|
8
8
|
const element = {
|
|
9
9
|
"tag": "svg",
|
|
10
10
|
"attrs": {
|
|
@@ -43,14 +43,14 @@ const element = {
|
|
|
43
43
|
}
|
|
44
44
|
]
|
|
45
45
|
};
|
|
46
|
-
const
|
|
46
|
+
const Progress75DoubleIcon = (0, react.forwardRef)(function Progress75DoubleIcon(props, ref) {
|
|
47
47
|
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
48
|
-
id: "progress-75-icon",
|
|
48
|
+
id: "progress-75-double-icon",
|
|
49
49
|
ref,
|
|
50
50
|
icon: element
|
|
51
51
|
}));
|
|
52
52
|
});
|
|
53
|
-
|
|
53
|
+
Progress75DoubleIcon.displayName = "Progress75DoubleIcon";
|
|
54
54
|
//#endregion
|
|
55
|
-
exports.
|
|
56
|
-
exports.default =
|
|
55
|
+
exports.Progress75DoubleIcon = Progress75DoubleIcon;
|
|
56
|
+
exports.default = Progress75DoubleIcon;
|
|
@@ -0,0 +1,111 @@
|
|
|
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/show-dimensions-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": "M4.45 3.25H10.9",
|
|
23
|
+
"strokeLinecap": "round",
|
|
24
|
+
"strokeWidth": 1.3
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"tag": "path",
|
|
29
|
+
"attrs": {
|
|
30
|
+
"stroke": "currentColor",
|
|
31
|
+
"d": "M3.25 4.45V8.95",
|
|
32
|
+
"strokeLinecap": "round",
|
|
33
|
+
"strokeWidth": 1.3
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"tag": "path",
|
|
38
|
+
"attrs": {
|
|
39
|
+
"stroke": "currentColor",
|
|
40
|
+
"d": "M12.1 4.45V6.7",
|
|
41
|
+
"strokeLinecap": "round",
|
|
42
|
+
"strokeWidth": 1.3
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"tag": "path",
|
|
47
|
+
"attrs": {
|
|
48
|
+
"stroke": "currentColor",
|
|
49
|
+
"d": "M4.45 10H7.75",
|
|
50
|
+
"strokeLinecap": "round",
|
|
51
|
+
"strokeWidth": 1.3
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"tag": "rect",
|
|
56
|
+
"attrs": {
|
|
57
|
+
"width": 2.2,
|
|
58
|
+
"height": 2.2,
|
|
59
|
+
"x": 2.15,
|
|
60
|
+
"y": 2.15,
|
|
61
|
+
"stroke": "currentColor",
|
|
62
|
+
"rx": .18,
|
|
63
|
+
"strokeWidth": 1.2
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"tag": "rect",
|
|
68
|
+
"attrs": {
|
|
69
|
+
"width": 2.2,
|
|
70
|
+
"height": 2.2,
|
|
71
|
+
"x": 11,
|
|
72
|
+
"y": 2.15,
|
|
73
|
+
"stroke": "currentColor",
|
|
74
|
+
"rx": .18,
|
|
75
|
+
"strokeWidth": 1.2
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"tag": "rect",
|
|
80
|
+
"attrs": {
|
|
81
|
+
"width": 2.2,
|
|
82
|
+
"height": 2.2,
|
|
83
|
+
"x": 2.15,
|
|
84
|
+
"y": 8.9,
|
|
85
|
+
"stroke": "currentColor",
|
|
86
|
+
"rx": .18,
|
|
87
|
+
"strokeWidth": 1.2
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"tag": "path",
|
|
92
|
+
"attrs": {
|
|
93
|
+
"fill": "currentColor",
|
|
94
|
+
"d": "M12.55 8.2L12.92 9.1C13.13 9.16 13.33 9.24 13.51 9.36L14.42 8.99L14.97 9.94L14.19 10.53C14.21 10.65 14.22 10.78 14.22 10.9C14.22 11.02 14.21 11.15 14.19 11.27L14.97 11.86L14.42 12.81L13.51 12.44C13.33 12.56 13.13 12.64 12.92 12.7L12.55 13.6H11.45L11.08 12.7C10.87 12.64 10.67 12.56 10.49 12.44L9.58 12.81L9.03 11.86L9.81 11.27C9.79 11.15 9.78 11.02 9.78 10.9C9.78 10.78 9.79 10.65 9.81 10.53L9.03 9.94L9.58 8.99L10.49 9.36C10.67 9.24 10.87 9.16 11.08 9.1L11.45 8.2H12.55ZM12 11.7C12.4418 11.7 12.8 11.3418 12.8 10.9C12.8 10.4582 12.4418 10.1 12 10.1C11.5582 10.1 11.2 10.4582 11.2 10.9C11.2 11.3418 11.5582 11.7 12 11.7Z",
|
|
95
|
+
"fillRule": "evenodd",
|
|
96
|
+
"clipRule": "evenodd"
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const ShowDimensionsIcon = (0, react.forwardRef)(function ShowDimensionsIcon(props, ref) {
|
|
102
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
103
|
+
id: "show-dimensions-icon",
|
|
104
|
+
ref,
|
|
105
|
+
icon: element
|
|
106
|
+
}));
|
|
107
|
+
});
|
|
108
|
+
ShowDimensionsIcon.displayName = "ShowDimensionsIcon";
|
|
109
|
+
//#endregion
|
|
110
|
+
exports.ShowDimensionsIcon = ShowDimensionsIcon;
|
|
111
|
+
exports.default = ShowDimensionsIcon;
|
|
@@ -0,0 +1,43 @@
|
|
|
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/show-toolbar-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
|
+
"tag": "path",
|
|
19
|
+
"attrs": {
|
|
20
|
+
"fill": "currentColor",
|
|
21
|
+
"d": "M2.5 3C1.94772 3 1.5 3.44772 1.5 4V12C1.5 12.5523 1.94772 13 2.5 13H13.5C14.0523 13 14.5 12.5523 14.5 12V4C14.5 3.44772 14.0523 3 13.5 3H2.5ZM2.8 4.3V11.7H13.2V4.3H2.8Z",
|
|
22
|
+
"fillRule": "evenodd",
|
|
23
|
+
"clipRule": "evenodd"
|
|
24
|
+
}
|
|
25
|
+
}, {
|
|
26
|
+
"tag": "path",
|
|
27
|
+
"attrs": {
|
|
28
|
+
"fill": "currentColor",
|
|
29
|
+
"d": "M9.6 5.8C9.6 5.46863 9.86863 5.2 10.2 5.2H11.7C12.0314 5.2 12.3 5.46863 12.3 5.8C12.3 6.13137 12.0314 6.4 11.7 6.4H10.2C9.86863 6.4 9.6 6.13137 9.6 5.8Z"
|
|
30
|
+
}
|
|
31
|
+
}]
|
|
32
|
+
};
|
|
33
|
+
const ShowToolbarIcon = (0, react.forwardRef)(function ShowToolbarIcon(props, ref) {
|
|
34
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
35
|
+
id: "show-toolbar-icon",
|
|
36
|
+
ref,
|
|
37
|
+
icon: element
|
|
38
|
+
}));
|
|
39
|
+
});
|
|
40
|
+
ShowToolbarIcon.displayName = "ShowToolbarIcon";
|
|
41
|
+
//#endregion
|
|
42
|
+
exports.ShowToolbarIcon = ShowToolbarIcon;
|
|
43
|
+
exports.default = ShowToolbarIcon;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/cursors-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": "M2.16434 1.85401C1.87594 1.73369 1.58459 2.02503 1.70492 2.31343L6.63002 14.1206C6.7519 14.4127 7.16877 14.3979 7.26964 14.098L8.69811 9.85023C8.73242 9.7482 8.81299 9.66763 8.91502 9.63332L13.9494 7.94055C14.2554 7.83766 14.2641 7.4082 13.9625 7.28235L2.16434 1.85401Z",
|
|
18
|
+
"strokeLinejoin": "round",
|
|
19
|
+
"strokeWidth": 1.3
|
|
20
|
+
}
|
|
21
|
+
}]
|
|
22
|
+
};
|
|
23
|
+
const CursorsIcon = forwardRef(function CursorsIcon(props, ref) {
|
|
24
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
25
|
+
id: "cursors-icon",
|
|
26
|
+
ref,
|
|
27
|
+
icon: element
|
|
28
|
+
}));
|
|
29
|
+
});
|
|
30
|
+
CursorsIcon.displayName = "CursorsIcon";
|
|
31
|
+
//#endregion
|
|
32
|
+
export { CursorsIcon, CursorsIcon as default };
|
package/dist/esm/export-icon.js
CHANGED
|
@@ -14,13 +14,13 @@ const element = {
|
|
|
14
14
|
"tag": "path",
|
|
15
15
|
"attrs": {
|
|
16
16
|
"fill": "currentColor",
|
|
17
|
-
"d": "
|
|
17
|
+
"d": "M8.66203 1.99996C8.66203 1.63269 8.3643 1.33496 7.99703 1.33496C7.62976 1.33496 7.33203 1.63269 7.33203 1.99996V9.05833L5.47019 7.19648C5.21049 6.93678 4.78943 6.93678 4.52973 7.19648C4.27004 7.45618 4.27004 7.87724 4.52973 8.13694L7.49155 11.0988C7.61015 11.2373 7.78475 11.3266 7.9803 11.3314C8.15698 11.3366 8.33534 11.2718 8.47019 11.1369L11.4702 8.13694C11.7299 7.87724 11.7299 7.45618 11.4702 7.19648C11.2105 6.93678 10.7894 6.93678 10.5297 7.19648L8.66203 9.06419V1.99996Z"
|
|
18
18
|
}
|
|
19
19
|
}, {
|
|
20
20
|
"tag": "path",
|
|
21
21
|
"attrs": {
|
|
22
22
|
"fill": "currentColor",
|
|
23
|
-
"d": "
|
|
23
|
+
"d": "M14 7.33496C14.3672 7.33496 14.665 7.63269 14.665 7.99996V11C14.665 13.0241 13.0241 14.665 11 14.665H4.99996C2.97584 14.665 1.33496 13.0241 1.33496 11V8.00273C1.33496 7.63546 1.63269 7.33773 1.99996 7.33773C2.36723 7.33773 2.66496 7.63546 2.66496 8.00273V11C2.66496 12.2895 3.71038 13.335 4.99996 13.335H11C12.2895 13.335 13.335 12.2895 13.335 11V7.99996C13.335 7.63269 13.6327 7.33496 14 7.33496Z"
|
|
24
24
|
}
|
|
25
25
|
}]
|
|
26
26
|
};
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/grip-horizontal-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 20",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [
|
|
14
|
+
{
|
|
15
|
+
"tag": "circle",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"cx": 5,
|
|
18
|
+
"cy": 7,
|
|
19
|
+
"r": 1.1,
|
|
20
|
+
"fill": "currentColor"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"tag": "circle",
|
|
25
|
+
"attrs": {
|
|
26
|
+
"cx": 10,
|
|
27
|
+
"cy": 7,
|
|
28
|
+
"r": 1.1,
|
|
29
|
+
"fill": "currentColor"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"tag": "circle",
|
|
34
|
+
"attrs": {
|
|
35
|
+
"cx": 15,
|
|
36
|
+
"cy": 7,
|
|
37
|
+
"r": 1.1,
|
|
38
|
+
"fill": "currentColor"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"tag": "circle",
|
|
43
|
+
"attrs": {
|
|
44
|
+
"cx": 5,
|
|
45
|
+
"cy": 13,
|
|
46
|
+
"r": 1.1,
|
|
47
|
+
"fill": "currentColor"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"tag": "circle",
|
|
52
|
+
"attrs": {
|
|
53
|
+
"cx": 10,
|
|
54
|
+
"cy": 13,
|
|
55
|
+
"r": 1.1,
|
|
56
|
+
"fill": "currentColor"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"tag": "circle",
|
|
61
|
+
"attrs": {
|
|
62
|
+
"cx": 15,
|
|
63
|
+
"cy": 13,
|
|
64
|
+
"r": 1.1,
|
|
65
|
+
"fill": "currentColor"
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
]
|
|
69
|
+
};
|
|
70
|
+
const GripHorizontalIcon = forwardRef(function GripHorizontalIcon(props, ref) {
|
|
71
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
72
|
+
id: "grip-horizontal-icon",
|
|
73
|
+
ref,
|
|
74
|
+
icon: element
|
|
75
|
+
}));
|
|
76
|
+
});
|
|
77
|
+
GripHorizontalIcon.displayName = "GripHorizontalIcon";
|
|
78
|
+
//#endregion
|
|
79
|
+
export { GripHorizontalIcon, GripHorizontalIcon as default };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/import-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
|
+
"fill": "currentColor",
|
|
17
|
+
"d": "M8.66203 10C8.66203 10.3673 8.3643 10.665 7.99703 10.665C7.62976 10.665 7.33203 10.3673 7.33203 10V2.94159L5.47019 4.80343C5.21049 5.06313 4.78943 5.06313 4.52973 4.80343C4.27004 4.54373 4.27004 4.12267 4.52973 3.86298L7.49155 0.901153C7.61015 0.762628 7.78475 0.673322 7.9803 0.668506C8.15698 0.663335 8.33534 0.728097 8.47019 0.862978L11.4702 3.86298C11.7299 4.12267 11.7299 4.54373 11.4702 4.80343C11.2105 5.06313 10.7894 5.06313 10.5297 4.80343L8.66203 2.93572V10Z"
|
|
18
|
+
}
|
|
19
|
+
}, {
|
|
20
|
+
"tag": "path",
|
|
21
|
+
"attrs": {
|
|
22
|
+
"fill": "currentColor",
|
|
23
|
+
"d": "M14 7.33496C14.3672 7.33496 14.665 7.63269 14.665 7.99996V11C14.665 13.0241 13.0241 14.665 11 14.665H4.99996C2.97584 14.665 1.33496 13.0241 1.33496 11V8.00273C1.33496 7.63546 1.63269 7.33773 1.99996 7.33773C2.36723 7.33773 2.66496 7.63546 2.66496 8.00273V11C2.66496 12.2895 3.71038 13.335 4.99996 13.335H11C12.2895 13.335 13.335 12.2895 13.335 11V7.99996C13.335 7.63269 13.6327 7.33496 14 7.33496Z"
|
|
24
|
+
}
|
|
25
|
+
}]
|
|
26
|
+
};
|
|
27
|
+
const ImportIcon = forwardRef(function ImportIcon(props, ref) {
|
|
28
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
29
|
+
id: "import-icon",
|
|
30
|
+
ref,
|
|
31
|
+
icon: element
|
|
32
|
+
}));
|
|
33
|
+
});
|
|
34
|
+
ImportIcon.displayName = "ImportIcon";
|
|
35
|
+
//#endregion
|
|
36
|
+
export { ImportIcon, ImportIcon as default };
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -51,6 +51,7 @@ export { CreateCopyIcon } from './create-copy-icon.js';
|
|
|
51
51
|
export { CropIcon } from './crop-icon.js';
|
|
52
52
|
export { CrossHighlightingIcon } from './cross-highlighting-icon.js';
|
|
53
53
|
export { CrossIcon } from './cross-icon.js';
|
|
54
|
+
export { CursorsIcon } from './cursors-icon.js';
|
|
54
55
|
export { CustomSortIcon } from './custom-sort-icon.js';
|
|
55
56
|
export { CutIcon } from './cut-icon.js';
|
|
56
57
|
export { DataValidationIcon } from './data-validation-icon.js';
|
|
@@ -94,6 +95,7 @@ export { FxIcon } from './fx-icon.js';
|
|
|
94
95
|
export { GraphIcon } from './graph-icon.js';
|
|
95
96
|
export { GridIcon } from './grid-icon.js';
|
|
96
97
|
export { GridOutlineIcon } from './grid-outline-icon.js';
|
|
98
|
+
export { GripHorizontalIcon } from './grip-horizontal-icon.js';
|
|
97
99
|
export { GripVerticalIcon } from './grip-vertical-icon.js';
|
|
98
100
|
export { GroupIcon } from './group-icon.js';
|
|
99
101
|
export { GroupSparklineIcon } from './group-sparkline-icon.js';
|
|
@@ -112,6 +114,7 @@ export { HistoryIcon } from './history-icon.js';
|
|
|
112
114
|
export { HomeIcon } from './home-icon.js';
|
|
113
115
|
export { HorizontalMergeIcon } from './horizontal-merge-icon.js';
|
|
114
116
|
export { HorizontallyIcon } from './horizontally-icon.js';
|
|
117
|
+
export { ImportIcon } from './import-icon.js';
|
|
115
118
|
export { IncreaseIcon } from './increase-icon.js';
|
|
116
119
|
export { InfoIcon } from './info-icon.js';
|
|
117
120
|
export { InsertIcon } from './insert-icon.js';
|
|
@@ -131,12 +134,12 @@ export { LogarithmicIcon } from './logarithmic-icon.js';
|
|
|
131
134
|
export { MaxIcon } from './max-icon.js';
|
|
132
135
|
export { MenuIcon } from './menu-icon.js';
|
|
133
136
|
export { MergeAllIcon } from './merge-all-icon.js';
|
|
137
|
+
export { MermaidDiagramIcon } from './mermaid-diagram-icon.js';
|
|
134
138
|
export { MinIcon } from './min-icon.js';
|
|
135
139
|
export { MistakeIcon } from './mistake-icon.js';
|
|
136
140
|
export { MoreDownIcon } from './more-down-icon.js';
|
|
137
141
|
export { MoreFunctionIcon } from './more-function-icon.js';
|
|
138
142
|
export { MoreHorizontalIcon } from './more-horizontal-icon.js';
|
|
139
|
-
export { MoreIcon } from './more-icon.js';
|
|
140
143
|
export { MoreLeftIcon } from './more-left-icon.js';
|
|
141
144
|
export { MoreRightIcon } from './more-right-icon.js';
|
|
142
145
|
export { MoreUpIcon } from './more-up-icon.js';
|
|
@@ -153,6 +156,7 @@ export { OnLineIcon } from './on-line-icon.js';
|
|
|
153
156
|
export { OneToOneIcon } from './one-to-one-icon.js';
|
|
154
157
|
export { OrderIcon } from './order-icon.js';
|
|
155
158
|
export { OverflowIcon } from './overflow-icon.js';
|
|
159
|
+
export { PaintIcon } from './paint-icon.js';
|
|
156
160
|
export { PenIcon } from './pen-icon.js';
|
|
157
161
|
export { PeopleIcon } from './people-icon.js';
|
|
158
162
|
export { PercentIcon } from './percent-icon.js';
|
|
@@ -162,12 +166,8 @@ export { PivotTableIcon } from './pivot-table-icon.js';
|
|
|
162
166
|
export { PlacesIcon } from './places-icon.js';
|
|
163
167
|
export { PolynomialIcon } from './polynomial-icon.js';
|
|
164
168
|
export { PowerLineIcon } from './power-line-icon.js';
|
|
169
|
+
export { PreciseSelectionIcon } from './precise-selection-icon.js';
|
|
165
170
|
export { PrintIcon } from './print-icon.js';
|
|
166
|
-
export { Progress0Icon } from './progress-0-icon.js';
|
|
167
|
-
export { Progress100Icon } from './progress-100-icon.js';
|
|
168
|
-
export { Progress25Icon } from './progress-25-icon.js';
|
|
169
|
-
export { Progress50Icon } from './progress-50-icon.js';
|
|
170
|
-
export { Progress75Icon } from './progress-75-icon.js';
|
|
171
171
|
export { ProtectIcon } from './protect-icon.js';
|
|
172
172
|
export { QuoteIcon } from './quote-icon.js';
|
|
173
173
|
export { RadarChartIcon } from './radar-chart-icon.js';
|
|
@@ -194,7 +194,6 @@ export { SankeyIcon } from './sankey-icon.js';
|
|
|
194
194
|
export { ScatterChartIcon } from './scatter-chart-icon.js';
|
|
195
195
|
export { SearchIcon } from './search-icon.js';
|
|
196
196
|
export { SelectRangeIcon } from './select-range-icon.js';
|
|
197
|
-
export { SequenceIcon } from './sequence-icon.js';
|
|
198
197
|
export { ShapeAccentBorderCallout1Icon } from './shape-accent-border-callout1-icon.js';
|
|
199
198
|
export { ShapeAccentBorderCallout2Icon } from './shape-accent-border-callout2-icon.js';
|
|
200
199
|
export { ShapeAccentBorderCallout3Icon } from './shape-accent-border-callout3-icon.js';
|
|
@@ -389,6 +388,8 @@ export { ShareIcon } from './share-icon.js';
|
|
|
389
388
|
export { ShareRangeIcon } from './share-range-icon.js';
|
|
390
389
|
export { SheetIcon } from './sheet-icon.js';
|
|
391
390
|
export { ShortcutIcon } from './shortcut-icon.js';
|
|
391
|
+
export { ShowDimensionsIcon } from './show-dimensions-icon.js';
|
|
392
|
+
export { ShowToolbarIcon } from './show-toolbar-icon.js';
|
|
392
393
|
export { SlideshowPlayIcon } from './slideshow-play-icon.js';
|
|
393
394
|
export { SlideshowThemeIcon } from './slideshow-theme-icon.js';
|
|
394
395
|
export { SolveIcon } from './solve-icon.js';
|
|
@@ -482,6 +483,11 @@ export { OuterBorderDoubleIcon } from './outer-border-double-icon.js';
|
|
|
482
483
|
export { PaintBucketDoubleIcon } from './paint-bucket-double-icon.js';
|
|
483
484
|
export { PasteSpecialDoubleIcon } from './paste-special-double-icon.js';
|
|
484
485
|
export { PointColorDoubleIcon } from './point-color-double-icon.js';
|
|
486
|
+
export { Progress0DoubleIcon } from './progress-0-double-icon.js';
|
|
487
|
+
export { Progress100DoubleIcon } from './progress-100-double-icon.js';
|
|
488
|
+
export { Progress25DoubleIcon } from './progress-25-double-icon.js';
|
|
489
|
+
export { Progress50DoubleIcon } from './progress-50-double-icon.js';
|
|
490
|
+
export { Progress75DoubleIcon } from './progress-75-double-icon.js';
|
|
485
491
|
export { ReduceDoubleIcon } from './reduce-double-icon.js';
|
|
486
492
|
export { RightBorderDoubleIcon } from './right-border-double-icon.js';
|
|
487
493
|
export { RightDoubleDiagonalDoubleIcon } from './right-double-diagonal-double-icon.js';
|