@iconify-vue/simple-icons 1.0.13 → 1.0.15

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 (59) hide show
  1. package/components/a/anichart.vue +10 -0
  2. package/components/a/apachepdfbox.vue +10 -0
  3. package/components/c/chinarailway.vue +10 -0
  4. package/components/c/coreboot.vue +10 -0
  5. package/components/d/developmentcontainers.vue +10 -0
  6. package/components/e/effect.vue +10 -0
  7. package/components/f/flower.vue +10 -0
  8. package/components/m/myanimelist.vue +2 -2
  9. package/components/n/niri.vue +10 -0
  10. package/components/o/odido.vue +10 -0
  11. package/components/o/omarchy.vue +10 -0
  12. package/components/o/oxc.vue +2 -2
  13. package/components/p/pipecat.vue +10 -0
  14. package/components/p/pnpm.vue +2 -2
  15. package/components/p/prek.vue +10 -0
  16. package/components/r/readthedocs.vue +2 -2
  17. package/components/r/reflex.vue +10 -0
  18. package/components/r/rolldown.vue +2 -2
  19. package/components/s/sanity.vue +2 -2
  20. package/components/s/scan.vue +10 -0
  21. package/components/t/things.vue +10 -0
  22. package/components/v/vite.vue +2 -2
  23. package/components/v/vitest.vue +2 -2
  24. package/components/w/woo.vue +2 -2
  25. package/css/b/bb3zq7bi.css +4 -0
  26. package/css/b/beablq.css +4 -0
  27. package/css/b/bxys1wii.css +4 -0
  28. package/css/c/cie8_kbd.css +4 -0
  29. package/css/d/d9_9b7bn.css +4 -0
  30. package/css/f/flvqiw0f.css +4 -0
  31. package/css/g/g18k-eb.css +4 -0
  32. package/css/g/gn5p7nbb.css +4 -0
  33. package/css/g/gq9mhnbm.css +4 -0
  34. package/css/k/kh2130lj.css +4 -0
  35. package/css/m/mrwhghbh.css +4 -0
  36. package/css/n/nnkyxmks.css +4 -0
  37. package/css/o/oexk_ebm.css +4 -0
  38. package/css/o/otgaq2ub.css +4 -0
  39. package/css/p/pihu-0v.css +4 -0
  40. package/css/r/r2drn0bb.css +4 -0
  41. package/css/r/rp65438r.css +4 -0
  42. package/css/r/rsrfqoby.css +4 -0
  43. package/css/s/s9ppn5by.css +4 -0
  44. package/css/s/s_lpyv8o.css +4 -0
  45. package/css/w/wmfbunbt.css +4 -0
  46. package/css/x/xbgg6ccu.css +4 -0
  47. package/css/y/yalavabw.css +4 -0
  48. package/css/z/zgamo4zt.css +4 -0
  49. package/iconify.json +3 -3
  50. package/package.json +61 -1
  51. package/css/a/a77u7abt.css +0 -4
  52. package/css/c/c43kircq.css +0 -4
  53. package/css/c/cmh956bq.css +0 -4
  54. package/css/h/hk5037bu.css +0 -4
  55. package/css/r/rh68m6bi.css +0 -4
  56. package/css/s/s0rwjjb.css +0 -4
  57. package/css/t/tgtuubc.css +0 -4
  58. package/css/w/wdn5xz7k.css +0 -4
  59. package/css/y/y2qb10sq.css +0 -4
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/r/r2drn0bb.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="r2drn0bb"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:anichart" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/x/xbgg6ccu.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="xbgg6ccu"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:apachepdfbox" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/n/nnkyxmks.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="nnkyxmks"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:chinarailway" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/b/bb3zq7bi.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="bb3zq7bi"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:coreboot" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/z/zgamo4zt.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="zgamo4zt"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:developmentcontainers" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/b/bxys1wii.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="bxys1wii"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:effect" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/y/yalavabw.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="yalavabw"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:flower" /></template>
@@ -1,10 +1,10 @@
1
1
  <script setup>
2
2
  import { Icon } from '@iconify/css-vue';
3
- import '../../css/h/hk5037bu.css';
3
+ import '../../css/k/kh2130lj.css';
4
4
 
5
5
  const props = defineProps(["width","height"]);
6
6
 
7
7
  const viewBox = {"width":24,"height":24};
8
- const content = `<path class="hk5037bu"/>`;
8
+ const content = `<path class="kh2130lj"/>`;
9
9
  </script>
10
10
  <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:myanimelist" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/o/otgaq2ub.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="otgaq2ub"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:niri" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/o/oexk_ebm.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="oexk_ebm"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:odido" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/g/g18k-eb.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="g18k-eb"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:omarchy" /></template>
@@ -1,10 +1,10 @@
1
1
  <script setup>
2
2
  import { Icon } from '@iconify/css-vue';
3
- import '../../css/c/c43kircq.css';
3
+ import '../../css/g/gq9mhnbm.css';
4
4
 
5
5
  const props = defineProps(["width","height"]);
6
6
 
7
7
  const viewBox = {"width":24,"height":24};
8
- const content = `<path class="c43kircq"/>`;
8
+ const content = `<path class="gq9mhnbm"/>`;
9
9
  </script>
10
10
  <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:oxc" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/m/mrwhghbh.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="mrwhghbh"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:pipecat" /></template>
@@ -1,10 +1,10 @@
1
1
  <script setup>
2
2
  import { Icon } from '@iconify/css-vue';
3
- import '../../css/s/s0rwjjb.css';
3
+ import '../../css/r/rp65438r.css';
4
4
 
5
5
  const props = defineProps(["width","height"]);
6
6
 
7
7
  const viewBox = {"width":24,"height":24};
8
- const content = `<path class="s0rwjjb"/>`;
8
+ const content = `<path class="rp65438r"/>`;
9
9
  </script>
10
10
  <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:pnpm" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/f/flvqiw0f.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="flvqiw0f"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:prek" /></template>
@@ -1,10 +1,10 @@
1
1
  <script setup>
2
2
  import { Icon } from '@iconify/css-vue';
3
- import '../../css/c/cmh956bq.css';
3
+ import '../../css/s/s9ppn5by.css';
4
4
 
5
5
  const props = defineProps(["width","height"]);
6
6
 
7
7
  const viewBox = {"width":24,"height":24};
8
- const content = `<path class="cmh956bq"/>`;
8
+ const content = `<path class="s9ppn5by"/>`;
9
9
  </script>
10
10
  <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:readthedocs" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/b/beablq.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="beablq"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:reflex" /></template>
@@ -1,10 +1,10 @@
1
1
  <script setup>
2
2
  import { Icon } from '@iconify/css-vue';
3
- import '../../css/t/tgtuubc.css';
3
+ import '../../css/g/gn5p7nbb.css';
4
4
 
5
5
  const props = defineProps(["width","height"]);
6
6
 
7
7
  const viewBox = {"width":24,"height":24};
8
- const content = `<path class="tgtuubc"/>`;
8
+ const content = `<path class="gn5p7nbb"/>`;
9
9
  </script>
10
10
  <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:rolldown" /></template>
@@ -1,10 +1,10 @@
1
1
  <script setup>
2
2
  import { Icon } from '@iconify/css-vue';
3
- import '../../css/y/y2qb10sq.css';
3
+ import '../../css/s/s_lpyv8o.css';
4
4
 
5
5
  const props = defineProps(["width","height"]);
6
6
 
7
7
  const viewBox = {"width":24,"height":24};
8
- const content = `<path class="y2qb10sq"/>`;
8
+ const content = `<path class="s_lpyv8o"/>`;
9
9
  </script>
10
10
  <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:sanity" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/w/wmfbunbt.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="wmfbunbt"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:scan" /></template>
