@iconify-vue/hugeicons 1.0.9 → 1.0.10

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 (52) hide show
  1. package/components/a/arrow-big-down-dash.vue +10 -0
  2. package/components/a/arrow-big-left-dash.vue +10 -0
  3. package/components/a/arrow-big-right-dash.vue +12 -0
  4. package/components/a/arrow-big-up-dash.vue +10 -0
  5. package/components/a/arrow-down-from-line.vue +10 -0
  6. package/components/a/arrow-down-to-dot.vue +10 -0
  7. package/components/a/arrow-left-from-line.vue +10 -0
  8. package/components/a/arrow-right-from-line.vue +10 -0
  9. package/components/a/arrow-up-from-dot.vue +10 -0
  10. package/components/a/arrow-up-from-line.vue +10 -0
  11. package/components/c/chevrons-down-up.vue +10 -0
  12. package/components/c/circle-arrow-out-up-right.vue +12 -0
  13. package/components/i/iteration-ccw.vue +12 -0
  14. package/components/i/iteration-cw.vue +12 -0
  15. package/components/r/redo-dot.vue +13 -0
  16. package/components/r/refresh-cw-off.vue +12 -0
  17. package/components/r/rotate-ccw-square.vue +12 -0
  18. package/components/r/rotate-cw-square.vue +12 -0
  19. package/components/s/separator-horizontal.vue +10 -0
  20. package/components/t/trending-up-down.vue +12 -0
  21. package/css/a/avtsxt.css +3 -0
  22. package/css/f/f5xovob.css +3 -0
  23. package/css/h/hs4y0db.css +3 -0
  24. package/css/i/imb_7d.css +3 -0
  25. package/css/i/ireet7b.css +3 -0
  26. package/css/j/jlmi6p.css +3 -0
  27. package/css/k/k40_1l.css +3 -0
  28. package/css/l/liwd80b.css +8 -0
  29. package/css/l/lpqaya.css +3 -0
  30. package/css/m/mp6i4r.css +4 -0
  31. package/css/m/mxab3wyn.css +8 -0
  32. package/css/o/ok-qqcb.css +8 -0
  33. package/css/p/p4bfxnb.css +8 -0
  34. package/css/p/p8xszzbj.css +8 -0
  35. package/css/p/phxg6yg.css +8 -0
  36. package/css/p/plbg7n.css +3 -0
  37. package/css/r/r71_fw.css +3 -0
  38. package/css/r/rjr1b2b.css +8 -0
  39. package/css/r/rqrpuybg.css +3 -0
  40. package/css/s/sk778c.css +3 -0
  41. package/css/s/sqzl2ob.css +8 -0
  42. package/css/s/suw67z.css +3 -0
  43. package/css/u/ul0d2pb.css +8 -0
  44. package/css/v/v0escobn.css +8 -0
  45. package/css/v/vevogk.css +3 -0
  46. package/css/v/vico24l.css +8 -0
  47. package/css/w/w-sski.css +3 -0
  48. package/css/w/w-y29rf.css +3 -0
  49. package/css/w/w7s0n2bw.css +3 -0
  50. package/css/z/zqk0kknz.css +3 -0
  51. package/iconify.json +2 -2
  52. package/package.json +81 -1
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/p/p8xszzbj.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="p8xszzbj"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="hugeicons:arrow-big-down-dash" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/m/mxab3wyn.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="mxab3wyn"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="hugeicons:arrow-big-left-dash" /></template>
@@ -0,0 +1,12 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/c/cv0n0om.css';
4
+ import '../../css/z/zqk0kknz.css';
5
+ import '../../css/m/mp6i4r.css';
6
+
7
+ const props = defineProps(["width","height"]);
8
+
9
+ const viewBox = {"width":24,"height":24};
10
+ const content = `<g class="cv0n0om"><path class="zqk0kknz"/><path class="mp6i4r"/></g>`;
11
+ </script>
12
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="hugeicons:arrow-big-right-dash" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/v/v0escobn.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="v0escobn"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="hugeicons:arrow-big-up-dash" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/v/vico24l.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="vico24l"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="hugeicons:arrow-down-from-line" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/l/liwd80b.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="liwd80b"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="hugeicons:arrow-down-to-dot" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/r/rjr1b2b.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="rjr1b2b"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="hugeicons:arrow-left-from-line" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/s/sqzl2ob.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="sqzl2ob"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="hugeicons:arrow-right-from-line" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/u/ul0d2pb.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="ul0d2pb"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="hugeicons:arrow-up-from-dot" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/o/ok-qqcb.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="ok-qqcb"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="hugeicons:arrow-up-from-line" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/p/p4bfxnb.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="p4bfxnb"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="hugeicons:chevrons-down-up" /></template>
@@ -0,0 +1,12 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/c/cv0n0om.css';
4
+ import '../../css/s/sk778c.css';
5
+ import '../../css/w/w-y29rf.css';
6
+
7
+ const props = defineProps(["width","height"]);
8
+
9
+ const viewBox = {"width":24,"height":24};
10
+ const content = `<g class="cv0n0om"><path class="sk778c"/><path class="w-y29rf"/></g>`;
11
+ </script>
12
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="hugeicons:circle-arrow-out-up-right" /></template>
@@ -0,0 +1,12 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/c/cv0n0om.css';
4
+ import '../../css/v/vevogk.css';
5
+ import '../../css/k/k40_1l.css';
6
+
7
+ const props = defineProps(["width","height"]);
8
+
9
+ const viewBox = {"width":24,"height":24};
10
+ const content = `<g class="cv0n0om"><path class="vevogk"/><path class="k40_1l"/></g>`;
11
+ </script>
12
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="hugeicons:iteration-ccw" /></template>
@@ -0,0 +1,12 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/c/cv0n0om.css';
4
+ import '../../css/l/lpqaya.css';
5
+ import '../../css/w/w-sski.css';
6
+
7
+ const props = defineProps(["width","height"]);
8
+
9
+ const viewBox = {"width":24,"height":24};
10
+ const content = `<g class="cv0n0om"><path class="lpqaya"/><path class="w-sski"/></g>`;
11
+ </script>
12
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="hugeicons:iteration-cw" /></template>
@@ -0,0 +1,13 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/c/cv0n0om.css';
4
+ import '../../css/s/suw67z.css';
5
+ import '../../css/p/plbg7n.css';
6
+ import '../../css/r/r71_fw.css';
7
+
8
+ const props = defineProps(["width","height"]);
9
+
10
+ const viewBox = {"width":24,"height":24};
11
+ const content = `<g class="cv0n0om"><path class="suw67z"/><path class="plbg7n"/><path class="r71_fw"/></g>`;
12
+ </script>
13
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="hugeicons:redo-dot" /></template>
@@ -0,0 +1,12 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/c/cv0n0om.css';
4
+ import '../../css/h/hs4y0db.css';
5
+ import '../../css/f/f5xovob.css';
6
+
7
+ const props = defineProps(["width","height"]);
8
+
9
+ const viewBox = {"width":24,"height":24};
10
+ const content = `<g class="cv0n0om"><path class="hs4y0db"/><path class="f5xovob"/></g>`;
11
+ </script>
12
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="hugeicons:refresh-cw-off" /></template>
@@ -0,0 +1,12 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/c/cv0n0om.css';
4
+ import '../../css/r/rqrpuybg.css';
5
+ import '../../css/j/jlmi6p.css';
6
+
7
+ const props = defineProps(["width","height"]);
8
+
9
+ const viewBox = {"width":24,"height":24};
10
+ const content = `<g class="cv0n0om"><path class="rqrpuybg"/><path class="jlmi6p"/></g>`;
11
+ </script>
12
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="hugeicons:rotate-ccw-square" /></template>
@@ -0,0 +1,12 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/c/cv0n0om.css';
4
+ import '../../css/w/w7s0n2bw.css';
5
+ import '../../css/i/imb_7d.css';
6
+
7
+ const props = defineProps(["width","height"]);
8
+
9
+ const viewBox = {"width":24,"height":24};
10
+ const content = `<g class="cv0n0om"><path class="w7s0n2bw"/><path class="imb_7d"/></g>`;
11
+ </script>
12
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="hugeicons:rotate-cw-square" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/p/phxg6yg.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="phxg6yg"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="hugeicons:separator-horizontal" /></template>
@@ -0,0 +1,12 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/c/cv0n0om.css';
4
+ import '../../css/i/ireet7b.css';
5
+ import '../../css/a/avtsxt.css';
6
+
7
+ const props = defineProps(["width","height"]);
8
+
9
+ const viewBox = {"width":24,"height":24};
10
+ const content = `<g class="cv0n0om"><path class="ireet7b"/><path class="avtsxt"/></g>`;
11
+ </script>
12
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="hugeicons:trending-up-down" /></template>
@@ -0,0 +1,3 @@
1
+ .avtsxt {
2
+ d: path("M16 4.277s4.101-.622 4.723 0c.623.622 0 4.723 0 4.723");
3
+ }
@@ -0,0 +1,3 @@
1
+ .f5xovob {
2
+ d: path("M16 6.779s3.28.498 3.779 0c.498-.498 0-3.779 0-3.779M8 17.221s-3.28-.498-3.779 0c-.498.498 0 3.779 0 3.779");
3
+ }
@@ -0,0 +1,3 @@
1
+ .hs4y0db {
2
+ d: path("m3 3l18 18M19.5 6.5C17.5 4 15 3 12 3c-1.186 0-2.318.23-3.354.646M4.5 17.5C6.5 20 9 21 12 21a8.97 8.97 0 0 0 6.364-2.636M20.945 11q.055.492.055 1c0 1.186-.23 2.318-.646 3.354M3.054 13a8.97 8.97 0 0 1 2.581-7.364");
3
+ }
@@ -0,0 +1,3 @@
1
+ .imb_7d {
2
+ d: path("M9.5 2s3 2.21 3 3s-3 3-3 3");
3
+ }
@@ -0,0 +1,3 @@
1
+ .ireet7b {
2
+ d: path("m3 14.001l4-4c.883-.883 1.324-1.324 1.865-1.373q.135-.012.27 0c.541.05.982.49 1.865 1.373s1.324 1.324 1.865 1.373q.135.012.27 0c.541-.05.982-.49 1.865-1.373l5-5m-4 10l4 4m-4 .723s4.101.623 4.723 0c.623-.622 0-4.723 0-4.723");
3
+ }
@@ -0,0 +1,3 @@
1
+ .jlmi6p {
2
+ d: path("M14.5 2s-3 2.21-3 3s3 3 3 3");
3
+ }
@@ -0,0 +1,3 @@
1
+ .k40_1l {
2
+ d: path("M16 14s4 2.946 4 4s-4 4-4 4");
3
+ }
@@ -0,0 +1,8 @@
1
+ .liwd80b {
2
+ fill: none;
3
+ stroke: currentColor;
4
+ stroke-linecap: round;
5
+ stroke-linejoin: round;
6
+ stroke-width: 1.5px;
7
+ d: path("M17 10s-3.682 5-5 5s-5-5-5-5m5 5V3m0 16.5v.5m1 0a1 1 0 1 1-2 0a1 1 0 0 1 2 0");
8
+ }
@@ -0,0 +1,3 @@
1
+ .lpqaya {
2
+ d: path("M4 10a8 8 0 1 1 8 8H5");
3
+ }
@@ -0,0 +1,4 @@
1
+ .mp6i4r {
2
+ d: path("M3 9v6");
3
+ opacity: .4;
4
+ }
@@ -0,0 +1,8 @@
1
+ .mxab3wyn {
2
+ fill: none;
3
+ stroke: currentColor;
4
+ stroke-linecap: round;
5
+ stroke-linejoin: round;
6
+ stroke-width: 1.5px;
7
+ d: path("M21 9v6m-15.724-.065l2.72 2.458c2.148 1.942 3.222 2.913 4.113 2.521S13 18.08 13 15.191V15h1c1.414 0 2.121 0 2.56-.44c.44-.439.44-1.146.44-2.56s0-2.121-.44-2.56C16.122 9 15.415 9 14 9h-1v-.191c0-2.888 0-4.332-.89-4.723c-.892-.392-1.966.579-4.115 2.521L5.276 9.065C3.76 10.437 3 11.123 3 12s.759 1.563 2.276 2.935");
8
+ }
@@ -0,0 +1,8 @@
1
+ .ok-qqcb {
2
+ fill: none;
3
+ stroke: currentColor;
4
+ stroke-linecap: round;
5
+ stroke-linejoin: round;
6
+ stroke-width: 1.5px;
7
+ d: path("M12 4v12m5-7s-3.682-5-5-5s-5 5-5 5m10 11H7");
8
+ }
@@ -0,0 +1,8 @@
1
+ .p4bfxnb {
2
+ fill: none;
3
+ stroke: currentColor;
4
+ stroke-linecap: round;
5
+ stroke-linejoin: round;
6
+ stroke-width: 1.5px;
7
+ d: path("M7 19s3.682-5 5-5s5 5 5 5M7 5s3.682 5 5 5s5-5 5-5");
8
+ }
@@ -0,0 +1,8 @@
1
+ .p8xszzbj {
2
+ fill: none;
3
+ stroke: currentColor;
4
+ stroke-linecap: round;
5
+ stroke-linejoin: round;
6
+ stroke-width: 1.5px;
7
+ d: path("m14.935 18.724l2.458-2.72c1.942-2.148 2.913-3.222 2.521-4.113S18.08 11 15.191 11H15v-1c0-1.414 0-2.121-.44-2.56C14.122 7 13.415 7 12 7s-2.121 0-2.56.44C9 7.878 9 8.585 9 10v1h-.191c-2.888 0-4.332 0-4.723.89c-.392.892.579 1.966 2.521 4.115l2.458 2.719C10.437 20.24 11.123 21 12 21s1.563-.759 2.935-2.276M9 3h6");
8
+ }
@@ -0,0 +1,8 @@
1
+ .phxg6yg {
2
+ fill: none;
3
+ stroke: currentColor;
4
+ stroke-linecap: round;
5
+ stroke-linejoin: round;
6
+ stroke-width: 1.5px;
7
+ d: path("M8 17s2.946 4 4 4s4-4 4-4M8 7s2.946-4 4-4s4 4 4 4M3 12h18");
8
+ }
@@ -0,0 +1,3 @@
1
+ .plbg7n {
2
+ d: path("M12 21a9 9 0 1 1 0-18c4 0 6 1.5 8.5 4.5");
3
+ }
@@ -0,0 +1,3 @@
1
+ .r71_fw {
2
+ d: path("M16 7.723s4.101.623 4.723 0c.623-.622 0-4.723 0-4.723");
3
+ }
@@ -0,0 +1,8 @@
1
+ .rjr1b2b {
2
+ fill: none;
3
+ stroke: currentColor;
4
+ stroke-linecap: round;
5
+ stroke-linejoin: round;
6
+ stroke-width: 1.5px;
7
+ d: path("M4 12h12M9 7s-5 3.682-5 5s5 5 5 5M20 7v10");
8
+ }
@@ -0,0 +1,3 @@
1
+ .rqrpuybg {
2
+ d: path("M11.5 5h5c.93 0 1.395 0 1.776.102a3 3 0 0 1 2.122 2.122c.102.381.102.846.102 1.776m0 4v3c0 2.828 0 4.243-.879 5.121C18.743 22 17.328 22 14.5 22h-5c-2.828 0-4.243 0-5.121-.879C3.5 20.243 3.5 18.828 3.5 16V9c0-.93 0-1.395.102-1.776a3 3 0 0 1 2.122-2.122C6.105 5 6.57 5 7.5 5");
3
+ }
@@ -0,0 +1,3 @@
1
+ .sk778c {
2
+ d: path("M12 8.5V16m-4-4s2.946-4 4-4s4 4 4 4");
3
+ }
@@ -0,0 +1,8 @@
1
+ .sqzl2ob {
2
+ fill: none;
3
+ stroke: currentColor;
4
+ stroke-linecap: round;
5
+ stroke-linejoin: round;
6
+ stroke-width: 1.5px;
7
+ d: path("M20 12H8m7-5s5 3.682 5 5s-5 5-5 5M4 7v10");
8
+ }
@@ -0,0 +1,3 @@
1
+ .suw67z {
2
+ d: path("M12 12v-.8m1 .8a1 1 0 1 0-2 0a1 1 0 0 0 2 0");
3
+ }
@@ -0,0 +1,8 @@
1
+ .ul0d2pb {
2
+ fill: none;
3
+ stroke: currentColor;
4
+ stroke-linecap: round;
5
+ stroke-linejoin: round;
6
+ stroke-width: 1.5px;
7
+ d: path("M12 3v12m0 5.5V20m1 0a1 1 0 1 0-2 0a1 1 0 0 0 2 0M7 8s3.682-5 5-5s5 5 5 5");
8
+ }
@@ -0,0 +1,8 @@
1
+ .v0escobn {
2
+ fill: none;
3
+ stroke: currentColor;
4
+ stroke-linecap: round;
5
+ stroke-linejoin: round;
6
+ stroke-width: 1.5px;
7
+ d: path("M9 21h6m-.065-15.724l2.458 2.72c1.942 2.148 2.913 3.222 2.521 4.113S18.08 13 15.191 13H15v1c0 1.414 0 2.121-.44 2.56c-.439.44-1.146.44-2.56.44s-2.121 0-2.56-.44C9 16.122 9 15.415 9 14v-1h-.191c-2.888 0-4.332 0-4.723-.89c-.392-.892.579-1.966 2.521-4.115l2.458-2.719C10.437 3.76 11.123 3 12 3s1.563.759 2.935 2.276");
8
+ }
@@ -0,0 +1,3 @@
1
+ .vevogk {
2
+ d: path("M20 10a8 8 0 1 0-8 8h7");
3
+ }
@@ -0,0 +1,8 @@
1
+ .vico24l {
2
+ fill: none;
3
+ stroke: currentColor;
4
+ stroke-linecap: round;
5
+ stroke-linejoin: round;
6
+ stroke-width: 1.5px;
7
+ d: path("M12 20V8m5 7s-3.682 5-5 5s-5-5-5-5M17 4H7");
8
+ }
@@ -0,0 +1,3 @@
1
+ .w-sski {
2
+ d: path("M8 14s-4 2.946-4 4s4 4 4 4");
3
+ }
@@ -0,0 +1,3 @@
1
+ .w-y29rf {
2
+ d: path("M2 12a10 10 0 0 1 .5-3.131m3-4.469q-.534.458-1 .985M2.832 16a10 10 0 0 0 2.553 3.5M8.5 21.37c1.09.407 2.269.63 3.5.63a9.96 9.96 0 0 0 4.364-1m3.136-2.385A9.96 9.96 0 0 0 22 12c0-5.523-4.477-10-10-10a10 10 0 0 0-3 .458");
3
+ }
@@ -0,0 +1,3 @@
1
+ .w7s0n2bw {
2
+ d: path("M12.5 5h-5c-.93 0-1.395 0-1.776.102a3 3 0 0 0-2.122 2.122C3.5 7.605 3.5 8.07 3.5 9m0 4v3c0 2.828 0 4.243.879 5.121C5.257 22 6.672 22 9.5 22h5c2.828 0 4.243 0 5.121-.879c.879-.878.879-2.293.879-5.121V9c0-.93 0-1.395-.102-1.776a3 3 0 0 0-2.122-2.122C17.896 5 17.43 5 16.5 5");
3
+ }
@@ -0,0 +1,3 @@
1
+ .zqk0kknz {
2
+ d: path("m18.724 9.065l-2.72-2.458c-2.148-1.942-3.222-2.913-4.113-2.521S11 5.92 11 8.809V9h-1c-1.414 0-2.121 0-2.56.44C7 9.878 7 10.585 7 12s0 2.121.44 2.56C7.878 15 8.585 15 10 15h1v.191c0 2.888 0 4.332.89 4.723c.892.392 1.966-.579 4.115-2.521l2.719-2.458C20.24 13.563 21 12.877 21 12s-.759-1.563-2.276-2.935");
3
+ }
package/iconify.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "prefix": "hugeicons",
3
3
  "info": {
4
4
  "name": "Huge Icons",
5
- "total": 5042,
5
+ "total": 5062,
6
6
  "author": {
7
7
  "name": "Hugeicons",
8
8
  "url": "https://icon-sets.iconify.design/icon-sets/hugeicons/"
@@ -27,5 +27,5 @@
27
27
  ],
28
28
  "palette": false
29
29
  },
