@univerjs/icons 1.6.0 → 1.7.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/foods-icon.cjs +58 -0
- package/dist/cjs/index.cjs +63 -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/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/foods-icon.d.ts +3 -0
- package/dist/esm/foods-icon.js +53 -0
- package/dist/esm/index.d.ts +9 -0
- package/dist/esm/index.js +10 -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/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,61 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/symbols-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.4 2.8L5.5 13.2",
|
|
19
|
+
"strokeLinecap": "round",
|
|
20
|
+
"strokeWidth": 1.3
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"tag": "path",
|
|
25
|
+
"attrs": {
|
|
26
|
+
"stroke": "currentColor",
|
|
27
|
+
"d": "M10.5 2.8L9.6 13.2",
|
|
28
|
+
"strokeLinecap": "round",
|
|
29
|
+
"strokeWidth": 1.3
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"tag": "path",
|
|
34
|
+
"attrs": {
|
|
35
|
+
"stroke": "currentColor",
|
|
36
|
+
"d": "M3.1 6H13.1",
|
|
37
|
+
"strokeLinecap": "round",
|
|
38
|
+
"strokeWidth": 1.3
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"tag": "path",
|
|
43
|
+
"attrs": {
|
|
44
|
+
"stroke": "currentColor",
|
|
45
|
+
"d": "M2.9 10H12.9",
|
|
46
|
+
"strokeLinecap": "round",
|
|
47
|
+
"strokeWidth": 1.3
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
]
|
|
51
|
+
};
|
|
52
|
+
const SymbolsIcon = forwardRef(function SymbolsIcon(props, ref) {
|
|
53
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
54
|
+
id: "symbols-icon",
|
|
55
|
+
ref,
|
|
56
|
+
icon: element
|
|
57
|
+
}));
|
|
58
|
+
});
|
|
59
|
+
SymbolsIcon.displayName = "SymbolsIcon";
|
|
60
|
+
//#endregion
|
|
61
|
+
export { SymbolsIcon, SymbolsIcon as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "React icons for Univer.",
|
|
5
5
|
"author": "DreamNum Co., Ltd. <developer@univer.ai>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"svg-parser": "^2.0.4",
|
|
46
46
|
"svgo": "^4.0.1",
|
|
47
47
|
"typescript": "^6.0.3",
|
|
48
|
-
"@univerjs/icons-svg": "1.
|
|
48
|
+
"@univerjs/icons-svg": "1.7.0"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
51
|
"build": "node --experimental-strip-types ./scripts/build/index.ts && tsc"
|