@iconify-vue/roentgen 1.0.12 → 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.
Files changed (36) hide show
  1. package/components/c/circle-with-dot.vue +10 -0
  2. package/components/m/millstone-with-furrows.vue +10 -0
  3. package/components/p/person-bungee-jumping.vue +10 -0
  4. package/components/p/person-throwing-spear.vue +10 -0
  5. package/components/s/spray-can-spraying.vue +10 -0
  6. package/components/s/spray-can.vue +10 -0
  7. package/components/s/spring.vue +2 -2
  8. package/components/v/vending-angle.vue +2 -2
  9. package/components/v/vending-bottle-upside-down.vue +2 -2
  10. package/components/v/vending-bottle.vue +2 -2
  11. package/components/v/vending-candles.vue +2 -2
  12. package/components/v/vending-chemist.vue +2 -2
  13. package/components/v/vending-drop.vue +2 -2
  14. package/components/v/vending-machine.vue +2 -2
  15. package/components/v/vending-p.vue +2 -2
  16. package/components/v/vending-pizza.vue +10 -0
  17. package/css/{e/egzaaqpd.css → a/a4iysw_y.css} +2 -2
  18. package/css/{d/d_qh5nyg.css → b/b4ysgrds.css} +2 -2
  19. package/css/d/dr-49bbp.css +4 -0
  20. package/css/e/e2qzlccx.css +4 -0
  21. package/css/e/e56w4s-k.css +4 -0
  22. package/css/{q/q6wn1jbi.css → g/g4u7ewbm.css} +2 -2
  23. package/css/i/{icg0lace.css → i9skjwbm.css} +2 -2
  24. package/css/i/ifefxwzx.css +4 -0
  25. package/css/{x/xt5iqybv.css → j/jz12-ibz.css} +2 -2
  26. package/css/k/kqd95lbv.css +4 -0
  27. package/css/{s/svbnfm_n.css → o/ofavgcbx.css} +2 -2
  28. package/css/r/rthele0l.css +4 -0
  29. package/css/r/ruvbg84d.css +4 -0
  30. package/css/t/tv125nxx.css +4 -0
  31. package/css/{o/opv4msbx.css → u/ujncjacj.css} +2 -2
  32. package/css/x/xra29bc.css +4 -0
  33. package/iconify.json +2 -2
  34. package/package.json +29 -1
  35. package/css/l/lq9472by.css +0 -4
  36. package/css/u/u3f5h_bh.css +0 -4
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/x/xra29bc.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":16,"height":16};
8
+ const content = `<path class="xra29bc"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:circle-with-dot" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/d/dr-49bbp.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":16,"height":16};
8
+ const content = `<path class="dr-49bbp"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:millstone-with-furrows" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/t/tv125nxx.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":16,"height":16};
8
+ const content = `<path class="tv125nxx"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:person-bungee-jumping" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/r/rthele0l.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":16,"height":16};
8
+ const content = `<path class="rthele0l"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:person-throwing-spear" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/k/kqd95lbv.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":16,"height":16};
8
+ const content = `<path class="kqd95lbv"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:spray-can-spraying" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/e/e56w4s-k.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":16,"height":16};
8
+ const content = `<path class="e56w4s-k"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:spray-can" /></template>
@@ -1,10 +1,10 @@
1
1
  <script setup>
2
2
  import { Icon } from '@iconify/css-vue';
3
- import '../../css/u/u3f5h_bh.css';
3
+ import '../../css/i/ifefxwzx.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="u3f5h_bh"/>`;
8
+ const content = `<path class="ifefxwzx"/>`;
9
9
  </script>
10
10
  <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:spring" /></template>
@@ -1,10 +1,10 @@
1
1
  <script setup>
2
2
  import { Icon } from '@iconify/css-vue';
3
- import '../../css/o/opv4msbx.css';
3
+ import '../../css/u/ujncjacj.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="opv4msbx"/>`;
8
+ const content = `<path class="ujncjacj"/>`;
9
9
  </script>
10
10
  <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:vending-angle" /></template>
@@ -1,10 +1,10 @@
1
1
  <script setup>
2
2
  import { Icon } from '@iconify/css-vue';
3
- import '../../css/d/d_qh5nyg.css';
3
+ import '../../css/b/b4ysgrds.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="d_qh5nyg"/>`;
8
+ const content = `<path class="b4ysgrds"/>`;
9
9
  </script>
10
10
  <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:vending-bottle-upside-down" /></template>
@@ -1,10 +1,10 @@
1
1
  <script setup>
2
2
  import { Icon } from '@iconify/css-vue';
3
- import '../../css/e/egzaaqpd.css';
3
+ import '../../css/a/a4iysw_y.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="egzaaqpd"/>`;
8
+ const content = `<path class="a4iysw_y"/>`;
9
9
  </script>
10
10
  <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:vending-bottle" /></template>
@@ -1,10 +1,10 @@
1
1
  <script setup>
