@univerjs/icons-vue 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 +75 -0
- package/dist/cjs/callout-icon.cjs +74 -0
- package/dist/cjs/code-block-icon.cjs +78 -0
- package/dist/cjs/foods-icon.cjs +66 -0
- package/dist/cjs/index.cjs +84 -0
- package/dist/cjs/nature-icon.cjs +53 -0
- package/dist/cjs/objects-icon.cjs +65 -0
- package/dist/cjs/people-icon.cjs +75 -0
- package/dist/cjs/places-icon.cjs +54 -0
- package/dist/cjs/quote-icon.cjs +49 -0
- package/dist/cjs/random-icon.cjs +78 -0
- package/dist/cjs/recent-icon.cjs +55 -0
- package/dist/cjs/symbols-icon.cjs +74 -0
- package/dist/esm/activity-icon.d.ts +18 -0
- package/dist/esm/activity-icon.js +70 -0
- package/dist/esm/callout-icon.d.ts +18 -0
- package/dist/esm/callout-icon.js +69 -0
- package/dist/esm/code-block-icon.d.ts +18 -0
- package/dist/esm/code-block-icon.js +73 -0
- package/dist/esm/foods-icon.d.ts +18 -0
- package/dist/esm/foods-icon.js +61 -0
- package/dist/esm/index.d.ts +12 -0
- package/dist/esm/index.js +13 -1
- package/dist/esm/nature-icon.d.ts +18 -0
- package/dist/esm/nature-icon.js +48 -0
- package/dist/esm/objects-icon.d.ts +18 -0
- package/dist/esm/objects-icon.js +60 -0
- package/dist/esm/people-icon.d.ts +18 -0
- package/dist/esm/people-icon.js +70 -0
- package/dist/esm/places-icon.d.ts +18 -0
- package/dist/esm/places-icon.js +49 -0
- package/dist/esm/quote-icon.d.ts +18 -0
- package/dist/esm/quote-icon.js +44 -0
- package/dist/esm/random-icon.d.ts +18 -0
- package/dist/esm/random-icon.js +73 -0
- package/dist/esm/recent-icon.d.ts +18 -0
- package/dist/esm/recent-icon.js +50 -0
- package/dist/esm/symbols-icon.d.ts +18 -0
- package/dist/esm/symbols-icon.js +69 -0
- package/package.json +2 -2
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
let vue = require("vue");
|
|
6
|
+
let ts_base_js = require("./base.cjs");
|
|
7
|
+
//#region ts/people-icon.ts
|
|
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": "circle",
|
|
20
|
+
"attrs": {
|
|
21
|
+
"cx": 8,
|
|
22
|
+
"cy": 8,
|
|
23
|
+
"r": 5.7,
|
|
24
|
+
"stroke": "currentColor",
|
|
25
|
+
"stroke-width": 1.3
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"tag": "path",
|
|
30
|
+
"attrs": {
|
|
31
|
+
"stroke": "currentColor",
|
|
32
|
+
"stroke-linecap": "round",
|
|
33
|
+
"stroke-width": 1.6,
|
|
34
|
+
"d": "M5.4 6.8H5.5"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"tag": "path",
|
|
39
|
+
"attrs": {
|
|
40
|
+
"stroke": "currentColor",
|
|
41
|
+
"stroke-linecap": "round",
|
|
42
|
+
"stroke-width": 1.6,
|
|
43
|
+
"d": "M10.5 6.8H10.6"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"tag": "path",
|
|
48
|
+
"attrs": {
|
|
49
|
+
"stroke": "currentColor",
|
|
50
|
+
"stroke-linecap": "round",
|
|
51
|
+
"stroke-width": 1.3,
|
|
52
|
+
"d": "M5.6 9.3C6.2 10.4 7 10.9 8 10.9C9 10.9 9.8 10.4 10.4 9.3"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
]
|
|
56
|
+
};
|
|
57
|
+
const PeopleIcon = (0, vue.defineComponent)({
|
|
58
|
+
name: "PeopleIcon",
|
|
59
|
+
inheritAttrs: false,
|
|
60
|
+
props: { extend: {
|
|
61
|
+
type: Object,
|
|
62
|
+
default: void 0
|
|
63
|
+
} },
|
|
64
|
+
setup(props, { attrs }) {
|
|
65
|
+
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
66
|
+
...attrs,
|
|
67
|
+
extend: props.extend,
|
|
68
|
+
id: "people-icon",
|
|
69
|
+
icon: element
|
|
70
|
+
});
|
|
71
|
+
}
|
|
72
|
+
});
|
|
73
|
+
//#endregion
|
|
74
|
+
exports.PeopleIcon = PeopleIcon;
|
|
75
|
+
exports.default = PeopleIcon;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
let vue = require("vue");
|
|
6
|
+
let ts_base_js = require("./base.cjs");
|
|
7
|
+
//#region ts/places-icon.ts
|
|
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
|
+
"stroke": "currentColor",
|
|
21
|
+
"stroke-linejoin": "round",
|
|
22
|
+
"stroke-width": 1.3,
|
|
23
|
+
"d": "M12.6 6.7C12.6 10.1 8 14.1 8 14.1C8 14.1 3.4 10.1 3.4 6.7C3.4 4.2 5.5 2.1 8 2.1C10.5 2.1 12.6 4.2 12.6 6.7Z"
|
|
24
|
+
}
|
|
25
|
+
}, {
|
|
26
|
+
"tag": "circle",
|
|
27
|
+
"attrs": {
|
|
28
|
+
"cx": 8,
|
|
29
|
+
"cy": 6.7,
|
|
30
|
+
"r": 1.6,
|
|
31
|
+
"stroke": "currentColor",
|
|
32
|
+
"stroke-width": 1.3
|
|
33
|
+
}
|
|
34
|
+
}]
|
|
35
|
+
};
|
|
36
|
+
const PlacesIcon = (0, vue.defineComponent)({
|
|
37
|
+
name: "PlacesIcon",
|
|
38
|
+
inheritAttrs: false,
|
|
39
|
+
props: { extend: {
|
|
40
|
+
type: Object,
|
|
41
|
+
default: void 0
|
|
42
|
+
} },
|
|
43
|
+
setup(props, { attrs }) {
|
|
44
|
+
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
45
|
+
...attrs,
|
|
46
|
+
extend: props.extend,
|
|
47
|
+
id: "places-icon",
|
|
48
|
+
icon: element
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
});
|
|
52
|
+
//#endregion
|
|
53
|
+
exports.PlacesIcon = PlacesIcon;
|
|
54
|
+
exports.default = PlacesIcon;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
let vue = require("vue");
|
|
6
|
+
let ts_base_js = require("./base.cjs");
|
|
7
|
+
//#region ts/quote-icon.ts
|
|
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, vue.defineComponent)({
|
|
32
|
+
name: "QuoteIcon",
|
|
33
|
+
inheritAttrs: false,
|
|
34
|
+
props: { extend: {
|
|
35
|
+
type: Object,
|
|
36
|
+
default: void 0
|
|
37
|
+
} },
|
|
38
|
+
setup(props, { attrs }) {
|
|
39
|
+
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
40
|
+
...attrs,
|
|
41
|
+
extend: props.extend,
|
|
42
|
+
id: "quote-icon",
|
|
43
|
+
icon: element
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
});
|
|
47
|
+
//#endregion
|
|
48
|
+
exports.QuoteIcon = QuoteIcon;
|
|
49
|
+
exports.default = QuoteIcon;
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
let vue = require("vue");
|
|
6
|
+
let ts_base_js = require("./base.cjs");
|
|
7
|
+
//#region ts/random-icon.ts
|
|
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
|
+
"stroke-linecap": "round",
|
|
23
|
+
"stroke-linejoin": "round",
|
|
24
|
+
"stroke-width": 1.3,
|
|
25
|
+
"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"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"tag": "path",
|
|
30
|
+
"attrs": {
|
|
31
|
+
"stroke": "currentColor",
|
|
32
|
+
"stroke-linecap": "round",
|
|
33
|
+
"stroke-linejoin": "round",
|
|
34
|
+
"stroke-width": 1.3,
|
|
35
|
+
"d": "M11.5 8.9L13.5 10.9L11.5 12.9"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"tag": "path",
|
|
40
|
+
"attrs": {
|
|
41
|
+
"stroke": "currentColor",
|
|
42
|
+
"stroke-linecap": "round",
|
|
43
|
+
"stroke-linejoin": "round",
|
|
44
|
+
"stroke-width": 1.3,
|
|
45
|
+
"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"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"tag": "path",
|
|
50
|
+
"attrs": {
|
|
51
|
+
"stroke": "currentColor",
|
|
52
|
+
"stroke-linecap": "round",
|
|
53
|
+
"stroke-linejoin": "round",
|
|
54
|
+
"stroke-width": 1.3,
|
|
55
|
+
"d": "M11.5 2.5L13.5 4.5L11.5 6.5"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
]
|
|
59
|
+
};
|
|
60
|
+
const RandomIcon = (0, vue.defineComponent)({
|
|
61
|
+
name: "RandomIcon",
|
|
62
|
+
inheritAttrs: false,
|
|
63
|
+
props: { extend: {
|
|
64
|
+
type: Object,
|
|
65
|
+
default: void 0
|
|
66
|
+
} },
|
|
67
|
+
setup(props, { attrs }) {
|
|
68
|
+
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
69
|
+
...attrs,
|
|
70
|
+
extend: props.extend,
|
|
71
|
+
id: "random-icon",
|
|
72
|
+
icon: element
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
});
|
|
76
|
+
//#endregion
|
|
77
|
+
exports.RandomIcon = RandomIcon;
|
|
78
|
+
exports.default = RandomIcon;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
let vue = require("vue");
|
|
6
|
+
let ts_base_js = require("./base.cjs");
|
|
7
|
+
//#region ts/recent-icon.ts
|
|
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
|
+
"stroke-width": 1.3
|
|
25
|
+
}
|
|
26
|
+
}, {
|
|
27
|
+
"tag": "path",
|
|
28
|
+
"attrs": {
|
|
29
|
+
"stroke": "currentColor",
|
|
30
|
+
"stroke-linecap": "round",
|
|
31
|
+
"stroke-linejoin": "round",
|
|
32
|
+
"stroke-width": 1.3,
|
|
33
|
+
"d": "M8 4.8V8.2L10.4 9.6"
|
|
34
|
+
}
|
|
35
|
+
}]
|
|
36
|
+
};
|
|
37
|
+
const RecentIcon = (0, vue.defineComponent)({
|
|
38
|
+
name: "RecentIcon",
|
|
39
|
+
inheritAttrs: false,
|
|
40
|
+
props: { extend: {
|
|
41
|
+
type: Object,
|
|
42
|
+
default: void 0
|
|
43
|
+
} },
|
|
44
|
+
setup(props, { attrs }) {
|
|
45
|
+
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
46
|
+
...attrs,
|
|
47
|
+
extend: props.extend,
|
|
48
|
+
id: "recent-icon",
|
|
49
|
+
icon: element
|
|
50
|
+
});
|
|
51
|
+
}
|
|
52
|
+
});
|
|
53
|
+
//#endregion
|
|
54
|
+
exports.RecentIcon = RecentIcon;
|
|
55
|
+
exports.default = RecentIcon;
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
let vue = require("vue");
|
|
6
|
+
let ts_base_js = require("./base.cjs");
|
|
7
|
+
//#region ts/symbols-icon.ts
|
|
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
|
+
"stroke-linecap": "round",
|
|
23
|
+
"stroke-width": 1.3,
|
|
24
|
+
"d": "M6.4 2.8L5.5 13.2"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"tag": "path",
|
|
29
|
+
"attrs": {
|
|
30
|
+
"stroke": "currentColor",
|
|
31
|
+
"stroke-linecap": "round",
|
|
32
|
+
"stroke-width": 1.3,
|
|
33
|
+
"d": "M10.5 2.8L9.6 13.2"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"tag": "path",
|
|
38
|
+
"attrs": {
|
|
39
|
+
"stroke": "currentColor",
|
|
40
|
+
"stroke-linecap": "round",
|
|
41
|
+
"stroke-width": 1.3,
|
|
42
|
+
"d": "M3.1 6H13.1"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"tag": "path",
|
|
47
|
+
"attrs": {
|
|
48
|
+
"stroke": "currentColor",
|
|
49
|
+
"stroke-linecap": "round",
|
|
50
|
+
"stroke-width": 1.3,
|
|
51
|
+
"d": "M2.9 10H12.9"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
]
|
|
55
|
+
};
|
|
56
|
+
const SymbolsIcon = (0, vue.defineComponent)({
|
|
57
|
+
name: "SymbolsIcon",
|
|
58
|
+
inheritAttrs: false,
|
|
59
|
+
props: { extend: {
|
|
60
|
+
type: Object,
|
|
61
|
+
default: void 0
|
|
62
|
+
} },
|
|
63
|
+
setup(props, { attrs }) {
|
|
64
|
+
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
65
|
+
...attrs,
|
|
66
|
+
extend: props.extend,
|
|
67
|
+
id: "symbols-icon",
|
|
68
|
+
icon: element
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
});
|
|
72
|
+
//#endregion
|
|
73
|
+
exports.SymbolsIcon = SymbolsIcon;
|
|
74
|
+
exports.default = SymbolsIcon;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
import type { IExtendProps } from './base.js';
|
|
3
|
+
export declare const ActivityIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
extend: {
|
|
5
|
+
type: PropType<IExtendProps>;
|
|
6
|
+
default: undefined;
|
|
7
|
+
};
|
|
8
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
9
|
+
[key: string]: any;
|
|
10
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
+
extend: {
|
|
12
|
+
type: PropType<IExtendProps>;
|
|
13
|
+
default: undefined;
|
|
14
|
+
};
|
|
15
|
+
}>> & Readonly<{}>, {
|
|
16
|
+
extend: IExtendProps;
|
|
17
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
18
|
+
export default ActivityIcon;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/activity-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 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
|
+
"stroke-width": 1.3
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"tag": "path",
|
|
26
|
+
"attrs": {
|
|
27
|
+
"stroke": "currentColor",
|
|
28
|
+
"stroke-linecap": "round",
|
|
29
|
+
"stroke-width": 1.3,
|
|
30
|
+
"d": "M2.8 6.2C5.2 6.7 8.5 5.4 10.8 2.9"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"tag": "path",
|
|
35
|
+
"attrs": {
|
|
36
|
+
"stroke": "currentColor",
|
|
37
|
+
"stroke-linecap": "round",
|
|
38
|
+
"stroke-width": 1.3,
|
|
39
|
+
"d": "M5.1 12.6C5.5 10.4 8.3 7.8 13.2 7.7"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"tag": "path",
|
|
44
|
+
"attrs": {
|
|
45
|
+
"stroke": "currentColor",
|
|
46
|
+
"stroke-linecap": "round",
|
|
47
|
+
"stroke-width": 1.3,
|
|
48
|
+
"d": "M6.2 2.8C8.6 5.4 9.8 8.9 9.5 13.3"
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
]
|
|
52
|
+
};
|
|
53
|
+
const ActivityIcon = defineComponent({
|
|
54
|
+
name: "ActivityIcon",
|
|
55
|
+
inheritAttrs: false,
|
|
56
|
+
props: { extend: {
|
|
57
|
+
type: Object,
|
|
58
|
+
default: void 0
|
|
59
|
+
} },
|
|
60
|
+
setup(props, { attrs }) {
|
|
61
|
+
return () => h(IconBase, {
|
|
62
|
+
...attrs,
|
|
63
|
+
extend: props.extend,
|
|
64
|
+
id: "activity-icon",
|
|
65
|
+
icon: element
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
});
|
|
69
|
+
//#endregion
|
|
70
|
+
export { ActivityIcon, ActivityIcon as default };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
import type { IExtendProps } from './base.js';
|
|
3
|
+
export declare const CalloutIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
extend: {
|
|
5
|
+
type: PropType<IExtendProps>;
|
|
6
|
+
default: undefined;
|
|
7
|
+
};
|
|
8
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
9
|
+
[key: string]: any;
|
|
10
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
+
extend: {
|
|
12
|
+
type: PropType<IExtendProps>;
|
|
13
|
+
default: undefined;
|
|
14
|
+
};
|
|
15
|
+
}>> & Readonly<{}>, {
|
|
16
|
+
extend: IExtendProps;
|
|
17
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
18
|
+
export default CalloutIcon;
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/callout-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 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [
|
|
14
|
+
{
|
|
15
|
+
"tag": "path",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"stroke": "currentColor",
|
|
18
|
+
"stroke-linejoin": "round",
|
|
19
|
+
"stroke-width": 1.3,
|
|
20
|
+
"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"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"tag": "path",
|
|
25
|
+
"attrs": {
|
|
26
|
+
"stroke": "currentColor",
|
|
27
|
+
"stroke-linecap": "round",
|
|
28
|
+
"stroke-width": 1.3,
|
|
29
|
+
"d": "M4.8 5.7V9.7"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"tag": "path",
|
|
34
|
+
"attrs": {
|
|
35
|
+
"stroke": "currentColor",
|
|
36
|
+
"stroke-linecap": "round",
|
|
37
|
+
"stroke-width": 1.3,
|
|
38
|
+
"d": "M8.4 5.7V8"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"tag": "path",
|
|
43
|
+
"attrs": {
|
|
44
|
+
"stroke": "currentColor",
|
|
45
|
+
"stroke-linecap": "round",
|
|
46
|
+
"stroke-width": 1.6,
|
|
47
|
+
"d": "M8.4 9.8H8.5"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
]
|
|
51
|
+
};
|
|
52
|
+
const CalloutIcon = defineComponent({
|
|
53
|
+
name: "CalloutIcon",
|
|
54
|
+
inheritAttrs: false,
|
|
55
|
+
props: { extend: {
|
|
56
|
+
type: Object,
|
|
57
|
+
default: void 0
|
|
58
|
+
} },
|
|
59
|
+
setup(props, { attrs }) {
|
|
60
|
+
return () => h(IconBase, {
|
|
61
|
+
...attrs,
|
|
62
|
+
extend: props.extend,
|
|
63
|
+
id: "callout-icon",
|
|
64
|
+
icon: element
|
|
65
|
+
});
|
|
66
|
+
}
|
|
67
|
+
});
|
|
68
|
+
//#endregion
|
|
69
|
+
export { CalloutIcon, CalloutIcon as default };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
import type { IExtendProps } from './base.js';
|
|
3
|
+
export declare const CodeBlockIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
extend: {
|
|
5
|
+
type: PropType<IExtendProps>;
|
|
6
|
+
default: undefined;
|
|
7
|
+
};
|
|
8
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
9
|
+
[key: string]: any;
|
|
10
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
+
extend: {
|
|
12
|
+
type: PropType<IExtendProps>;
|
|
13
|
+
default: undefined;
|
|
14
|
+
};
|
|
15
|
+
}>> & Readonly<{}>, {
|
|
16
|
+
extend: IExtendProps;
|
|
17
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
18
|
+
export default CodeBlockIcon;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/code-block-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 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [
|
|
14
|
+
{
|
|
15
|
+
"tag": "path",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"stroke": "currentColor",
|
|
18
|
+
"stroke-linecap": "round",
|
|
19
|
+
"stroke-linejoin": "round",
|
|
20
|
+
"stroke-width": 1.3,
|
|
21
|
+
"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"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"tag": "path",
|
|
26
|
+
"attrs": {
|
|
27
|
+
"stroke": "currentColor",
|
|
28
|
+
"stroke-linecap": "round",
|
|
29
|
+
"stroke-linejoin": "round",
|
|
30
|
+
"stroke-width": 1.3,
|
|
31
|
+
"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"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"tag": "path",
|
|
36
|
+
"attrs": {
|
|
37
|
+
"stroke": "currentColor",
|
|
38
|
+
"stroke-linecap": "round",
|
|
39
|
+
"stroke-linejoin": "round",
|
|
40
|
+
"stroke-width": 1.3,
|
|
41
|
+
"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"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"tag": "path",
|
|
46
|
+
"attrs": {
|
|
47
|
+
"stroke": "currentColor",
|
|
48
|
+
"stroke-linecap": "round",
|
|
49
|
+
"stroke-linejoin": "round",
|
|
50
|
+
"stroke-width": 1.3,
|
|
51
|
+
"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"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
]
|
|
55
|
+
};
|
|
56
|
+
const CodeBlockIcon = defineComponent({
|
|
57
|
+
name: "CodeBlockIcon",
|
|
58
|
+
inheritAttrs: false,
|
|
59
|
+
props: { extend: {
|
|
60
|
+
type: Object,
|
|
61
|
+
default: void 0
|
|
62
|
+
} },
|
|
63
|
+
setup(props, { attrs }) {
|
|
64
|
+
return () => h(IconBase, {
|
|
65
|
+
...attrs,
|
|
66
|
+
extend: props.extend,
|
|
67
|
+
id: "code-block-icon",
|
|
68
|
+
icon: element
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
});
|
|
72
|
+
//#endregion
|
|
73
|
+
export { CodeBlockIcon, CodeBlockIcon as default };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
import type { IExtendProps } from './base.js';
|
|
3
|
+
export declare const FoodsIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
extend: {
|
|
5
|
+
type: PropType<IExtendProps>;
|
|
6
|
+
default: undefined;
|
|
7
|
+
};
|
|
8
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
9
|
+
[key: string]: any;
|
|
10
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
+
extend: {
|
|
12
|
+
type: PropType<IExtendProps>;
|
|
13
|
+
default: undefined;
|
|
14
|
+
};
|
|
15
|
+
}>> & Readonly<{}>, {
|
|
16
|
+
extend: IExtendProps;
|
|
17
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
18
|
+
export default FoodsIcon;
|