@univerjs/icons-vue 1.18.0 → 1.20.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,41 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/stroke-size5-icon.ts
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
+ "tag": "path",
15
+ "attrs": {
16
+ "fill": "currentColor",
17
+ "fill-rule": "evenodd",
18
+ "d": "M9.5567 0.207516C12.4416 1.20683 13.2813 4.65797 11.8145 7.2894C10.5169 9.61718 10.1693 10.0953 10.506 10.3199C11.0302 10.6695 10.9859 8.38336 14.3047 8.9075C19.6963 9.75899 18.0789 13.8433 19.6963 16.4862C21.8633 20.0273 23.739 19.5258 23.739 22.6172C23.739 26.6634 18.1634 25.512 14.6706 22.2692C11.1778 19.0264 12.9351 17.5548 12.0113 17.1972C11.0874 16.8397 11.5238 20.5528 6.26945 20.5528C-0.017271 20.5528 -0.703395 12.8463 0.477071 8.05424C1.65754 3.26218 6.06666 -1.00142 9.5567 0.207516Z",
19
+ "clip-rule": "evenodd",
20
+ "transform": "matrix(.81 0 0 .81 .3 -.7)"
21
+ }
22
+ }]
23
+ };
24
+ const StrokeSize5Icon = defineComponent({
25
+ name: "StrokeSize5Icon",
26
+ inheritAttrs: false,
27
+ props: { extend: {
28
+ type: Object,
29
+ default: void 0
30
+ } },
31
+ setup(props, { attrs }) {
32
+ return () => h(IconBase, {
33
+ ...attrs,
34
+ extend: props.extend,
35
+ id: "stroke-size5-icon",
36
+ icon: element
37
+ });
38
+ }
39
+ });
40
+ //#endregion
41
+ export { StrokeSize5Icon, StrokeSize5Icon as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs/icons-vue",
3
- "version": "1.18.0",
3
+ "version": "1.20.0",
4
4
  "description": "Vue icons for Univer.",
5
5
  "author": "DreamNum Co., Ltd. <developer@univer.ai>",
6
6
  "license": "MIT",
@@ -47,7 +47,7 @@
47
47
  "svgo": "^4.0.1",
48
48
  "typescript": "7.0.1-rc",
49
49
  "vue": "^3.5.39",
50
- "@univerjs/icons-svg": "1.18.0"
50
+ "@univerjs/icons-svg": "1.20.0"
51
51
  },
52
52
  "scripts": {
53
53
  "build": "node --experimental-strip-types ./scripts/build/index.mts && tsc"