30
- "lastModified": 1775277895
30
+ "lastModified": 1776313212
31
31
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@iconify-vue/hugeicons",
3
3
  "type": "module",
4
- "version": "1.0.9",
4
+ "version": "1.0.10",
5
5
  "homepage": "https://icon-sets.iconify.design/hugeicons/",
6
6
  "bugs": "https://github.com/iconify/icon-sets/issues",
7
7
  "license": "MIT",
@@ -1102,6 +1102,22 @@
1102
1102
  "types": "./types/dd0bq22g.d.ts",
1103
1103
  "default": "./components/a/arrow-all-direction.vue"
1104
1104
  },
1105
+ "./arrow-big-down-dash": {
1106
+ "types": "./types/dd0bq22g.d.ts",
1107
+ "default": "./components/a/arrow-big-down-dash.vue"
1108
+ },
1109
+ "./arrow-big-left-dash": {
1110
+ "types": "./types/dd0bq22g.d.ts",
1111
+ "default": "./components/a/arrow-big-left-dash.vue"
1112
+ },
1113
+ "./arrow-big-right-dash": {
1114
+ "types": "./types/dd0bq22g.d.ts",
1115
+ "default": "./components/a/arrow-big-right-dash.vue"
1116
+ },
1117
+ "./arrow-big-up-dash": {
1118
+ "types": "./types/dd0bq22g.d.ts",
1119
+ "default": "./components/a/arrow-big-up-dash.vue"
1120
+ },
1105
1121
  "./arrow-data-transfer-diagonal": {
1106
1122
  "types": "./types/dd0bq22g.d.ts",
1107
1123
  "default": "./components/a/arrow-data-transfer-diagonal.vue"
@@ -1150,6 +1166,10 @@
1150
1166
  "types": "./types/dd0bq22g.d.ts",
1151
1167
  "default": "./components/a/arrow-down-double.vue"
1152
1168
  },
