@nr1e/qwik-icons 0.0.32 → 0.0.33
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/spinners-bars-fade.qwik.cjs +77 -0
- package/lib/components/icons/spinners-bars-fade.qwik.mjs +77 -0
- package/lib/index.qwik.cjs +2 -0
- package/lib/index.qwik.mjs +2 -0
- package/lib-types/components/icons/spinners-bars-fade.d.ts +2 -0
- package/lib-types/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,77 @@
|
|
|
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 SpinnersBarsFade = 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
|
+
]
|
|
74
|
+
})
|
|
75
|
+
});
|
|
76
|
+
});
|
|
77
|
+
exports.SpinnersBarsFade = SpinnersBarsFade;
|
|
@@ -0,0 +1,77 @@
|
|
|
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 SpinnersBarsFade = 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
|
+
]
|
|
72
|
+
})
|
|
73
|
+
});
|
|
74
|
+
});
|
|
75
|
+
export {
|
|
76
|
+
SpinnersBarsFade
|
|
77
|
+
};
|
package/lib/index.qwik.cjs
CHANGED
|
@@ -207,6 +207,7 @@ const mdiWrenchOutline = require("./components/icons/mdi-wrench-outline.qwik.cjs
|
|
|
207
207
|
const mdiTerminal = require("./components/icons/mdi-terminal.qwik.cjs");
|
|
208
208
|
const mdiTerminalLine = require("./components/icons/mdi-terminal-line.qwik.cjs");
|
|
209
209
|
const spinners6DotsRotate = require("./components/icons/spinners-6-dots-rotate.qwik.cjs");
|
|
210
|
+
const spinnersBarsFade = require("./components/icons/spinners-bars-fade.qwik.cjs");
|
|
210
211
|
const spinnersBarsRotateFade = require("./components/icons/spinners-bars-rotate-fade.qwik.cjs");
|
|
211
212
|
const spinnersRingResize = require("./components/icons/spinners-ring-resize.qwik.cjs");
|
|
212
213
|
const logosGoogleIcon = require("./components/icons/logos-google-icon.qwik.cjs");
|
|
@@ -512,6 +513,7 @@ exports.MdiWrenchOutline = mdiWrenchOutline.MdiWrenchOutline;
|
|
|
512
513
|
exports.MdiTerminal = mdiTerminal.MdiTerminal;
|
|
513
514
|
exports.MdiTerminalLine = mdiTerminalLine.MdiTerminalLine;
|
|
514
515
|
exports.Spinners6DotsRotate = spinners6DotsRotate.Spinners6DotsRotate;
|
|
516
|
+
exports.SpinnersBarsFade = spinnersBarsFade.SpinnersBarsFade;
|
|
515
517
|
exports.SpinnersBarsRotateFade = spinnersBarsRotateFade.SpinnersBarsRotateFade;
|
|
516
518
|
exports.SpinnersRingResize = spinnersRingResize.SpinnersRingResize;
|
|
517
519
|
exports.LogosGoogleIcon = logosGoogleIcon.LogosGoogleIcon;
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -205,6 +205,7 @@ import { MdiWrenchOutline } from "./components/icons/mdi-wrench-outline.qwik.mjs
|
|
|
205
205
|
import { MdiTerminal } from "./components/icons/mdi-terminal.qwik.mjs";
|
|
206
206
|
import { MdiTerminalLine } from "./components/icons/mdi-terminal-line.qwik.mjs";
|
|
207
207
|
import { Spinners6DotsRotate } from "./components/icons/spinners-6-dots-rotate.qwik.mjs";
|
|
208
|
+
import { SpinnersBarsFade } from "./components/icons/spinners-bars-fade.qwik.mjs";
|
|
208
209
|
import { SpinnersBarsRotateFade } from "./components/icons/spinners-bars-rotate-fade.qwik.mjs";
|
|
209
210
|
import { SpinnersRingResize } from "./components/icons/spinners-ring-resize.qwik.mjs";
|
|
210
211
|
import { LogosGoogleIcon } from "./components/icons/logos-google-icon.qwik.mjs";
|
|
@@ -579,6 +580,7 @@ export {
|
|
|
579
580
|
ReverblyLogoTaglineDarkBg,
|
|
580
581
|
ReverblyLogoTaglineLightBg,
|
|
581
582
|
Spinners6DotsRotate,
|
|
583
|
+
SpinnersBarsFade,
|
|
582
584
|
SpinnersBarsRotateFade,
|
|
583
585
|
SpinnersRingResize,
|
|
584
586
|
Svg,
|
package/lib-types/index.d.ts
CHANGED
|
@@ -205,6 +205,7 @@ export * from './components/icons/mdi-wrench-outline';
|
|
|
205
205
|
export * from './components/icons/mdi-terminal';
|
|
206
206
|
export * from './components/icons/mdi-terminal-line';
|
|
207
207
|
export * from './components/icons/spinners-6-dots-rotate';
|
|
208
|
+
export * from './components/icons/spinners-bars-fade';
|
|
208
209
|
export * from './components/icons/spinners-bars-rotate-fade';
|
|
209
210
|
export * from './components/icons/spinners-ring-resize';
|
|
210
211
|
export * from './components/icons/logos-google-icon';
|