@iconify-vue/tabler 1.0.13 → 1.0.14
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/components/b/brand-stellar.vue +10 -0
- package/components/b/brand-vechain.vue +10 -0
- package/components/c/clef-staff.vue +10 -0
- package/components/c/clef.vue +10 -0
- package/components/c/currency-husd.vue +10 -0
- package/components/c/currency-tether.vue +10 -0
- package/components/c/currency-zcash.vue +10 -0
- package/components/d/device-computer-camera-2.vue +10 -0
- package/components/d/door-hanger.vue +10 -0
- package/components/e/earphone-bluetooth.vue +12 -0
- package/components/g/grape.vue +14 -0
- package/components/h/hammer-drill.vue +10 -0
- package/components/i/infinity-2.vue +10 -0
- package/components/l/lawn-mower.vue +13 -0
- package/components/l/loader-4.vue +10 -0
- package/components/m/mosque.vue +10 -0
- package/components/p/pendulum.vue +10 -0
- package/components/p/plunger.vue +12 -0
- package/css/b/bi2ed1bcm.css +8 -0
- package/css/c/c07avib5j.css +8 -0
- package/css/c/cducd7zor.css +8 -0
- package/css/c/cigxasbbf.css +3 -0
- package/css/g/g2zngsb7v.css +8 -0
- package/css/g/gk90e1xta.css +3 -0
- package/css/i/i-uboqb4e.css +3 -0
- package/css/i/i8om35b2v.css +3 -0
- package/css/i/imomcccqb.css +8 -0
- package/css/i/ipeu9ssnm.css +8 -0
- package/css/k/k-6_nfb7n.css +8 -0
- package/css/k/k7xoszsbi.css +8 -0
- package/css/k/kxg1y7b6d.css +3 -0
- package/css/m/mc_u4bvwv.css +3 -0
- package/css/m/mywoygpuk.css +3 -0
- package/css/n/nj126jb4e.css +8 -0
- package/css/o/o1s4mhchp.css +8 -0
- package/css/o/o1y4hnr9n.css +8 -0
- package/css/o/oxy_0ibih.css +3 -0
- package/css/r/rkqwqebzy.css +3 -0
- package/css/s/syie46eid.css +3 -0
- package/css/v/vl_udub0j.css +3 -0
- package/css/v/vvlytjb3c.css +8 -0
- package/css/w/wbaebgbkj.css +8 -0
- package/css/z/zn0-yfbgw.css +8 -0
- package/iconify.json +3 -3
- package/package.json +73 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/i/ipeu9ssnm.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="ipeu9ssnm"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:brand-stellar" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/b/bi2ed1bcm.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="bi2ed1bcm"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:brand-vechain" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/i/imomcccqb.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="imomcccqb"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:clef-staff" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/v/vvlytjb3c.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="vvlytjb3c"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:clef" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/k/k-6_nfb7n.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="k-6_nfb7n"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:currency-husd" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/n/nj126jb4e.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="nj126jb4e"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:currency-tether" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/w/wbaebgbkj.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="wbaebgbkj"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:currency-zcash" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/o/o1y4hnr9n.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="o1y4hnr9n"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:device-computer-camera-2" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/k/k7xoszsbi.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="k7xoszsbi"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:door-hanger" /></template>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/k/kxg1y7b6d.css';
|
|
5
|
+
import '../../css/i/i8om35b2v.css';
|
|
6
|
+
|
|
7
|
+
const props = defineProps(["width","height"]);
|
|
8
|
+
|
|
9
|
+
const viewBox = {"width":24,"height":24};
|
|
10
|
+
const content = `<g class="nrj6p8qat"><path class="kxg1y7b6d"/><path class="i8om35b2v"/></g>`;
|
|
11
|
+
</script>
|
|
12
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:earphone-bluetooth" /></template>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/v/vl_udub0j.css';
|
|
5
|
+
import '../../css/i/i-uboqb4e.css';
|
|
6
|
+
import '../../css/m/mywoygpuk.css';
|
|
7
|
+
import '../../css/s/syie46eid.css';
|
|
8
|
+
|
|
9
|
+
const props = defineProps(["width","height"]);
|
|
10
|
+
|
|
11
|
+
const viewBox = {"width":24,"height":24};
|
|
12
|
+
const content = `<g class="nrj6p8qat"><path class="vl_udub0j"/><path class="i-uboqb4e"/><path class="mywoygpuk"/><path class="syie46eid"/></g>`;
|
|
13
|
+
</script>
|
|
14
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:grape" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/z/zn0-yfbgw.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="zn0-yfbgw"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:hammer-drill" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/o/o1s4mhchp.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="o1s4mhchp"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:infinity-2" /></template>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/g/gk90e1xta.css';
|
|
5
|
+
import '../../css/c/cigxasbbf.css';
|
|
6
|
+
import '../../css/r/rkqwqebzy.css';
|
|
7
|
+
|
|
8
|
+
const props = defineProps(["width","height"]);
|
|
9
|
+
|
|
10
|
+
const viewBox = {"width":24,"height":24};
|
|
11
|
+
const content = `<g class="nrj6p8qat"><path class="gk90e1xta"/><path class="cigxasbbf"/><path class="rkqwqebzy"/></g>`;
|
|
12
|
+
</script>
|
|
13
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:lawn-mower" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/c/cducd7zor.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="cducd7zor"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:loader-4" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/g/g2zngsb7v.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="g2zngsb7v"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:mosque" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/c/c07avib5j.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="c07avib5j"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:pendulum" /></template>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/m/mc_u4bvwv.css';
|
|
5
|
+
import '../../css/o/oxy_0ibih.css';
|
|
6
|
+
|
|
7
|
+
const props = defineProps(["width","height"]);
|
|
8
|
+
|
|
9
|
+
const viewBox = {"width":24,"height":24};
|
|
10
|
+
const content = `<g class="nrj6p8qat"><path class="mc_u4bvwv"/><path class="oxy_0ibih"/></g>`;
|
|
11
|
+
</script>
|
|
12
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:plunger" /></template>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.cducd7zor {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
+
d: path("M12 21v-3m6.36.36l-2.12-2.12M21 12h-3m.36-6.36l-2.12 2.12M12 3v3m-6.36-.36l2.12 2.12M4 12h2m1 4.95l.71-.71");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.g2zngsb7v {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
+
d: path("M13.5 5.49A1.764 1.764 0 0 1 11 3m1 3v3m7 12a8.9 8.9 0 0 0 1-3.67c0-2-.92-3.25-3.24-4.51A17.4 17.4 0 0 1 12 9a17.4 17.4 0 0 1-4.76 3.82C4.92 14.08 4 15.37 4 17.33A8.9 8.9 0 0 0 5 21z");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.imomcccqb {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
+
d: path("M15 15h6m-6-4h6m-10 8h10m-10-7a4.16 4.16 0 0 1-5.62 3.89A3.78 3.78 0 0 1 3 12.5a3.42 3.42 0 0 1 2.34-3.38L9.13 7.7A2.89 2.89 0 0 0 11 5a2 2 0 0 0-2-2a2 2 0 0 0-2 2v14a2 2 0 0 1-2 2a2 2 0 0 1-2-2");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.ipeu9ssnm {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
+
d: path("M21 6L4 13v-1c-.004-1.259.234-2.5.81-3.62C6.173 5.694 8.988 4.002 12 4a7.5 7.5 0 0 1 2.61.46M9.38 19.54a8 8 0 0 0 9.81-3.92c.576-1.12.814-2.361.81-3.62v-1L3 18");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.k7xoszsbi {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
+
d: path("M12 3a7 7 0 0 0-5.48 2.64a1 1 0 0 0 .31 1.49l1.76 1A1 1 0 0 0 9.81 8a3 3 0 0 1 2.82-.88A3.09 3.09 0 0 1 15 10.13V11l-9.2 1.84a1 1 0 0 0-.8 1V20a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-9.72A7.18 7.18 0 0 0 12 3m0 14v.01");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.o1s4mhchp {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
+
d: path("M13.94 9.39a10 10 0 0 1 .232-.218a4 4 0 1 1 0 5.656A10 10 0 0 1 12 12a10 10 0 0 0-2.172-2.828a4 4 0 1 0 0 5.656a10 10 0 0 0 .234-.219");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.o1y4hnr9n {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
+
d: path("M17 14H7a4 4 0 0 1-4-4a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4a4 4 0 0 1-4 4m-2 0H9v4h6zm2 4H7m5-7.98v.01");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.vvlytjb3c {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
+
d: path("M16 12a4.16 4.16 0 0 1-5.62 3.89A3.78 3.78 0 0 1 8 12.5a3.42 3.42 0 0 1 2.34-3.38l3.79-1.42A2.89 2.89 0 0 0 16 5a2 2 0 1 0-4 0v14a2 2 0 1 1-4 0");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.zn0-yfbgw {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
+
d: path("M12 15v6m4-16h4M8 5H4m11 6H9a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1m-1 0h-4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1z");
|
|
8
|
+
}
|
package/iconify.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"prefix": "tabler",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Tabler Icons",
|
|
5
|
-
"total":
|
|
6
|
-
"version": "3.
|
|
5
|
+
"total": 6110,
|
|
6
|
+
"version": "3.42.0",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Paweł Kuna",
|
|
9
9
|
"url": "https://github.com/tabler/tabler-icons"
|
|
@@ -30,5 +30,5 @@
|
|
|
30
30
|
],
|
|
31
31
|
"palette": false
|
|
32
32
|
},
|
|
33
|
-
"lastModified":
|
|
33
|
+
"lastModified": 1778041366
|
|
34
34
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-vue/tabler",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.14",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/tabler/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "MIT",
|
|
@@ -4370,6 +4370,10 @@
|
|
|
4370
4370
|
"types": "./types/dd0bq22g.d.ts",
|
|
4371
4371
|
"default": "./components/b/brand-steam-filled.vue"
|
|
4372
4372
|
},
|
|
4373
|
+
"./brand-stellar": {
|
|
4374
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
4375
|
+
"default": "./components/b/brand-stellar.vue"
|
|
4376
|
+
},
|
|
4373
4377
|
"./brand-stocktwits": {
|
|
4374
4378
|
"types": "./types/dd0bq22g.d.ts",
|
|
4375
4379
|
"default": "./components/b/brand-stocktwits.vue"
|
|
@@ -4582,6 +4586,10 @@
|
|
|
4582
4586
|
"types": "./types/dd0bq22g.d.ts",
|
|
4583
4587
|
"default": "./components/b/brand-valorant.vue"
|
|
4584
4588
|
},
|
|
4589
|
+
"./brand-vechain": {
|
|
4590
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
4591
|
+
"default": "./components/b/brand-vechain.vue"
|
|
4592
|
+
},
|
|
4585
4593
|
"./brand-vercel": {
|
|
4586
4594
|
"types": "./types/dd0bq22g.d.ts",
|
|
4587
4595
|
"default": "./components/b/brand-vercel.vue"
|
|
@@ -7322,6 +7330,14 @@
|
|
|
7322
7330
|
"types": "./types/dd0bq22g.d.ts",
|
|
7323
7331
|
"default": "./components/c/clear-formatting.vue"
|
|
7324
7332
|
},
|
|
7333
|
+
"./clef": {
|
|
7334
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
7335
|
+
"default": "./components/c/clef.vue"
|
|
7336
|
+
},
|
|
7337
|
+
"./clef-staff": {
|
|
7338
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
7339
|
+
"default": "./components/c/clef-staff.vue"
|
|
7340
|
+
},
|
|
7325
7341
|
"./click": {
|
|
7326
7342
|
"types": "./types/dd0bq22g.d.ts",
|
|
7327
7343
|
"default": "./components/c/click.vue"
|
|
@@ -8642,6 +8658,10 @@
|
|
|
8642
8658
|
"types": "./types/dd0bq22g.d.ts",
|
|
8643
8659
|
"default": "./components/c/currency-hryvnia.vue"
|
|
8644
8660
|
},
|
|
8661
|
+
"./currency-husd": {
|
|
8662
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
8663
|
+
"default": "./components/c/currency-husd.vue"
|
|
8664
|
+
},
|
|
8645
8665
|
"./currency-iranian-rial": {
|
|
8646
8666
|
"types": "./types/dd0bq22g.d.ts",
|
|
8647
8667
|
"default": "./components/c/currency-iranian-rial.vue"
|
|
@@ -8774,6 +8794,10 @@
|
|
|
8774
8794
|
"types": "./types/dd0bq22g.d.ts",
|
|
8775
8795
|
"default": "./components/c/currency-tenge.vue"
|
|
8776
8796
|
},
|
|
8797
|
+
"./currency-tether": {
|
|
8798
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
8799
|
+
"default": "./components/c/currency-tether.vue"
|
|
8800
|
+
},
|
|
8777
8801
|
"./currency-tugrik": {
|
|
8778
8802
|
"types": "./types/dd0bq22g.d.ts",
|
|
8779
8803
|
"default": "./components/c/currency-tugrik.vue"
|
|
@@ -8798,6 +8822,10 @@
|
|
|
8798
8822
|
"types": "./types/dd0bq22g.d.ts",
|
|
8799
8823
|
"default": "./components/c/currency-yuan.vue"
|
|
8800
8824
|
},
|
|
8825
|
+
"./currency-zcash": {
|
|
8826
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
8827
|
+
"default": "./components/c/currency-zcash.vue"
|
|
8828
|
+
},
|
|
8801
8829
|
"./currency-zloty": {
|
|
8802
8830
|
"types": "./types/dd0bq22g.d.ts",
|
|
8803
8831
|
"default": "./components/c/currency-zloty.vue"
|
|
@@ -9014,6 +9042,10 @@
|
|
|
9014
9042
|
"types": "./types/dd0bq22g.d.ts",
|
|
9015
9043
|
"default": "./components/d/device-computer-camera.vue"
|
|
9016
9044
|
},
|
|
9045
|
+
"./device-computer-camera-2": {
|
|
9046
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
9047
|
+
"default": "./components/d/device-computer-camera-2.vue"
|
|
9048
|
+
},
|
|
9017
9049
|
"./device-computer-camera-off": {
|
|
9018
9050
|
"types": "./types/dd0bq22g.d.ts",
|
|
9019
9051
|
"default": "./components/d/device-computer-camera-off.vue"
|
|
@@ -10138,6 +10170,10 @@
|
|
|
10138
10170
|
"types": "./types/dd0bq22g.d.ts",
|
|
10139
10171
|
"default": "./components/d/door-exit.vue"
|
|
10140
10172
|
},
|
|
10173
|
+
"./door-hanger": {
|
|
10174
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
10175
|
+
"default": "./components/d/door-hanger.vue"
|
|
10176
|
+
},
|
|
10141
10177
|
"./door-off": {
|
|
10142
10178
|
"types": "./types/dd0bq22g.d.ts",
|
|
10143
10179
|
"default": "./components/d/door-off.vue"
|
|
@@ -10354,6 +10390,10 @@
|
|
|
10354
10390
|
"types": "./types/dd0bq22g.d.ts",
|
|
10355
10391
|
"default": "./components/e/ear-scan.vue"
|
|
10356
10392
|
},
|
|
10393
|
+
"./earphone-bluetooth": {
|
|
10394
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
10395
|
+
"default": "./components/e/earphone-bluetooth.vue"
|
|
10396
|
+
},
|
|
10357
10397
|
"./ease-in": {
|
|
10358
10398
|
"types": "./types/dd0bq22g.d.ts",
|
|
10359
10399
|
"default": "./components/e/ease-in.vue"
|
|
@@ -12390,6 +12430,10 @@
|
|
|
12390
12430
|
"types": "./types/dd0bq22g.d.ts",
|
|
12391
12431
|
"default": "./components/g/grain.vue"
|
|
12392
12432
|
},
|
|
12433
|
+
"./grape": {
|
|
12434
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
12435
|
+
"default": "./components/g/grape.vue"
|
|
12436
|
+
},
|
|
12393
12437
|
"./graph": {
|
|
12394
12438
|
"types": "./types/dd0bq22g.d.ts",
|
|
12395
12439
|
"default": "./components/g/graph.vue"
|
|
@@ -12506,6 +12550,10 @@
|
|
|
12506
12550
|
"types": "./types/dd0bq22g.d.ts",
|
|
12507
12551
|
"default": "./components/h/hammer.vue"
|
|
12508
12552
|
},
|
|
12553
|
+
"./hammer-drill": {
|
|
12554
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
12555
|
+
"default": "./components/h/hammer-drill.vue"
|
|
12556
|
+
},
|
|
12509
12557
|
"./hammer-off": {
|
|
12510
12558
|
"types": "./types/dd0bq22g.d.ts",
|
|
12511
12559
|
"default": "./components/h/hammer-off.vue"
|
|
@@ -13686,6 +13734,10 @@
|
|
|
13686
13734
|
"types": "./types/dd0bq22g.d.ts",
|
|
13687
13735
|
"default": "./components/i/infinity.vue"
|
|
13688
13736
|
},
|
|
13737
|
+
"./infinity-2": {
|
|
13738
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
13739
|
+
"default": "./components/i/infinity-2.vue"
|
|
13740
|
+
},
|
|
13689
13741
|
"./infinity-off": {
|
|
13690
13742
|
"types": "./types/dd0bq22g.d.ts",
|
|
13691
13743
|
"default": "./components/i/infinity-off.vue"
|
|
@@ -14146,6 +14198,10 @@
|
|
|
14146
14198
|
"types": "./types/dd0bq22g.d.ts",
|
|
14147
14199
|
"default": "./components/l/laurel-wreath-filled.vue"
|
|
14148
14200
|
},
|
|
14201
|
+
"./lawn-mower": {
|
|
14202
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
14203
|
+
"default": "./components/l/lawn-mower.vue"
|
|
14204
|
+
},
|
|
14149
14205
|
"./layers-difference": {
|
|
14150
14206
|
"types": "./types/dd0bq22g.d.ts",
|
|
14151
14207
|
"default": "./components/l/layers-difference.vue"
|
|
@@ -14890,6 +14946,10 @@
|
|
|
14890
14946
|
"types": "./types/dd0bq22g.d.ts",
|
|
14891
14947
|
"default": "./components/l/loader-3.vue"
|
|
14892
14948
|
},
|
|
14949
|
+
"./loader-4": {
|
|
14950
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
14951
|
+
"default": "./components/l/loader-4.vue"
|
|
14952
|
+
},
|
|
14893
14953
|
"./loader-quarter": {
|
|
14894
14954
|
"types": "./types/dd0bq22g.d.ts",
|
|
14895
14955
|
"default": "./components/l/loader-quarter.vue"
|
|
@@ -16662,6 +16722,10 @@
|
|
|
16662
16722
|
"types": "./types/dd0bq22g.d.ts",
|
|
16663
16723
|
"default": "./components/m/moped.vue"
|
|
16664
16724
|
},
|
|
16725
|
+
"./mosque": {
|
|
16726
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
16727
|
+
"default": "./components/m/mosque.vue"
|
|
16728
|
+
},
|
|
16665
16729
|
"./motorbike": {
|
|
16666
16730
|
"types": "./types/dd0bq22g.d.ts",
|
|
16667
16731
|
"default": "./components/m/motorbike.vue"
|
|
@@ -17882,6 +17946,10 @@
|
|
|
17882
17946
|
"types": "./types/dd0bq22g.d.ts",
|
|
17883
17947
|
"default": "./components/p/pencil-x.vue"
|
|
17884
17948
|
},
|
|
17949
|
+
"./pendulum": {
|
|
17950
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
17951
|
+
"default": "./components/p/pendulum.vue"
|
|
17952
|
+
},
|
|
17885
17953
|
"./pennant": {
|
|
17886
17954
|
"types": "./types/dd0bq22g.d.ts",
|
|
17887
17955
|
"default": "./components/p/pennant.vue"
|
|
@@ -18766,6 +18834,10 @@
|
|
|
18766
18834
|
"types": "./types/dd0bq22g.d.ts",
|
|
18767
18835
|
"default": "./components/p/plug-x.vue"
|
|
18768
18836
|
},
|
|
18837
|
+
"./plunger": {
|
|
18838
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
18839
|
+
"default": "./components/p/plunger.vue"
|
|
18840
|
+
},
|
|
18769
18841
|
"./plus": {
|
|
18770
18842
|
"types": "./types/dd0bq22g.d.ts",
|
|
18771
18843
|
"default": "./components/p/plus.vue"
|