1169
+ "./arrow-down-from-line": {
1170
+ "types": "./types/dd0bq22g.d.ts",
1171
+ "default": "./components/a/arrow-down-from-line.vue"
1172
+ },
1153
1173
  "./arrow-down-left-01": {
1154
1174
  "types": "./types/dd0bq22g.d.ts",
1155
1175
  "default": "./components/a/arrow-down-left-01.vue"
@@ -1166,6 +1186,10 @@
1166
1186
  "types": "./types/dd0bq22g.d.ts",
1167
1187
  "default": "./components/a/arrow-down-right-02.vue"
1168
1188
  },
1189
+ "./arrow-down-to-dot": {
1190
+ "types": "./types/dd0bq22g.d.ts",
1191
+ "default": "./components/a/arrow-down-to-dot.vue"
1192
+ },
1169
1193
  "./arrow-expand": {
1170
1194
  "types": "./types/dd0bq22g.d.ts",
1171
1195
  "default": "./components/a/arrow-expand.vue"
@@ -1218,6 +1242,10 @@
1218
1242
  "types": "./types/dd0bq22g.d.ts",
1219
1243
  "default": "./components/a/arrow-left-double.vue"
1220
1244
  },
1245
+ "./arrow-left-from-line": {
1246
+ "types": "./types/dd0bq22g.d.ts",
1247
+ "default": "./components/a/arrow-left-from-line.vue"
1248
+ },
1221
1249
  "./arrow-left-right": {
1222
1250
  "types": "./types/dd0bq22g.d.ts",
1223
1251
  "default": "./components/a/arrow-left-right.vue"
@@ -1282,6 +1310,10 @@
1282
1310
  "types": "./types/dd0bq22g.d.ts",
1283
1311
  "default": "./components/a/arrow-right-double.vue"
1284
1312
  },
