@iconify-vue/roentgen 1.0.19 → 1.0.20
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/barrier-jersey.vue +10 -0
- package/components/b/bus-over-bus-trap.vue +10 -0
- package/components/b/bus.vue +2 -2
- package/components/c/compass-rose.vue +10 -0
- package/components/c/compass.vue +10 -0
- package/components/s/saddle.vue +2 -2
- package/components/t/trolleybus.vue +2 -2
- package/css/c/cmi_cmbbs.css +4 -0
- package/css/h/hxnbmfb4k.css +4 -0
- package/css/k/k32cw6e7o.css +4 -0
- package/css/l/lww32bc-m.css +4 -0
- package/css/n/nr2f6vjmb.css +4 -0
- package/css/p/p3iqqrbav.css +4 -0
- package/css/w/w2au1nh_q.css +4 -0
- package/iconify.json +2 -2
- package/package.json +17 -1
- package/css/m/mfuc_wblv.css +0 -4
- package/css/m/mlc8j-iny.css +0 -4
- package/css/q/q8mll307b.css +0 -4
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/h/hxnbmfb4k.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":16,"height":16};
|
|
8
|
+
const content = `<path class="hxnbmfb4k"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:barrier-jersey" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/n/nr2f6vjmb.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":16,"height":16};
|
|
8
|
+
const content = `<path class="nr2f6vjmb"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:bus-over-bus-trap" /></template>
|
package/components/b/bus.vue
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { Icon } from '@iconify/css-vue';
|
|
3
|
-
import '../../css/m
|
|
3
|
+
import '../../css/l/lww32bc-m.css';
|
|
4
4
|
|
|
5
5
|
const props = defineProps(["width","height"]);
|
|
6
6
|
|
|
7
7
|
const viewBox = {"width":16,"height":16};
|
|
8
|
-
const content = `<path class="
|
|
8
|
+
const content = `<path class="lww32bc-m"/>`;
|
|
9
9
|
</script>
|
|
10
10
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:bus" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/p/p3iqqrbav.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":16,"height":16};
|
|
8
|
+
const content = `<path class="p3iqqrbav"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:compass-rose" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/c/cmi_cmbbs.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":16,"height":16};
|
|
8
|
+
const content = `<path class="cmi_cmbbs"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:compass" /></template>
|
package/components/s/saddle.vue
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { Icon } from '@iconify/css-vue';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/w/w2au1nh_q.css';
|
|
4
4
|
|
|
5
5
|
const props = defineProps(["width","height"]);
|
|
6
6
|
|
|
7
7
|
const viewBox = {"width":16,"height":16};
|
|
8
|
-
const content = `<path class="
|
|
8
|
+
const content = `<path class="w2au1nh_q"/>`;
|
|
9
9
|
</script>
|
|
10
10
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:saddle" /></template>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { Icon } from '@iconify/css-vue';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/k/k32cw6e7o.css';
|
|
4
4
|
|
|
5
5
|
const props = defineProps(["width","height"]);
|
|
6
6
|
|
|
7
7
|
const viewBox = {"width":16,"height":16};
|
|
8
|
-
const content = `<path class="
|
|
8
|
+
const content = `<path class="k32cw6e7o"/>`;
|
|
9
9
|
</script>
|
|
10
10
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:trolleybus" /></template>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.cmi_cmbbs {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M7.5 1a6.5 6.5 0 1 0 0 13a6.5 6.5 0 0 0 0-13m0 2a.5.5 0 0 1 .447.277l2 4a.5.5 0 0 1 0 .446l-2 4a.5.5 0 0 1-.894 0l-2-4a.5.5 0 0 1 0-.446l2-4A.5.5 0 0 1 7.5 3m0 1.617L6.059 7.5H8.94zM2.5 7h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1 0-1m9 0h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1 0-1");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.k32cw6e7o {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M8 1a.5.5 0 0 0-.45.283l-.888 1.776A1 1 0 0 0 6 4H5a2 2 0 0 0-2 2v8.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5V14h6v.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5V6a2 2 0 0 0-2-2h-1a1 1 0 0 0-.323-.736l.767-1.535a.5.5 0 1 0-.894-.446L8.691 3h-.882l.635-1.271A.5.5 0 0 0 8 1M6.499 5H9.5a.5.5 0 0 1 .001 1H6.5a.5.5 0 0 1-.001-1M4 8a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v1.5a1.5 1.5 0 0 1-1.5 1.5h-5A1.5 1.5 0 0 1 4 9.5zm0 4.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5m6 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.lww32bc-m {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M4 2a1 1 0 0 0-1 1c-.585 0-1.111.154-1.479.521C1.154 3.889 1 4.416 1 4.999V5.5a.5.5 0 0 0 1 0v-.499c0-.418.097-.64.229-.772C2.361 4.096 2.583 4 3 4v9.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5V13h6v.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5V4c.417 0 .639.096.771.229c.132.132.229.354.229.77V5.5a.5.5 0 0 0 1 0v-.499c0-.585-.154-1.112-.521-1.48c-.368-.367-.894-.521-1.476-.521C13 2.448 12.552 2 12 2zm2.499 1H9.5a.5.5 0 0 1 .001 1H6.5a.5.5 0 0 1-.001-1M4 6a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v2.5a1.5 1.5 0 0 1-1.5 1.5h-5A1.5 1.5 0 0 1 4 8.5zm0 5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5m6 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.nr2f6vjmb {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M4 1a1 1 0 0 0-1 1c-.585 0-1.111.154-1.479.521C1.154 2.889 1 3.416 1 4v.5a.5.5 0 0 0 1 0v-.499c0-.418.097-.64.229-.772C2.361 3.096 2.583 3 3 3v8.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5V11h6v.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5V3c.417 0 .639.096.771.229c.132.132.229.354.229.771v.5a.5.5 0 0 0 1 0v-.499c0-.585-.154-1.112-.521-1.48c-.368-.367-.894-.521-1.476-.521C13 1.448 12.552 1 12 1zm2.499 1H9.5a.5.5 0 0 1 .001 1H6.5a.5.5 0 0 1-.001-1M4 5a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v1.5A1.5 1.5 0 0 1 10.5 8h-5A1.5 1.5 0 0 1 4 6.5zm0 4.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5m6 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5M2.5 13a.5.5 0 0 0-.5.5v1.031l.002.014l.002.015l.001.013l.002.014l.003.013l.003.012l.003.012l.003.012l.003.011l.004.011l.003.011l.008.02l.008.02l.009.017l.009.017l.009.016l.01.015l.009.014l.01.013l.009.012l.01.012l.009.01l.014.016l.01.009l.036.032l.018.013l.016.011l.016.011l.015.008l.014.008l.014.007l.013.006l.012.005l.012.005l.011.004l.029.01l.013.003l.015.004l.014.003l.012.003l.011.001l.01.002l.012.001l.012.001l.011.002h11.068l.011-.002l.011-.001A.5.5 0 0 0 14 14.5v-1a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v.5H6v-.5a.5.5 0 0 0-.5-.5z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.p3iqqrbav {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M7.5 1a.5.5 0 0 0-.447.277l-1.926 3.85l-3.85 1.926a.5.5 0 0 0 0 .894l3.85 1.926l1.926 3.85a.5.5 0 0 0 .894 0l1.926-3.85l3.85-1.926a.5.5 0 0 0 0-.894l-3.85-1.926l-1.926-3.85A.5.5 0 0 0 7.5 1m0 1.617v4.176L6.107 5.4zM6.793 7.5L5.4 8.893L2.617 7.5zM9.6 6.107L12.383 7.5H8.207zm-2.1 2.1L8.893 9.6L7.5 12.383z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.w2au1nh_q {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M12 3.5a.5.5 0 0 0-.429.243l-1.5 2.5a.5.5 0 0 0-.048.108l-.96 2.879l-.698.698l-1.01-.337L5.95 6.783a.4.4 0 0 0-.034-.06l-1-1.5a.5.5 0 0 0-.769-.077l-.711.711l-1.159-.773a.5.5 0 0 0-.764.304l-.496 1.981A.5.5 0 0 0 1 7.5v5a.5.5 0 0 0 .499.5H14.5a.5.5 0 0 0 .5-.5V6.501a.5.5 0 0 0-.084-.278l-1-1.5a.5.5 0 0 0-.139-.139l-1.5-1A.5.5 0 0 0 12 3.5");
|
|
4
|
+
}
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "roentgen",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Röntgen",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 562,
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Sergey Vartanov",
|
|
8
8
|
"url": "https://github.com/enzet/Roentgen"
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
],
|
|
29
29
|
"palette": false
|
|
30
30
|
},
|
|
31
|
-
"lastModified":
|
|
31
|
+
"lastModified": 1779346539
|
|
32
32
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-vue/roentgen",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.20",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/roentgen/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "CC-BY-4.0",
|
|
@@ -118,6 +118,10 @@
|
|
|
118
118
|
"types": "./types/dd0bq22g.d.ts",
|
|
119
119
|
"default": "./components/b/baptist.vue"
|
|
120
120
|
},
|
|
121
|
+
"./barrier-jersey": {
|
|
122
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
123
|
+
"default": "./components/b/barrier-jersey.vue"
|
|
124
|
+
},
|
|
121
125
|
"./bbq": {
|
|
122
126
|
"types": "./types/dd0bq22g.d.ts",
|
|
123
127
|
"default": "./components/b/bbq.vue"
|
|
@@ -330,6 +334,10 @@
|
|
|
330
334
|
"types": "./types/dd0bq22g.d.ts",
|
|
331
335
|
"default": "./components/b/bus.vue"
|
|
332
336
|
},
|
|
337
|
+
"./bus-over-bus-trap": {
|
|
338
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
339
|
+
"default": "./components/b/bus-over-bus-trap.vue"
|
|
340
|
+
},
|
|
333
341
|
"./bus-stop": {
|
|
334
342
|
"types": "./types/dd0bq22g.d.ts",
|
|
335
343
|
"default": "./components/b/bus-stop.vue"
|
|
@@ -526,6 +534,14 @@
|
|
|
526
534
|
"types": "./types/dd0bq22g.d.ts",
|
|
527
535
|
"default": "./components/c/comb-and-scissors.vue"
|
|
528
536
|
},
|
|
537
|
+
"./compass": {
|
|
538
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
539
|
+
"default": "./components/c/compass.vue"
|
|
540
|
+
},
|
|
541
|
+
"./compass-rose": {
|
|
542
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
543
|
+
"default": "./components/c/compass-rose.vue"
|
|
544
|
+
},
|
|
529
545
|
"./connector-chademo": {
|
|
530
546
|
"types": "./types/dd0bq22g.d.ts",
|
|
531
547
|
"default": "./components/c/connector-chademo.vue"
|
package/css/m/mfuc_wblv.css
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
.mfuc_wblv {
|
|
2
|
-
fill: currentColor;
|
|
3
|
-
d: path("M4 3c-.554 0-1 .446-1 1v8c0 .554.446 1 1 1v.666c0 .185.15.334.334.334h.332c.185 0 .334-.15.334-.334V13h6v.666c0 .185.15.334.334.334h.332c.185 0 .334-.15.334-.334V13c.554 0 1-.446 1-1V4c0-.554-.446-1-1-1zm.75 1h6.5c.415 0 .75.335.75.75V8.5c0 .831-.669 1.5-1.5 1.5h-5C4.669 10 4 9.331 4 8.5V4.75c0-.415.335-.75.75-.75m-.275 7H5.5a.499.499 0 1 1 0 1h-1a.5.5 0 0 1-.025-1m6 0H11.5a.499.499 0 1 1 0 1h-1a.5.5 0 0 1-.025-1");
|
|
4
|
-
}
|
package/css/m/mlc8j-iny.css
DELETED
package/css/q/q8mll307b.css
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
.q8mll307b {
|
|
2
|
-
fill: currentColor;
|
|
3
|
-
d: path("M6.647 1.147L4.792 3H4c-.554 0-1 .446-1 1v8c0 .554.446 1 1 1v.5a.499.499 0 1 0 1 0V13h6v.5a.499.499 0 1 0 1 0V13c.554 0 1-.446 1-1V4c0-.554-.446-1-1-1h-1.793l1.146-1.146a.5.5 0 0 0-.707-.707L8.794 3H6.207l1.147-1.146a.5.5 0 0 0-.708-.707M5 4h6c.554 0 1 .446 1 1v3.5c0 .831-.669 1.5-1.5 1.5h-5C4.669 10 4 9.331 4 8.5V5c0-.554.446-1 1-1m-.5 7h1a.499.499 0 1 1 0 1h-1a.499.499 0 1 1 0-1m6 0h1a.499.499 0 1 1 0 1h-1a.499.499 0 1 1 0-1");
|
|
4
|
-
}
|