2
2
  import { Icon } from '@iconify/css-vue';
3
- import '../../css/x/xt5iqybv.css';
3
+ import '../../css/j/jz12-ibz.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="xt5iqybv"/>`;
8
+ const content = `<path class="jz12-ibz"/>`;
9
9
  </script>
10
10
  <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:vending-candles" /></template>
@@ -1,10 +1,10 @@
1
1
  <script setup>
2
2
  import { Icon } from '@iconify/css-vue';
3
- import '../../css/l/lq9472by.css';
3
+ import '../../css/r/ruvbg84d.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="lq9472by"/>`;
8
+ const content = `<path class="ruvbg84d"/>`;
9
9
  </script>
10
10
  <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:vending-chemist" /></template>
@@ -1,10 +1,10 @@
1
1
  <script setup>
2
2
  import { Icon } from '@iconify/css-vue';
3
- import '../../css/s/svbnfm_n.css';
3
+ import '../../css/o/ofavgcbx.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="svbnfm_n"/>`;
8
+ const content = `<path class="ofavgcbx"/>`;
9
9
  </script>
10
10
  <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:vending-drop" /></template>
@@ -1,10 +1,10 @@
1
1
  <script setup>
2
2
  import { Icon } from '@iconify/css-vue';
3
- import '../../css/i/icg0lace.css';
3
+ import '../../css/i/i9skjwbm.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="icg0lace"/>`;
8
+ const content = `<path class="i9skjwbm"/>`;
9
9
  </script>
10
10
  <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:vending-machine" /></template>
@@ -1,10 +1,10 @@
1
1
  <script setup>
2
2
  import { Icon } from '@iconify/css-vue';
3
- import '../../css/q/q6wn1jbi.css';
3
+ import '../../css/g/g4u7ewbm.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="q6wn1jbi"/>`;
8
+ const content = `<path class="g4u7ewbm"/>`;
9
9
  </script>
10
10
  <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:vending-p" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/e/e2qzlccx.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":16,"height":16};
