@nr1e/qwik-icons 0.0.0-snapshot-20260108003213 → 0.0.0-snapshot-20260109001551
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-air-horn.qwik.cjs +16 -0
- package/lib/components/icons/mdi-air-horn.qwik.mjs +16 -0
- package/lib/index.qwik.cjs +2 -0
- package/lib/index.qwik.mjs +2 -0
- package/lib-types/components/icons/mdi-air-horn.d.ts +2 -0
- package/lib-types/index.d.ts +1 -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 MdiAirHorn = 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 2.8v6.4c0 .3-.3.6-.6.5c0 0-3.9-2.6-8.4-2.6v2.4h.2c.5 0 1 .2 1.2.6l1.3 1.8c.2.2.3.5.3.7v8c0 .7-.7 1.4-1.5 1.4h-5c-.8 0-1.5-.6-1.5-1.4v-8c0-.3.1-.5.3-.7l1.3-1.8q.45-.6 1.2-.6H8V8c-.4.5-1 .8-1.6.8C5.1 8.8 4 7.5 4 6s1.1-2.8 2.4-2.8c.6.1 1.2.4 1.6.8V2.6h2V5c4.5 0 8.4-2.6 8.4-2.6c.3-.1.6.1.6.4"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiAirHorn = MdiAirHorn;
|
|
@@ -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 MdiAirHorn = 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 2.8v6.4c0 .3-.3.6-.6.5c0 0-3.9-2.6-8.4-2.6v2.4h.2c.5 0 1 .2 1.2.6l1.3 1.8c.2.2.3.5.3.7v8c0 .7-.7 1.4-1.5 1.4h-5c-.8 0-1.5-.6-1.5-1.4v-8c0-.3.1-.5.3-.7l1.3-1.8q.45-.6 1.2-.6H8V8c-.4.5-1 .8-1.6.8C5.1 8.8 4 7.5 4 6s1.1-2.8 2.4-2.8c.6.1 1.2.4 1.6.8V2.6h2V5c4.5 0 8.4-2.6 8.4-2.6c.3-.1.6.1.6.4"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiAirHorn
|
|
16
|
+
};
|
package/lib/index.qwik.cjs
CHANGED
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
|
3
3
|
const svg = require("./components/svg.qwik.cjs");
|
|
4
4
|
const mdiAddCircle = require("./components/icons/mdi-add-circle.qwik.cjs");
|
|
5
5
|
const mdiAddCircleOutline = require("./components/icons/mdi-add-circle-outline.qwik.cjs");
|
|
6
|
+
const mdiAirHorn = require("./components/icons/mdi-air-horn.qwik.cjs");
|
|
6
7
|
const mdiAlert = require("./components/icons/mdi-alert.qwik.cjs");
|
|
7
8
|
const mdiAlertBoxOutline = require("./components/icons/mdi-alert-box-outline.qwik.cjs");
|
|
8
9
|
const mdiArrowBackCircle = require("./components/icons/mdi-arrow-back-circle.qwik.cjs");
|
|
@@ -84,6 +85,7 @@ const flagZa4x3 = require("./components/icons/flag-za-4x3.qwik.cjs");
|
|
|
84
85
|
exports.Svg = svg.Svg;
|
|
85
86
|
exports.MdiAddCircle = mdiAddCircle.MdiAddCircle;
|
|
86
87
|
exports.MdiAddCircleOutline = mdiAddCircleOutline.MdiAddCircleOutline;
|
|
88
|
+
exports.MdiAirHorn = mdiAirHorn.MdiAirHorn;
|
|
87
89
|
exports.MdiAlert = mdiAlert.MdiAlert;
|
|
88
90
|
exports.MdiAlertBoxOutline = mdiAlertBoxOutline.MdiAlertBoxOutline;
|
|
89
91
|
exports.MdiArrowBackCircle = mdiArrowBackCircle.MdiArrowBackCircle;
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Svg } from "./components/svg.qwik.mjs";
|
|
2
2
|
import { MdiAddCircle } from "./components/icons/mdi-add-circle.qwik.mjs";
|
|
3
3
|
import { MdiAddCircleOutline } from "./components/icons/mdi-add-circle-outline.qwik.mjs";
|
|
4
|
+
import { MdiAirHorn } from "./components/icons/mdi-air-horn.qwik.mjs";
|
|
4
5
|
import { MdiAlert } from "./components/icons/mdi-alert.qwik.mjs";
|
|
5
6
|
import { MdiAlertBoxOutline } from "./components/icons/mdi-alert-box-outline.qwik.mjs";
|
|
6
7
|
import { MdiArrowBackCircle } from "./components/icons/mdi-arrow-back-circle.qwik.mjs";
|
|
@@ -98,6 +99,7 @@ export {
|
|
|
98
99
|
LogosMicrosoftIcon,
|
|
99
100
|
MdiAddCircle,
|
|
100
101
|
MdiAddCircleOutline,
|
|
102
|
+
MdiAirHorn,
|
|
101
103
|
MdiAlert,
|
|
102
104
|
MdiAlertBoxOutline,
|
|
103
105
|
MdiArrowBackCircle,
|
package/lib-types/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './components/svg';
|
|
2
2
|
export * from './components/icons/mdi-add-circle';
|
|
3
3
|
export * from './components/icons/mdi-add-circle-outline';
|
|
4
|
+
export * from './components/icons/mdi-air-horn';
|
|
4
5
|
export * from './components/icons/mdi-alert';
|
|
5
6
|
export * from './components/icons/mdi-alert-box-outline';
|
|
6
7
|
export * from './components/icons/mdi-arrow-back-circle';
|