@univerjs/icons 1.31.0 → 1.33.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.
@@ -0,0 +1,30 @@
1
+ import { createElement, forwardRef } from "react";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/zloty-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": "M10.092 14.8H1.3716V13.4548L7.6428 6.2652Q6.5389 6.3302 5.7596 6.3302H1.7334V4.9572H9.7858V6.0426L4.4516 12.2767Q4.2939 12.4715 3.6352 13.1858Q3.4775 13.3342 3.4218 13.4363Q4.3774 13.3528 5.5277 13.3528H10.092V14.8ZM14.6284 6.9888L13.376 8.0557V14.8H11.7247V9.4843L10.5094 10.4862V9.0205L11.7247 8.0186V1.2H13.376V6.5899L14.6284 5.5323V6.9888Z"
18
+ }
19
+ }]
20
+ };
21
+ const ZlotyIcon = forwardRef(function ZlotyIcon(props, ref) {
22
+ return createElement(IconBase, Object.assign({}, props, {
23
+ id: "zloty-icon",
24
+ ref,
25
+ icon: element
26
+ }));
27
+ });
28
+ ZlotyIcon.displayName = "ZlotyIcon";
29
+ //#endregion
30
+ export { ZlotyIcon, ZlotyIcon as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs/icons",
3
- "version": "1.31.0",
3
+ "version": "1.33.0",
4
4
  "description": "React icons for Univer.",
5
5
  "author": "DreamNum Co., Ltd. <developer@univer.ai>",
6
6
  "license": "MIT",
@@ -46,7 +46,7 @@
46
46
  "svg-parser": "^2.0.4",
47
47
  "svgo": "^4.0.1",
48
48
  "typescript": "7.0.1-rc",
49
- "@univerjs/icons-svg": "1.31.0"
49
+ "@univerjs/icons-svg": "1.33.0"
50
50
  },
51
51
  "scripts": {
52
52
  "build": "node --experimental-strip-types ./scripts/build/index.mts && tsc"