@nr1e/qwik-icons 0.0.11 → 0.0.13
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/lib/components/icons/mdi-add-bold.qwik.cjs +16 -0
- package/lib/components/icons/mdi-add-bold.qwik.mjs +16 -0
- package/lib/components/icons/mdi-add-box.qwik.cjs +16 -0
- package/lib/components/icons/mdi-add-box.qwik.mjs +16 -0
- package/lib/components/icons/mdi-add.qwik.cjs +16 -0
- package/lib/components/icons/mdi-add.qwik.mjs +16 -0
- package/lib/components/icons/spinners-6-dots-rotate.qwik.cjs +72 -0
- package/lib/components/icons/spinners-6-dots-rotate.qwik.mjs +72 -0
- package/lib/components/icons/spinners-bars-rotate-fade.qwik.cjs +85 -0
- package/lib/components/icons/spinners-bars-rotate-fade.qwik.mjs +85 -0
- package/lib/components/icons/spinners-ring-resize.qwik.cjs +53 -0
- package/lib/components/icons/spinners-ring-resize.qwik.mjs +53 -0
- package/lib/index.qwik.cjs +12 -0
- package/lib/index.qwik.mjs +12 -0
- package/lib-types/components/icons/mdi-add-bold.d.ts +2 -0
- package/lib-types/components/icons/mdi-add-box.d.ts +2 -0
- package/lib-types/components/icons/mdi-add.d.ts +2 -0
- package/lib-types/components/icons/spinners-6-dots-rotate.d.ts +2 -0
- package/lib-types/components/icons/spinners-bars-rotate-fade.d.ts +2 -0
- package/lib-types/components/icons/spinners-ring-resize.d.ts +2 -0
- package/lib-types/index.d.ts +6 -0
- package/package.json +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiAddBold = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M20 14h-6v6h-4v-6H4v-4h6V4h4v6h6z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiAddBold = MdiAddBold;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiAddBold = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M20 14h-6v6h-4v-6H4v-4h6V4h4v6h6z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiAddBold
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiAddBox = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M17 13h-4v4h-2v-4H7v-2h4V7h2v4h4m2-8H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiAddBox = MdiAddBox;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiAddBox = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M17 13h-4v4h-2v-4H7v-2h4V7h2v4h4m2-8H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiAddBox
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const MdiAdd = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiAdd = MdiAdd;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiAdd = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiAdd
|
|
16
|
+
};
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const Spinners6DotsRotate = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("g", {
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", {
|
|
13
|
+
cx: "12",
|
|
14
|
+
cy: "2.5",
|
|
15
|
+
r: "1.5",
|
|
16
|
+
fill: "currentColor",
|
|
17
|
+
opacity: "0.14"
|
|
18
|
+
}),
|
|
19
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", {
|
|
20
|
+
cx: "16.75",
|
|
21
|
+
cy: "3.77",
|
|
22
|
+
r: "1.5",
|
|
23
|
+
fill: "currentColor",
|
|
24
|
+
opacity: "0.29"
|
|
25
|
+
}),
|
|
26
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", {
|
|
27
|
+
cx: "20.23",
|
|
28
|
+
cy: "7.25",
|
|
29
|
+
r: "1.5",
|
|
30
|
+
fill: "currentColor",
|
|
31
|
+
opacity: "0.43"
|
|
32
|
+
}),
|
|
33
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", {
|
|
34
|
+
cx: "21.5",
|
|
35
|
+
cy: "12",
|
|
36
|
+
r: "1.5",
|
|
37
|
+
fill: "currentColor",
|
|
38
|
+
opacity: "0.57"
|
|
39
|
+
}),
|
|
40
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", {
|
|
41
|
+
cx: "20.23",
|
|
42
|
+
cy: "16.75",
|
|
43
|
+
r: "1.5",
|
|
44
|
+
fill: "currentColor",
|
|
45
|
+
opacity: "0.71"
|
|
46
|
+
}),
|
|
47
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", {
|
|
48
|
+
cx: "16.75",
|
|
49
|
+
cy: "20.23",
|
|
50
|
+
r: "1.5",
|
|
51
|
+
fill: "currentColor",
|
|
52
|
+
opacity: "0.86"
|
|
53
|
+
}),
|
|
54
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", {
|
|
55
|
+
cx: "12",
|
|
56
|
+
cy: "21.5",
|
|
57
|
+
r: "1.5",
|
|
58
|
+
fill: "currentColor"
|
|
59
|
+
}),
|
|
60
|
+
/* @__PURE__ */ jsxRuntime.jsx("animateTransform", {
|
|
61
|
+
attributeName: "transform",
|
|
62
|
+
calcMode: "discrete",
|
|
63
|
+
dur: "0.75s",
|
|
64
|
+
repeatCount: "indefinite",
|
|
65
|
+
type: "rotate",
|
|
66
|
+
values: "0 12 12;30 12 12;60 12 12;90 12 12;120 12 12;150 12 12;180 12 12;210 12 12;240 12 12;270 12 12;300 12 12;330 12 12;360 12 12"
|
|
67
|
+
})
|
|
68
|
+
]
|
|
69
|
+
})
|
|
70
|
+
});
|
|
71
|
+
});
|
|
72
|
+
exports.Spinners6DotsRotate = Spinners6DotsRotate;
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { jsx, jsxs } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const Spinners6DotsRotate = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsxs("g", {
|
|
9
|
+
children: [
|
|
10
|
+
/* @__PURE__ */ jsx("circle", {
|
|
11
|
+
cx: "12",
|
|
12
|
+
cy: "2.5",
|
|
13
|
+
r: "1.5",
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
opacity: "0.14"
|
|
16
|
+
}),
|
|
17
|
+
/* @__PURE__ */ jsx("circle", {
|
|
18
|
+
cx: "16.75",
|
|
19
|
+
cy: "3.77",
|
|
20
|
+
r: "1.5",
|
|
21
|
+
fill: "currentColor",
|
|
22
|
+
opacity: "0.29"
|
|
23
|
+
}),
|
|
24
|
+
/* @__PURE__ */ jsx("circle", {
|
|
25
|
+
cx: "20.23",
|
|
26
|
+
cy: "7.25",
|
|
27
|
+
r: "1.5",
|
|
28
|
+
fill: "currentColor",
|
|
29
|
+
opacity: "0.43"
|
|
30
|
+
}),
|
|
31
|
+
/* @__PURE__ */ jsx("circle", {
|
|
32
|
+
cx: "21.5",
|
|
33
|
+
cy: "12",
|
|
34
|
+
r: "1.5",
|
|
35
|
+
fill: "currentColor",
|
|
36
|
+
opacity: "0.57"
|
|
37
|
+
}),
|
|
38
|
+
/* @__PURE__ */ jsx("circle", {
|
|
39
|
+
cx: "20.23",
|
|
40
|
+
cy: "16.75",
|
|
41
|
+
r: "1.5",
|
|
42
|
+
fill: "currentColor",
|
|
43
|
+
opacity: "0.71"
|
|
44
|
+
}),
|
|
45
|
+
/* @__PURE__ */ jsx("circle", {
|
|
46
|
+
cx: "16.75",
|
|
47
|
+
cy: "20.23",
|
|
48
|
+
r: "1.5",
|
|
49
|
+
fill: "currentColor",
|
|
50
|
+
opacity: "0.86"
|
|
51
|
+
}),
|
|
52
|
+
/* @__PURE__ */ jsx("circle", {
|
|
53
|
+
cx: "12",
|
|
54
|
+
cy: "21.5",
|
|
55
|
+
r: "1.5",
|
|
56
|
+
fill: "currentColor"
|
|
57
|
+
}),
|
|
58
|
+
/* @__PURE__ */ jsx("animateTransform", {
|
|
59
|
+
attributeName: "transform",
|
|
60
|
+
calcMode: "discrete",
|
|
61
|
+
dur: "0.75s",
|
|
62
|
+
repeatCount: "indefinite",
|
|
63
|
+
type: "rotate",
|
|
64
|
+
values: "0 12 12;30 12 12;60 12 12;90 12 12;120 12 12;150 12 12;180 12 12;210 12 12;240 12 12;270 12 12;300 12 12;330 12 12;360 12 12"
|
|
65
|
+
})
|
|
66
|
+
]
|
|
67
|
+
})
|
|
68
|
+
});
|
|
69
|
+
});
|
|
70
|
+
export {
|
|
71
|
+
Spinners6DotsRotate
|
|
72
|
+
};
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const SpinnersBarsRotateFade = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("g", {
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", {
|
|
13
|
+
width: "2",
|
|
14
|
+
height: "5",
|
|
15
|
+
x: "11",
|
|
16
|
+
y: "1",
|
|
17
|
+
fill: "currentColor",
|
|
18
|
+
opacity: "0.14"
|
|
19
|
+
}),
|
|
20
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", {
|
|
21
|
+
width: "2",
|
|
22
|
+
height: "5",
|
|
23
|
+
x: "11",
|
|
24
|
+
y: "1",
|
|
25
|
+
fill: "currentColor",
|
|
26
|
+
opacity: "0.29",
|
|
27
|
+
transform: "rotate(30 12 12)"
|
|
28
|
+
}),
|
|
29
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", {
|
|
30
|
+
width: "2",
|
|
31
|
+
height: "5",
|
|
32
|
+
x: "11",
|
|
33
|
+
y: "1",
|
|
34
|
+
fill: "currentColor",
|
|
35
|
+
opacity: "0.43",
|
|
36
|
+
transform: "rotate(60 12 12)"
|
|
37
|
+
}),
|
|
38
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", {
|
|
39
|
+
width: "2",
|
|
40
|
+
height: "5",
|
|
41
|
+
x: "11",
|
|
42
|
+
y: "1",
|
|
43
|
+
fill: "currentColor",
|
|
44
|
+
opacity: "0.57",
|
|
45
|
+
transform: "rotate(90 12 12)"
|
|
46
|
+
}),
|
|
47
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", {
|
|
48
|
+
width: "2",
|
|
49
|
+
height: "5",
|
|
50
|
+
x: "11",
|
|
51
|
+
y: "1",
|
|
52
|
+
fill: "currentColor",
|
|
53
|
+
opacity: "0.71",
|
|
54
|
+
transform: "rotate(120 12 12)"
|
|
55
|
+
}),
|
|
56
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", {
|
|
57
|
+
width: "2",
|
|
58
|
+
height: "5",
|
|
59
|
+
x: "11",
|
|
60
|
+
y: "1",
|
|
61
|
+
fill: "currentColor",
|
|
62
|
+
opacity: "0.86",
|
|
63
|
+
transform: "rotate(150 12 12)"
|
|
64
|
+
}),
|
|
65
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", {
|
|
66
|
+
width: "2",
|
|
67
|
+
height: "5",
|
|
68
|
+
x: "11",
|
|
69
|
+
y: "1",
|
|
70
|
+
fill: "currentColor",
|
|
71
|
+
transform: "rotate(180 12 12)"
|
|
72
|
+
}),
|
|
73
|
+
/* @__PURE__ */ jsxRuntime.jsx("animateTransform", {
|
|
74
|
+
attributeName: "transform",
|
|
75
|
+
calcMode: "discrete",
|
|
76
|
+
dur: "0.75s",
|
|
77
|
+
repeatCount: "indefinite",
|
|
78
|
+
type: "rotate",
|
|
79
|
+
values: "0 12 12;30 12 12;60 12 12;90 12 12;120 12 12;150 12 12;180 12 12;210 12 12;240 12 12;270 12 12;300 12 12;330 12 12;360 12 12"
|
|
80
|
+
})
|
|
81
|
+
]
|
|
82
|
+
})
|
|
83
|
+
});
|
|
84
|
+
});
|
|
85
|
+
exports.SpinnersBarsRotateFade = SpinnersBarsRotateFade;
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { jsx, jsxs } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const SpinnersBarsRotateFade = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsxs("g", {
|
|
9
|
+
children: [
|
|
10
|
+
/* @__PURE__ */ jsx("rect", {
|
|
11
|
+
width: "2",
|
|
12
|
+
height: "5",
|
|
13
|
+
x: "11",
|
|
14
|
+
y: "1",
|
|
15
|
+
fill: "currentColor",
|
|
16
|
+
opacity: "0.14"
|
|
17
|
+
}),
|
|
18
|
+
/* @__PURE__ */ jsx("rect", {
|
|
19
|
+
width: "2",
|
|
20
|
+
height: "5",
|
|
21
|
+
x: "11",
|
|
22
|
+
y: "1",
|
|
23
|
+
fill: "currentColor",
|
|
24
|
+
opacity: "0.29",
|
|
25
|
+
transform: "rotate(30 12 12)"
|
|
26
|
+
}),
|
|
27
|
+
/* @__PURE__ */ jsx("rect", {
|
|
28
|
+
width: "2",
|
|
29
|
+
height: "5",
|
|
30
|
+
x: "11",
|
|
31
|
+
y: "1",
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
opacity: "0.43",
|
|
34
|
+
transform: "rotate(60 12 12)"
|
|
35
|
+
}),
|
|
36
|
+
/* @__PURE__ */ jsx("rect", {
|
|
37
|
+
width: "2",
|
|
38
|
+
height: "5",
|
|
39
|
+
x: "11",
|
|
40
|
+
y: "1",
|
|
41
|
+
fill: "currentColor",
|
|
42
|
+
opacity: "0.57",
|
|
43
|
+
transform: "rotate(90 12 12)"
|
|
44
|
+
}),
|
|
45
|
+
/* @__PURE__ */ jsx("rect", {
|
|
46
|
+
width: "2",
|
|
47
|
+
height: "5",
|
|
48
|
+
x: "11",
|
|
49
|
+
y: "1",
|
|
50
|
+
fill: "currentColor",
|
|
51
|
+
opacity: "0.71",
|
|
52
|
+
transform: "rotate(120 12 12)"
|
|
53
|
+
}),
|
|
54
|
+
/* @__PURE__ */ jsx("rect", {
|
|
55
|
+
width: "2",
|
|
56
|
+
height: "5",
|
|
57
|
+
x: "11",
|
|
58
|
+
y: "1",
|
|
59
|
+
fill: "currentColor",
|
|
60
|
+
opacity: "0.86",
|
|
61
|
+
transform: "rotate(150 12 12)"
|
|
62
|
+
}),
|
|
63
|
+
/* @__PURE__ */ jsx("rect", {
|
|
64
|
+
width: "2",
|
|
65
|
+
height: "5",
|
|
66
|
+
x: "11",
|
|
67
|
+
y: "1",
|
|
68
|
+
fill: "currentColor",
|
|
69
|
+
transform: "rotate(180 12 12)"
|
|
70
|
+
}),
|
|
71
|
+
/* @__PURE__ */ jsx("animateTransform", {
|
|
72
|
+
attributeName: "transform",
|
|
73
|
+
calcMode: "discrete",
|
|
74
|
+
dur: "0.75s",
|
|
75
|
+
repeatCount: "indefinite",
|
|
76
|
+
type: "rotate",
|
|
77
|
+
values: "0 12 12;30 12 12;60 12 12;90 12 12;120 12 12;150 12 12;180 12 12;210 12 12;240 12 12;270 12 12;300 12 12;330 12 12;360 12 12"
|
|
78
|
+
})
|
|
79
|
+
]
|
|
80
|
+
})
|
|
81
|
+
});
|
|
82
|
+
});
|
|
83
|
+
export {
|
|
84
|
+
SpinnersBarsRotateFade
|
|
85
|
+
};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const svg = require("../svg.qwik.cjs");
|
|
6
|
+
const SpinnersRingResize = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("g", {
|
|
11
|
+
stroke: "currentColor",
|
|
12
|
+
"stroke-width": "1",
|
|
13
|
+
children: [
|
|
14
|
+
/* @__PURE__ */ jsxRuntime.jsxs("circle", {
|
|
15
|
+
cx: "12",
|
|
16
|
+
cy: "12",
|
|
17
|
+
r: "9.5",
|
|
18
|
+
fill: "none",
|
|
19
|
+
"stroke-linecap": "round",
|
|
20
|
+
"stroke-width": "3",
|
|
21
|
+
children: [
|
|
22
|
+
/* @__PURE__ */ jsxRuntime.jsx("animate", {
|
|
23
|
+
attributeName: "stroke-dasharray",
|
|
24
|
+
calcMode: "spline",
|
|
25
|
+
dur: "1.5s",
|
|
26
|
+
keySplines: "0.42,0,0.58,1;0.42,0,0.58,1;0.42,0,0.58,1",
|
|
27
|
+
keyTimes: "0;0.475;0.95;1",
|
|
28
|
+
repeatCount: "indefinite",
|
|
29
|
+
values: "0 150;42 150;42 150;42 150"
|
|
30
|
+
}),
|
|
31
|
+
/* @__PURE__ */ jsxRuntime.jsx("animate", {
|
|
32
|
+
attributeName: "stroke-dashoffset",
|
|
33
|
+
calcMode: "spline",
|
|
34
|
+
dur: "1.5s",
|
|
35
|
+
keySplines: "0.42,0,0.58,1;0.42,0,0.58,1;0.42,0,0.58,1",
|
|
36
|
+
keyTimes: "0;0.475;0.95;1",
|
|
37
|
+
repeatCount: "indefinite",
|
|
38
|
+
values: "0;-16;-59;-59"
|
|
39
|
+
})
|
|
40
|
+
]
|
|
41
|
+
}),
|
|
42
|
+
/* @__PURE__ */ jsxRuntime.jsx("animateTransform", {
|
|
43
|
+
attributeName: "transform",
|
|
44
|
+
dur: "2s",
|
|
45
|
+
repeatCount: "indefinite",
|
|
46
|
+
type: "rotate",
|
|
47
|
+
values: "0 12 12;360 12 12"
|
|
48
|
+
})
|
|
49
|
+
]
|
|
50
|
+
})
|
|
51
|
+
});
|
|
52
|
+
});
|
|
53
|
+
exports.SpinnersRingResize = SpinnersRingResize;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { jsx, jsxs } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const SpinnersRingResize = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsxs("g", {
|
|
9
|
+
stroke: "currentColor",
|
|
10
|
+
"stroke-width": "1",
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ jsxs("circle", {
|
|
13
|
+
cx: "12",
|
|
14
|
+
cy: "12",
|
|
15
|
+
r: "9.5",
|
|
16
|
+
fill: "none",
|
|
17
|
+
"stroke-linecap": "round",
|
|
18
|
+
"stroke-width": "3",
|
|
19
|
+
children: [
|
|
20
|
+
/* @__PURE__ */ jsx("animate", {
|
|
21
|
+
attributeName: "stroke-dasharray",
|
|
22
|
+
calcMode: "spline",
|
|
23
|
+
dur: "1.5s",
|
|
24
|
+
keySplines: "0.42,0,0.58,1;0.42,0,0.58,1;0.42,0,0.58,1",
|
|
25
|
+
keyTimes: "0;0.475;0.95;1",
|
|
26
|
+
repeatCount: "indefinite",
|
|
27
|
+
values: "0 150;42 150;42 150;42 150"
|
|
28
|
+
}),
|
|
29
|
+
/* @__PURE__ */ jsx("animate", {
|
|
30
|
+
attributeName: "stroke-dashoffset",
|
|
31
|
+
calcMode: "spline",
|
|
32
|
+
dur: "1.5s",
|
|
33
|
+
keySplines: "0.42,0,0.58,1;0.42,0,0.58,1;0.42,0,0.58,1",
|
|
34
|
+
keyTimes: "0;0.475;0.95;1",
|
|
35
|
+
repeatCount: "indefinite",
|
|
36
|
+
values: "0;-16;-59;-59"
|
|
37
|
+
})
|
|
38
|
+
]
|
|
39
|
+
}),
|
|
40
|
+
/* @__PURE__ */ jsx("animateTransform", {
|
|
41
|
+
attributeName: "transform",
|
|
42
|
+
dur: "2s",
|
|
43
|
+
repeatCount: "indefinite",
|
|
44
|
+
type: "rotate",
|
|
45
|
+
values: "0 12 12;360 12 12"
|
|
46
|
+
})
|
|
47
|
+
]
|
|
48
|
+
})
|
|
49
|
+
});
|
|
50
|
+
});
|
|
51
|
+
export {
|
|
52
|
+
SpinnersRingResize
|
|
53
|
+
};
|
package/lib/index.qwik.cjs
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
const svg = require("./components/svg.qwik.cjs");
|
|
4
|
+
const mdiAdd = require("./components/icons/mdi-add.qwik.cjs");
|
|
5
|
+
const mdiAddBold = require("./components/icons/mdi-add-bold.qwik.cjs");
|
|
6
|
+
const mdiAddBox = require("./components/icons/mdi-add-box.qwik.cjs");
|
|
4
7
|
const mdiAddCircle = require("./components/icons/mdi-add-circle.qwik.cjs");
|
|
5
8
|
const mdiAddCircleOutline = require("./components/icons/mdi-add-circle-outline.qwik.cjs");
|
|
6
9
|
const mdiAirHorn = require("./components/icons/mdi-air-horn.qwik.cjs");
|
|
@@ -86,6 +89,9 @@ const mdiWarningCircle = require("./components/icons/mdi-warning-circle.qwik.cjs
|
|
|
86
89
|
const mdiWarningCircleOutline = require("./components/icons/mdi-warning-circle-outline.qwik.cjs");
|
|
87
90
|
const mdiWarningOutline = require("./components/icons/mdi-warning-outline.qwik.cjs");
|
|
88
91
|
const mdiWrenchOutline = require("./components/icons/mdi-wrench-outline.qwik.cjs");
|
|
92
|
+
const spinners6DotsRotate = require("./components/icons/spinners-6-dots-rotate.qwik.cjs");
|
|
93
|
+
const spinnersBarsRotateFade = require("./components/icons/spinners-bars-rotate-fade.qwik.cjs");
|
|
94
|
+
const spinnersRingResize = require("./components/icons/spinners-ring-resize.qwik.cjs");
|
|
89
95
|
const logosGoogleIcon = require("./components/icons/logos-google-icon.qwik.cjs");
|
|
90
96
|
const logosMicrosoftIcon = require("./components/icons/logos-microsoft-icon.qwik.cjs");
|
|
91
97
|
const flagAe1x1 = require("./components/icons/flag-ae-1x1.qwik.cjs");
|
|
@@ -114,6 +120,9 @@ const clientloopLogoLightBlue = require("./components/brands/clientloop-logo-lig
|
|
|
114
120
|
const clientloopLogoPrimary = require("./components/brands/clientloop-logo-primary.qwik.cjs");
|
|
115
121
|
const clientloopLogoWhite = require("./components/brands/clientloop-logo-white.qwik.cjs");
|
|
116
122
|
exports.Svg = svg.Svg;
|
|
123
|
+
exports.MdiAdd = mdiAdd.MdiAdd;
|
|
124
|
+
exports.MdiAddBold = mdiAddBold.MdiAddBold;
|
|
125
|
+
exports.MdiAddBox = mdiAddBox.MdiAddBox;
|
|
117
126
|
exports.MdiAddCircle = mdiAddCircle.MdiAddCircle;
|
|
118
127
|
exports.MdiAddCircleOutline = mdiAddCircleOutline.MdiAddCircleOutline;
|
|
119
128
|
exports.MdiAirHorn = mdiAirHorn.MdiAirHorn;
|
|
@@ -199,6 +208,9 @@ exports.MdiWarningCircle = mdiWarningCircle.MdiWarningCircle;
|
|
|
199
208
|
exports.MdiWarningCircleOutline = mdiWarningCircleOutline.MdiWarningCircleOutline;
|
|
200
209
|
exports.MdiWarningOutline = mdiWarningOutline.MdiWarningOutline;
|
|
201
210
|
exports.MdiWrenchOutline = mdiWrenchOutline.MdiWrenchOutline;
|
|
211
|
+
exports.Spinners6DotsRotate = spinners6DotsRotate.Spinners6DotsRotate;
|
|
212
|
+
exports.SpinnersBarsRotateFade = spinnersBarsRotateFade.SpinnersBarsRotateFade;
|
|
213
|
+
exports.SpinnersRingResize = spinnersRingResize.SpinnersRingResize;
|
|
202
214
|
exports.LogosGoogleIcon = logosGoogleIcon.LogosGoogleIcon;
|
|
203
215
|
exports.LogosMicrosoftIcon = logosMicrosoftIcon.LogosMicrosoftIcon;
|
|
204
216
|
exports.FlagAe1x1 = flagAe1x1.FlagAe1x1;
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Svg } from "./components/svg.qwik.mjs";
|
|
2
|
+
import { MdiAdd } from "./components/icons/mdi-add.qwik.mjs";
|
|
3
|
+
import { MdiAddBold } from "./components/icons/mdi-add-bold.qwik.mjs";
|
|
4
|
+
import { MdiAddBox } from "./components/icons/mdi-add-box.qwik.mjs";
|
|
2
5
|
import { MdiAddCircle } from "./components/icons/mdi-add-circle.qwik.mjs";
|
|
3
6
|
import { MdiAddCircleOutline } from "./components/icons/mdi-add-circle-outline.qwik.mjs";
|
|
4
7
|
import { MdiAirHorn } from "./components/icons/mdi-air-horn.qwik.mjs";
|
|
@@ -84,6 +87,9 @@ import { MdiWarningCircle } from "./components/icons/mdi-warning-circle.qwik.mjs
|
|
|
84
87
|
import { MdiWarningCircleOutline } from "./components/icons/mdi-warning-circle-outline.qwik.mjs";
|
|
85
88
|
import { MdiWarningOutline } from "./components/icons/mdi-warning-outline.qwik.mjs";
|
|
86
89
|
import { MdiWrenchOutline } from "./components/icons/mdi-wrench-outline.qwik.mjs";
|
|
90
|
+
import { Spinners6DotsRotate } from "./components/icons/spinners-6-dots-rotate.qwik.mjs";
|
|
91
|
+
import { SpinnersBarsRotateFade } from "./components/icons/spinners-bars-rotate-fade.qwik.mjs";
|
|
92
|
+
import { SpinnersRingResize } from "./components/icons/spinners-ring-resize.qwik.mjs";
|
|
87
93
|
import { LogosGoogleIcon } from "./components/icons/logos-google-icon.qwik.mjs";
|
|
88
94
|
import { LogosMicrosoftIcon } from "./components/icons/logos-microsoft-icon.qwik.mjs";
|
|
89
95
|
import { FlagAe1x1 } from "./components/icons/flag-ae-1x1.qwik.mjs";
|
|
@@ -137,6 +143,9 @@ export {
|
|
|
137
143
|
FlagZa4x3,
|
|
138
144
|
LogosGoogleIcon,
|
|
139
145
|
LogosMicrosoftIcon,
|
|
146
|
+
MdiAdd,
|
|
147
|
+
MdiAddBold,
|
|
148
|
+
MdiAddBox,
|
|
140
149
|
MdiAddCircle,
|
|
141
150
|
MdiAddCircleOutline,
|
|
142
151
|
MdiAirHorn,
|
|
@@ -224,5 +233,8 @@ export {
|
|
|
224
233
|
MdiWrenchOutline,
|
|
225
234
|
PlaidIconBw,
|
|
226
235
|
PlaidLogoBw,
|
|
236
|
+
Spinners6DotsRotate,
|
|
237
|
+
SpinnersBarsRotateFade,
|
|
238
|
+
SpinnersRingResize,
|
|
227
239
|
Svg
|
|
228
240
|
};
|
package/lib-types/index.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export * from './components/svg';
|
|
2
|
+
export * from './components/icons/mdi-add';
|
|
3
|
+
export * from './components/icons/mdi-add-bold';
|
|
4
|
+
export * from './components/icons/mdi-add-box';
|
|
2
5
|
export * from './components/icons/mdi-add-circle';
|
|
3
6
|
export * from './components/icons/mdi-add-circle-outline';
|
|
4
7
|
export * from './components/icons/mdi-air-horn';
|
|
@@ -84,6 +87,9 @@ export * from './components/icons/mdi-warning-circle';
|
|
|
84
87
|
export * from './components/icons/mdi-warning-circle-outline';
|
|
85
88
|
export * from './components/icons/mdi-warning-outline';
|
|
86
89
|
export * from './components/icons/mdi-wrench-outline';
|
|
90
|
+
export * from './components/icons/spinners-6-dots-rotate';
|
|
91
|
+
export * from './components/icons/spinners-bars-rotate-fade';
|
|
92
|
+
export * from './components/icons/spinners-ring-resize';
|
|
87
93
|
export * from './components/icons/logos-google-icon';
|
|
88
94
|
export * from './components/icons/logos-microsoft-icon';
|
|
89
95
|
export * from './components/icons/flag-ae-1x1';
|