ksw-vue-icon 1.0.8 → 2.0.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/README.md +15 -74
- package/package.json +16 -44
- package/packages/index.es.js +177 -0
- package/bundle/index.common.js +0 -7297
package/README.md
CHANGED
|
@@ -1,88 +1,29 @@
|
|
|
1
|
-
#
|
|
1
|
+
# my-vue3-app
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
This template should help get you started developing with Vue 3 in Vite.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Recommended IDE Setup
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
请访问 https://www.npmjs.com/package/ksw-vue-icon
|
|
7
|
+
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
|
|
9
8
|
|
|
10
|
-
|
|
9
|
+
## Customize configuration
|
|
11
10
|
|
|
12
|
-
|
|
11
|
+
See [Vite Configuration Reference](https://vitejs.dev/config/).
|
|
13
12
|
|
|
14
|
-
|
|
15
|
-
- 查看ICON
|
|
16
|
-
|
|
17
|
-
## 入门
|
|
18
|
-
|
|
19
|
-
### 安装 NPM 包
|
|
20
|
-
|
|
21
|
-
```
|
|
22
|
-
npm install ksw-vue-icon --save
|
|
23
|
-
yarn add ksw-vue-icon
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
### 引用
|
|
13
|
+
## Project Setup
|
|
27
14
|
|
|
28
|
-
```
|
|
29
|
-
|
|
15
|
+
```sh
|
|
16
|
+
npm install
|
|
30
17
|
```
|
|
31
18
|
|
|
32
|
-
###
|
|
19
|
+
### Compile and Hot-Reload for Development
|
|
33
20
|
|
|
34
|
-
```
|
|
35
|
-
|
|
21
|
+
```sh
|
|
22
|
+
npm run dev
|
|
36
23
|
```
|
|
37
24
|
|
|
38
|
-
|
|
25
|
+
### Compile and Minify for Production
|
|
39
26
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
# 对于高版本的 node
|
|
43
|
-
yarn config set "strict-ssl" false
|
|
44
|
-
yarn install
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
### 编译和热重新加载用于开发
|
|
48
|
-
```
|
|
49
|
-
export NODE_OPTIONS=--openssl-legacy-provider
|
|
50
|
-
yarn serve
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
### 编译和缩小以供生产
|
|
54
|
-
```
|
|
55
|
-
yarn build
|
|
27
|
+
```sh
|
|
28
|
+
npm run build
|
|
56
29
|
```
|
|
57
|
-
|
|
58
|
-
### Lints and fixes files
|
|
59
|
-
```
|
|
60
|
-
yarn lint
|
|
61
|
-
```
|
|
62
|
-
|
|
63
|
-
## 部署方法
|
|
64
|
-
|
|
65
|
-
1. 将 `svg` 图标放入 `src/svg` 文件夹中
|
|
66
|
-
|
|
67
|
-
2. 更改 `package.json` 中的 `version`
|
|
68
|
-
|
|
69
|
-
3. 推送到 `github` 仓库
|
|
70
|
-
|
|
71
|
-
## 图标规范
|
|
72
|
-
|
|
73
|
-
确保图标基础尺寸是 `24×24`
|
|
74
|
-
|
|
75
|
-
如果是彩色图标可以在命名中包含 `color` 例如 `social-color`
|
|
76
|
-
|
|
77
|
-
图标命名请使用英文(不可以含 `/`)和 `-`,例如 `dewu-logo-original`
|
|
78
|
-
|
|
79
|
-
图标一般有描边 `stroke` 和填充 `fill` 两种样式,一个图标只能采用一种形式,不可以混合,默认 `fill`。想要转为 `fill` 样式,你可以使用 `Outline Stroke(Shift+Command+O)` 将图标转换为填充形状。
|
|
80
|
-
|
|
81
|
-
通过图标命名我们对 `svg` 处理成单色(去掉原始颜色设置 `fill="currentColor"`)、彩色(保留原始颜色)。
|
|
82
|
-
|
|
83
|
-
## 属性
|
|
84
|
-
| 属性名称 | 介绍 | 类型 | 默认值 | 注释 |
|
|
85
|
-
| ---------- | --- | --- | --- | --- |
|
|
86
|
-
| size | 图标的大小,宽高相同 | number | string | '1em' |
|
|
87
|
-
| spin | 给图标加旋转效果 | boolean | false |
|
|
88
|
-
| color | 图标的颜色,默认为当前颜色 | string | string[]| 'currentColor' |
|
package/package.json
CHANGED
|
@@ -1,62 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ksw-vue-icon",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Vue Icon",
|
|
5
|
-
"
|
|
5
|
+
"type": "commonjs",
|
|
6
|
+
"main": "packages/index.es.js",
|
|
6
7
|
"files": [
|
|
7
|
-
"es",
|
|
8
8
|
"styles"
|
|
9
9
|
],
|
|
10
10
|
"repository": "https://github.com/sengoku-f/KSW-vue-icon",
|
|
11
11
|
"scripts": {
|
|
12
12
|
"generate": "sudo rm -rf src/icons && node bin/build.js",
|
|
13
|
-
"
|
|
14
|
-
"build": "
|
|
15
|
-
"build-
|
|
16
|
-
"
|
|
13
|
+
"dev": "vite",
|
|
14
|
+
"build": "vite build",
|
|
15
|
+
"build-packages": "BUILD=packages vite build",
|
|
16
|
+
"preview": "vite preview",
|
|
17
|
+
"lint": "vite lint"
|
|
17
18
|
},
|
|
18
19
|
"dependencies": {
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"vue": "^2.6.11",
|
|
22
|
-
"vue-m-message": "^3.0.0"
|
|
23
|
-
},
|
|
24
|
-
"devDependencies": {
|
|
25
|
-
"@vue/cli-plugin-babel": "~4.4.0",
|
|
26
|
-
"@vue/cli-plugin-eslint": "~4.4.0",
|
|
27
|
-
"@vue/cli-service": "~4.4.0",
|
|
28
|
-
"babel-eslint": "^10.1.0",
|
|
29
|
-
"cheerio": "^1.0.0-rc.3",
|
|
30
|
-
"eslint": "^6.7.2",
|
|
31
|
-
"eslint-plugin-vue": "^6.2.2",
|
|
32
|
-
"figma-js": "^1.10.1",
|
|
33
|
-
"got": "^11.3.0",
|
|
34
|
-
"p-queue": "5.0.0",
|
|
35
|
-
"svgo": "^1.3.0",
|
|
20
|
+
"cheerio": "^1.0.0-rc.12",
|
|
21
|
+
"svgo": "^3.2.0",
|
|
36
22
|
"uppercamelcase": "^3.0.0",
|
|
37
|
-
"vue
|
|
23
|
+
"vue": "^3.4.21",
|
|
24
|
+
"vue-m-message": "^4.0.2"
|
|
38
25
|
},
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"node": true
|
|
43
|
-
},
|
|
44
|
-
"extends": [
|
|
45
|
-
"plugin:vue/essential",
|
|
46
|
-
"eslint:recommended"
|
|
47
|
-
],
|
|
48
|
-
"parserOptions": {
|
|
49
|
-
"parser": "babel-eslint"
|
|
50
|
-
},
|
|
51
|
-
"rules": {}
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@vitejs/plugin-vue": "^5.0.4",
|
|
28
|
+
"vite": "^5.2.8"
|
|
52
29
|
},
|
|
53
|
-
"browserslist": [
|
|
54
|
-
"> 1%",
|
|
55
|
-
"last 2 versions",
|
|
56
|
-
"not dead"
|
|
57
|
-
],
|
|
58
30
|
"config": {
|
|
59
31
|
"framework": "vue",
|
|
60
32
|
"style": "fill"
|
|
61
33
|
}
|
|
62
|
-
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
import { openBlock as s, createElementBlock as i, normalizeClass as c, mergeProps as l, toHandlers as h, createStaticVNode as d } from "vue";
|
|
2
|
+
const Q = (e, o) => {
|
|
3
|
+
const t = e.__vccOpts || e;
|
|
4
|
+
for (const [a, n] of o)
|
|
5
|
+
t[a] = n;
|
|
6
|
+
return t;
|
|
7
|
+
}, _ = {
|
|
8
|
+
name: "IconAdd",
|
|
9
|
+
props: {
|
|
10
|
+
size: {
|
|
11
|
+
type: [Number, String],
|
|
12
|
+
default: "1em"
|
|
13
|
+
},
|
|
14
|
+
color: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: "currentColor"
|
|
17
|
+
},
|
|
18
|
+
spin: {
|
|
19
|
+
type: Boolean,
|
|
20
|
+
default: !1
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
computed: {
|
|
24
|
+
iconClasses() {
|
|
25
|
+
return [
|
|
26
|
+
"ksw-icon",
|
|
27
|
+
"ksw-icon-" + this.$options.name.toLowerCase(),
|
|
28
|
+
{ "ksw-icon-spin": this.spin }
|
|
29
|
+
];
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}, g = ["width", "height", "fill"], p = /* @__PURE__ */ d('<defs><clipPath id="master_svg0_234_18041"><rect x="0" y="0" width="24" height="24" rx="0"></rect></clipPath><clipPath id="master_svg1_3105_3539"><rect x="0" y="0" width="24" height="24" rx="0"></rect></clipPath></defs><g clip-path="url(#master_svg0_234_18041)"><g clip-path="url(#master_svg1_3105_3539)"></g><g transform="matrix(0,1,-1,0,16,-10)"><path d="M29.875,3L14.125,3C13.50368,3,13,3.447715,13,4C13,4.55228,13.50368,5,14.125,5L29.875,5C30.4963,5,31,4.55228,31,4C31,3.447715,30.4963,3,29.875,3Z" fill-rule="evenodd" fill-opacity="1"></path></g><g><path d="M19.875,11L4.125,11C3.50368,11,3,11.447715,3,12C3,12.55228,3.50368,13,4.125,13L19.875,13C20.4963,13,21,12.55228,21,12C21,11.447715,20.4963,11,19.875,11Z" fill-rule="evenodd" fill-opacity="1"></path></g></g>', 2), f = [
|
|
33
|
+
p
|
|
34
|
+
];
|
|
35
|
+
function u(e, o, t, a, n, r) {
|
|
36
|
+
return s(), i("span", {
|
|
37
|
+
class: c(r.iconClasses)
|
|
38
|
+
}, [
|
|
39
|
+
(s(), i("svg", l({
|
|
40
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
41
|
+
width: t.size,
|
|
42
|
+
height: t.size,
|
|
43
|
+
viewBox: "0 0 24 24",
|
|
44
|
+
"aria-hidden": "true"
|
|
45
|
+
}, h(e.$listeners, !0), { fill: t.color }), f, 16, g))
|
|
46
|
+
], 2);
|
|
47
|
+
}
|
|
48
|
+
const N = /* @__PURE__ */ Q(_, [["render", u]]), w = {
|
|
49
|
+
name: "IconArrowBottom",
|
|
50
|
+
props: {
|
|
51
|
+
size: {
|
|
52
|
+
type: [Number, String],
|
|
53
|
+
default: "1em"
|
|
54
|
+
},
|
|
55
|
+
color: {
|
|
56
|
+
type: String,
|
|
57
|
+
default: "currentColor"
|
|
58
|
+
},
|
|
59
|
+
spin: {
|
|
60
|
+
type: Boolean,
|
|
61
|
+
default: !1
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
computed: {
|
|
65
|
+
iconClasses() {
|
|
66
|
+
return [
|
|
67
|
+
"ksw-icon",
|
|
68
|
+
"ksw-icon-" + this.$options.name.toLowerCase(),
|
|
69
|
+
{ "ksw-icon-spin": this.spin }
|
|
70
|
+
];
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}, m = ["width", "height", "fill"], v = /* @__PURE__ */ d('<defs><clipPath id="master_svg0_234_6201"><rect x="0" y="0" width="24" height="24" rx="0"></rect></clipPath><clipPath id="master_svg1_3105_3982"><rect x="0" y="0" width="24" height="24" rx="0"></rect></clipPath></defs><g clip-path="url(#master_svg0_234_6201)"><g clip-path="url(#master_svg1_3105_3982)"></g><g><g><g><path d="M3.498273,8.439443L12,15.99653L20.501,8.440077L20.5017,8.439443Q20.6047,8.347917,20.7335,8.298959Q20.8622,8.25,21,8.25Q21.0739,8.25,21.1463,8.264410999999999Q21.2188,8.278822,21.287,8.30709Q21.3553,8.335359,21.4167,8.376398Q21.4781,8.417437,21.5303,8.46967Q21.5826,8.521903,21.6236,8.583322Q21.6646,8.644742,21.6929,8.712987Q21.7212,8.781233,21.7356,8.853682Q21.75,8.9261315,21.75,9Q21.75,9.160671,21.6842,9.307242Q21.6184,9.453813,21.4983,9.560557L21.4976,9.56119L12.49827,17.560560000000002Q12.44722,17.60594,12.3888,17.64135Q12.33039,17.676769999999998,12.26654,17.70104Q12.20269,17.72532,12.1355,17.737659999999998Q12.06831,17.75,12,17.75Q11.93169,17.75,11.8645,17.737659999999998Q11.79732,17.72532,11.73347,17.70104Q11.66961,17.676769999999998,11.6112,17.64135Q11.55278,17.60594,11.50173,17.560560000000002L2.501727,9.560557Q2.38164,9.453813,2.31582,9.307242Q2.25,9.160671,2.25,9Q2.25,8.9261315,2.264411,8.853682Q2.278822,8.781233,2.30709,8.712987Q2.335359,8.644742,2.376398,8.583322Q2.417437,8.521903,2.46967,8.46967Q2.521903,8.417437,2.583322,8.376398Q2.644742,8.335359,2.712987,8.30709Q2.781233,8.278822,2.853682,8.264410999999999Q2.9261315,8.25,3,8.25Q3.1377639999999998,8.25,3.266535,8.298959Q3.395307,8.347917,3.498273,8.439443Z" fill-rule="evenodd" fill-opacity="1"></path></g></g></g></g>', 2), x = [
|
|
74
|
+
v
|
|
75
|
+
];
|
|
76
|
+
function L(e, o, t, a, n, r) {
|
|
77
|
+
return s(), i("span", {
|
|
78
|
+
class: c(r.iconClasses)
|
|
79
|
+
}, [
|
|
80
|
+
(s(), i("svg", l({
|
|
81
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
82
|
+
width: t.size,
|
|
83
|
+
height: t.size,
|
|
84
|
+
viewBox: "0 0 24 24",
|
|
85
|
+
"aria-hidden": "true"
|
|
86
|
+
}, h(e.$listeners, !0), { fill: t.color }), x, 16, m))
|
|
87
|
+
], 2);
|
|
88
|
+
}
|
|
89
|
+
const Z = /* @__PURE__ */ Q(w, [["render", L]]), y = {
|
|
90
|
+
name: "IconArrowLeft",
|
|
91
|
+
props: {
|
|
92
|
+
size: {
|
|
93
|
+
type: [Number, String],
|
|
94
|
+
default: "1em"
|
|
95
|
+
},
|
|
96
|
+
color: {
|
|
97
|
+
type: String,
|
|
98
|
+
default: "currentColor"
|
|
99
|
+
},
|
|
100
|
+
spin: {
|
|
101
|
+
type: Boolean,
|
|
102
|
+
default: !1
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
computed: {
|
|
106
|
+
iconClasses() {
|
|
107
|
+
return [
|
|
108
|
+
"ksw-icon",
|
|
109
|
+
"ksw-icon-" + this.$options.name.toLowerCase(),
|
|
110
|
+
{ "ksw-icon-spin": this.spin }
|
|
111
|
+
];
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}, C = ["width", "height", "fill"], $ = /* @__PURE__ */ d('<defs><clipPath id="master_svg0_3069_6492"><rect x="0" y="0" width="24" height="24" rx="0"></rect></clipPath><clipPath id="master_svg1_3105_3981"><rect x="0" y="0" width="24" height="24" rx="0"></rect></clipPath></defs><g clip-path="url(#master_svg0_3069_6492)"><g clip-path="url(#master_svg1_3105_3981)"></g><g transform="matrix(0,1,-1,0,19.00006103515625,-13.00006103515625)"><g><g><path d="M16.49833403515625,2.439443L25.00006103515625,9.99653L33.501061035156255,2.440077L33.50176103515625,2.439443Q33.60476103515625,2.347917,33.73356103515625,2.298959Q33.86226103515625,2.25,34.00006103515625,2.25Q34.073961035156245,2.25,34.14636103515625,2.264411Q34.21886103515625,2.278822,34.28706103515625,2.30709Q34.35536103515625,2.335359,34.41676103515625,2.376398Q34.47816103515625,2.417437,34.53036103515625,2.46967Q34.58266103515625,2.521903,34.623661035156246,2.583322Q34.66466103515625,2.644742,34.69296103515625,2.712987Q34.721261035156246,2.781233,34.735661035156255,2.853682Q34.75006103515625,2.9261315,34.75006103515625,3Q34.75006103515625,3.160671,34.684261035156254,3.307242Q34.61846103515625,3.4538130000000002,34.49836103515625,3.560557L34.49766103515625,3.56119L25.498331035156248,11.56056Q25.44728103515625,11.60594,25.38886103515625,11.64135Q25.33045103515625,11.67677,25.26660103515625,11.70104Q25.20275103515625,11.72532,25.13556103515625,11.73766Q25.06837103515625,11.75,25.00006103515625,11.75Q24.93175103515625,11.75,24.86456103515625,11.73766Q24.79738103515625,11.72532,24.73353103515625,11.70104Q24.66967103515625,11.67677,24.61126103515625,11.64135Q24.55284103515625,11.60594,24.501791035156252,11.56056L15.50178803515625,3.560557Q15.38170103515625,3.4538130000000002,15.31588103515625,3.307242Q15.25006103515625,3.160671,15.25006103515625,3Q15.25006103515625,2.9261315,15.264472035156249,2.853682Q15.27888303515625,2.781233,15.30715103515625,2.712987Q15.33542003515625,2.644742,15.37645903515625,2.583322Q15.41749803515625,2.521903,15.46973103515625,2.46967Q15.52196403515625,2.417437,15.58338303515625,2.376398Q15.64480303515625,2.335359,15.71304803515625,2.30709Q15.78129403515625,2.278822,15.85374303515625,2.264411Q15.92619253515625,2.25,16.00006103515625,2.25Q16.13782503515625,2.25,16.26659603515625,2.298959Q16.39536803515625,2.347917,16.49833403515625,2.439443Z" fill-rule="evenodd" fill-opacity="1"></path></g></g></g></g>', 2), P = [
|
|
115
|
+
$
|
|
116
|
+
];
|
|
117
|
+
function k(e, o, t, a, n, r) {
|
|
118
|
+
return s(), i("span", {
|
|
119
|
+
class: c(r.iconClasses)
|
|
120
|
+
}, [
|
|
121
|
+
(s(), i("svg", l({
|
|
122
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
123
|
+
width: t.size,
|
|
124
|
+
height: t.size,
|
|
125
|
+
viewBox: "0 0 24 24",
|
|
126
|
+
"aria-hidden": "true"
|
|
127
|
+
}, h(e.$listeners, !0), { fill: t.color }), P, 16, C))
|
|
128
|
+
], 2);
|
|
129
|
+
}
|
|
130
|
+
const b = /* @__PURE__ */ Q(y, [["render", k]]), z = {
|
|
131
|
+
name: "IconArrowTop",
|
|
132
|
+
props: {
|
|
133
|
+
size: {
|
|
134
|
+
type: [Number, String],
|
|
135
|
+
default: "1em"
|
|
136
|
+
},
|
|
137
|
+
color: {
|
|
138
|
+
type: String,
|
|
139
|
+
default: "currentColor"
|
|
140
|
+
},
|
|
141
|
+
spin: {
|
|
142
|
+
type: Boolean,
|
|
143
|
+
default: !1
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
computed: {
|
|
147
|
+
iconClasses() {
|
|
148
|
+
return [
|
|
149
|
+
"ksw-icon",
|
|
150
|
+
"ksw-icon-" + this.$options.name.toLowerCase(),
|
|
151
|
+
{ "ksw-icon-spin": this.spin }
|
|
152
|
+
];
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}, B = ["width", "height", "fill"], S = /* @__PURE__ */ d('<defs><clipPath id="master_svg0_450_84047"><rect x="0" y="0" width="24" height="24" rx="0"></rect></clipPath><clipPath id="master_svg1_3105_3980"><rect x="0" y="0" width="24" height="24" rx="0"></rect></clipPath></defs><g clip-path="url(#master_svg0_450_84047)"><g clip-path="url(#master_svg1_3105_3980)"></g><g transform="matrix(-1,0,0,-1,42,32)"><g><g><path d="M21.498273,15.439443L30,22.99653L38.501000000000005,15.440077L38.5017,15.439443Q38.6047,15.347917,38.7335,15.298959Q38.8622,15.25,39,15.25Q39.073899999999995,15.25,39.1463,15.264410999999999Q39.2188,15.278822,39.287,15.30709Q39.3553,15.335359,39.4167,15.376398Q39.4781,15.417437,39.5303,15.46967Q39.5826,15.521903,39.623599999999996,15.583322Q39.6646,15.644742,39.6929,15.712987Q39.721199999999996,15.781233,39.735600000000005,15.853682Q39.75,15.9261315,39.75,16Q39.75,16.160671,39.684200000000004,16.307242Q39.6184,16.453813,39.4983,16.560557L39.4976,16.56119L30.498269999999998,24.560560000000002Q30.44722,24.60594,30.3888,24.64135Q30.33039,24.676769999999998,30.26654,24.70104Q30.20269,24.72532,30.1355,24.737659999999998Q30.06831,24.75,30,24.75Q29.93169,24.75,29.8645,24.737659999999998Q29.79732,24.72532,29.73347,24.70104Q29.66961,24.676769999999998,29.6112,24.64135Q29.55278,24.60594,29.501730000000002,24.560560000000002L20.501727,16.560557Q20.38164,16.453813,20.31582,16.307242Q20.25,16.160671,20.25,16Q20.25,15.9261315,20.264411,15.853682Q20.278822,15.781233,20.30709,15.712987Q20.335359,15.644742,20.376398000000002,15.583322Q20.417437,15.521903,20.46967,15.46967Q20.521903000000002,15.417437,20.583322,15.376398Q20.644742,15.335359,20.712987,15.30709Q20.781233,15.278822,20.853682,15.264410999999999Q20.9261315,15.25,21,15.25Q21.137764,15.25,21.266535,15.298959Q21.395307,15.347917,21.498273,15.439443Z" fill-rule="evenodd" fill-opacity="1"></path></g></g></g></g>', 2), A = [
|
|
156
|
+
S
|
|
157
|
+
];
|
|
158
|
+
function I(e, o, t, a, n, r) {
|
|
159
|
+
return s(), i("span", {
|
|
160
|
+
class: c(r.iconClasses)
|
|
161
|
+
}, [
|
|
162
|
+
(s(), i("svg", l({
|
|
163
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
164
|
+
width: t.size,
|
|
165
|
+
height: t.size,
|
|
166
|
+
viewBox: "0 0 24 24",
|
|
167
|
+
"aria-hidden": "true"
|
|
168
|
+
}, h(e.$listeners, !0), { fill: t.color }), A, 16, B))
|
|
169
|
+
], 2);
|
|
170
|
+
}
|
|
171
|
+
const T = /* @__PURE__ */ Q(z, [["render", I]]);
|
|
172
|
+
export {
|
|
173
|
+
N as IconAdd,
|
|
174
|
+
Z as IconArrowBottom,
|
|
175
|
+
b as IconArrowLeft,
|
|
176
|
+
T as IconArrowTop
|
|
177
|
+
};
|