@univerjs/icons 1.6.0 → 1.8.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/activity-icon.cjs +67 -0
- package/dist/cjs/callout-icon.cjs +66 -0
- package/dist/cjs/code-block-icon.cjs +70 -0
- package/dist/cjs/foods-icon.cjs +58 -0
- package/dist/cjs/index.cjs +84 -0
- package/dist/cjs/nature-icon.cjs +45 -0
- package/dist/cjs/objects-icon.cjs +57 -0
- package/dist/cjs/people-icon.cjs +67 -0
- package/dist/cjs/places-icon.cjs +46 -0
- package/dist/cjs/quote-icon.cjs +41 -0
- package/dist/cjs/random-icon.cjs +70 -0
- package/dist/cjs/recent-icon.cjs +47 -0
- package/dist/cjs/symbols-icon.cjs +66 -0
- package/dist/esm/activity-icon.d.ts +3 -0
- package/dist/esm/activity-icon.js +62 -0
- package/dist/esm/callout-icon.d.ts +3 -0
- package/dist/esm/callout-icon.js +61 -0
- package/dist/esm/code-block-icon.d.ts +3 -0
- package/dist/esm/code-block-icon.js +65 -0
- package/dist/esm/foods-icon.d.ts +3 -0
- package/dist/esm/foods-icon.js +53 -0
- package/dist/esm/index.d.ts +12 -0
- package/dist/esm/index.js +13 -1
- package/dist/esm/nature-icon.d.ts +3 -0
- package/dist/esm/nature-icon.js +40 -0
- package/dist/esm/objects-icon.d.ts +3 -0
- package/dist/esm/objects-icon.js +52 -0
- package/dist/esm/people-icon.d.ts +3 -0
- package/dist/esm/people-icon.js +62 -0
- package/dist/esm/places-icon.d.ts +3 -0
- package/dist/esm/places-icon.js +41 -0
- package/dist/esm/quote-icon.d.ts +3 -0
- package/dist/esm/quote-icon.js +36 -0
- package/dist/esm/random-icon.d.ts +3 -0
- package/dist/esm/random-icon.js +65 -0
- package/dist/esm/recent-icon.d.ts +3 -0
- package/dist/esm/recent-icon.js +42 -0
- package/dist/esm/symbols-icon.d.ts +3 -0
- package/dist/esm/symbols-icon.js +61 -0
- package/package.json +2 -2
|
@@ -0,0 +1,41 @@
|
|
|
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/quote-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": "M4.2 4.2H6.7C7.2 4.2 7.6 4.6 7.6 5.1V7.3C7.6 9.5 6.4 11.2 4.4 12.2C4.1 12.4 3.7 12.2 3.6 11.9C3.4 11.6 3.5 11.2 3.8 11C5.1 10.2 5.8 9.3 5.9 8.2H4.2C3.7 8.2 3.3 7.8 3.3 7.3V5.1C3.3 4.6 3.7 4.2 4.2 4.2Z"
|
|
22
|
+
}
|
|
23
|
+
}, {
|
|
24
|
+
"tag": "path",
|
|
25
|
+
"attrs": {
|
|
26
|
+
"fill": "currentColor",
|
|
27
|
+
"d": "M10.1 4.2H12.6C13.1 4.2 13.5 4.6 13.5 5.1V7.3C13.5 9.5 12.3 11.2 10.3 12.2C10 12.4 9.6 12.2 9.5 11.9C9.3 11.6 9.4 11.2 9.7 11C11 10.2 11.7 9.3 11.8 8.2H10.1C9.6 8.2 9.2 7.8 9.2 7.3V5.1C9.2 4.6 9.6 4.2 10.1 4.2Z"
|
|
28
|
+
}
|
|
29
|
+
}]
|
|
30
|
+
};
|
|
31
|
+
const QuoteIcon = (0, react.forwardRef)(function QuoteIcon(props, ref) {
|
|
32
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
33
|
+
id: "quote-icon",
|
|
34
|
+
ref,
|
|
35
|
+
icon: element
|
|
36
|
+
}));
|
|
37
|
+
});
|
|
38
|
+
QuoteIcon.displayName = "QuoteIcon";
|
|
39
|
+
//#endregion
|
|
40
|
+
exports.QuoteIcon = QuoteIcon;
|
|
41
|
+
exports.default = QuoteIcon;
|
|
@@ -0,0 +1,70 @@
|
|
|
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/random-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": "M2.5 4.5H4.3C5.4 4.5 6.2 5.1 7 6.2L9.2 9.2C10 10.3 10.8 10.9 11.9 10.9H13.5",
|
|
23
|
+
"strokeLinecap": "round",
|
|
24
|
+
"strokeLinejoin": "round",
|
|
25
|
+
"strokeWidth": 1.3
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"tag": "path",
|
|
30
|
+
"attrs": {
|
|
31
|
+
"stroke": "currentColor",
|
|
32
|
+
"d": "M11.5 8.9L13.5 10.9L11.5 12.9",
|
|
33
|
+
"strokeLinecap": "round",
|
|
34
|
+
"strokeLinejoin": "round",
|
|
35
|
+
"strokeWidth": 1.3
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"tag": "path",
|
|
40
|
+
"attrs": {
|
|
41
|
+
"stroke": "currentColor",
|
|
42
|
+
"d": "M2.5 10.9H4.3C5.4 10.9 6.2 10.3 7 9.2L9.2 6.2C10 5.1 10.8 4.5 11.9 4.5H13.5",
|
|
43
|
+
"strokeLinecap": "round",
|
|
44
|
+
"strokeLinejoin": "round",
|
|
45
|
+
"strokeWidth": 1.3
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"tag": "path",
|
|
50
|
+
"attrs": {
|
|
51
|
+
"stroke": "currentColor",
|
|
52
|
+
"d": "M11.5 2.5L13.5 4.5L11.5 6.5",
|
|
53
|
+
"strokeLinecap": "round",
|
|
54
|
+
"strokeLinejoin": "round",
|
|
55
|
+
"strokeWidth": 1.3
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
]
|
|
59
|
+
};
|
|
60
|
+
const RandomIcon = (0, react.forwardRef)(function RandomIcon(props, ref) {
|
|
61
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
62
|
+
id: "random-icon",
|
|
63
|
+
ref,
|
|
64
|
+
icon: element
|
|
65
|
+
}));
|
|
66
|
+
});
|
|
67
|
+
RandomIcon.displayName = "RandomIcon";
|
|
68
|
+
//#endregion
|
|
69
|
+
exports.RandomIcon = RandomIcon;
|
|
70
|
+
exports.default = RandomIcon;
|
|
@@ -0,0 +1,47 @@
|
|
|
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/recent-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": "circle",
|
|
19
|
+
"attrs": {
|
|
20
|
+
"cx": 8,
|
|
21
|
+
"cy": 8,
|
|
22
|
+
"r": 5.7,
|
|
23
|
+
"stroke": "currentColor",
|
|
24
|
+
"strokeWidth": 1.3
|
|
25
|
+
}
|
|
26
|
+
}, {
|
|
27
|
+
"tag": "path",
|
|
28
|
+
"attrs": {
|
|
29
|
+
"stroke": "currentColor",
|
|
30
|
+
"d": "M8 4.8V8.2L10.4 9.6",
|
|
31
|
+
"strokeLinecap": "round",
|
|
32
|
+
"strokeLinejoin": "round",
|
|
33
|
+
"strokeWidth": 1.3
|
|
34
|
+
}
|
|
35
|
+
}]
|
|
36
|
+
};
|
|
37
|
+
const RecentIcon = (0, react.forwardRef)(function RecentIcon(props, ref) {
|
|
38
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
39
|
+
id: "recent-icon",
|
|
40
|
+
ref,
|
|
41
|
+
icon: element
|
|
42
|
+
}));
|
|
43
|
+
});
|
|
44
|
+
RecentIcon.displayName = "RecentIcon";
|
|
45
|
+
//#endregion
|
|
46
|
+
exports.RecentIcon = RecentIcon;
|
|
47
|
+
exports.default = RecentIcon;
|
|
@@ -0,0 +1,66 @@
|
|
|
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/symbols-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": "M6.4 2.8L5.5 13.2",
|
|
23
|
+
"strokeLinecap": "round",
|
|
24
|
+
"strokeWidth": 1.3
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"tag": "path",
|
|
29
|
+
"attrs": {
|
|
30
|
+
"stroke": "currentColor",
|
|
31
|
+
"d": "M10.5 2.8L9.6 13.2",
|
|
32
|
+
"strokeLinecap": "round",
|
|
33
|
+
"strokeWidth": 1.3
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"tag": "path",
|
|
38
|
+
"attrs": {
|
|
39
|
+
"stroke": "currentColor",
|
|
40
|
+
"d": "M3.1 6H13.1",
|
|
41
|
+
"strokeLinecap": "round",
|
|
42
|
+
"strokeWidth": 1.3
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"tag": "path",
|
|
47
|
+
"attrs": {
|
|
48
|
+
"stroke": "currentColor",
|
|
49
|
+
"d": "M2.9 10H12.9",
|
|
50
|
+
"strokeLinecap": "round",
|
|
51
|
+
"strokeWidth": 1.3
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
]
|
|
55
|
+
};
|
|
56
|
+
const SymbolsIcon = (0, react.forwardRef)(function SymbolsIcon(props, ref) {
|
|
57
|
+
return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
|
|
58
|
+
id: "symbols-icon",
|
|
59
|
+
ref,
|
|
60
|
+
icon: element
|
|
61
|
+
}));
|
|
62
|
+
});
|
|
63
|
+
SymbolsIcon.displayName = "SymbolsIcon";
|
|
64
|
+
//#endregion
|
|
65
|
+
exports.SymbolsIcon = SymbolsIcon;
|
|
66
|
+
exports.default = SymbolsIcon;
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/activity-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": "circle",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"cx": 8,
|
|
18
|
+
"cy": 8,
|
|
19
|
+
"r": 5.6,
|
|
20
|
+
"stroke": "currentColor",
|
|
21
|
+
"strokeWidth": 1.3
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"tag": "path",
|
|
26
|
+
"attrs": {
|
|
27
|
+
"stroke": "currentColor",
|
|
28
|
+
"d": "M2.8 6.2C5.2 6.7 8.5 5.4 10.8 2.9",
|
|
29
|
+
"strokeLinecap": "round",
|
|
30
|
+
"strokeWidth": 1.3
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"tag": "path",
|
|
35
|
+
"attrs": {
|
|
36
|
+
"stroke": "currentColor",
|
|
37
|
+
"d": "M5.1 12.6C5.5 10.4 8.3 7.8 13.2 7.7",
|
|
38
|
+
"strokeLinecap": "round",
|
|
39
|
+
"strokeWidth": 1.3
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"tag": "path",
|
|
44
|
+
"attrs": {
|
|
45
|
+
"stroke": "currentColor",
|
|
46
|
+
"d": "M6.2 2.8C8.6 5.4 9.8 8.9 9.5 13.3",
|
|
47
|
+
"strokeLinecap": "round",
|
|
48
|
+
"strokeWidth": 1.3
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
]
|
|
52
|
+
};
|
|
53
|
+
const ActivityIcon = forwardRef(function ActivityIcon(props, ref) {
|
|
54
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
55
|
+
id: "activity-icon",
|
|
56
|
+
ref,
|
|
57
|
+
icon: element
|
|
58
|
+
}));
|
|
59
|
+
});
|
|
60
|
+
ActivityIcon.displayName = "ActivityIcon";
|
|
61
|
+
//#endregion
|
|
62
|
+
export { ActivityIcon, ActivityIcon as default };
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/callout-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": "M3.2 3.9H12.8C13.6 3.9 14.2 4.5 14.2 5.3V10.1C14.2 10.9 13.6 11.5 12.8 11.5H9.2L6.4 13.7V11.5H3.2C2.4 11.5 1.8 10.9 1.8 10.1V5.3C1.8 4.5 2.4 3.9 3.2 3.9Z",
|
|
19
|
+
"strokeLinejoin": "round",
|
|
20
|
+
"strokeWidth": 1.3
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"tag": "path",
|
|
25
|
+
"attrs": {
|
|
26
|
+
"stroke": "currentColor",
|
|
27
|
+
"d": "M4.8 5.7V9.7",
|
|
28
|
+
"strokeLinecap": "round",
|
|
29
|
+
"strokeWidth": 1.3
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"tag": "path",
|
|
34
|
+
"attrs": {
|
|
35
|
+
"stroke": "currentColor",
|
|
36
|
+
"d": "M8.4 5.7V8",
|
|
37
|
+
"strokeLinecap": "round",
|
|
38
|
+
"strokeWidth": 1.3
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"tag": "path",
|
|
43
|
+
"attrs": {
|
|
44
|
+
"stroke": "currentColor",
|
|
45
|
+
"d": "M8.4 9.8H8.5",
|
|
46
|
+
"strokeLinecap": "round",
|
|
47
|
+
"strokeWidth": 1.6
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
]
|
|
51
|
+
};
|
|
52
|
+
const CalloutIcon = forwardRef(function CalloutIcon(props, ref) {
|
|
53
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
54
|
+
id: "callout-icon",
|
|
55
|
+
ref,
|
|
56
|
+
icon: element
|
|
57
|
+
}));
|
|
58
|
+
});
|
|
59
|
+
CalloutIcon.displayName = "CalloutIcon";
|
|
60
|
+
//#endregion
|
|
61
|
+
export { CalloutIcon, CalloutIcon as default };
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/code-block-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": "M6.1 2.6H5.5C4.6 2.6 4 3.2 4 4.1V5.8C4 6.5 3.5 7 2.8 7H2.5",
|
|
19
|
+
"strokeLinecap": "round",
|
|
20
|
+
"strokeLinejoin": "round",
|
|
21
|
+
"strokeWidth": 1.3
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"tag": "path",
|
|
26
|
+
"attrs": {
|
|
27
|
+
"stroke": "currentColor",
|
|
28
|
+
"d": "M2.5 9H2.8C3.5 9 4 9.5 4 10.2V11.9C4 12.8 4.6 13.4 5.5 13.4H6.1",
|
|
29
|
+
"strokeLinecap": "round",
|
|
30
|
+
"strokeLinejoin": "round",
|
|
31
|
+
"strokeWidth": 1.3
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"tag": "path",
|
|
36
|
+
"attrs": {
|
|
37
|
+
"stroke": "currentColor",
|
|
38
|
+
"d": "M9.9 2.6H10.5C11.4 2.6 12 3.2 12 4.1V5.8C12 6.5 12.5 7 13.2 7H13.5",
|
|
39
|
+
"strokeLinecap": "round",
|
|
40
|
+
"strokeLinejoin": "round",
|
|
41
|
+
"strokeWidth": 1.3
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"tag": "path",
|
|
46
|
+
"attrs": {
|
|
47
|
+
"stroke": "currentColor",
|
|
48
|
+
"d": "M13.5 9H13.2C12.5 9 12 9.5 12 10.2V11.9C12 12.8 11.4 13.4 10.5 13.4H9.9",
|
|
49
|
+
"strokeLinecap": "round",
|
|
50
|
+
"strokeLinejoin": "round",
|
|
51
|
+
"strokeWidth": 1.3
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
]
|
|
55
|
+
};
|
|
56
|
+
const CodeBlockIcon = forwardRef(function CodeBlockIcon(props, ref) {
|
|
57
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
58
|
+
id: "code-block-icon",
|
|
59
|
+
ref,
|
|
60
|
+
icon: element
|
|
61
|
+
}));
|
|
62
|
+
});
|
|
63
|
+
CodeBlockIcon.displayName = "CodeBlockIcon";
|
|
64
|
+
//#endregion
|
|
65
|
+
export { CodeBlockIcon, CodeBlockIcon as default };
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/foods-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": "M8.4 4.3C9.1 3.3 10.1 2.7 11.3 2.6C11.2 3.8 10.5 4.8 9.4 5.3",
|
|
19
|
+
"strokeLinecap": "round",
|
|
20
|
+
"strokeLinejoin": "round",
|
|
21
|
+
"strokeWidth": 1.3
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"tag": "path",
|
|
26
|
+
"attrs": {
|
|
27
|
+
"stroke": "currentColor",
|
|
28
|
+
"d": "M7.8 4.7C6.8 3.9 5.1 4.1 4.1 5.2C2.8 6.6 2.8 9 3.6 10.9C4.3 12.6 5.4 13.7 6.4 13.7C7.1 13.7 7.4 13.3 8 13.3C8.6 13.3 8.9 13.7 9.6 13.7C10.7 13.7 11.8 12.5 12.4 10.9C13.2 8.8 12.8 6.5 11.7 5.3C10.6 4.1 8.9 3.9 7.8 4.7Z",
|
|
29
|
+
"strokeLinejoin": "round",
|
|
30
|
+
"strokeWidth": 1.3
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"tag": "path",
|
|
35
|
+
"attrs": {
|
|
36
|
+
"stroke": "currentColor",
|
|
37
|
+
"d": "M7.8 4.7C7.8 3.7 7.5 3 6.8 2.4",
|
|
38
|
+
"strokeLinecap": "round",
|
|
39
|
+
"strokeWidth": 1.3
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
]
|
|
43
|
+
};
|
|
44
|
+
const FoodsIcon = forwardRef(function FoodsIcon(props, ref) {
|
|
45
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
46
|
+
id: "foods-icon",
|
|
47
|
+
ref,
|
|
48
|
+
icon: element
|
|
49
|
+
}));
|
|
50
|
+
});
|
|
51
|
+
FoodsIcon.displayName = "FoodsIcon";
|
|
52
|
+
//#endregion
|
|
53
|
+
export { FoodsIcon, FoodsIcon as default };
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { AIcon } from './a-icon.js';
|
|
2
|
+
export { ActivityIcon } from './activity-icon.js';
|
|
2
3
|
export { AddDigitsIcon } from './add-digits-icon.js';
|
|
3
4
|
export { AddImageIcon } from './add-image-icon.js';
|
|
4
5
|
export { AddNoteIcon } from './add-note-icon.js';
|
|
@@ -26,6 +27,7 @@ export { BoxplotIcon } from './boxplot-icon.js';
|
|
|
26
27
|
export { BrushIcon } from './brush-icon.js';
|
|
27
28
|
export { BubbleIcon } from './bubble-icon.js';
|
|
28
29
|
export { CalendarIcon } from './calendar-icon.js';
|
|
30
|
+
export { CalloutIcon } from './callout-icon.js';
|
|
29
31
|
export { CancelFreezeIcon } from './cancel-freeze-icon.js';
|
|
30
32
|
export { CancelMergeIcon } from './cancel-merge-icon.js';
|
|
31
33
|
export { CatalogueIcon } from './catalogue-icon.js';
|
|
@@ -35,6 +37,7 @@ export { ClockIcon } from './clock-icon.js';
|
|
|
35
37
|
export { CloseIcon } from './close-icon.js';
|
|
36
38
|
export { CloudOutlineIcon } from './cloud-outline-icon.js';
|
|
37
39
|
export { CntIcon } from './cnt-icon.js';
|
|
40
|
+
export { CodeBlockIcon } from './code-block-icon.js';
|
|
38
41
|
export { CodeIcon } from './code-icon.js';
|
|
39
42
|
export { ColumnChartIcon } from './column-chart-icon.js';
|
|
40
43
|
export { ColumnIcon } from './column-icon.js';
|
|
@@ -77,6 +80,7 @@ export { FlagIcon } from './flag-icon.js';
|
|
|
77
80
|
export { FolderIcon } from './folder-icon.js';
|
|
78
81
|
export { FontSizeIncreaseIcon } from './font-size-increase-icon.js';
|
|
79
82
|
export { FontSizeReduceIcon } from './font-size-reduce-icon.js';
|
|
83
|
+
export { FoodsIcon } from './foods-icon.js';
|
|
80
84
|
export { FreezeColumnIcon } from './freeze-column-icon.js';
|
|
81
85
|
export { FreezeRowIcon } from './freeze-row-icon.js';
|
|
82
86
|
export { FreezeToSelectedIcon } from './freeze-to-selected-icon.js';
|
|
@@ -135,19 +139,23 @@ export { MoreUpIcon } from './more-up-icon.js';
|
|
|
135
139
|
export { MoveDownIcon } from './move-down-icon.js';
|
|
136
140
|
export { MoveUpIcon } from './move-up-icon.js';
|
|
137
141
|
export { MovingAverageIcon } from './moving-average-icon.js';
|
|
142
|
+
export { NatureIcon } from './nature-icon.js';
|
|
138
143
|
export { NoBorderIcon } from './no-border-icon.js';
|
|
139
144
|
export { NoRotationIcon } from './no-rotation-icon.js';
|
|
140
145
|
export { NumberIcon } from './number-icon.js';
|
|
146
|
+
export { ObjectsIcon } from './objects-icon.js';
|
|
141
147
|
export { OffLineIcon } from './off-line-icon.js';
|
|
142
148
|
export { OnLineIcon } from './on-line-icon.js';
|
|
143
149
|
export { OneToOneIcon } from './one-to-one-icon.js';
|
|
144
150
|
export { OrderIcon } from './order-icon.js';
|
|
145
151
|
export { OverflowIcon } from './overflow-icon.js';
|
|
146
152
|
export { PenIcon } from './pen-icon.js';
|
|
153
|
+
export { PeopleIcon } from './people-icon.js';
|
|
147
154
|
export { PercentIcon } from './percent-icon.js';
|
|
148
155
|
export { PieChartIcon } from './pie-chart-icon.js';
|
|
149
156
|
export { PipingIcon } from './piping-icon.js';
|
|
150
157
|
export { PivotTableIcon } from './pivot-table-icon.js';
|
|
158
|
+
export { PlacesIcon } from './places-icon.js';
|
|
151
159
|
export { PolynomialIcon } from './polynomial-icon.js';
|
|
152
160
|
export { PowerLineIcon } from './power-line-icon.js';
|
|
153
161
|
export { PrintIcon } from './print-icon.js';
|
|
@@ -157,7 +165,10 @@ export { Progress25Icon } from './progress-25-icon.js';
|
|
|
157
165
|
export { Progress50Icon } from './progress-50-icon.js';
|
|
158
166
|
export { Progress75Icon } from './progress-75-icon.js';
|
|
159
167
|
export { ProtectIcon } from './protect-icon.js';
|
|
168
|
+
export { QuoteIcon } from './quote-icon.js';
|
|
160
169
|
export { RadarChartIcon } from './radar-chart-icon.js';
|
|
170
|
+
export { RandomIcon } from './random-icon.js';
|
|
171
|
+
export { RecentIcon } from './recent-icon.js';
|
|
161
172
|
export { RecordIcon } from './record-icon.js';
|
|
162
173
|
export { RedoIcon } from './redo-icon.js';
|
|
163
174
|
export { ReduceDigitsIcon } from './reduce-digits-icon.js';
|
|
@@ -379,6 +390,7 @@ export { SubscriptIcon } from './subscript-icon.js';
|
|
|
379
390
|
export { SuccessIcon } from './success-icon.js';
|
|
380
391
|
export { SumIcon } from './sum-icon.js';
|
|
381
392
|
export { SuperscriptIcon } from './superscript-icon.js';
|
|
393
|
+
export { SymbolsIcon } from './symbols-icon.js';
|
|
382
394
|
export { TableIcon } from './table-icon.js';
|
|
383
395
|
export { TextIcon } from './text-icon.js';
|
|
384
396
|
export { TextTypeIcon } from './text-type-icon.js';
|