8
+ const content = `<path class="e2qzlccx"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="roentgen:vending-pizza" /></template>
@@ -1,4 +1,4 @@
1
- .egzaaqpd {
1
+ .a4iysw_y {
2
2
  fill: currentColor;
3
- d: path("M3.5 1c-.277 0-.5.223-.5.5v13c0 .277.223.5.5.5h9c.277 0 .5-.223.5-.5v-13c0-.277-.223-.5-.5-.5zm1 2h5c.277 0 .5.223.5.5v8c0 .277-.223.5-.5.5h-5a.5.5 0 0 1-.5-.5v-8c0-.277.223-.5.5-.5m7 0c.277 0 .5.223.5.5v1a.499.499 0 1 1-1 0v-1c0-.277.223-.5.5-.5M6 4.5v1c0 1-1 1-1 2v3a.5.5 45 0 0 .5.5h2a.5.5 135 0 0 .5-.5v-3c0-1-1-1-1-2v-1a.5.5 45 0 0-.5-.5a.5.5 135 0 0-.5.5");
3
+ d: path("M3.5 1c-.277 0-.5.223-.5.5v13c0 .277.223.5.5.5h9c.277 0 .5-.223.5-.5v-13c0-.277-.223-.5-.5-.5zm1 2h5c.277 0 .5.223.5.5v8c0 .277-.223.5-.5.5h-5a.5.5 0 0 1-.5-.5v-8c0-.277.223-.5.5-.5m7 0c.277 0 .5.223.5.5v1a.499.499 0 1 1-1 0v-1c0-.277.223-.5.5-.5m-5 1a.5.5 0 0 0-.5.5v1c0 1-1 1-1 2v3a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-3c0-1-1-1-1-2v-1a.5.5 0 0 0-.5-.5m5 2a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.5a.5.5 0 0 1-.5-.5a.5.5 0 0 1 .5-.5m0 2a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.5a.5.5 0 0 1-.5-.5a.5.5 0 0 1 .5-.5");
4
4
  }
@@ -1,4 +1,4 @@
1
- .d_qh5nyg {
1
+ .b4ysgrds {
2
2
  fill: currentColor;
3
- d: path("M3.5 1c-.277 0-.5.223-.5.5v13c0 .277.223.5.5.5h9c.277 0 .5-.223.5-.5v-13c0-.277-.223-.5-.5-.5zm1 2h5c.277 0 .5.223.5.5v8c0 .277-.223.5-.5.5h-5a.5.5 0 0 1-.5-.5v-8c0-.277.223-.5.5-.5m7 0c.277 0 .5.223.5.5v1a.499.499 0 1 1-1 0v-1c0-.277.223-.5.5-.5M7 10.5v-1c0-1 1-1 1-2v-3a.5.5 45 0 0-.5-.5h-2a.5.5 135 0 0-.5.5v3c0 1 1 1 1 2v1a.5.5 45 0 0 .5.5a.5.5 135 0 0 .5-.5");
3
+ d: path("M3.5 1c-.277 0-.5.223-.5.5v13c0 .277.223.5.5.5h9c.277 0 .5-.223.5-.5v-13c0-.277-.223-.5-.5-.5zm1 2h5c.277 0 .5.223.5.5v8c0 .277-.223.5-.5.5h-5a.5.5 0 0 1-.5-.5v-8c0-.277.223-.5.5-.5m7 0c.277 0 .5.223.5.5v1a.499.499 0 1 1-1 0v-1c0-.277.223-.5.5-.5m-6 1a.5.5 0 0 0-.5.5v3c0 1 1 1 1 2v1a.5.5 0 0 0 .5.5a.5.5 0 0 0 .5-.5v-1c0-1 1-1 1-2v-3a.5.5 0 0 0-.5-.5zm6 2a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.5a.5.5 0 0 1-.5-.5a.5.5 0 0 1 .5-.5m0 2a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.5a.5.5 0 0 1-.5-.5a.5.5 0 0 1 .5-.5");
4
4
  }
@@ -0,0 +1,4 @@
1
+ .dr-49bbp {
2
+ fill: currentColor;
3
+ d: path("M8 2C4.692 2 2 4.692 2 8s2.692 6 6 6s6-2.692 6-6s-2.692-6-6-6m0 1a.5.5 0 0 1 .354.147C8.69 3.483 9 3.92 9 4.5s-.31 1.017-.646 1.354a.5.5 0 0 1-.707 0a.5.5 0 0 1 0-.708C7.935 4.858 8 4.796 8 4.5s-.065-.358-.354-.647a.5.5 0 0 1 0-.707A.5.5 0 0 1 8 3M4.818 4.318c.476 0 1.004.09 1.414.5s.5.94.5 1.414a.5.5 0 0 1-.5.5a.5.5 0 0 1-.5-.5c0-.408.002-.498-.207-.707c-.208-.208-.298-.207-.707-.207a.5.5 0 0 1-.5-.5a.5.5 0 0 1 .5-.5m6.364 0a.5.5 0 0 1 .5.5c0 .476-.09 1.004-.5 1.414s-.94.5-1.414.5a.5.5 0 0 1-.5-.5a.5.5 0 0 1 .5-.5c.408 0 .498.002.707-.207c.208-.208.207-.298.207-.707a.5.5 0 0 1 .5-.5M4.5 7c.58 0 1.017.31 1.354.646a.5.5 0 0 1 0 .708a.5.5 0 0 1-.708 0C4.858 8.064 4.796 8 4.5 8s-.358.065-.647.354a.5.5 0 0 1-.707 0a.5.5 0 0 1 0-.707C3.484 7.31 3.92 7 4.5 7M8 7c.558 0 1 .442 1 1s-.442 1-1 1s-1-.442-1-1s.442-1 1-1m2.5.5a.5.5 0 0 1 .354.146c.289.29.351.354.646.354s.358-.065.646-.354A.5.5 0 0 1 12.5 7.5a.5.5 0 0 1 .354.146a.5.5 0 0 1 0 .708C12.518 8.69 12.08 9 11.5 9s-1.017-.31-1.354-.646a.5.5 0 0 1 0-.707a.5.5 0 0 1 .354-.147M6.232 9.268a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.5c-.408 0-.498-.002-.707.207c-.208.208-.207.298-.207.707a.5.5 0 0 1-.5.5a.5.5 0 0 1-.5-.5c0-.476.09-1.004.5-1.414s.94-.5 1.414-.5m3.536 0a.5.5 0 0 1 .5.5c0 .408-.002.498.207.707c.208.208.298.207.707.207a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.5c-.476 0-1.004-.09-1.414-.5s-.5-.94-.5-1.414a.5.5 0 0 1 .5-.5M8 10a.5.5 0 0 1 .354.146a.5.5 0 0 1 0 .707c-.29.29-.354.352-.354.647s.065.358.354.646a.5.5 0 0 1 0 .707a.5.5 0 0 1-.707 0C7.31 12.519 7 12.08 7 11.5s.31-1.017.646-1.354A.5.5 0 0 1 8 10");
4
+ }
@@ -0,0 +1,4 @@
1
+ .e2qzlccx {
2
+ fill: currentColor;
3
+ d: path("M1.5 1c-.277 0-.5.223-.5.5v13c0 .277.223.5.5.5h12c.277 0 .5-.223.5-.5v-13c0-.277-.223-.5-.5-.5zm1 2h8c.277 0 .5.223.5.5v9c0 .277-.223.5-.5.5h-8a.5.5 0 0 1-.5-.5v-9c0-.277.223-.5.5-.5m10 0c.277 0 .5.223.5.5v1a.499.499 0 1 1-1 0v-1c0-.277.223-.5.5-.5M6 4a3 3 0 0 0-1.5.4a3.003 3.003 0 0 0 .9 5.54a.5.5 0 0 0 .6-.49V7.001l2.121 1.223a.5.5 0 0 0 .725-.276A3.002 3.002 0 0 0 6 4m6.5 2a.5.5 0 1 1 0 1a.5.5 0 0 1 0-1m0 2a.5.5 0 1 1 0 1a.5.5 0 0 1 0-1m-5 1a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 .5.5c.892 0 1.72-.477 2.166-1.25a.5.5 0 0 0-.184-.684l-1.732-1A.5.5 0 0 0 7.5 9m5 1a.5.5 0 1 1 0 1a.5.5 0 0 1 0-1");
4
+ }
@@ -0,0 +1,4 @@
1
+ .e56w4s-k {
2
+ fill: currentColor;
3
+ d: path("M7.5 1a.5.5 0 0 0-.5.5V3h-.5a.5.5 0 0 0-.484.379L5.859 4h4.282l-.157-.621A.5.5 0 0 0 9.5 3H9V1.5a.5.5 0 0 0-.5-.5zM5 5a.5.5 0 0 0 0 1v8a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1V6a.5.5 0 0 0 0-1zm1.5 2.5A.5.5 0 0 1 7 8v4.5a.5.5 0 0 1-.5.5a.5.5 0 0 1-.5-.5V8a.5.5 0 0 1 .5-.5");
4
+ }
@@ -1,4 +1,4 @@
1
- .q6wn1jbi {
1
+ .g4u7ewbm {
2
2
  fill: currentColor;
3
- d: path("M3.5 1c-.277 0-.5.223-.5.5v13c0 .277.223.5.5.5h9c.277 0 .5-.223.5-.5v-13c0-.277-.223-.5-.5-.5zm1 2h5c.277 0 .5.223.5.5v8c0 .277-.223.5-.5.5h-5a.5.5 0 0 1-.5-.5v-8c0-.277.223-.5.5-.5m7 0c.277 0 .5.223.5.5v1a.499.499 0 1 1-1 0v-1c0-.277.223-.5.5-.5m-6 2c-.277 0-.5.223-.5.5v4a.499.499 0 1 0 1 0V8h1.5l.07-.006A1.5 1.5 0 0 0 9 6.5a1.5 1.5 0 0 0-1.43-1.494L7.5 5zM6 6h1.5a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.5H6z");
3
+ d: path("M3.5 1c-.277 0-.5.223-.5.5v13c0 .277.223.5.5.5h9c.277 0 .5-.223.5-.5v-13c0-.277-.223-.5-.5-.5zm1 2h5c.277 0 .5.223.5.5v8c0 .277-.223.5-.5.5h-5a.5.5 0 0 1-.5-.5v-8c0-.277.223-.5.5-.5m7 0c.277 0 .5.223.5.5v1a.499.499 0 1 1-1 0v-1c0-.277.223-.5.5-.5m-6 2c-.277 0-.5.223-.5.5v4a.499.499 0 1 0 1 0V8h1.5l.07-.006A1.5 1.5 0 0 0 9 6.5a1.5 1.5 0 0 0-1.43-1.494L7.5 5zM6 6h1.5a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.5H6zm5.5 0a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.5a.5.5 0 0 1-.5-.5a.5.5 0 0 1 .5-.5m0 2a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.5a.5.5 0 0 1-.5-.5a.5.5 0 0 1 .5-.5");
4
4
  }
@@ -1,4 +1,4 @@
1
- .icg0lace {
1
+ .i9skjwbm {
2
2
  fill: currentColor;
3
- d: path("M3.5 1c-.277 0-.5.223-.5.5v13c0 .277.223.5.5.5h9c.277 0 .5-.223.5-.5v-13c0-.277-.223-.5-.5-.5zm1 2h5c.277 0 .5.223.5.5v8c0 .277-.223.5-.5.5h-5a.5.5 0 0 1-.5-.5v-8c0-.277.223-.5.5-.5m7 0c.277 0 .5.223.5.5v1a.499.499 0 1 1-1 0v-1c0-.277.223-.5.5-.5m-6 2c-.277 0-.5.223-.5.5v1a.499.499 0 1 0 1 0v-1c0-.277-.223-.5-.5-.5m2 0c-.277 0-.5.223-.5.5v1a.499.499 0 1 0 1 0v-1c0-.277-.223-.5-.5-.5m-2 3c-.277 0-.5.223-.5.5v1a.499.499 0 1 0 1 0v-1c0-.277-.223-.5-.5-.5m2 0c-.277 0-.5.223-.5.5v1a.499.499 0 1 0 1 0v-1c0-.277-.223-.5-.5-.5");
3
+ d: path("M3.5 1c-.277 0-.5.223-.5.5v13c0 .277.223.5.5.5h9c.277 0 .5-.223.5-.5v-13c0-.277-.223-.5-.5-.5zm1 2h5c.277 0 .5.223.5.5v8c0 .277-.223.5-.5.5h-5a.5.5 0 0 1-.5-.5v-8c0-.277.223-.5.5-.5m7 0c.277 0 .5.223.5.5v1a.499.499 0 1 1-1 0v-1c0-.277.223-.5.5-.5m-6 2c-.277 0-.5.223-.5.5v1a.499.499 0 1 0 1 0v-1c0-.277-.223-.5-.5-.5m2 0c-.277 0-.5.223-.5.5v1a.499.499 0 1 0 1 0v-1c0-.277-.223-.5-.5-.5m4 1a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.5a.5.5 0 0 1-.5-.5a.5.5 0 0 1 .5-.5m-6 2c-.277 0-.5.223-.5.5v1a.499.499 0 1 0 1 0v-1c0-.277-.223-.5-.5-.5m2 0c-.277 0-.5.223-.5.5v1a.499.499 0 1 0 1 0v-1c0-.277-.223-.5-.5-.5m4 0a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.5a.5.5 0 0 1-.5-.5a.5.5 0 0 1 .5-.5");
4
4
  }
@@ -0,0 +1,4 @@
1
+ .ifefxwzx {
2
+ fill: currentColor;
3
+ d: path("M5 2a4.007 4.007 0 0 0-3.98 3.63q-.01.11-.012.22l-.004.086L1 6v1a.5.5 0 0 0 .5.5A.5.5 0 0 0 2 7V6q.002-.13.014-.256A2.49 2.49 0 0 1 4.5 3.5C5.887 3.5 7 4.613 7 6v1.672A3 3 0 0 0 6 7.5a3.007 3.007 0 0 0-2.996 2.883l-.002.03v.011L3 10.451V11a.5.5 0 0 0 .5.5a.5.5 0 0 0 .5-.5v-.5q.001-.078.008-.154C4.084 9.586 4.718 9 5.5 9c.834 0 1.5.666 1.5 1.5v4a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-4c0-.834.666-1.5 1.5-1.5s1.5.666 1.5 1.5v.5a.5.5 0 0 0 .5.5a.5.5 0 0 0 .5-.5v-.549l-.002-.03v-.01l-.002-.028A3.007 3.007 0 0 0 10 7.5c-.35 0-.687.06-1 .172V6c0-1.387 1.113-2.5 2.5-2.5S14 4.613 14 6v1a.5.5 0 0 0 .5.5a.5.5 0 0 0 .5-.5V6l-.004-.064A4.007 4.007 0 0 0 11 2a4 4 0 0 0-3 1.358A4 4 0 0 0 5 2");
4
+ }
@@ -1,4 +1,4 @@
1
- .xt5iqybv {
1
+ .jz12-ibz {
2
2
  fill: currentColor;
3
- d: path("M3.5 1c-.277 0-.5.223-.5.5v13c0 .277.223.5.5.5h9c.277 0 .5-.223.5-.5v-13c0-.277-.223-.5-.5-.5zm1 2h5c.277 0 .5.223.5.5v8c0 .277-.223.5-.5.5h-5a.5.5 0 0 1-.5-.5v-8c0-.277.223-.5.5-.5m7 0c.277 0 .5.223.5.5v1a.499.499 0 1 1-1 0v-1c0-.277.223-.5.5-.5M7 4.5a.5.5 0 0 0-.434.25l-.431.75c-.241.417-.147.956.222 1.266c.37.31.916.31 1.286 0c.369-.31.463-.849.222-1.266l-.431-.75A.5.5 0 0 0 7 4.5M6.5 8c-.277 0-.5.223-.5.5v2c0 .277.223.5.5.5h1c.277 0 .5-.223.5-.5v-2c0-.277-.223-.5-.5-.5z");
3
+ d: path("M3.5 1c-.277 0-.5.223-.5.5v13c0 .277.223.5.5.5h9c.277 0 .5-.223.5-.5v-13c0-.277-.223-.5-.5-.5zm1 2h5c.277 0 .5.223.5.5v8c0 .277-.223.5-.5.5h-5a.5.5 0 0 1-.5-.5v-8c0-.277.223-.5.5-.5m7 0c.277 0 .5.223.5.5v1a.499.499 0 1 1-1 0v-1c0-.277.223-.5.5-.5M7 4.5a.5.5 0 0 0-.434.25l-.431.75c-.241.417-.147.956.222 1.266c.37.31.916.31 1.286 0c.369-.31.463-.849.222-1.266l-.431-.75A.5.5 0 0 0 7 4.5M11.5 6a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.5a.5.5 0 0 1-.5-.5a.5.5 0 0 1 .5-.5m-5 2c-.277 0-.5.223-.5.5v2c0 .277.223.5.5.5h1c.277 0 .5-.223.5-.5v-2c0-.277-.223-.5-.5-.5zm5 0a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.5a.5.5 0 0 1-.5-.5a.5.5 0 0 1 .5-.5");
4
4
  }
@@ -0,0 +1,4 @@
1
+ .kqd95lbv {
2
+ fill: currentColor;
3
+ d: path("M12.527 1a.5.5 0 0 0-.203.031l-4 1.5a.5.5 0 0 0 0 .938l4 1.5A.5.5 0 0 0 13 4.5v-3a.5.5 0 0 0-.473-.5M5.5 2a.5.5 0 0 0-.5.5V4h-.5a.5.5 0 0 0-.484.379L3.859 5h4.282l-.157-.621A.5.5 0 0 0 7.5 4H7V2.5a.5.5 0 0 0-.5-.5zM3 6a.5.5 0 0 0 0 1v7a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1V7a.5.5 0 0 0 0-1zm1.5 2a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-1 0v-4a.5.5 0 0 1 .5-.5");
4
+ }
@@ -1,4 +1,4 @@
1
- .svbnfm_n {
1
+ .ofavgcbx {
2
2
  fill: currentColor;
3
- d: path("M3.5 1c-.277 0-.5.223-.5.5v13c0 .277.223.5.5.5h9c.277 0 .5-.223.5-.5v-13c0-.277-.223-.5-.5-.5zm1 2h5c.277 0 .5.223.5.5v8c0 .277-.223.5-.5.5h-5a.5.5 0 0 1-.5-.5v-8c0-.277.223-.5.5-.5m7 0c.277 0 .5.223.5.5v1a.499.499 0 1 1-1 0v-1c0-.277.223-.5.5-.5M7 5a.5.5 0 0 0-.484.379c-.231.924-.542 1.323-.86 1.768C5.34 7.59 5 8.139 5 9c0 .583.154 1.11.521 1.479c.368.367.896.521 1.479.521s1.11-.154 1.479-.521C8.846 10.11 9 9.583 9 9c0-.861-.338-1.409-.656-1.854c-.318-.444-.629-.843-.86-1.767A.5.5 0 0 0 7 5");
3
+ d: path("M3.5 1c-.277 0-.5.223-.5.5v13c0 .277.223.5.5.5h9c.277 0 .5-.223.5-.5v-13c0-.277-.223-.5-.5-.5zm1 2h5c.277 0 .5.223.5.5v8c0 .277-.223.5-.5.5h-5a.5.5 0 0 1-.5-.5v-8c0-.277.223-.5.5-.5m7 0c.277 0 .5.223.5.5v1a.499.499 0 1 1-1 0v-1c0-.277.223-.5.5-.5M7 5a.5.5 0 0 0-.484.379c-.231.924-.542 1.323-.86 1.768C5.34 7.59 5 8.139 5 9c0 .583.154 1.11.521 1.479c.368.367.896.521 1.479.521s1.11-.154 1.479-.521C8.846 10.11 9 9.583 9 9c0-.861-.338-1.409-.656-1.854c-.318-.444-.629-.843-.86-1.767A.5.5 0 0 0 7 5m4.5 1a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.5a.5.5 0 0 1-.5-.5a.5.5 0 0 1 .5-.5m0 2a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.5a.5.5 0 0 1-.5-.5a.5.5 0 0 1 .5-.5");
4
4
  }
@@ -0,0 +1,4 @@
1
+ .rthele0l {
2
+ fill: currentColor;
3
+ d: path("M5.514 1a.5.5 0 0 0-.47.297l-4.001 9a.5.5 0 1 0 .914.406L3.84 6.467l1.248 1.816a.5.5 0 0 0 .732.102L7.648 6.86L9.51 9.188l-.008 2.529l-2.26 1.353a.5.5 0 0 0 .516.86l2.5-1.5a.5.5 0 0 0 .242-.428l.008-2.502h.242l1.3 1.734l.975 2.924a.5.5 0 1 0 .95-.316l-1-3a.5.5 0 0 0-.075-.143l-1.486-1.982l-1.807-3.162l3.596-1.598a.5.5 0 1 0-.406-.914l-4.5 2a.5.5 0 0 0-.117.072l-2.578 2.15l-1.286-1.87l1.641-3.69A.5.5 0 0 0 5.514 1M7 3.5c-.554 0-1 .446-1 1s.446 1 1 1s1-.446 1-1s-.446-1-1-1");
4
+ }
@@ -0,0 +1,4 @@
1
+ .ruvbg84d {
2
+ fill: currentColor;
3
+ d: path("M3.5 1c-.277 0-.5.223-.5.5v13c0 .277.223.5.5.5h9c.277 0 .5-.223.5-.5v-13c0-.277-.223-.5-.5-.5zm1 2h5c.277 0 .5.223.5.5v8c0 .277-.223.5-.5.5h-5a.5.5 0 0 1-.5-.5v-8c0-.277.223-.5.5-.5m7 0c.277 0 .5.223.5.5v1a.499.499 0 1 1-1 0v-1c0-.277.223-.5.5-.5m-5 2a.5.5 0 0 0-.5.5V6h-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5H6v.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5V8h.5a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5H8v-.5a.5.5 0 0 0-.5-.5zm5 1a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.5a.5.5 0 0 1-.5-.5a.5.5 0 0 1 .5-.5m0 2a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.5a.5.5 0 0 1-.5-.5a.5.5 0 0 1 .5-.5");
4
+ }
@@ -0,0 +1,4 @@
1
+ .tv125nxx {
2
+ fill: currentColor;
3
+ d: path("M1.5 1a.5.5 0 0 0-.5.5c0 1.611.553 2.723 1.053 3.723S3 7.11 3 8.5a.5.5 0 0 0 1 0c0-1.611-.553-2.723-1.053-3.723S2 2.89 2 1.5a.5.5 0 0 0-.5-.5m8.732 3a.5.5 0 0 0-.49.361l-.723 2.5a.5.5 0 0 0 .016.325l.582 1.457l-3.225 1.843l-1.982-.218l-2.168-1.206a.5.5 0 0 0-.484.876l2.254 1.253a.5.5 0 0 0 .187.06l1.975.216l.086.172l-1.713.341l-2.361-.945a.5.5 0 1 0-.372.93l2.5 1a.5.5 0 0 0 .284.025l2.466-.494l.034-.006l.011-.004a.5.5 0 0 0 .088-.027l.016-.006l.006-.004l3.478-1.49l.07-.038l.803 1.336a.5.5 0 0 0 .245.207l2.5 1a.5.5 0 1 0 .37-.93l-2.343-.937l-1.393-2.32l-.922-2.303l.676-2.336a.5.5 0 0 0-.47-.639zM12.5 8a1 1 0 1 0 0 2a1 1 0 0 0 0-2");
4
+ }
@@ -1,4 +1,4 @@
1
- .opv4msbx {
1
+ .ujncjacj {
2
2
  fill: currentColor;
3
- d: path("M3.5 1c-.277 0-.5.223-.5.5v13c0 .277.223.5.5.5h9c.277 0 .5-.223.5-.5v-13c0-.277-.223-.5-.5-.5zm1 2h5c.277 0 .5.223.5.5v8c0 .277-.223.5-.5.5h-5a.5.5 0 0 1-.5-.5v-8c0-.277.223-.5.5-.5m7 0c.277 0 .5.223.5.5v1a.499.499 0 1 1-1 0v-1c0-.277.223-.5.5-.5m-6 1a.5.5 0 0 0-.5.5V9a2.002 2.002 0 0 0 3 1.732A2 2 0 0 0 9 9V6.5a.5.5 0 0 0-1 0c0 .833-.354 1.146-.854 1.646a.5.5 0 0 0 0 .707a.5.5 0 0 0 .708 0c.048-.047.096-.126.146-.177V9a.998.998 0 1 1-2 0V4.5a.5.5 0 0 0-.5-.5");
3
+ d: path("M3.5 1c-.277 0-.5.223-.5.5v13c0 .277.223.5.5.5h9c.277 0 .5-.223.5-.5v-13c0-.277-.223-.5-.5-.5zm1 2h5c.277 0 .5.223.5.5v8c0 .277-.223.5-.5.5h-5a.5.5 0 0 1-.5-.5v-8c0-.277.223-.5.5-.5m7 0c.277 0 .5.223.5.5v1a.499.499 0 1 1-1 0v-1c0-.277.223-.5.5-.5m-6 1a.5.5 0 0 0-.5.5V9a2.002 2.002 0 0 0 3 1.732A2 2 0 0 0 9 9V6.5a.5.5 0 0 0-1 0c0 .833-.354 1.146-.854 1.646a.5.5 0 0 0 0 .707a.5.5 0 0 0 .708 0c.048-.047.096-.126.146-.177V9a.998.998 0 1 1-2 0V4.5a.5.5 0 0 0-.5-.5m6 2a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.5a.5.5 0 0 1-.5-.5a.5.5 0 0 1 .5-.5m0 2a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.5a.5.5 0 0 1-.5-.5a.5.5 0 0 1 .5-.5");
4
4
  }
@@ -0,0 +1,4 @@
1
+ .xra29bc {
2
+ fill: currentColor;
3
+ d: path("M8 2C4.692 2 2 4.692 2 8s2.692 6 6 6s6-2.692 6-6s-2.692-6-6-6m0 5c.558 0 1 .442 1 1s-.442 1-1 1s-1-.442-1-1s.442-1 1-1");
4
+ }
package/iconify.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "prefix": "roentgen",
3
3
  "info": {
4
4
  "name": "Röntgen",
5
- "total": 543,
5
+ "total": 550,
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": 1774935366
31
+ "lastModified": 1775538124
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.12",
4
+ "version": "1.0.14",
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",
@@ -462,6 +462,10 @@
462
462
  "types": "./types/dd0bq22g.d.ts",
463
463
  "default": "./components/c/circle-empty.vue"
464
464
  },
465
+ "./circle-with-dot": {
466
+ "types": "./types/dd0bq22g.d.ts",
467
+ "default": "./components/c/circle-with-dot.vue"
468
+ },
465
469
  "./city-gate": {
466
470
  "types": "./types/dd0bq22g.d.ts",
467
471
  "default": "./components/c/city-gate.vue"
@@ -1186,6 +1190,10 @@
1186
1190
  "types": "./types/dd0bq22g.d.ts",
1187
1191
  "default": "./components/m/milestone.vue"
1188
1192
  },
1193
+ "./millstone-with-furrows": {
1194
+ "types": "./types/dd0bq22g.d.ts",
1195
+ "default": "./components/m/millstone-with-furrows.vue"
1196
+ },
1189
1197
  "./minaret": {
1190
1198
  "types": "./types/dd0bq22g.d.ts",
1191
1199
  "default": "./components/m/minaret.vue"
@@ -1326,6 +1334,14 @@
1326
1334
  "types": "./types/dd0bq22g.d.ts",
1327
1335
  "default": "./components/p/pear.vue"
1328
1336
  },
1337
+ "./person-bungee-jumping": {
1338
+ "types": "./types/dd0bq22g.d.ts",
1339
+ "default": "./components/p/person-bungee-jumping.vue"
1340
+ },
1341
+ "./person-throwing-spear": {
1342
+ "types": "./types/dd0bq22g.d.ts",
1343
+ "default": "./components/p/person-throwing-spear.vue"
1344
+ },
1329
1345
  "./phone": {
1330
1346
  "types": "./types/dd0bq22g.d.ts",
1331
1347
  "default": "./components/p/phone.vue"
@@ -1670,6 +1686,14 @@
1670
1686
  "types": "./types/dd0bq22g.d.ts",
1671
1687
  "default": "./components/s/sos-phone.vue"
1672
1688
  },
1689
+ "./spray-can": {
1690
+ "types": "./types/dd0bq22g.d.ts",
1691
+ "default": "./components/s/spray-can.vue"
1692
+ },
1693
+ "./spray-can-spraying": {
1694
+ "types": "./types/dd0bq22g.d.ts",
1695
+ "default": "./components/s/spray-can-spraying.vue"
1696
+ },
1673
1697
  "./spring": {
1674
1698
  "types": "./types/dd0bq22g.d.ts",
1675
1699
  "default": "./components/s/spring.vue"
@@ -2062,6 +2086,10 @@
2062
2086
  "types": "./types/dd0bq22g.d.ts",
2063
2087
  "default": "./components/v/vending-p.vue"
2064
2088
  },
2089
+ "./vending-pizza": {
2090
+ "types": "./types/dd0bq22g.d.ts",
2091
+ "default": "./components/v/vending-pizza.vue"
2092
+ },
2065
2093
  "./vending-tickets": {
2066
2094
  "types": "./types/dd0bq22g.d.ts",
2067
2095
  "default": "./components/v/vending-tickets.vue"
@@ -1,4 +0,0 @@
1
- .lq9472by {
2
- fill: currentColor;
3
- d: path("M3.5 1c-.277 0-.5.223-.5.5v13c0 .277.223.5.5.5h9c.277 0 .5-.223.5-.5v-13c0-.277-.223-.5-.5-.5zm1 2h5c.277 0 .5.223.5.5v8c0 .277-.223.5-.5.5h-5a.5.5 0 0 1-.5-.5v-8c0-.277.223-.5.5-.5m7 0c.277 0 .5.223.5.5v1a.499.499 0 1 1-1 0v-1c0-.277.223-.5.5-.5M6 5.5V6h-.5a.5.5 135 0 0-.5.5v1a.5.5 45 0 0 .5.5H6v.5a.5.5 45 0 0 .5.5h1a.5.5 135 0 0 .5-.5V8h.5a.5.5 135 0 0 .5-.5v-1a.5.5 45 0 0-.5-.5H8v-.5a.5.5 45 0 0-.5-.5h-1a.5.5 135 0 0-.5.5");
4
- }
@@ -1,4 +0,0 @@
1
- .u3f5h_bh {
2
- fill: currentColor;
3
- d: path("M5 4C3.35 4 2 5.35 2 7v.5a.5.5 0 1 0 1 0V7c0-1.11.89-2 2-2s2 .89 2 2v.281A1.97 1.97 0 0 0 6 7c-1.099 0-2 .901-2 2v.5a.5.5 0 1 0 1 0V9c0-.558.442-1 1-1s1 .442 1 1v2.5a.5.5 0 1 0 1 0V9c0-.558.442-1 1-1s1 .442 1 1v.5a.5.5 0 1 0 1 0V9c0-1.099-.901-2-2-2a1.97 1.97 0 0 0-1 .281V7c0-1.11.89-2 2-2s2 .89 2 2v.5a.5.5 0 1 0 1 0V7c0-1.65-1.35-3-3-3a3 3 0 0 0-2.5 1.352A3 3 0 0 0 5 4");
4
- }