1313
+ "./arrow-right-from-line": {
1314
+ "types": "./types/dd0bq22g.d.ts",
1315
+ "default": "./components/a/arrow-right-from-line.vue"
1316
+ },
1285
1317
  "./arrow-shrink": {
1286
1318
  "types": "./types/dd0bq22g.d.ts",
1287
1319
  "default": "./components/a/arrow-shrink.vue"
@@ -1342,6 +1374,14 @@
1342
1374
  "types": "./types/dd0bq22g.d.ts",
1343
1375
  "default": "./components/a/arrow-up-down.vue"
1344
1376
  },
1377
+ "./arrow-up-from-dot": {
1378
+ "types": "./types/dd0bq22g.d.ts",
1379
+ "default": "./components/a/arrow-up-from-dot.vue"
1380
+ },
1381
+ "./arrow-up-from-line": {
1382
+ "types": "./types/dd0bq22g.d.ts",
1383
+ "default": "./components/a/arrow-up-from-line.vue"
1384
+ },
1345
1385
  "./arrow-up-left-01": {
1346
1386
  "types": "./types/dd0bq22g.d.ts",
1347
1387
  "default": "./components/a/arrow-up-left-01.vue"
@@ -4278,6 +4318,10 @@
4278
4318
  "types": "./types/dd0bq22g.d.ts",
4279
4319
  "default": "./components/c/chevron-double-close.vue"
4280
4320
  },