@@ -0,0 +1,10 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+ import '../../css/c/cie8_kbd.css';
4
+
5
+ const props = defineProps(["width","height"]);
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="cie8_kbd"/>`;
9
+ </script>
10
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:things" /></template>
@@ -1,10 +1,10 @@
1
1
  <script setup>
2
2
  import { Icon } from '@iconify/css-vue';
3
- import '../../css/r/rh68m6bi.css';
3
+ import '../../css/d/d9_9b7bn.css';
4
4
 
5
5
  const props = defineProps(["width","height"]);
6
6
 
7
7
  const viewBox = {"width":24,"height":24};
8
- const content = `<path class="rh68m6bi"/>`;
8
+ const content = `<path class="d9_9b7bn"/>`;
9
9
  </script>
10
10
  <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:vite" /></template>
@@ -1,10 +1,10 @@
1
1
  <script setup>
2
2
  import { Icon } from '@iconify/css-vue';
3
- import '../../css/w/wdn5xz7k.css';
3
+ import '../../css/p/pihu-0v.css';
4
4
 
5
5
  const props = defineProps(["width","height"]);
6
6
 
7
7
  const viewBox = {"width":24,"height":24};
8
- const content = `<path class="wdn5xz7k"/>`;
8
+ const content = `<path class="pihu-0v"/>`;
9
9
  </script>
10
10
  <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:vitest" /></template>
@@ -1,10 +1,10 @@
1
1
  <script setup>
2
2
  import { Icon } from '@iconify/css-vue';
3
- import '../../css/a/a77u7abt.css';
3
+ import '../../css/r/rsrfqoby.css';
4
4
 
5
5
  const props = defineProps(["width","height"]);
6
6
 
7
7
  const viewBox = {"width":24,"height":24};
8
- const content = `<path class="a77u7abt"/>`;
8
+ const content = `<path class="rsrfqoby"/>`;
9
9
  </script>
10
10
  <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:woo" /></template>
@@ -0,0 +1,4 @@
1
+ .bb3zq7bi {
2
+ fill: currentColor;
3
+ d: path("M7.74 2.414s.783.635 2.233 1.785c.101.084.128.124.108.158c-.03.052-.169-.01-.169-.01c-1.12-.426-2.385-.668-3.24-.612c-.285.018-.376.064-.416.145c-.019.038-.022.14.074.267c.374.495 1.276 1.465 2.777 2.386c1.541.946 4.264 2.287 6.671 3.36c1.079.478 1.855 1.119 1.609 1.858c-.277.823-1.343.936-2.194.595c-.693-.277-1.339-1.144-2.389-2.308c-1.82-2.016-2.683-2.82-5.703-2.206c-1.513.308-2.942 1.547-4.086 2.855c-.761.961-1.128 1.761-1.237 2.726c0 0-.21-.382 0-1.36c.36-1.71-.426-2.444-.426-2.444c-3.983 5.649 1.683 10.756 6.05 5.865c0 0-1.43 3.173-1.31 4.162c-.61.2-.88.76.032 1.437c.996.739 3.445.675 5.377-.155c3.604-1.55 5.852-4.437 6.966-6.271c.26-.429.536-.637.726-.706c.289-.104 2.278.02 3.209-.513a.976.97 0 0 0 .511.08c.674-.05 1.087-.858 1.087-.858s-.852-1.625-2.892-2.837c-1.922-1.142-2.482-.745-4.207-2.12c-2.694-2.148-5.955-4.59-9.157-5.28m1.816 6.77c1.399-.064 2.491.387 2.671 1.258c.285 1.39-2.684 4.89-2.489 4.946q.028 0 .123-.06c.975-1.276 2.821-3.234 3.512-3.159c1.241.136 1.67 1.78 1.67 1.78l-4.136 3.731a8.05 8 0 0 0 2.723.244c-1.848 1.316-3.85 1.683-5.09 1.138c1.96-1.42 5.565-4.973 5.565-4.973s-.6-1.511-1.682-.586c-1.046.895-2.013 2.013-2.395 2.37c-.238.22-.638.637-.876.457c-.29-.214.569-2.145 1.226-3.745c.895-2.182-.135-2.864-1.341-2.803c-1.081.054-2.557.709-3.614 1.356c-.3.183-.503.296-.58.226c-.066-.06 0-.178.2-.344c1.405-1.19 3.112-1.77 4.51-1.835");
4
+ }
@@ -0,0 +1,4 @@
1
+ .beablq {
2
+ fill: currentColor;
3
+ d: path("M17 15v9h5v-9zM2 0v24h5v-9h10v-5H7V5h10v5h5V0z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .bxys1wii {
2
+ fill: currentColor;
3
+ d: path("M11.846.007a.8.8 0 0 0-.312.103L.454 6.346a.8.8 0 0 0-.397.855a.8.8 0 0 0 .408.78L3.99 9.976L1.033 11.64a.76.76 0 0 0-.374.838c-.033.265.07.541.378.715l10.546 5.967a.8.8 0 0 0 .61.073a.8.8 0 0 0 .27-.094l10.548-5.968c.31-.175.412-.454.376-.72a.76.76 0 0 0-.383-.79l-3.01-1.693l3.554-2.012a.8.8 0 0 0 .399-.836a.8.8 0 0 0-.412-.753L12.455.13a.8.8 0 0 0-.28-.097a.8.8 0 0 0-.227-.033m6.482 10.853l2.78 1.566l-9.205 5.21l-9.21-5.213l2.76-1.554l5.99 3.387a.83.83 0 0 0 .638.076a.8.8 0 0 0 .285-.098zm3.572 6.03a.75.75 0 0 0-.35.098l-9.67 5.47l-9.635-5.45a.75.75 0 0 0-1.01.267a.717.717 0 0 0 .27.99l9.976 5.644a.75.75 0 0 0 .372.098c.079 0 .294-.026.46-.117l9.978-5.645a.716.716 0 0 0 .27-.99a.75.75 0 0 0-.661-.364");
4
+ }
@@ -0,0 +1,4 @@
1
+ .cie8_kbd {
2
+ fill: currentColor;
3
+ d: path("m15.815 0l1.099.003c.492.01 1.138.013 1.856.165c.713.147 1.489.49 2.086 1.04a3.94 3.94 0 0 1 1.167 1.911c.178.664.193 1.264.211 1.722l.021 1.026l.016.905l.047 2.685l.049 2.71l.016.925l.016 1.055v.071c0 .338-.004.741-.062 1.193l-.636 4.978l-.089.495a3.8 3.8 0 0 1-1.064 1.902c-.56.55-1.303.896-1.99 1.044c-.693.153-1.32.158-1.796.167L15.698 24H8.3l-1.065-.003c-.477-.01-1.102-.014-1.795-.167c-.687-.148-1.43-.494-1.991-1.044a3.8 3.8 0 0 1-1.064-1.902l-.088-.495l-.637-4.978a9 9 0 0 1-.06-1.193v-.072l.015-1.054l.016-.926l.048-2.709l.047-2.685l.016-.905l.02-1.026c.019-.458.034-1.059.212-1.722c.173-.658.56-1.37 1.166-1.911c.6-.55 1.376-.893 2.089-1.04C5.947.016 6.593.012 7.085.003L8.183 0zm1.625 4.203H6.196c-.149.003-.346.005-.566.051a1.35 1.35 0 0 0-.636.32c-.173.157-.295.36-.353.584c-.055.203-.058.386-.063.526l-.005.335l-.129 10.284l-.003.16l.018.017q.135.127.292.229l.039.025l.198.105l.359.139l.344.084l.397.064l.396.049l.257.031l.25.035l.408.076l.188.046l.173.052l.102.036l.098.037c.258.104.421.228.507.341c.106.143.114.27.124.368l.011.217l.012.255l.038.887l.039.86l.009.2l.005.103c.005.046.009.105.06.17s.16.138.335.19l.043.013q.276.072.561.09l.537.017h3.514l.537-.016c.19-.014.397-.044.563-.092l.039-.012c.176-.052.288-.124.337-.19c.051-.065.055-.124.06-.17l.006-.104l.008-.2l.038-.859l.038-.887l.01-.255l.013-.217c.01-.098.018-.225.125-.368c.085-.114.25-.238.51-.342l.095-.037l.102-.035l.174-.052l.186-.047l.411-.075l.247-.035l.256-.03l.399-.051l.399-.063l.341-.083l.358-.138l.195-.104l.042-.026q.168-.11.314-.249l-.002-.159l-.131-10.284l-.006-.335c-.005-.141-.008-.323-.061-.526a1.2 1.2 0 0 0-.353-.584c-.18-.162-.4-.272-.636-.32c-.22-.046-.418-.048-.567-.05zm-2.941 13.986l-.009.182l-.082 1.893h-.003l-.138.017l-.023.001l-.505.016h-3.485l-.504-.016l-.161-.018h-.004l-.082-1.893l-.01-.182zm1.427-11.177a.78.78 0 0 1 .722.093a.67.67 0 0 1 .251.641c-.045.229-.232.421-.48.723a50 50 0 0 0-3.836 5.257c-.308.575-.593.808-.9.844c-.308.037-.64-.123-1.087-.613l-1.824-1.755c-.29-.28-.488-.456-.57-.692a.66.66 0 0 1 .175-.72c.2-.182.512-.233.764-.16c.253.074.445.27.741.539l1.546 1.417a51 51 0 0 1 3.844-4.982c.261-.293.425-.502.654-.592");
4
+ }
@@ -0,0 +1,4 @@
1
+ .d9_9b7bn {
2
+ fill: currentColor;
3
+ d: path("M13.056 23.238a.57.57 0 0 1-1.02-.355v-5.202c0-.63-.512-1.143-1.144-1.143H5.148a.57.57 0 0 1-.464-.903l3.777-5.29c.54-.753 0-1.804-.93-1.804H.57a.574.574 0 0 1-.543-.746a.6.6 0 0 1 .08-.157L5.008.78a.57.57 0 0 1 .467-.24h14.589a.57.57 0 0 1 .466.903l-3.778 5.29c-.54.755 0 1.806.93 1.806h5.745c.238 0 .424.138.513.322a.56.56 0 0 1-.063.603z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .flvqiw0f {
2
+ fill: currentColor;
3
+ d: path("M13.3 0c-.38.003-.84 1.468-1.288 1.467c-.454 0-.908-1.483-1.313-1.433c-.406.05-.569 1.61-.994 1.716S8.447.507 8.08.639c-.367.131-.252 1.735-.67 1.936c-.42.202-1.396-.972-1.756-.745s-.01 1.734-.352 2.042s-1.502-.466-1.778-.175s.352 1.612.087 1.999c-.265.386-1.42-.026-1.63.339c-.211.365.543 1.383.37 1.83c-.172.448-1.315.493-1.43.902c-.113.409.757 1.168.755 1.56c.033.532-1.002.489-.53 2.496c.286.808.37 4.53 5.974 7.159c-.322 2.542-1.14 2.71-1.245 3.402c.022.476.54.639.639.613c.185-.007 2.513-.879 4.246-3.272c4.34.367 7.727-1.231 9.595-2.931c1.754-2.028 2.402-3.652 2.684-6.408c.104-.627-.644-.659-.663-1.079s.817-1.127.702-1.52c-.09-.604-1.34-.407-1.43-1.017c-.069-.47.539-1.428.4-1.705c-.193-.383-1.49-.143-1.628-.405c-.216-.407.331-1.632.046-1.939c-.285-.306-1.528.367-1.715.151c-.3-.347.052-1.774-.395-2.019c-.48-.263-1.445.919-1.709.75c-.386-.248-.348-1.845-.727-1.984c-.38-.139-1.085 1.222-1.513 1.112c-.429-.11-.707-1.685-1.09-1.73zm3.332 5.868c.2.007.442.143.459.312c.033.327-.08.263-1.145 2.056s-4.042 6.553-4.463 7.34c-.458.856-1.048 1.604-1.798.807s-2.352-2.691-3.028-3.533c-.675-.842-.534-.76-.553-.814c-.018-.054-.106-.256.129-.532c.496-.582.917-.786 1.263-1.008c.346-.223.422-.283.777.068s1.14 1.466 1.491 1.82s.308.15 1.411-.952c1.104-1.101 2.696-3.048 3.799-4.165s1.168-1.415 1.658-1.399");
4
+ }
@@ -0,0 +1,4 @@
1
+ .g18k-eb {
2
+ fill: currentColor;
3
+ d: path("M0 0v24h12.8v-3.2h8V3.2h-3.2v1.6h1.6v14.4H4.8V4.8h8V1.6h9.6v20.8h-8V24H24V0Zm1.6 1.6h9.6v1.6h-8v8H1.6Zm0 11.2h1.6v8h8v1.6H1.6Z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .gn5p7nbb {
2
+ fill: currentColor;
3
+ d: path("M21.652 0c.514 0 .796.6.466.998l-5.616 6.74c-.662.793-.098 1.997.934 1.997h5.433c.516 0 .797.6.467.998L12.467 23.775a.6.6 0 0 1-.468.225a.6.6 0 0 1-.468-.225L.661 10.733a.609.609 0 0 1 .468-.998H6.56c1.032 0 1.595-1.204.937-1.997L1.88.998A.608.608 0 0 1 2.346 0Z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .gq9mhnbm {
2
+ fill: currentColor;
3
+ d: path("M15.463 3.923c0 .637.517 1.154 1.154 1.154h4.376c.515 0 .772.62.408.984l-5.6 5.601c-.217.216-.34.51-.34.816v1.915c0 .797.79 1.35 1.49.97c.71-.386 1.371-.853 1.972-1.392a.603.603 0 0 1 .828.012l4.08 4.08a.56.56 0 0 1-.007.808A17.25 17.25 0 0 1 12 23.54A17.25 17.25 0 0 1 .176 18.872a.56.56 0 0 1-.006-.81l4.08-4.078a.604.604 0 0 1 .827-.012a10.4 10.4 0 0 0 1.973 1.39c.7.38 1.488-.171 1.488-.968v-1.915c0-.307-.122-.6-.339-.816L2.6 6.061a.576.576 0 0 1 .408-.984h4.376c.637 0 1.154-.517 1.154-1.154V1.038c0-.32.258-.577.577-.577h5.77c.318 0 .576.258.576.577v2.885z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .kh2130lj {
2
+ fill: currentColor;
3
+ d: path("M14.921 6.479c-.82 0-3.683 0-4.947 3.156c-.662 1.652-.986 4.812.876 7.886l1.934-1.41s-.767-1.095-1.083-3.191h2.897l.022 3.19h2.604V8.835h-2.581v2.043l-2.46-.023s.413-2.408 2.877-2.336h2.454l-.572-2.04ZM0 6.528v9.624h2.348v-5.84l2.031 2.664l2.047-2.652v5.828h2.336V6.528H6.437L4.368 9.474L2.31 6.528Zm18.447.022v9.583h5.022L24 14.09h-3.232V6.55Z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .mrwhghbh {
2
+ fill: currentColor;
3
+ d: path("M3.309 5.116a.87.87 0 0 1 .958.24L7.369 8.89h9.262l3.102-3.536a.867.867 0 0 1 1.52.573v7.807H24v1.735h-4.482V8.232l-1.842 2.099a.87.87 0 0 1-.652.295H6.976a.87.87 0 0 1-.652-.295l-1.842-2.1v7.239H0v-1.735h2.747V5.928c0-.362.224-.685.562-.812m16.209 12.089H24v1.735h-4.482zM0 17.205h4.482v1.735H0zm9.253-2.892a1.157 1.157 0 1 1-2.314 0a1.157 1.157 0 0 1 2.314 0m7.807 0a1.157 1.157 0 1 1-2.313 0a1.157 1.157 0 0 1 2.313 0");
4
+ }
@@ -0,0 +1,4 @@
1
+ .nnkyxmks {
2
+ fill: currentColor;
3
+ d: path("M15.642 18.64a8.035 8.035 0 1 0-7.284 0l-1.476 1.932a10.435 10.435 0 0 1 3.136-19.339a1.043 1.043 0 0 1 .939-1.186a11.5 11.5 0 0 1 2.086 0a1.043 1.043 0 0 1 .939 1.186a10.435 10.435 0 0 1 3.136 19.339zm2.805 4.04a.42.42 0 0 1 .336.41V24H5.217v-.91a.42.42 0 0 1 .336-.41l4.438-.887a1.46 1.46 0 0 0 1.174-1.432v-5.934a1.04 1.04 0 0 0-.757-1.003l-2.06-.59V10.94a1.46 1.46 0 0 1 1.345-1.456a29 29 0 0 1 4.614 0a1.46 1.46 0 0 1 1.345 1.456v1.896l-2.06.589a1.04 1.04 0 0 0-.757 1.003v5.934a1.46 1.46 0 0 0 1.174 1.432z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .oexk_ebm {
2
+ fill: currentColor;
3
+ d: path("M20.923 15.077a3.077 3.077 0 1 0 0-6.154a3.077 3.077 0 0 0 0 6.154m-17.846 0a3.077 3.077 0 1 0 0-6.154a3.077 3.077 0 0 0 0 6.154m3.692 0a3.077 3.077 0 0 0 0-6.154zm10.462 0a3.077 3.077 0 0 1 0-6.154zm-3.693-6.154h-3.077v6.154h3.077z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .otgaq2ub {
2
+ fill: currentColor;
3
+ d: path("M16.239 21.913c0 1.043-.522 2.087-4.174 2.087s-4.174-1.044-4.174-2.087c0-1.566 1.044-2.609 4.174-2.609s4.174 1.043 4.174 2.609M7.89 0c2.087 0 10.435 6.26 10.435 11.478c0 3.521-1.65 5.062-3.095 5.736c-1.094.511-1.397-.17-.789-1.218c.41-.705.753-1.557.753-2.431c0-1.565-.521-2.609-1.565-3.652c-1.043-1.044-2.384-1.565-3.13-1.565c-1.044 0-1.565 3.067-1.565 4.695c0 1.298.387 2.466.776 3.313c.367.799.06 1.347-.764 1.045c-.899-.331-1.978-.984-2.621-2.271c-1.044-2.087-.522-5.09-.522-7.826C5.804 3.13 5.804 0 7.891 0z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .pihu-0v {
2
+ fill: currentColor;
3
+ d: path("M11.545 23.3a.613.613 0 0 1-.895.197L.252 15.936A.61.61 0 0 1 0 15.439V6.325c0-.502.569-.792.975-.497l6.358 4.624c.594.433 1.432.25 1.793-.39L14.393.7a.62.62 0 0 1 .535-.314h8.455a.613.613 0 0 1 .537.916z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .r2drn0bb {
2
+ fill: currentColor;
3
+ d: path("M17.293 2.951a9 9 0 0 0-5.162 1.62l1.572 4.483a4.68 4.68 0 0 1 3.596-1.706c1.068 0 2.113.364 2.935 1.045c.51.41.957.487 1.468.07l1.837-1.438c.552-.44.622-.98.135-1.467a9.12 9.12 0 0 0-6.38-2.607M6.3 3.127L0 21.05h4.89l1.068-3.1h5.33l1.04 3.1h4.871L10.92 3.127Zm2.3 5.882l1.674 4.966h-3.2Zm12.386 6.318c-.272-.014-.544.103-.845.327c-.81.646-1.808.98-2.841.98q-.502 0-.976-.102l1.58 4.508a9.13 9.13 0 0 0 5.583-2.421c.517-.494.446-1.057-.058-1.497l-1.797-1.515c-.223-.18-.434-.27-.646-.28");
4
+ }
@@ -0,0 +1,4 @@
1
+ .rp65438r {
2
+ fill: currentColor;
3
+ d: path("M0 0v7.5h7.5V0zm8.25 0v7.5h7.498V0zm8.25 0v7.5H24V0zM2 2h3.5v3.5H2zm8.25 0h3.498v3.5H10.25zm8.25 0H22v3.5h-3.5zM8.25 8.25v7.5h7.498v-7.5zm8.25 0v7.5H24v-7.5zm2 2H22v3.5h-3.5zM0 16.5V24h7.5v-7.5zm8.25 0V24h7.498v-7.5zm8.25 0V24H24v-7.5z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .rsrfqoby {
2
+ fill: currentColor;
3
+ d: path("M10.118 8.895c-.562 0-.928.183-1.255.797l-1.49 2.811v-2.496c0-.745-.353-1.111-1.007-1.111s-.928.222-1.255.85l-1.412 2.757v-2.47c0-.797-.327-1.137-1.124-1.137H.954C.34 8.895 0 9.183 0 9.706s.327.837.928.837h.667v3.15c0 .889.601 1.412 1.464 1.412s1.255-.34 1.686-1.137l.941-1.765v1.49c0 .876.575 1.412 1.451 1.412s1.203-.301 1.699-1.137l2.17-3.66c.471-.798.144-1.413-.901-1.413zm4.078 0c-1.778 0-3.124 1.321-3.124 3.112s1.359 3.098 3.124 3.098s3.111-1.32 3.124-3.098c0-1.791-1.359-3.112-3.124-3.112m0 4.301c-.667 0-1.124-.497-1.124-1.19s.458-1.203 1.124-1.203s1.124.51 1.124 1.203s-.444 1.19-1.124 1.19m6.68-4.301c-1.765 0-3.124 1.32-3.124 3.111s1.359 3.098 3.124 3.098S24 13.784 24 12.006s-1.359-3.111-3.124-3.111m0 4.301c-.68 0-1.111-.497-1.111-1.19s.444-1.203 1.111-1.203S22 11.313 22 12.006s-.444 1.19-1.124 1.19");
4
+ }
@@ -0,0 +1,4 @@
1
+ .s9ppn5by {
2
+ fill: currentColor;
3
+ d: path("M10.806 11.568a.573.573 0 0 0-.076 1.123s1.403.464 3.788.658c1.917.157 4.09-.135 4.09-.135c.841-.028.678-1.318-.143-1.136c0 0-2.127.262-3.854.123c-2.28-.186-3.52-.604-3.52-.604a.65.65 0 0 0-.285-.03m0-2.854a.573.573 0 0 0-.076 1.123s1.403.464 3.788.658c1.917.157 4.09-.135 4.09-.135c.841-.028.678-1.318-.143-1.136c0 0-2.127.263-3.854.123c-2.28-.186-3.52-.604-3.52-.604a.65.65 0 0 0-.285-.03m0-2.854a.573.573 0 0 0-.076 1.123s1.403.464 3.788.66c1.917.155 4.09-.137 4.09-.137c.841-.028.678-1.318-.143-1.136c0 0-2.127.263-3.854.123c-2.28-.186-3.52-.603-3.52-.603a.65.65 0 0 0-.285-.03m0-2.85a.573.573 0 0 0-.076 1.123s1.403.465 3.788.66c1.917.155 4.09-.136 4.09-.136c.841-.028.678-1.318-.143-1.136c0 0-2.127.262-3.854.122c-2.28-.185-3.52-.603-3.52-.603a.6.6 0 0 0-.285-.03M6.81 0C3.812.021 2.693.941 2.693.941v22.39s1.09-.943 4.602-.799s4.234 1.378 8.55 1.46q.366.008.702.008c3.732 0 4.699-.668 4.699-.668l.06-22.825s-1.941.548-5.72.578S10.9.122 7.43.008A34 34 0 0 0 6.81 0m2.508 1.46s1.815.6 5.173.77c2.837.138 5.678-.28 5.678-.28v20.286s-1.44.756-5.036.5c-2.787-.2-5.857-1.255-5.857-1.255Zm-1.752.528c.718.052.718 1.105 0 1.157c0 0-.942.004-1.51.064c-.964.097-1.618.447-1.618.447c-.677.346-1.207-.658-.54-1.022c0 0 .852-.45 2.043-.57c.688-.07 1.625-.076 1.625-.076m-.557 2.863c.32-.008.56 0 .56 0a.58.58 0 0 1 .001 1.152s-.94.004-1.51.064c-.964.097-1.618.447-1.618.447c-.662.294-1.155-.65-.536-1.026c0 0 .852-.45 2.043-.57c.334-.038.74-.059 1.06-.067m.557 2.85c.71.06.71 1.097 0 1.156c0 0-.942-.004-1.51.051c-.964.097-1.618.448-1.618.448c-.665.3-1.162-.65-.537-1.026c0 0 .853-.452 2.044-.57c.684-.064 1.62-.06 1.62-.06");
4
+ }
@@ -0,0 +1,4 @@
1
+ .s_lpyv8o {
2
+ fill: currentColor;
3
+ d: path("m23.327 15.205l-.893-1.555l-4.321 2.632l4.799-6.11l.726-.426l-.179-.27l.33-.421l-1.515-1.261l-.693.883l-13.992 8.186l5.173-6.221l9.636-5.282l-.915-1.769l-5.248 2.876l2.584-3.106l-1.481-1.305l-5.816 6.994l-5.777 3.168l4.423-5.847l2.771-1.442l-.88-1.789l-8.075 4.203L6.186 4.43L4.648 3.198L0 9.349l.072.058l.868 1.768l5.153-2.683l-4.696 6.207l.77.617l.458.885l5.425-2.974l-5.974 7.185l1.481 1.304l.297-.358l14.411-8.459l-4.785 6.094l.078.065l-.007.005l.992 1.726l6.364-3.877l-2.451 3.954l1.642 1.077L24 15.648z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .wmfbunbt {
2
+ fill: currentColor;
3
+ d: path("M23.363 9.13a5.8 5.8 0 0 1 0 5.285l-3.376 5.948a6.11 6.11 0 0 1-4.603 2.853h-6.76a6.09 6.09 0 0 1-4.605-2.83l-3.384-6.03a5.8 5.8 0 0 1 0-5.276l3.384-5.806A5.73 5.73 0 0 1 8.623.784h6.76a5.74 5.74 0 0 1 4.605 2.49zm-14.47 5.94a2.22 2.22 0 0 0-1.542.73a5.41 5.41 0 0 0 4.43 2.44a4.305 4.305 0 0 0 4.886-3.716c.124-3.02-2.04-3.834-4.264-4.248c-1.12-.232-2.207-.382-2.207-1.427c0-.888.946-1.26 1.95-1.26a2.49 2.49 0 0 1 2.132 1.21l2.182-1.46a4.98 4.98 0 0 0-4.314-2.256c-2.298 0-4.513 1.27-4.662 3.683c0 2.821 2.04 3.759 4.048 4.066c1.319.183 2.489.43 2.489 1.535c0 1.302-1.012 1.6-2.15 1.6c-1.658 0-1.658-.88-2.92-.88");
4
+ }
@@ -0,0 +1,4 @@
1
+ .xbgg6ccu {
2
+ fill: currentColor;
3
+ d: path("M22.335 1.88c.016.798.11 1.587.275 2.357c.163.754.398 1.502.803 2.173q.223.37.507.695a.48.48 0 0 1 .04.452a877 877 0 0 0-6.825 1.99A841 841 0 0 0 10.31 11.6a.26.26 0 0 1 .033-.174a.27.27 0 0 1 .213-.132l11.41-4.388a14.7 14.7 0 0 1-.344-2.5a14.7 14.7 0 0 1 .085-2.478a.33.33 0 0 1 .367-.262a.32.32 0 0 1 .259.217zm-1.463-1q-.015 0-.03.004L5.564 1.94c-.436.03-.823.284-1.033.667c-.292.53-.197 1.187.246 1.585c.12.108.262.189.377.301a1 1 0 0 1 .215.313a4 4 0 0 1 .718 4.12a3.8 3.8 0 0 1-.89 1.334l-3.1-.676l1.963-4.87a.24.24 0 0 0-.117-.357a.23.23 0 0 0-.296.13L1.313 9.405l-.495-.182a.3.3 0 0 0-.242.077a.3.3 0 0 0-.091.171L0 17.444a.36.36 0 0 0 .546-.017a27 27 0 0 0 .978-6.876l5.724.642a.65.65 0 0 0 .322.057a.66.66 0 0 0 .322-.115a407 407 0 0 1 5.266-2.387A416 416 0 0 1 18.42 6.45a.28.28 0 0 1 .204.115a.28.28 0 0 1 .04.254a4.3 4.3 0 0 0-.841 1.045l.015.042q.02.054.052.101a.284.284 0 0 0 .419.036a4.02 4.02 0 0 1 2.729-1.335a.4.4 0 0 0 .186-.313a.4.4 0 0 0-.066-.244a1.13 1.13 0 0 1-.851-.306l.821-3.284a.68.68 0 0 0-.523-.244a133 133 0 0 1-13.428.51a.213.213 0 0 1-.233-.28a.19.19 0 0 1 .177-.127l13.524-1.095a1.2 1.2 0 0 0 .242-.134c.061-.043.125-.1.124-.182a.134.134 0 0 0-.133-.13zm-.992 2.355a.2.2 0 0 1 .134.17l-.545 1.486a1.97 1.97 0 0 1-.848.615L7.66 7.971l-.883-3.397l13.1-1.34Zm3.934 9.212L8.738 23.122l-8.565-3.23a11.7 11.7 0 0 0 2.872-1.147a11.88 11.88 0 0 0 5.393-6.456a.49.49 0 0 1 .557-.23a.48.48 0 0 1 .35.431l-.15 7.906l14.08-8.154a.42.42 0 0 1 .317-.003a.42.42 0 0 1 .224.204zm-.055-4.115l.005 3.291a.29.29 0 0 1-.26.2a.29.29 0 0 1-.29-.2l.054-3.343a.243.243 0 0 1 .245-.211a.25.25 0 0 1 .245.262z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .yalavabw {
2
+ fill: currentColor;
3
+ d: path("m18.938 5.31l-.647-2.263l-1.094-.28l-.062-1.11L15.318.514l-1.036.274l-.69-.788h-2.175l-.619.788L9.751.372l-1.754.764L7.61 2.22l-1.347.067l-1.066 2.325l.68 1.125l-.63.96l.29 2.03l1.251.415l.012 1.302l1.937 1.119l.908-.284l.66.816v4.973H9.24v-.578H7.037v1.162H9.23v.579h1.075v3.517H5.062v1.162H7.42V24h6.929v-1.09h2.262v-1.162h-5.147v-4.626h1.624v-.927h-1.624v-4.097h1.286l.76-.74l.84.336l2.098-.76l.202-1.238l1.266-.13l.83-2.043l-.535-1.166Zm-1.453 2.243l-.377.928l-1.455.15l-.237 1.442l-1.045.377l-1.128-.452l-.963.937h-1.42l-.808-1l-1.176.367l-.921-.532L7.94 8.3l-1.356-.448l-.126-.88l.792-1.208l-.742-1.227l.515-1.124l1.42-.071l.477-1.34l.852-.372l1.403.558l.806-1.027h1.082l.818.934l1.244-.329l.881.554l.077 1.36l1.274.326l.31 1.09l-.789 1.143zm-1.615 7.476h-2.783v1.163h2.783zM11.04 3.715l-1.036 1.038v1.87l1.049 1.037l2.975-.035l1.02-1.01l.046-1.834l-1.037-1.066Zm2.86 2.403l-.354.349l-2.023.024l-.36-.356v-.903l.357-.357h2.047l.354.364z");
4
+ }
@@ -0,0 +1,4 @@
1
+ .zgamo4zt {
2
+ fill: currentColor;
3
+ d: path("M10.31.615a4.5 4.5 0 0 1 3.382 0l8.998 3.648A2.1 2.1 0 0 1 24 6.208v11.584a2.1 2.1 0 0 1-1.311 1.946l-8.998 3.648a4.5 4.5 0 0 1-3.382 0l-8.998-3.648A2.1 2.1 0 0 1 0 17.792V6.208a2.1 2.1 0 0 1 1.311-1.946Zm2.705 1.668a2.7 2.7 0 0 0-2.028 0l-9 3.647a.3.3 0 0 0-.187.278v11.584a.3.3 0 0 0 .187.278l8.999 3.648a2.7 2.7 0 0 0 2.028 0l8.999-3.648a.3.3 0 0 0 .187-.278V6.208a.3.3 0 0 0-.187-.278ZM6.019 6.658L12 8.928l5.98-2.27c1.122-.427 1.762 1.256.64 1.683l-5.72 2.17V17.1c0 1.2-1.8 1.2-1.8 0v-6.59L5.38 8.34c-1.122-.426-.482-2.109.64-1.683");
4
+ }
package/iconify.json CHANGED
@@ -2,8 +2,8 @@
2
2
  "prefix": "simple-icons",
3
3
  "info": {
4
4
  "name": "Simple Icons",
5
- "total": 3369,
6
- "version": "16.4.0",
5
+ "total": 3384,
6
+ "version": "16.6.1",
7
7
  "author": {
8
8
  "name": "Simple Icons Collaborators",
9
9
  "url": "https://github.com/simple-icons/simple-icons"
@@ -25,5 +25,5 @@
25
25
  "category": "Logos",
26
26
  "palette": false
27
27
  },
28
- "lastModified": 1767597180
28
+ "lastModified": 1769408944
29
29
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@iconify-vue/simple-icons",
3
3
  "type": "module",
4
- "version": "1.0.13",
4
+ "version": "1.0.15",
5
5
  "homepage": "https://icon-sets.iconify.design/simple-icons/",
6
6
  "bugs": "https://github.com/iconify/icon-sets/issues",
7
7
  "license": "CC0-1.0",
@@ -746,6 +746,10 @@
746
746
  "types": "./types/dd0bq22g.d.ts",
747
747
  "default": "./components/a/angularuniversal.vue"
748
748
  },
749
+ "./anichart": {
750
+ "types": "./types/dd0bq22g.d.ts",
751
+ "default": "./components/a/anichart.vue"
752
+ },
749
753
  "./anilist": {
750
754
  "types": "./types/dd0bq22g.d.ts",
751
755
  "default": "./components/a/anilist.vue"
@@ -930,6 +934,10 @@
930
934
  "types": "./types/dd0bq22g.d.ts",
931
935
  "default": "./components/a/apacheparquet.vue"
932
936
  },
937
+ "./apachepdfbox": {
938
+ "types": "./types/dd0bq22g.d.ts",
939
+ "default": "./components/a/apachepdfbox.vue"
940
+ },
933
941
  "./apachepulsar": {
934
942
  "types": "./types/dd0bq22g.d.ts",
935
943
  "default": "./components/a/apachepulsar.vue"
@@ -2310,6 +2318,10 @@
2310
2318
  "types": "./types/dd0bq22g.d.ts",
2311
2319
  "default": "./components/c/chinaeasternairlines.vue"
2312
2320
  },
2321
+ "./chinarailway": {
2322
+ "types": "./types/dd0bq22g.d.ts",
2323
+ "default": "./components/c/chinarailway.vue"
2324
+ },
2313
2325
  "./chinasouthernairlines": {
2314
2326
  "types": "./types/dd0bq22g.d.ts",
2315
2327
  "default": "./components/c/chinasouthernairlines.vue"
@@ -2850,6 +2862,10 @@
2850
2862
  "types": "./types/dd0bq22g.d.ts",
2851
2863
  "default": "./components/c/cora.vue"
2852
2864
  },
2865
+ "./coreboot": {
2866
+ "types": "./types/dd0bq22g.d.ts",
2867
+ "default": "./components/c/coreboot.vue"
2868
+ },
2853
2869
  "./coreldraw": {
2854
2870
  "types": "./types/dd0bq22g.d.ts",
2855
2871
  "default": "./components/c/coreldraw.vue"
@@ -3338,6 +3354,10 @@
3338
3354
  "types": "./types/dd0bq22g.d.ts",
3339
3355
  "default": "./components/d/devdotto.vue"
3340
3356
  },
3357
+ "./developmentcontainers": {
3358
+ "types": "./types/dd0bq22g.d.ts",
3359
+ "default": "./components/d/developmentcontainers.vue"
3360
+ },
3341
3361
  "./devexpress": {
3342
3362
  "types": "./types/dd0bq22g.d.ts",
3343
3363
  "default": "./components/d/devexpress.vue"
@@ -3746,6 +3766,10 @@
3746
3766
  "types": "./types/dd0bq22g.d.ts",
3747
3767
  "default": "./components/e/edx.vue"
3748
3768
  },
3769
+ "./effect": {
3770
+ "types": "./types/dd0bq22g.d.ts",
3771
+ "default": "./components/e/effect.vue"
3772
+ },
3749
3773
  "./egghead": {
3750
3774
  "types": "./types/dd0bq22g.d.ts",
3751
3775
  "default": "./components/e/egghead.vue"
@@ -4378,6 +4402,10 @@
4378
4402
  "types": "./types/dd0bq22g.d.ts",
4379
4403
  "default": "./components/f/floorp.vue"
4380
4404
  },
4405
+ "./flower": {
4406
+ "types": "./types/dd0bq22g.d.ts",
4407
+ "default": "./components/f/flower.vue"
4408
+ },
4381
4409
  "./fluentbit": {
4382
4410
  "types": "./types/dd0bq22g.d.ts",
4383
4411
  "default": "./components/f/fluentbit.vue"
@@ -8614,6 +8642,10 @@
8614
8642
  "types": "./types/dd0bq22g.d.ts",
8615
8643
  "default": "./components/n/nintendoswitch.vue"
8616
8644
  },
8645
+ "./niri": {
8646
+ "types": "./types/dd0bq22g.d.ts",
8647
+ "default": "./components/n/niri.vue"
8648
+ },
8617
8649
  "./nissan": {
8618
8650
  "types": "./types/dd0bq22g.d.ts",
8619
8651
  "default": "./components/n/nissan.vue"
@@ -8846,6 +8878,10 @@
8846
8878
  "types": "./types/dd0bq22g.d.ts",
8847
8879
  "default": "./components/o/oculus.vue"
8848
8880
  },
8881
+ "./odido": {
8882
+ "types": "./types/dd0bq22g.d.ts",
8883
+ "default": "./components/o/odido.vue"
8884
+ },
8849
8885
  "./odin": {
8850
8886
  "types": "./types/dd0bq22g.d.ts",
8851
8887
  "default": "./components/o/odin.vue"
@@ -8886,6 +8922,10 @@
8886
8922
  "types": "./types/dd0bq22g.d.ts",
8887
8923
  "default": "./components/o/omadacloud.vue"
8888
8924
  },
8925
+ "./omarchy": {
8926
+ "types": "./types/dd0bq22g.d.ts",
8927
+ "default": "./components/o/omarchy.vue"
8928
+ },
8889
8929
  "./oneplus": {
8890
8930
  "types": "./types/dd0bq22g.d.ts",
8891
8931
  "default": "./components/o/oneplus.vue"
@@ -9590,6 +9630,10 @@
9590
9630
  "types": "./types/dd0bq22g.d.ts",
9591
9631
  "default": "./components/p/pioneerdj.vue"
9592
9632
  },
9633
+ "./pipecat": {
9634
+ "types": "./types/dd0bq22g.d.ts",
9635
+ "default": "./components/p/pipecat.vue"
9636
+ },
9593
9637
  "./piped": {
9594
9638
  "types": "./types/dd0bq22g.d.ts",
9595
9639
  "default": "./components/p/piped.vue"
@@ -9922,6 +9966,10 @@
9922
9966
  "types": "./types/dd0bq22g.d.ts",
9923
9967
  "default": "./components/p/prefect.vue"
9924
9968
  },
9969
+ "./prek": {
9970
+ "types": "./types/dd0bq22g.d.ts",
9971
+ "default": "./components/p/prek.vue"
9972
+ },
9925
9973
  "./premid": {
9926
9974
  "types": "./types/dd0bq22g.d.ts",
9927
9975
  "default": "./components/p/premid.vue"
@@ -10614,6 +10662,10 @@
10614
10662
  "types": "./types/dd0bq22g.d.ts",
10615
10663
  "default": "./components/r/refinedgithub.vue"
10616
10664
  },
10665
+ "./reflex": {
10666
+ "types": "./types/dd0bq22g.d.ts",
10667
+ "default": "./components/r/reflex.vue"
10668
+ },
10617
10669
  "./rekaui": {
10618
10670
  "types": "./types/dd0bq22g.d.ts",
10619
10671
  "default": "./components/r/rekaui.vue"
@@ -11146,6 +11198,10 @@
11146
11198
  "types": "./types/dd0bq22g.d.ts",
11147
11199
  "default": "./components/s/scaleway.vue"
11148
11200
  },
11201
+ "./scan": {
11202
+ "types": "./types/dd0bq22g.d.ts",
11203
+ "default": "./components/s/scan.vue"
11204
+ },
11149
11205
  "./scania": {
11150
11206
  "types": "./types/dd0bq22g.d.ts",
11151
11207
  "default": "./components/s/scania.vue"
@@ -12670,6 +12726,10 @@
12670
12726
  "types": "./types/dd0bq22g.d.ts",
12671
12727
  "default": "./components/t/thingiverse.vue"
12672
12728
  },
12729
+ "./things": {
12730
+ "types": "./types/dd0bq22g.d.ts",
12731
+ "default": "./components/t/things.vue"
12732
+ },
12673
12733
  "./thinkpad": {
12674
12734
  "types": "./types/dd0bq22g.d.ts",
12675
12735
  "default": "./components/t/thinkpad.vue"
@@ -1,4 +0,0 @@
1
- .a77u7abt {
2
- fill: currentColor;
3
- d: path("M2.227 4.857A2.23 2.23 0 0 0 0 7.094v7.457a2.236 2.236 0 0 0 2.237 2.237h9.253l4.229 2.355l-.962-2.355h7.006c1.236 0 2.237-1 2.237-2.237V7.094c0-1.236-1-2.237-2.237-2.237zm8.08 1.311a.86.86 0 0 1 .535.2a.77.77 0 0 1 .304.56a.85.85 0 0 1-.098.47c-.382.707-.696 1.894-.951 3.542c-.246 1.6-.334 2.846-.275 3.739q.03.367-.118.647a.63.63 0 0 1-.52.353c-.255.02-.52-.098-.775-.362c-.913-.933-1.639-2.326-2.169-4.18a184 184 0 0 0-1.413 2.825c-.578 1.11-1.069 1.678-1.481 1.708c-.265.02-.49-.206-.687-.677q-.75-1.928-1.619-7.448c-.03-.255.02-.48.157-.657c.137-.186.344-.284.618-.304q.75-.06.854.706c.304 2.051.638 3.788.991 5.21l2.149-4.09q.294-.56.736-.589c.431-.03.696.245.804.824c.246 1.305.56 2.414.932 3.356c.255-2.492.687-4.288 1.295-5.397c.148-.274.363-.412.648-.431l.084-.004zm3.734 1.063q.25 0 .53.06a2.28 2.28 0 0 1 1.57 1.137c.314.53.47 1.168.47 1.933a5.25 5.25 0 0 1-.765 2.777q-.88 1.472-2.305 1.472a2.6 2.6 0 0 1-.53-.059c-.697-.147-1.217-.52-1.57-1.138q-.471-.81-.471-1.943q0-1.515.765-2.767c.599-.981 1.364-1.472 2.306-1.472m6.152 0q.25 0 .53.06c.696.146 1.216.52 1.57 1.137c.314.53.47 1.168.47 1.933a5.25 5.25 0 0 1-.765 2.777q-.88 1.472-2.305 1.472a2.6 2.6 0 0 1-.53-.059c-.697-.147-1.217-.52-1.57-1.138q-.471-.81-.471-1.943q0-1.515.765-2.767c.599-.981 1.364-1.472 2.306-1.472m-6.107 1.645c-.307-.002-.606.201-.889.622a3.2 3.2 0 0 0-.52 1.168a3.3 3.3 0 0 0-.069.716c0 .284.06.589.177.893c.147.382.343.589.579.638c.245.049.51-.06.795-.315c.363-.323.608-.804.745-1.452c.05-.225.069-.47.069-.726a2.5 2.5 0 0 0-.176-.893c-.148-.382-.344-.588-.58-.637a1 1 0 0 0-.131-.014m6.152 0c-.307-.002-.606.201-.889.622a3.2 3.2 0 0 0-.52 1.168c-.049.225-.069.47-.069.716c0 .284.06.589.177.893c.147.382.344.589.579.638c.245.049.51-.06.795-.315c.363-.323.608-.804.745-1.452c.04-.225.07-.47.07-.726a2.5 2.5 0 0 0-.177-.893c-.148-.382-.344-.588-.58-.637a1 1 0 0 0-.131-.014");
4
- }
@@ -1,4 +0,0 @@
1
- .c43kircq {
2
- fill: currentColor;
3
- d: path("M11.992 0C10.905 0 9.96.75 9.705 1.8C1.982 3.388-1.38 12.056 2.265 18.381A11.19 11.19 0 0 0 11.992 24c6.242 0 11.215-5.05 11.215-11.216A11.19 11.19 0 0 0 14.28 1.8A2.36 2.36 0 0 0 11.992 0m0 1.681c.377 0 .673.296.673.673a.666.666 0 0 1-.673.673a.666.666 0 0 1-.673-.673c0-.377.296-.673.673-.673m1.898.673c.009 0 .057.744-.55 1.348a1.9 1.9 0 0 1-.561.387l.054 1.405l-.653.61a.112.112 0 0 1-.188-.083V4.036c0-.123.1-.223.224-.235c.86-.09 1.547-.684 1.665-1.44m-4.244.026c.014.792.43 1.534 1.11 1.96l-.024.699h.41l-2.678.202a.79.79 0 0 0-.725.785v.718c0 .41.316.752.725.786l2.18.166l-.112 4.259c-.019.687-.09 1.437-.295 2c-.144.398-.422 1.059-1.376 1.066c-.23 0-.601-.178-.976-.523a5.5 5.5 0 0 1-.73-.872c.062-.02.122-.048.184-.067h.002c.495-.153.594-.85.163-1.136h-.001c-.854-.565-1.525-1.32-1.934-2.18a.64.64 0 0 0-.542-.36a.63.63 0 0 0-.576.347a8 8 0 0 0-.42 1.072a7.45 7.45 0 0 0-.247 3.298v.004l.012.07c.079.472.708.66 1.041.337l.08-.068c.545 1.294 1.423 2.33 2.404 3.118l-.007-.005c-.354.144-.727.229-1.145.161c-1.315-.213-1.644-.717-2.972-.617c-.178.013-.39.082-.617.178a10.66 10.66 0 0 1-1.234-5c0-5.103 3.532-9.334 8.3-10.398m4.709 0a10.616 10.616 0 0 1 8.3 10.397c0 1.544-.325 3.006-.908 4.327c-.14-.024-.176-.033-.306-.036c-1.28-.027-2.133 1.547-2.935 1.373c-1.109-.239-1.563-.206-2.156-.115l-.028.01c1.124-.816 2.152-1.944 2.763-3.395c.025.024.054.043.079.067c.336.329.968.14 1.043-.338a7.46 7.46 0 0 0-.236-3.366a8 8 0 0 0-.416-1.07a.63.63 0 0 0-.578-.348a.63.63 0 0 0-.541.361c-.408.86-1.076 1.612-1.924 2.176c-.432.286-.331.983.164 1.135c.06.019.115.045.173.065a5.5 5.5 0 0 1-.731.874c-.375.346-.746.523-.976.524a1.7 1.7 0 0 1-.372-.041h-.002c-.521-.115-.799-.46-1.004-1.024s-.276-1.314-.294-2.001l-.112-4.259l2.18-.168a.79.79 0 0 0 .725-.782V6.03a.79.79 0 0 0-.725-.782l-2.68-.202h.412l-.024-.7a2.36 2.36 0 0 0 1.109-1.959M8.179 6.392h3.596a.09.09 0 0 1 .063.153l-.743.744l-2.709-.208a.224.224 0 0 1-.207-.224Zm3.981 0h3.645v.368c0 .173-.13.318-.303.335l-2.613.194l.123 4.684c.039 1.415.266 3.152 1.65 3.453a2 2 0 0 0 .462.05a.56.56 0 0 0-.409.182c-.546.65-1.166 1.305-2.083 1.601c1.871.088 4.288-.882 5.55-3.796c.691-1.627.718-2.952.777-3.054v-.001a.1.1 0 0 1 .176.011a7 7 0 0 1 .398 1.023a7 7 0 0 1 .222 3.165c-.022.135-.19.183-.288.087a6 6 0 0 0-.589-.503c-1.126 3.547-4.892 5.323-6.886 5.323V6.56a.17.17 0 0 1 .168-.168M3.145 18.554c1.129.027 1.446.91 2.678 1.11c1.11.18 1.649-.67 2.53-.872c1.06.638 2.145 1.017 3.072 1.13l-.004.001c.46.256.907.448 1.356.432c2.45-.085 2.585-1.275 4.598-.841c.798.172 1.036.558 2.698.233a10.62 10.62 0 0 1-8.081 3.692c-3.78 0-7.079-1.94-8.969-4.883");
4
- }
@@ -1,4 +0,0 @@
1
- .cmh956bq {
2
- fill: currentColor;
3
- d: path("M7.732 0a59 59 0 0 0-4.977.218V24a63 63 0 0 1 3.619-.687q.255-.041.509-.078q.323-.05.644-.096l.205-.03zm1.18.003V22.96a61 61 0 0 1 12.333-.213V1.485A61 61 0 0 0 8.912.003m1.707 1.81h.015c3.06.088 6.125.404 9.167.95a.59.59 0 0 1 .476.686a.59.59 0 0 1-.569.484a.6.6 0 0 1-.116-.009a60.6 60.6 0 0 0-8.992-.931a.59.59 0 0 1-.573-.607a.59.59 0 0 1 .592-.572zm-4.212.028a.59.59 0 0 1 .578.565a.59.59 0 0 1-.564.614a60 60 0 0 0-2.355.144l-.04.002a.59.59 0 0 1-.595-.542a.59.59 0 0 1 .54-.635q1.2-.097 2.401-.148zm4.202 2.834h.015a61.6 61.6 0 0 1 9.167.8a.59.59 0 0 1 .488.677a.59.59 0 0 1-.602.494l-.076-.006a60.4 60.4 0 0 0-8.99-.786a.59.59 0 0 1-.584-.596a.59.59 0 0 1 .582-.583m-4.211.097a.59.59 0 0 1 .587.555a.59.59 0 0 1-.554.622q-1.18.069-2.356.184l-.04.003a.59.59 0 0 1-.603-.533a.59.59 0 0 1 .53-.644q1.2-.117 2.4-.187zM10.6 7.535h.015c3.06-.013 6.125.204 9.167.65a.59.59 0 0 1 .498.67a.59.59 0 0 1-.593.504l-.076-.006a60 60 0 0 0-8.992-.638a.59.59 0 0 1-.592-.588a.59.59 0 0 1 .573-.592m1.153 2.846a61 61 0 0 1 8.02.515a.59.59 0 0 1 .509.66a.59.59 0 0 1-.586.514l-.076-.005a60 60 0 0 0-8.99-.492a.59.59 0 0 1-.603-.577a.59.59 0 0 1 .578-.603q.573-.012 1.148-.012m1.139 2.832a61 61 0 0 1 6.871.394a.59.59 0 0 1 .52.652a.59.59 0 0 1-.577.523l-.076-.004a60 60 0 0 0-8.991-.344a.59.59 0 0 1-.61-.568a.59.59 0 0 1 .567-.611q1.147-.042 2.296-.042");
4
- }
@@ -1,4 +0,0 @@
1
- .hk5037bu {
2
- fill: currentColor;
3
- d: path("M8.45 15.91H6.067v-5.506h-.028l-1.833 2.454l-1.796-2.454h-.02v5.507H0V6.808h2.263l1.943 2.671l1.98-2.671H8.45zm8.499 0h-2.384v-2.883H11.96c.008 1.011.373 1.989.914 2.884l-1.942 1.284c-.52-.793-1.415-2.458-1.415-4.527c0-1.015.211-2.942 1.638-4.37a4.8 4.8 0 0 1 2.737-1.37c.96-.15 1.936-.12 2.905-.12l.555 2.051H15.48q-1.164 0-1.839.337c-.637.32-1.009.622-1.447 1.78h2.372v-1.84h2.384zm3.922-2.05H24l-.555 2.05h-4.962V6.809h2.388z");
4
- }
@@ -1,4 +0,0 @@
1
- .rh68m6bi {
2
- fill: currentColor;
3
- d: path("m8.286 10.578l.512-8.657a.306.306 0 0 1 .247-.282L17.377.006a.306.306 0 0 1 .353.385l-1.558 5.403a.306.306 0 0 0 .352.385l2.388-.46a.306.306 0 0 1 .332.438l-6.79 13.55l-.123.19a.3.3 0 0 1-.252.14c-.177 0-.35-.152-.305-.369l1.095-5.301a.306.306 0 0 0-.388-.355l-1.433.435a.306.306 0 0 1-.389-.354l.69-3.375a.306.306 0 0 0-.37-.36l-2.32.536a.306.306 0 0 1-.374-.316zm14.976-7.926L17.284 3.74l-.544 1.887l2.077-.4a.8.8 0 0 1 .84.369a.8.8 0 0 1 .034.783L12.9 19.93l-.013.025l-.015.023l-.122.19a.8.8 0 0 1-.672.37a.83.83 0 0 1-.634-.302a.8.8 0 0 1-.16-.67l1.029-4.981l-1.12.34a.81.81 0 0 1-.86-.262a.8.8 0 0 1-.165-.67l.63-3.08l-2.027.468a.81.81 0 0 1-.768-.233a.8.8 0 0 1-.217-.6l.389-6.57l-7.44-1.33a.612.612 0 0 0-.64.906L11.58 23.691a.612.612 0 0 0 1.066-.004l11.26-20.135a.612.612 0 0 0-.644-.9");
4
- }
package/css/s/s0rwjjb.css DELETED
@@ -1,4 +0,0 @@
1
- .s0rwjjb {
2
- fill: currentColor;
3
- d: path("M0 0v7.5h7.5V0zm8.25 0v7.5h7.498V0zm8.25 0v7.5H24V0zM8.25 8.25v7.5h7.498v-7.5zm8.25 0v7.5H24v-7.5zM0 16.5V24h7.5v-7.5zm8.25 0V24h7.498v-7.5zm8.25 0V24H24v-7.5z");
4
- }
package/css/t/tgtuubc.css DELETED
@@ -1,4 +0,0 @@
1
- .tgtuubc {
2
- fill: currentColor;
3
- d: path("M17.657 3.18H9.09L7.792 4.978h8.537ZM20.005 0h-8.62L10.2 1.641h8.594zm1.643 8.188h-7.69l1.186-1.604l-8.496-.02l-4.15 5.752h8.065l-3.562 5.377H.916L8.306 24l14.778-6.307h-7.313z");
4
- }
@@ -1,4 +0,0 @@
1
- .wdn5xz7k {
2
- fill: currentColor;
3
- d: path("M13.74 1.053a.5.5 0 0 0-.157.025a.5.5 0 0 0-.25.188L7.595 9.562a.5.5 0 0 0-.084.223a.5.5 0 0 0 .032.236a.5.5 0 0 0 .14.193a.5.5 0 0 0 .215.105l3.707.786l-.23 4.58a.5.5 0 0 0 .085.3a.5.5 0 0 0 .25.189a.5.5 0 0 0 .313 0a.5.5 0 0 0 .25-.187l5.738-8.296a.5.5 0 0 0 .084-.223a.5.5 0 0 0-.032-.236a.5.5 0 0 0-.14-.194a.5.5 0 0 0-.215-.104l-3.707-.787l.23-4.58a.5.5 0 0 0-.085-.3a.5.5 0 0 0-.25-.188a.5.5 0 0 0-.156-.026M1.157 9.788c-.307.001-.6.124-.817.34a1.16 1.16 0 0 0-.34.817a1.16 1.16 0 0 0 .334.82l10.842 10.842a1.2 1.2 0 0 0 .377.252a1.2 1.2 0 0 0 .445.088h.004a1.2 1.2 0 0 0 .445-.088a1.2 1.2 0 0 0 .377-.252l10.842-10.843a1.16 1.16 0 0 0 .334-.82a1.16 1.16 0 0 0-.34-.816a1.16 1.16 0 0 0-.817-.34a1.16 1.16 0 0 0-.82.334l-5.4 5.4l-.026.02L12 20.14l-4.598-4.597l-.024-.02l-5.401-5.401a1.16 1.16 0 0 0-.82-.334");
4
- }
@@ -1,4 +0,0 @@
1
- .y2qb10sq {
2
- fill: currentColor;
3
- d: path("M7.394 7.31a6 6 0 0 1-.833-.68c-.913-.91-1.38-2.067-1.38-3.568v-.575C6.699.929 9.039 0 11.828 0c5.394 0 8.515 2.8 9.285 6.74H16.22c-.54-1.554-1.89-2.764-4.352-2.764c-2.422 0-4.136 1.276-4.473 3.334h-.002ZM4.683 3.062c0 3.236 2.034 5.162 6.106 6.177l4.316.983c3.854.87 6.2 3.03 6.2 6.55a6.6 6.6 0 0 1-1.436 4.239c0-3.511-1.85-5.409-6.31-6.55l-4.236-.946c-3.393-.76-6.011-2.536-6.011-6.36a6.58 6.58 0 0 1 1.37-4.093ZM17.18 16.484c-.292 2.235-2.092 3.495-4.698 3.495c-2.314 0-4.048-.946-4.703-2.99H2.694C3.518 21.44 7.224 24 12.519 24c2.828 0 5.277-.87 6.85-2.439v-.55c0-1.66-.433-2.876-1.342-3.816a5.5 5.5 0 0 0-.847-.71z");
4
- }