@iconify-vue/simple-icons 1.0.9 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/a/appimage.vue +10 -0
- package/components/b/bioconductor.vue +10 -0
- package/components/e/elk.vue +10 -0
- package/components/g/ghostty.vue +10 -0
- package/components/m/mangacollec.vue +10 -0
- package/components/n/nodegui.vue +10 -0
- package/components/p/plane.vue +10 -0
- package/components/s/setuptools.vue +10 -0
- package/css/a/akuk0wbg.css +4 -0
- package/css/c/ce5ccgbn.css +4 -0
- package/css/c/cjmyr2bi.css +4 -0
- package/css/e/eo7gyrcb.css +4 -0
- package/css/f/f-ulpdbv.css +4 -0
- package/css/r/rgv4vrcx.css +4 -0
- package/css/u/up2pgbbz.css +4 -0
- package/css/z/z2eldtqa.css +4 -0
- package/iconify.json +3 -3
- package/package.json +33 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/c/ce5ccgbn.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="ce5ccgbn"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:appimage" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/f/f-ulpdbv.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="f-ulpdbv"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:bioconductor" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/u/up2pgbbz.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="up2pgbbz"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:elk" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/z/z2eldtqa.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="z2eldtqa"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:ghostty" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/c/cjmyr2bi.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="cjmyr2bi"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:mangacollec" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/e/eo7gyrcb.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="eo7gyrcb"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:nodegui" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/r/rgv4vrcx.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="rgv4vrcx"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:plane" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/a/akuk0wbg.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="akuk0wbg"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="simple-icons:setuptools" /></template>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.akuk0wbg {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M14.435 0c-.602.01-1.08.26-1.369.475c-.385.286-.509.45-1.093.452c-.583.001-.707-.162-1.094-.447S9.77-.15 8.866.096s-1.354.905-1.544 1.346s-.216.646-.72.939s-.695.213-1.172.16c-.478-.053-1.275.01-1.936.674s-.72 1.461-.664 1.939s.135.666-.155 1.172s-.493.532-.934.725a2.34 2.34 0 0 0-.945 3.561c.287.386.451.51.453 1.093s-.163.707-.448 1.094s-.628 1.109-.383 2.013s.905 1.354 1.346 1.545s.645.215.938.72s.214.694.161 1.171a2.34 2.34 0 0 0 2.613 2.6c.477-.056.666-.135 1.172.156s.532.493.725.933s.645 1.1 1.55 1.34s2.016-.22 2.01-.395c-.004-.176-.748.127-1.493-.342s-.692-.759-.856-1.134s-.458-1.08-1.279-1.55c-.82-.471-1.576-.369-1.983-.322s-.434.13-.853-.288c-.42-.417-.337-.444-.291-.851c.045-.407.142-1.163-.333-1.981s-1.18-1.109-1.556-1.271c-.376-.163-.44-.103-.595-.675s-.07-.555.172-.885c.243-.33.707-.935.704-1.881c-.002-.946-.469-1.55-.713-1.88c-.244-.328-.33-.31-.177-.882c.152-.573.217-.514.592-.678s1.08-.458 1.55-1.278c.471-.82.37-1.577.322-1.983s-.13-.434.288-.854s.444-.338.852-.293c.407.045 1.163.145 1.98-.33c.818-.475 1.107-1.18 1.27-1.556c.162-.376.105-.44.676-.595s.556-.071.885.172c.33.242.936.706 1.881.704s1.55-.47 1.878-.713c.328-.245.31-.33.883-.178s.515.217.68.593c.164.375.458 1.079 1.278 1.55s1.576.369 1.983.322s.434-.13.854.288s.336.444.29.85s-.142 1.164.333 1.982s1.18 1.107 1.556 1.27s.44.104.595.676s.07.555-.172.885s-.707.935-.704 1.88s.469 1.55.713 1.878c.244.329.33.31.177.883c-.152.573-.217.515-.592.68s-1.08.458-1.55 1.278s-.37 1.576-.322 1.983s.13.434-.288.854s-.444.336-.852.29c-.407-.044-1.163-.142-1.98.333c-.818.475-1.11 1.18-1.272 1.556c-.135.312-.121.41-.44.523a1 1 0 0 0-.16-.073c-.528-.199-.597.07-1.03.392c-.389.29-.667.324-.65.706a.5.5 0 0 0-.1 0c-.088.01-.123.024-.217-.03c-.094-.053-.098-.091-.134-.172a.43.43 0 0 0-.287-.248c-.167-.045-.373.04-.372.073c0 .032.139-.024.277.063s.127.14.158.21c.03.07.085.2.237.287s.291.068.366.06c.058-.007.075-.017.114.013c.116.396.395.352.88.534c.527.199.689.437 1.121.115c.317-.236.286-.407.209-.685a2.35 2.35 0 0 0 1.243-1.243c.19-.441.215-.645.72-.938s.694-.214 1.171-.16a2.338 2.338 0 0 0 2.6-2.613c-.055-.478-.135-.666.155-1.172s.494-.532.934-.725a2.338 2.338 0 0 0 .945-3.561c-.287-.386-.451-.51-.452-1.093c-.002-.584.162-.708.447-1.095s.628-1.108.383-2.013A2.34 2.34 0 0 0 22.236 7c-.441-.19-.645-.215-.938-.72s-.214-.694-.161-1.172a2.34 2.34 0 0 0-2.613-2.6c-.477.055-.666.136-1.172-.155s-.532-.493-.724-.933a2.34 2.34 0 0 0-1.55-1.34a2.3 2.3 0 0 0-.643-.08m-1.534 4.463a91 91 0 0 0-1.975.019a.25.25 0 0 0-.244.248v.671h-.914v-.67a.25.25 0 0 0-.244-.25H8.12a.25.25 0 0 0-.244.25V7.7c0 .132.108.248.244.248h1.403a.25.25 0 0 0 .244-.249v-.67h.914v.67c0 .133.108.249.244.249h.58v3.591c-.404.203-.695.599-.695 1.08v5.727a1.232 1.232 0 0 0 2.464 0V12.62c0-.481-.29-.877-.693-1.08V7.95h.687l.037-.033c.111-.098.147-.219.265-.37c.115-.149.293-.321.594-.476c.836-.284 1.41-.075 1.793.18c.192.128.333.269.428.368c.047.05.079.086.115.118l.035.026c.015.009.038.025.09.02c.051-.005.105-.06.116-.093s.009-.05.008-.066c-.015-.223-.13-1.68-1.715-2.518l-.003-.002l-.003-.002a17 17 0 0 0-1.013-.416a7 7 0 0 0-.413-.14a1.4 1.4 0 0 0-.262-.058l-.023-.007l-.036-.006l-.094-.005a9 9 0 0 0-.286-.006z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.ce5ccgbn {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M1.64 0C.735 0 0 .736 0 1.64v20.72C0 23.265.736 24 1.64 24h20.72c.904 0 1.64-.736 1.64-1.64V1.64C24 .735 23.264 0 22.36 0Zm8.56 2.42h3.6v3.6h1.912L12 10.22l-3.713-4.2H10.2Zm1.331 8.4h1.313c.103 0 .169.177.169.394v1.368c.417.096.81.266 1.162.488l.975-.975c.153-.153.32-.223.394-.15l.918.919c.074.073.004.24-.15.393l-.975.975c.223.352.393.745.488 1.163h1.369c.217 0 .394.065.394.169v1.312c0 .104-.177.169-.394.169h-1.369a3.7 3.7 0 0 1-.487 1.162l.974.975c.154.154.224.32.15.394l-.918.919c-.074.073-.24.003-.394-.15l-.975-.975a3.7 3.7 0 0 1-1.163.487v1.37c0 .216-.065.393-.168.393H11.53c-.103 0-.169-.177-.169-.394v-1.369a3.7 3.7 0 0 1-1.162-.487l-.975.975c-.153.153-.32.223-.394.15l-.918-.919c-.074-.073-.004-.24.15-.394l.974-.975a3.7 3.7 0 0 1-.487-1.162H7.181c-.217 0-.393-.065-.393-.169v-1.312c0-.104.176-.17.393-.17H8.55a3.7 3.7 0 0 1 .487-1.162l-.974-.975c-.154-.153-.224-.32-.15-.393l.918-.92c.074-.072.24-.002.394.15l.975.976a3.7 3.7 0 0 1 1.163-.488v-1.368c0-.217.065-.394.168-.394m.656 3.731c-.917 0-1.668.752-1.668 1.669s.751 1.669 1.669 1.669c.917 0 1.668-.752 1.668-1.67c0-.916-.751-1.668-1.669-1.668");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.cjmyr2bi {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M12.001 0L1.609 6v12L12 24l10.39-6V6Zm0 3.114l7.695 4.443v8.886l-7.695 4.443l-7.697-4.443V7.557Zm0 .556L4.786 7.836v8.33l7.215 4.164l7.213-4.164v-8.33Zm0 .55l6.736 3.89v7.78l-6.736 3.89l-6.738-3.89V8.11Zm0 3.356c-.067 0-.134.004-.174.01a1.13 1.13 0 0 0-.732.463a1.2 1.2 0 0 0-.182.445l-.01.065l-.027-.006a1.2 1.2 0 0 0-.426-.008a1.2 1.2 0 0 0-.433.174c-.09.058-.271.244-.342.351c-.262.394-.242.892.053 1.262c.044.055.09.086.851.604l.803.546l.045-.044a.8.8 0 0 1 .468-.233l.032-.004v-1.148l.02-.018c.03-.029.083-.028.109 0l.017.016v1.15l.031.004a.8.8 0 0 1 .47.233l.044.046l.8-.545c.441-.299.813-.557.825-.572c.183-.214.277-.474.266-.742c-.012-.31-.137-.557-.405-.807a1.1 1.1 0 0 0-.98-.265l-.027.006l-.01-.067a1.2 1.2 0 0 0-.184-.447a1.4 1.4 0 0 0-.275-.275a1.2 1.2 0 0 0-.455-.184a1 1 0 0 0-.172-.01m3.441 2.518a1.7 1.7 0 0 0-.88.254c-.022.016-.44.302-.934.638c-.494.337-.904.616-.91.623c-.01.01-.008.015.006.043c.028.054.053.14.064.207l.01.063h.83c.584 0 .836.005.855.012c.015.005.032.014.037.023a.11.11 0 0 1-.007.096l-.018.02l-.848.001l-.85.004l-.009.063a.8.8 0 0 1-.064.205c-.014.028-.015.036-.006.045c.006.006.416.286.91.623c.493.335.912.623.933.638c.14.1.442.21.666.24c.047.008.145.012.215.012a1.69 1.69 0 0 0 1.526-.949l.046-.098l.03.006c.089.014.257.015.343 0c.418-.068.757-.376.862-.783l.021-.078l-.015-.062a1.06 1.06 0 0 0-.268-.485a1.05 1.05 0 0 0-.566-.31a1.4 1.4 0 0 0-.352-.01l-.055.008l-.048-.098a1.67 1.67 0 0 0-.778-.775a1.75 1.75 0 0 0-.746-.176m-6.88.006a1.6 1.6 0 0 0-.737.162c-.35.167-.625.438-.793.783l-.046.098l-.055-.008a2 2 0 0 0-.172-.006a.9.9 0 0 0-.361.068a1.07 1.07 0 0 0-.653.742l-.015.063l.02.078c.08.306.293.561.583.697a1 1 0 0 0 .477.096l.146-.01l.03-.006l.046.098a1.71 1.71 0 0 0 1.362.945a1.73 1.73 0 0 0 .918-.176a27 27 0 0 0 1.029-.687l.95-.648a.2.2 0 0 0-.019-.051a.7.7 0 0 1-.06-.197l-.01-.065h-.836c-.618 0-.84-.002-.853-.01a.073.073 0 0 1-.02-.119l.024-.021l.841-.002l.844-.002l.01-.06a.7.7 0 0 1 .06-.2a.2.2 0 0 0 .018-.053c0-.002-.428-.292-.95-.646c-.614-.419-.973-.66-1.028-.688a1.6 1.6 0 0 0-.75-.175m3.404 1.257a.6.6 0 0 0-.426.196a.6.6 0 0 0-.164.28a.7.7 0 0 0 0 .333c.065.23.258.415.486.465a.65.65 0 0 0 .777-.555a.64.64 0 0 0-.355-.652a.6.6 0 0 0-.318-.067m-.584 1.159l-.799.546c-.44.3-.808.555-.82.567a1 1 0 0 0-.072.086a1.065 1.065 0 0 0 .129 1.39c.189.2.392.31.654.354c.08.014.255.013.345-.004l.082-.012c.002.002.007.03.012.06c.025.159.103.342.2.473c.179.243.467.413.761.446c.081.009.225.003.307-.01a1.15 1.15 0 0 0 .595-.307c.159-.158.276-.385.31-.601a.4.4 0 0 1 .013-.06a1.4 1.4 0 0 0 .428.016c.257-.045.463-.156.646-.347c.148-.155.227-.278.285-.447a1.06 1.06 0 0 0-.225-1.041a36 36 0 0 0-.82-.568l-.795-.541l-.045.046a.8.8 0 0 1-.469.23l-.03.007v1.105l-.022.022a.075.075 0 0 1-.106-.004l-.02-.024V12.8l-.03-.006a.8.8 0 0 1-.47-.23z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.eo7gyrcb {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M13.493 0c-.222.074-.438.142-.652.218c-1.282.457-2.502 1.038-3.626 1.81c-.777.535-1.48 1.151-2.043 1.915q-.389.524-.646 1.123c-.013.031-.041.066-.071.077c-6.645 4.987.731.036-3.017 3.114c-.729.616-1.376 1.304-1.863 2.13c-.325.55-.565 1.131-.64 1.772c-.012.089-.012.179-.016.268c.529-.498 1.14-.971 1.722-1.19l-.033.072c-.072.151-.15.3-.215.453c-.285.679-.412 1.381-.309 2.116c.855 2.987 3.537 5.188 5.25 7.404c.01.014.022.025.046.05c.081-.78-.091-1.496-.38-2.194c1.484 1.278 2.243 2.9 2.305 4.862c.018-.01.032-.015.041-.024c.58-.55 1.141-1.117 1.607-1.77c.376-.528.686-1.088.85-1.72q.122-.462.104-.94a.12.12 0 0 1 .025-.074c.561-.577 1.205-1.02 1.995-1.222c.571-.146 1.143-.131 1.716-.007c.844.183 1.689.356 2.53.55c.224.05.42.03.632-.047c1.052-.383 2.026-.9 2.867-1.65c.622-.552 1.105-1.202 1.396-1.988c.028-.076.014-.107-.05-.15c-1.578-1.04-3.154-2.085-4.732-3.126c-.077-.05-.1-.108-.095-.194a.68.68 0 0 1 .353-.563c.131-.078.275-.135.424-.207c-1.17-1.338-2.396-2.626-3.761-3.78q.14-.31.274-.62c.397-.924.746-1.865.976-2.846c.098-.42.168-.844.189-1.276v-.094c-1.008.28-1.976.621-2.875 1.176c.007-.12.012-.23.02-.338c.04-.565.038-1.129-.015-1.693A6.5 6.5 0 0 0 13.53.102zm-.588 1.122c.004.023.007.032.007.041c.008.39.03.78.022 1.17a9.5 9.5 0 0 1-.369 2.449c-.144.503-.33.989-.59 1.445c-.03.052-.063.086-.123.1c-.196.05-.39.108-.588.155c-.154.035-.311.058-.489.09c-.034-.208-.072-.402-.097-.596a1.4 1.4 0 0 1 .07-.577c-.342.299-.646.62-.701 1.1c-.173-1.068.039-2.056.607-2.974c-.896.744-1.603 1.618-1.906 2.774a3 3 0 0 1-.054-.325a3.04 3.04 0 0 1 .282-1.604c.289-.62.724-1.127 1.23-1.577c.691-.615 1.47-1.094 2.302-1.491c.13-.062.26-.118.396-.18Zm-.03 8.198a5 5 0 0 1 .665.03a4.6 4.6 0 0 1 2.195.823c.661.468 1.166 1.076 1.572 1.772c.02.033.048.066.08.085l2.257 1.365q.67.406 1.34.807c.043.026.057.05.046.103a3 3 0 0 0-.042.293c-.042.433-.02.86.115 1.277c.086.263.227.496.402.71q-.01.017-.02.027c-.123.109-.244.222-.372.325c-.77.615-1.634 1.058-2.56 1.387a.34.34 0 0 1-.242-.002a14 14 0 0 0-1.854-.524a14 14 0 0 0-2.87-.318c-.393 0-.786.02-1.178.038c-.15.006-.299.029-.448.044c.463.102.931.173 1.392.362a4.8 4.8 0 0 0-1.533.973l-.023-.082c-.07-.234-.13-.473-.214-.703c-.303-.832-.752-1.587-1.26-2.307c-.332-.473-.667-.943-.93-1.46l-.133-.264c-.11.12-.201.466-.237.87c-.075-.184-.15-.367-.214-.555c-.199-.576-.33-1.164-.302-1.778c.024-.55.187-1.05.535-1.482a2.9 2.9 0 0 1 1.062-.806c.752-.351 1.553-.5 2.375-.554q.223-.013.447-.02v-.011l-1.003-.297c.015-.012.018-.017.023-.018l.081-.018q.423-.085.849-.093z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.f-ulpdbv {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M15.103 0a.649.649 0 1 0 .001 1.298a.649.649 0 0 0 0-1.298m7.473.031a.69.69 0 1 0 .001 1.38a.69.69 0 0 0 0-1.38M7.757.727a.663.663 0 1 0 .001 1.325a.663.663 0 0 0 0-1.325m5.87.053a.495.495 0 1 0 0 .99a.495.495 0 0 0 0-.99m3.256.07a.663.663 0 1 0 0 1.325a.662.662 0 0 0 0-1.324m-7.275.596a.755.755 0 0 0-.756.758a.755.755 0 1 0 1.51 0a.755.755 0 0 0-.754-.758m-3.373.395a.59.59 0 0 0-.596.588c0 .325.267.59.596.59c.33 0 .597-.265.596-.59a.59.59 0 0 0-.596-.588m6.397.1a.347.347 0 1 0-.002.693a.347.347 0 0 0 .002-.694m8.941.034a.455.455 0 1 0 0 .91a.455.455 0 0 0 0-.91m-3.065.108a.808.808 0 1 0-.002 1.615a.808.808 0 0 0 .002-1.615m-7.183.607a.935.935 0 1 0 0 1.87a.935.935 0 0 0 0-1.87m-5.978.541a.39.39 0 1 0 0 .78a.39.39 0 0 0 0-.78m15.203.217a.865.865 0 1 0 .003 1.73a.865.865 0 0 0-.003-1.73m-7.52.857a.736.736 0 1 0 .004 1.472a.736.736 0 0 0-.003-1.472m-3.63.12a.579.579 0 1 0 .002 1.158a.579.579 0 0 0-.002-1.158M22 4.762a.499.499 0 1 0 .002.998a.499.499 0 0 0-.002-.998m-17.05.094c-.01 4.734.082 13.81-.009 14.286c-.39-.202-1.113-.406-2.135-.012c-1.13.435-2.007 1.386-2.216 2.404a4 4 0 0 0-.004 1.24c.13.688.554 1.116 1.193 1.204a3.8 3.8 0 0 0 1.182-.059c1.006-.262 1.94-1.01 2.38-1.91c.291-.597.266.227.264-8.703L5.604 5.37c-.22-.167-.435-.342-.652-.514m2.477.137a.792.792 0 1 0 .001 1.583a.792.792 0 0 0 0-1.583m11.858.06a.295.295 0 1 0 .001.59a.295.295 0 0 0 0-.59m-4.245.516a.639.639 0 1 0 0 1.277a.639.639 0 0 0 0-1.277m8.068.078a.347.347 0 1 0 0 .694a.347.347 0 0 0 0-.694m-4.82.08a.387.387 0 1 0 0 .774a.387.387 0 0 0 0-.774m-1.294.58a.488.488 0 1 0 0 .975a.488.488 0 0 0 0-.976");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.rgv4vrcx {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M0 5.358a.854.854 0 0 1 1.235-.767L6.134 7.05v5.768c0 .81.456 1.553 1.179 1.915l4.42 2.218v1.692a.853.853 0 0 1-1.235.766L1.18 14.732A2.14 2.14 0 0 1 0 12.817zm6.134 0a.853.853 0 0 1 1.235-.766l4.898 2.458v5.768c0 .81.457 1.552 1.18 1.915l4.42 2.218v1.692a.853.853 0 0 1-1.235.765l-4.899-2.457v-5.769a2.14 2.14 0 0 0-1.179-1.914L6.134 7.05zm6.133 0a.853.853 0 0 1 1.235-.766l9.319 4.676A2.14 2.14 0 0 1 24 11.182v7.46a.853.853 0 0 1-1.235.766l-4.899-2.457v-5.769a2.14 2.14 0 0 0-1.179-1.914l-4.42-2.218z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.up2pgbbz {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M1.284 0L.038.392C.765 3.308 1.763 4.84 2.9 5.64c1.153.818 2.483.888 3.938.74c1.934-.2 4.117-.836 6.345.095c.603.305 1.238.692 1.911 1.206c.356-.122.666-.279.975-.392c0 0 .248-.892-.155-2.032c-.348-1.001-1.215-2.264-3.404-3.151l-.434 1.358c1.347.557 2.074 1.244 2.445 1.897c.055.096.093.183.132.27a7 7 0 0 0-.89-.453c-2.173-1.13-3.913-1.2-5.307-1.374c-.742-.087-1.37-.191-1.888-.61C6.05 2.769 5.663 2.029 5.33.74l-1.238.41c.441 1.705 1.03 2.645 1.718 3.211c.31.252.642.435.998.566c-1.222.074-2.375.058-3.226-.514C2.638 3.743 1.887 2.42 1.284 0m6.925.313c-.07.975.085 1.767.34 2.412c.596.083 1.114.095 1.656.2c-.418-.522-.79-1.323-.712-2.507Zm9.308 1.175l-.843 1.089c.634.626.812 1.375.812 2.01a4.5 4.5 0 0 0-1.014-.774c.558.732.635 2.033.674 2.733l1.199.148s1.362-3.064-.828-5.206m-6.244 6.037C9.919 7.7 9.199 7.3 8.766 8.726c0 0 1.455 2.429 5.331 2.368c-.217.992-.116 1.724-.116 2.603c0 2.924-2.09 5.475-6.693 5.475c-.86 0-1.787.063-2.723.21C6.218 22.49 9.386 24 13.715 24c1.813 0 3.424-.407 4.804-1.149q.126-.57.236-1.198c.14-.784.217-1.445.255-2.01c.178-1.437.279-3.056.31-4.902l-1.896-.67h5.826l.565-1.436c-.55.026-1.207-.296-1.207-.296l.132-.697h1.222l-6.615-3.856c-.735.314-1.51.723-2.05 1.219c-.434-.348-1.935-1.436-4.024-1.48");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.z2eldtqa {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M12 0C6.7 0 2.4 4.3 2.4 9.6v11.146c0 1.772 1.45 3.267 3.222 3.254a3.18 3.18 0 0 0 1.955-.686a1.96 1.96 0 0 1 2.444 0a3.18 3.18 0 0 0 1.976.686c.75 0 1.436-.257 1.98-.686c.715-.563 1.71-.587 2.419-.018c.59.476 1.355.743 2.182.699c1.705-.094 3.022-1.537 3.022-3.244V9.601C21.6 4.3 17.302 0 12 0M6.069 6.562a1 1 0 0 1 .46.131l3.578 2.065v.002a.974.974 0 0 1 0 1.687L6.53 12.512a.975.975 0 0 1-.976-1.687L7.67 9.602L5.553 8.38a.975.975 0 0 1 .515-1.818m7.438 2.063h4.7a.975.975 0 1 1 0 1.95h-4.7a.975.975 0 0 1 0-1.95");
|
|
4
|
+
}
|
package/iconify.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"prefix": "simple-icons",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Simple Icons",
|
|
5
|
-
"total":
|
|
6
|
-
"version": "16.
|
|
5
|
+
"total": 3358,
|
|
6
|
+
"version": "16.2.0",
|
|
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":
|
|
28
|
+
"lastModified": 1765694397
|
|
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.
|
|
4
|
+
"version": "1.0.11",
|
|
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",
|
|
@@ -986,6 +986,10 @@
|
|
|
986
986
|
"types": "./types/dd0bq22g.d.ts",
|
|
987
987
|
"default": "./components/a/appian.vue"
|
|
988
988
|
},
|
|
989
|
+
"./appimage": {
|
|
990
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
991
|
+
"default": "./components/a/appimage.vue"
|
|
992
|
+
},
|
|
989
993
|
"./appium": {
|
|
990
994
|
"types": "./types/dd0bq22g.d.ts",
|
|
991
995
|
"default": "./components/a/appium.vue"
|
|
@@ -1638,6 +1642,10 @@
|
|
|
1638
1642
|
"types": "./types/dd0bq22g.d.ts",
|
|
1639
1643
|
"default": "./components/b/binance.vue"
|
|
1640
1644
|
},
|
|
1645
|
+
"./bioconductor": {
|
|
1646
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
1647
|
+
"default": "./components/b/bioconductor.vue"
|
|
1648
|
+
},
|
|
1641
1649
|
"./biolink": {
|
|
1642
1650
|
"types": "./types/dd0bq22g.d.ts",
|
|
1643
1651
|
"default": "./components/b/biolink.vue"
|
|
@@ -3822,6 +3830,10 @@
|
|
|
3822
3830
|
"types": "./types/dd0bq22g.d.ts",
|
|
3823
3831
|
"default": "./components/e/eljueves.vue"
|
|
3824
3832
|
},
|
|
3833
|
+
"./elk": {
|
|
3834
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
3835
|
+
"default": "./components/e/elk.vue"
|
|
3836
|
+
},
|
|
3825
3837
|
"./ello": {
|
|
3826
3838
|
"types": "./types/dd0bq22g.d.ts",
|
|
3827
3839
|
"default": "./components/e/ello.vue"
|
|
@@ -4766,6 +4778,10 @@
|
|
|
4766
4778
|
"types": "./types/dd0bq22g.d.ts",
|
|
4767
4779
|
"default": "./components/g/ghostery.vue"
|
|
4768
4780
|
},
|
|
4781
|
+
"./ghostty": {
|
|
4782
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
4783
|
+
"default": "./components/g/ghostty.vue"
|
|
4784
|
+
},
|
|
4769
4785
|
"./gimp": {
|
|
4770
4786
|
"types": "./types/dd0bq22g.d.ts",
|
|
4771
4787
|
"default": "./components/g/gimp.vue"
|
|
@@ -7502,6 +7518,10 @@
|
|
|
7502
7518
|
"types": "./types/dd0bq22g.d.ts",
|
|
7503
7519
|
"default": "./components/m/manageiq.vue"
|
|
7504
7520
|
},
|
|
7521
|
+
"./mangacollec": {
|
|
7522
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
7523
|
+
"default": "./components/m/mangacollec.vue"
|
|
7524
|
+
},
|
|
7505
7525
|
"./mangaupdates": {
|
|
7506
7526
|
"types": "./types/dd0bq22g.d.ts",
|
|
7507
7527
|
"default": "./components/m/mangaupdates.vue"
|
|
@@ -8582,6 +8602,10 @@
|
|
|
8582
8602
|
"types": "./types/dd0bq22g.d.ts",
|
|
8583
8603
|
"default": "./components/n/nodedotjs.vue"
|
|
8584
8604
|
},
|
|
8605
|
+
"./nodegui": {
|
|
8606
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
8607
|
+
"default": "./components/n/nodegui.vue"
|
|
8608
|
+
},
|
|
8585
8609
|
"./nodemon": {
|
|
8586
8610
|
"types": "./types/dd0bq22g.d.ts",
|
|
8587
8611
|
"default": "./components/n/nodemon.vue"
|
|
@@ -9570,6 +9594,10 @@
|
|
|
9570
9594
|
"types": "./types/dd0bq22g.d.ts",
|
|
9571
9595
|
"default": "./components/p/pkgsrc.vue"
|
|
9572
9596
|
},
|
|
9597
|
+
"./plane": {
|
|
9598
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
9599
|
+
"default": "./components/p/plane.vue"
|
|
9600
|
+
},
|
|
9573
9601
|
"./planet": {
|
|
9574
9602
|
"types": "./types/dd0bq22g.d.ts",
|
|
9575
9603
|
"default": "./components/p/planet.vue"
|
|
@@ -11274,6 +11302,10 @@
|
|
|
11274
11302
|
"types": "./types/dd0bq22g.d.ts",
|
|
11275
11303
|
"default": "./components/s/setapp.vue"
|
|
11276
11304
|
},
|
|
11305
|
+
"./setuptools": {
|
|
11306
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
11307
|
+
"default": "./components/s/setuptools.vue"
|
|
11308
|
+
},
|
|
11277
11309
|
"./sfml": {
|
|
11278
11310
|
"types": "./types/dd0bq22g.d.ts",
|
|
11279
11311
|
"default": "./components/s/sfml.vue"
|