4321
+ "./chevrons-down-up": {
4322
+ "types": "./types/dd0bq22g.d.ts",
4323
+ "default": "./components/c/chevrons-down-up.vue"
4324
+ },
4281
4325
  "./chicken-thighs": {
4282
4326
  "types": "./types/dd0bq22g.d.ts",
4283
4327
  "default": "./components/c/chicken-thighs.vue"
@@ -4438,6 +4482,10 @@
4438
4482
  "types": "./types/dd0bq22g.d.ts",
4439
4483
  "default": "./components/c/circle-arrow-move-up-right.vue"
4440
4484
  },
4485
+ "./circle-arrow-out-up-right": {
4486
+ "types": "./types/dd0bq22g.d.ts",
4487
+ "default": "./components/c/circle-arrow-out-up-right.vue"
4488
+ },
4441
4489
  "./circle-arrow-reload-01": {
4442
4490
  "types": "./types/dd0bq22g.d.ts",
4443
4491
  "default": "./components/c/circle-arrow-reload-01.vue"
@@ -9422,6 +9470,14 @@
9422
9470
  "types": "./types/dd0bq22g.d.ts",
9423
9471
  "default": "./components/i/island.vue"
9424
9472
  },
9473
+ "./iteration-ccw": {
9474
+ "types": "./types/dd0bq22g.d.ts",
9475
+ "default": "./components/i/iteration-ccw.vue"
9476
+ },
9477
+ "./iteration-cw": {
9478
+ "types": "./types/dd0bq22g.d.ts",
9479
+ "default": "./components/i/iteration-cw.vue"
9480
+ },
9425
9481
  "./jar": {
9426
9482
  "types": "./types/dd0bq22g.d.ts",
9427
9483
  "default": "./components/j/jar.vue"
@@ -14390,6 +14446,10 @@
14390
14446
  "types": "./types/dd0bq22g.d.ts",
14391
14447
  "default": "./components/r/redo-03.vue"
14392
14448
  },
14449
+ "./redo-dot": {
14450
+ "types": "./types/dd0bq22g.d.ts",
14451
+ "default": "./components/r/redo-dot.vue"
14452
+ },
14393
14453
  "./reduce-paragraph": {
14394
14454
  "types": "./types/dd0bq22g.d.ts",
14395
14455
  "default": "./components/r/reduce-paragraph.vue"
@@ -14414,6 +14474,10 @@
14414
14474
  "types": "./types/dd0bq22g.d.ts",
14415
14475
  "default": "./components/r/refresh-04.vue"
14416
14476
  },
14477
+ "./refresh-cw-off": {
14478
+ "types": "./types/dd0bq22g.d.ts",
14479
+ "default": "./components/r/refresh-cw-off.vue"
14480
+ },
14417
14481
  "./refresh-dot": {
14418
14482
  "types": "./types/dd0bq22g.d.ts",
14419
14483
  "default": "./components/r/refresh-dot.vue"
@@ -14782,6 +14846,10 @@
14782
14846
  "types": "./types/dd0bq22g.d.ts",
14783
14847
  "default": "./components/r/rotate-bottom-right.vue"
14784
14848
  },
14849
+ "./rotate-ccw-square": {
14850
+ "types": "./types/dd0bq22g.d.ts",
14851
+ "default": "./components/r/rotate-ccw-square.vue"
14852
+ },
14785
14853
  "./rotate-clockwise": {
14786
14854
  "types": "./types/dd0bq22g.d.ts",
14787
14855
  "default": "./components/r/rotate-clockwise.vue"
@@ -14790,6 +14858,10 @@
14790
14858
  "types": "./types/dd0bq22g.d.ts",
14791
14859
  "default": "./components/r/rotate-crop.vue"
14792
14860
  },
14861
+ "./rotate-cw-square": {
14862
+ "types": "./types/dd0bq22g.d.ts",
14863
+ "default": "./components/r/rotate-cw-square.vue"
14864
+ },
14793
14865
  "./rotate-left-01": {
14794
14866
  "types": "./types/dd0bq22g.d.ts",
14795
14867
  "default": "./components/r/rotate-left-01.vue"
@@ -15398,6 +15470,10 @@
15398
15470
  "types": "./types/dd0bq22g.d.ts",
15399
15471
  "default": "./components/s/seo.vue"
15400
15472
  },
15473
+ "./separator-horizontal": {
15474
+ "types": "./types/dd0bq22g.d.ts",
15475
+ "default": "./components/s/separator-horizontal.vue"
15476
+ },
15401
15477
  "./server-stack-01": {
15402
15478
  "types": "./types/dd0bq22g.d.ts",
15403
15479
  "default": "./components/s/server-stack-01.vue"
@@ -18646,6 +18722,10 @@
18646
18722
  "types": "./types/dd0bq22g.d.ts",
18647
18723
  "default": "./components/t/trello.vue"
18648
18724
  },
18725
+ "./trending-up-down": {
18726
+ "types": "./types/dd0bq22g.d.ts",
18727
+ "default": "./components/t/trending-up-down.vue"
18728
+ },
18649
18729
  "./triangle": {
18650
18730
  "types": "./types/dd0bq22g.d.ts",
18651
18731
  "default": "./components/t/triangle.vue"