@selemondev/svgl-svelte 2.5.1 → 2.7.0
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/dist/components/Arc.svelte +1 -1
- package/dist/components/ClickUp.svelte +32 -0
- package/dist/components/JetBrains.svelte +3 -27
- package/dist/components/Nano.svelte +22 -0
- package/dist/components/Runframe.svelte +24 -0
- package/dist/components/SocketIO.svelte +7 -5
- package/dist/components/ZaiaEndless.svelte +40 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +5 -0
- package/package.json +1 -1
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
const restAttrs = Object.entries(rest)
|
|
12
12
|
.map(([k, v]) => `${k}="${v}"`)
|
|
13
13
|
.join(' ');
|
|
14
|
-
return `<svg viewBox="0 0
|
|
14
|
+
return `<svg viewBox="0 0 256 219" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" width="${width}" height="${height}" ${restAttrs}><path fill="#FFF" d="M123.632.012c13.836.398 26.332 8.52 32.32 21.089l23.761 49.984.382-.966a58.846 58.846 0 0 0 2.315-7.64l.332-1.548c4.004-20.02 23.463-32.977 43.52-29.016a36.982 36.982 0 0 1 29.018 43.526c-5.337 26.652-19.095 51.387-38.829 70.983l-.625.607 8.33 17.514c9.668 20.33-.349 44.903-21.4 51.799l-.95.297-.725.219a36.691 36.691 0 0 1-9.897 1.373 37.012 37.012 0 0 1-33.42-21.102l-6.43-13.518-1.622.402c-8.692 2.054-17.508 3.192-26.328 3.367l-2.405.024c-8.488 0-17.116-.987-25.736-2.9l-1.7-.396-6.177 12.987a36.972 36.972 0 0 1-20.713 18.852l-1.1.382a36.963 36.963 0 0 1-28.96-2.484c-17.56-9.334-24.256-31.186-15.688-49.235l7.67-16.129-.67-.65C17.39 137.46 9.054 125.67 3.524 112.996l-.737-1.733-.106-.281C-4.93 92.058 4.21 70.517 23.122 62.86c14.834-6.005 31.278-1.693 41.39 9.578l.19.218 24.446-51.422A36.858 36.858 0 0 1 121.535.01L122.57 0l1.062.012Z"/><path fill="#1A007F" d="m87.118 170.045 21.896-46.068c-16.724-3.552-33.551-13.897-43.068-26.482L43.05 145.63c12.723 10.793 27.999 19.276 44.068 24.414"/><path fill="#4E000A" d="M178.495 96.115c-11 13.483-26.275 23.483-42.62 27.379l21.827 45.93c15.931-5.38 30.827-14.069 43.69-25.206l-22.897-48.103Z"/><path fill="#1A007F" d="M43.05 145.631 31.602 169.7c-5.828 12.241-1.449 27.31 10.551 33.689 12.724 6.758 28.379 1.483 34.517-11.38l10.448-21.964A130.635 130.635 0 0 1 43.05 145.63"/><path fill="#FF9396" d="M223.942 43.565a25.137 25.137 0 0 0-29.585 19.723c-2.414 12.07-8.069 23.31-15.862 32.862l22.862 48.137c21.103-18.31 36.688-43.24 42.275-71.137 2.724-13.655-6.104-26.896-19.69-29.585"/><path fill="#002DC8" d="M135.875 123.494c-4.896 1.172-9.896 1.793-14.896 1.793-3.896 0-7.93-.448-11.965-1.31-16.724-3.552-33.551-13.897-43.068-26.482-2.38-3.138-4.31-6.414-5.655-9.759-5.207-12.862-19.862-19.068-32.724-13.896C14.705 79.047 8.5 93.702 13.671 106.563c5.896 14.62 16.31 28.034 29.379 39.068a130.48 130.48 0 0 0 44.033 24.414c11.069 3.551 22.551 5.517 33.862 5.517 12.551 0 24.93-2.173 36.723-6.138l-21.793-45.93Z"/><path fill="#FF536A" d="m213.425 169.596-12.068-25.378-22.862-48.103-.034.035s0-.035.034-.035l-33.24-69.93a25.144 25.144 0 0 0-22.69-14.344c-9.69 0-18.517 5.586-22.689 14.345L65.98 97.495c9.517 12.585 26.344 22.93 43.068 26.482l10.965-23.034c1.035-2.173 4.138-2.173 5.173 0l10.724 22.551h.069-.07l21.828 45.93 10.724 22.551a25.103 25.103 0 0 0 22.723 14.345c2.242 0 4.483-.31 6.69-.931 15.138-4.173 22.31-21.586 15.551-35.793"/></svg>`;
|
|
15
15
|
};
|
|
16
16
|
</script>
|
|
17
17
|
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import type { HTMLAttributes } from 'svelte/elements';
|
|
3
|
+
|
|
4
|
+
export interface Props extends HTMLAttributes<SVGElement> {
|
|
5
|
+
width?: number;
|
|
6
|
+
height?: number;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
let { width = 50, height = 50, ...rest }: Props = $props();
|
|
10
|
+
const svgContent = () => {
|
|
11
|
+
const restAttrs = Object.entries(rest)
|
|
12
|
+
.map(([k, v]) => `${k}="${v}"`)
|
|
13
|
+
.join(' ');
|
|
14
|
+
return `<svg viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg" width="${width}" height="${height}" ${restAttrs}>
|
|
15
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.43828 50.2095C5.81176 49.4456 5.94882 48.3212 6.71918 47.7027L14.0169 41.8433C14.6535 41.3322 15.5841 41.4476 16.1032 42.0777C21.06 48.0956 26.32 50.8815 32.142 50.8815C37.9238 50.8815 43.0403 48.135 47.7801 42.1839C48.2888 41.5452 49.2172 41.4131 49.8629 41.9129L57.2604 47.6377C58.0415 48.2422 58.1989 49.3637 57.5855 50.1379C50.5775 58.9839 41.9971 63.6446 32.142 63.6446C22.3156 63.6446 13.6586 59.013 6.43828 50.2095Z" fill="url(#paint0_linear_8_569)"/>
|
|
16
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M32.4953 17.1804C32.2202 16.9368 31.8067 16.9367 31.5314 17.1801L15.663 31.2116C15.0564 31.748 14.1285 31.6857 13.599 31.0731L7.40986 23.9122C6.88774 23.3082 6.95019 22.3961 7.54979 21.8688L31.0527 1.20062C31.6021 0.717503 32.4248 0.717611 32.9741 1.20088L56.4822 21.8847C57.0822 22.4125 57.1439 23.3256 56.6205 23.9294L50.4164 31.0866C49.8862 31.6982 48.9589 31.7594 48.353 31.2229L32.4953 17.1804Z" fill="url(#paint1_linear_8_569)"/>
|
|
17
|
+
<defs>
|
|
18
|
+
<linearGradient id="paint0_linear_8_569" x1="5.3335" y1="32.1624" x2="58.6653" y2="32.1624" gradientUnits="userSpaceOnUse">
|
|
19
|
+
<stop offset="0.225962" stop-color="#6647F0"/>
|
|
20
|
+
<stop offset="0.793269" stop-color="#0091FF"/>
|
|
21
|
+
</linearGradient>
|
|
22
|
+
<linearGradient id="paint1_linear_8_569" x1="5.3335" y1="31.6447" x2="58.6653" y2="31.6447" gradientUnits="userSpaceOnUse">
|
|
23
|
+
<stop stop-color="#FF02F0"/>
|
|
24
|
+
<stop offset="0.778846" stop-color="#F76808"/>
|
|
25
|
+
</linearGradient>
|
|
26
|
+
</defs>
|
|
27
|
+
</svg>
|
|
28
|
+
`;
|
|
29
|
+
};
|
|
30
|
+
</script>
|
|
31
|
+
|
|
32
|
+
{@html svgContent()}
|
|
@@ -11,33 +11,9 @@
|
|
|
11
11
|
const restAttrs = Object.entries(rest)
|
|
12
12
|
.map(([k, v]) => `${k}="${v}"`)
|
|
13
13
|
.join(' ');
|
|
14
|
-
return `<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" viewBox="0 0 256
|
|
15
|
-
<
|
|
16
|
-
|
|
17
|
-
<stop stop-color="#FE2857" offset="21%"/>
|
|
18
|
-
<stop stop-color="#293896" offset="100%"/>
|
|
19
|
-
</linearGradient>
|
|
20
|
-
<linearGradient x1="2.3%" y1="77.1%" x2="90.7%" y2="24.1%" id="b">
|
|
21
|
-
<stop stop-color="#FE2857" offset="0%"/>
|
|
22
|
-
<stop stop-color="#FE2857" offset="1%"/>
|
|
23
|
-
<stop stop-color="#FF318C" offset="86%"/>
|
|
24
|
-
</linearGradient>
|
|
25
|
-
<linearGradient x1="6.3%" y1="13.9%" x2="94.6%" y2="87.7%" id="c">
|
|
26
|
-
<stop stop-color="#FF318C" offset="2%"/>
|
|
27
|
-
<stop stop-color="#FE2857" offset="21%"/>
|
|
28
|
-
<stop stop-color="#FDB60D" offset="86%"/>
|
|
29
|
-
</linearGradient>
|
|
30
|
-
<linearGradient x1="91.1%" y1="27.7%" x2="2%" y2="68.6%" id="d">
|
|
31
|
-
<stop stop-color="#FDB60D" offset="1%"/>
|
|
32
|
-
<stop stop-color="#FCF84A" offset="86%"/>
|
|
33
|
-
</linearGradient>
|
|
34
|
-
</defs>
|
|
35
|
-
<path d="M112.7 117.4 42 57.6a25.6 25.6 0 1 0-24.8 43.9h.3l.7.2 89 27.1a6 6 0 0 0 2 .4 6.4 6.4 0 0 0 3.3-11.8Z" fill="url(#a)"/>
|
|
36
|
-
<path d="M126.8 18.7A18.6 18.6 0 0 0 98 3L11.8 55.4a25.6 25.6 0 1 0 30.6 41l77.3-63 .6-.5c4.1-3.6 6.5-8.7 6.5-14.2Z" fill="url(#b)"/>
|
|
37
|
-
<path d="M252.2 131.5 121.4 5.5A18.6 18.6 0 1 0 96 32.8l.2.3 139 117a12.6 12.6 0 0 0 17-18.6Z" fill="url(#c)"/>
|
|
38
|
-
<path d="M256 140.6a12.6 12.6 0 0 0-20-10.3L77.9 207.7a25.6 25.6 0 1 0 26.4 43.7l146.4-100.5c3.4-2.4 5.4-6.2 5.4-10.3Z" fill="url(#d)"/>
|
|
39
|
-
<path d="M75.8 76.9h102.5v102.4H75.8z"/>
|
|
40
|
-
<path d="M87 160.1h38.4v6.4H87v-6.4Zm-1.6-56.8 2.8-2.7c.6.9 1.5 1.4 2.6 1.5 1 0 1.8-.8 1.8-2.3v-10H97v10c.1 1.7-.5 3.4-1.6 4.6a6 6 0 0 1-4 1.7H91c-2 0-4-.9-5.4-2.5l-.2-.3ZM99 89.7h12.8v3.8h-8.5v2.4h7.6v3.4h-7.6v2.6h8.6v3.7h-13V89.7Zm19 3.9h-4.7v-3.9h14v3.9h-4.8v12.1h-4.4V93.6ZM87.3 112h7.5a6 6 0 0 1 4.4 1.4c.7.7 1 1.7 1 2.6 0 1.6-1 3-2.5 3.6 2 .4 3.3 2 3.2 4 0 2.8-2.2 4.5-6 4.5h-7.6v-16Zm8.5 5c0-1-.7-1.4-2-1.4h-2.2v2.8h2.1c1.4 0 2.1-.5 2.1-1.4Zm-1.5 4.5h-2.7v3h2.8c1.3 0 2-.6 2-1.5s-.5-1.4-1.8-1.5h-.3Zm17.1 6.6-3.2-4.8h-1.5v4.8h-4.4v-16h7.1a7 7 0 0 1 5.2 1.6 5 5 0 0 1 1.4 3.4v.4c.1 2.1-1.2 4.1-3.3 4.9l3.2 4.7 6.3-15.2h4.3l6.8 16.1h-4.8l-1.1-2.9h-6.2l-1.1 3h-8.7Zm13-11-1.9 4.6h3.6l-1.8-4.5ZM109 116h-2.3v3.8h2.4c1.4 0 2.4-.7 2.4-1.9 0-1.3-1-2-2.5-2Zm25-4h4.3v16H134v-16Zm6 0h4.2l5.7 8.6V112h4.4v16h-3.9l-6-8.8v8.8H140v-16Zm15 13.7 2.5-3a8.3 8.3 0 0 0 5.1 2c1.2 0 1.9-.4 1.9-1.1 0-.5-.3-.9-1.4-1.2l-.4-.2h-.3l-.7-.2h-.3l-.7-.2-.6-.2c-2.6-.8-4.4-1.9-4.4-4.6 0-3 2.4-5.1 6.2-5.1 2.4-.1 4.7.7 6.6 2.1l-2.2 3a7.8 7.8 0 0 0-4.4-1.5c-1.1 0-1.6.4-1.6 1s.3.9 1.3 1.2l.5.1.3.1.7.2c3.6.8 5.9 2 5.9 5 0 3.1-2.4 5-6 5h-.5c-2.5.2-5-.6-7-2l-.5-.4Z" fill="#FFF"/>
|
|
14
|
+
return `<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" viewBox="0 0 256 256" width="${width}" height="${height}" ${restAttrs}>
|
|
15
|
+
<path d="M0 0h256v256H0z"/>
|
|
16
|
+
<path d="M28 208h96v16H28v-16ZM24 66l7-7c1 2 4 4 6 4 3 0 5-2 5-6V32h11v25c0 5-1 9-4 12-3 2-6 4-10 4h-1c-5 0-10-2-14-6v-1Zm34-34h32v9H69v7h19v8H69v6h21v10H58V32Zm48 10H94V32h35v10h-12v30h-11V42ZM28 88h19c4-1 8 1 11 3 2 2 3 4 3 7 0 4-3 7-7 9 5 1 8 5 8 10 0 7-5 11-15 11H28V88Zm22 12c0-2-2-3-5-3h-6v7h5c4 0 6-1 6-4Zm-4 11h-7v8h7c3 0 5-1 5-4 0-2-1-3-4-3l-1-1Zm43 17-8-12h-4v12H66V88h18c4-1 9 1 13 4 2 2 3 5 3 9 0 6-3 11-8 13l8 11 16-37h10l17 40h-12l-2-7h-16l-3 7H89Zm32-27-5 11h9l-4-11Zm-38-4h-6v10h6c4 0 6-2 6-5s-2-5-6-5Zm62-9h11v40h-11V88Zm15 0h11l14 21V88h11v40h-10l-15-22v22h-11V88Zm38 34 6-8c4 3 8 5 13 5 3 0 4-1 4-3 0-1 0-2-3-3h-3l-1-1h-2l-2-1c-6-1-10-4-10-11s5-13 15-13c6 0 12 2 16 6l-5 7c-3-2-7-4-11-4-3 0-4 1-4 3l3 3h2l2 1c9 2 15 5 15 12 0 8-6 13-15 13h-1c-7 0-13-2-18-5l-1-1Z" fill="#FFF"/>
|
|
41
17
|
</svg>
|
|
42
18
|
`;
|
|
43
19
|
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import type { HTMLAttributes } from 'svelte/elements';
|
|
3
|
+
|
|
4
|
+
export interface Props extends HTMLAttributes<SVGElement> {
|
|
5
|
+
width?: number;
|
|
6
|
+
height?: number;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
let { width = 50, height = 50, ...rest }: Props = $props();
|
|
10
|
+
const svgContent = () => {
|
|
11
|
+
const restAttrs = Object.entries(rest)
|
|
12
|
+
.map(([k, v]) => `${k}="${v}"`)
|
|
13
|
+
.join(' ');
|
|
14
|
+
return `<svg viewBox="0 0 1080 1080" fill="none" xmlns="http://www.w3.org/2000/svg" width="${width}" height="${height}" ${restAttrs}>
|
|
15
|
+
<circle cx="540" cy="540" r="540" fill="#209CE9"/>
|
|
16
|
+
<path d="M740.509 877H793L654.016 658.179H744.939V619.785H629.627L580.858 543.005H744.922V504.619H581.676L777.649 202H727.445L542.156 486.267L360.707 202H307.195L500.509 504.619H336.791V543.005H502.197L452.727 619.785H336.791V658.179H427.984L287 877H339.061L481.572 658.179H600.141L740.509 877ZM506.568 619.785L541.304 566.459L575.516 619.785H506.568Z" fill="white"/>
|
|
17
|
+
</svg>
|
|
18
|
+
`;
|
|
19
|
+
};
|
|
20
|
+
</script>
|
|
21
|
+
|
|
22
|
+
{@html svgContent()}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import type { HTMLAttributes } from 'svelte/elements';
|
|
3
|
+
|
|
4
|
+
export interface Props extends HTMLAttributes<SVGElement> {
|
|
5
|
+
width?: number;
|
|
6
|
+
height?: number;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
let { width = 50, height = 50, ...rest }: Props = $props();
|
|
10
|
+
const svgContent = () => {
|
|
11
|
+
const restAttrs = Object.entries(rest)
|
|
12
|
+
.map(([k, v]) => `${k}="${v}"`)
|
|
13
|
+
.join(' ');
|
|
14
|
+
return `<svg viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg" width="${width}" height="${height}" ${restAttrs}>
|
|
15
|
+
<rect width="512" height="512" fill="#000000" rx="64"/>
|
|
16
|
+
<g transform="translate(32, 32) skewX(-10) scale(4.5)">
|
|
17
|
+
<path d="M 24 28 L 24 72 L 36.5 72 L 36.5 47 L 54 47 L 54 28 L 36.5 28 Z" fill="#ffffff"/>
|
|
18
|
+
<path d="M 96 28 L 96 72 L 83.5 72 L 83.5 47 L 66 47 L 66 28 L 83.5 28 Z" fill="#ffffff"/>
|
|
19
|
+
</g>
|
|
20
|
+
</svg>`;
|
|
21
|
+
};
|
|
22
|
+
</script>
|
|
23
|
+
|
|
24
|
+
{@html svgContent()}
|
|
@@ -7,10 +7,12 @@
|
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
let { width = 50, height = 50, ...rest }: Props = $props();
|
|
10
|
-
const
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
const svgContent = () => {
|
|
11
|
+
const restAttrs = Object.entries(rest)
|
|
12
|
+
.map(([k, v]) => `${k}="${v}"`)
|
|
13
|
+
.join(' ');
|
|
14
|
+
return `<svg xmlns="http://www.w3.org/2000/svg" fill="#010101" viewBox="0 0 64 64" width="${width}" height="${height}" ${restAttrs}><path d="M63.988 31.295c-.174-10.7-6.14-21.118-15.37-26.604C41.346.162 32.16-1.057 23.886 1.033 11.433 4.168 1.505 15.446.243 28.3c-1.568 12.14 4.572 24.766 15.065 30.992 10.276 6.444 24.253 6.183 34.3-.6 9.057-5.878 14.674-16.6 14.37-27.388zM33.77 59.25c-14.543 1.437-28.607-10.885-29-25.472-1.1-11.843 6.705-23.556 17.852-27.475C38.254.033 57.456 11.615 59.067 28.38c2.526 15.064-10.014 30.4-25.297 30.87zM24.2 30.38l21.03-17.2-11.364 17.243c-3.222 0-6.444 0-9.666-.044zm5.913 3.18 9.666.044-21.03 17.243L30.113 33.56z"/></svg>`;
|
|
15
|
+
};
|
|
14
16
|
</script>
|
|
15
17
|
|
|
16
|
-
{@html svgContent}
|
|
18
|
+
{@html svgContent()}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import type { HTMLAttributes } from 'svelte/elements';
|
|
3
|
+
|
|
4
|
+
export interface Props extends HTMLAttributes<SVGElement> {
|
|
5
|
+
width?: number;
|
|
6
|
+
height?: number;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
let { width = 50, height = 50, ...rest }: Props = $props();
|
|
10
|
+
const svgContent = () => {
|
|
11
|
+
const restAttrs = Object.entries(rest)
|
|
12
|
+
.map(([k, v]) => `${k}="${v}"`)
|
|
13
|
+
.join(' ');
|
|
14
|
+
return `<svg viewBox="0 0 54 96" fill="none" xmlns="http://www.w3.org/2000/svg" width="${width}" height="${height}" ${restAttrs}>
|
|
15
|
+
<path d="M6.72695 2.16419C3.40243 1.09463 0 3.57418 0 7.06651V25.1376C0 29.6966 2.99712 33.7131 7.36745 35.011L53.0525 48.5782V24.5739C53.0525 20.1009 50.1653 16.1392 45.9072 14.7692L6.72695 2.16419Z" fill="url(#paint0_linear_1299_296)"/>
|
|
16
|
+
<path opacity="0.75" d="M7.34011 39.1585C2.98351 40.4654 0 44.4753 0 49.0237V75.1801L46.1552 59.0264C50.2863 57.5806 53.0525 53.6818 53.0525 49.305V25.4453L7.34011 39.1585Z" fill="url(#paint1_linear_1299_296)"/>
|
|
17
|
+
<path d="M0 48.5791V74.2477C0 78.9382 3.16915 83.0362 7.70883 84.2161L46.6073 94.3256C49.869 95.1733 53.0525 92.7114 53.0525 89.3414V72.3328C53.0525 67.7978 50.0862 63.7964 45.747 62.4781L0 48.5791Z" fill="url(#paint2_linear_1299_296)"/>
|
|
18
|
+
<defs>
|
|
19
|
+
<linearGradient id="paint0_linear_1299_296" x1="53.052" y1="31.6374" x2="0.162013" y2="15.4139" gradientUnits="userSpaceOnUse">
|
|
20
|
+
<stop stop-color="#7B65E8"/>
|
|
21
|
+
<stop offset="1" stop-color="#5E44DD"/>
|
|
22
|
+
</linearGradient>
|
|
23
|
+
<linearGradient id="paint1_linear_1299_296" x1="53.0525" y1="42.068" x2="-0.922709" y2="45.4205" gradientUnits="userSpaceOnUse">
|
|
24
|
+
<stop stop-color="#6B4FE8"/>
|
|
25
|
+
<stop offset="0.3385" stop-color="#8E31F1"/>
|
|
26
|
+
<stop offset="0.54" stop-color="#A02AF9"/>
|
|
27
|
+
<stop offset="0.7537" stop-color="#AB26FE"/>
|
|
28
|
+
<stop offset="1" stop-color="#AE25FF"/>
|
|
29
|
+
</linearGradient>
|
|
30
|
+
<linearGradient id="paint2_linear_1299_296" x1="8.17284e-07" y1="64.3692" x2="52.6798" y2="82.8039" gradientUnits="userSpaceOnUse">
|
|
31
|
+
<stop stop-color="#9A2DF6"/>
|
|
32
|
+
<stop offset="1" stop-color="#7B4FD9"/>
|
|
33
|
+
</linearGradient>
|
|
34
|
+
</defs>
|
|
35
|
+
</svg>
|
|
36
|
+
`;
|
|
37
|
+
};
|
|
38
|
+
</script>
|
|
39
|
+
|
|
40
|
+
{@html svgContent()}
|
package/dist/index.d.ts
CHANGED
|
@@ -80,6 +80,7 @@ export { default as SvglChromiumLogo } from './components/Chromium.svelte';
|
|
|
80
80
|
export { default as SvglCiscoLogo } from './components/Cisco.svelte';
|
|
81
81
|
export { default as SvglClaudeAILogo } from './components/ClaudeAI.svelte';
|
|
82
82
|
export { default as SvglClerkLogo } from './components/Clerk.svelte';
|
|
83
|
+
export { default as SvglClickUpLogo } from './components/ClickUp.svelte';
|
|
83
84
|
export { default as SvglCloudflareLogo } from './components/Cloudflare.svelte';
|
|
84
85
|
export { default as SvglCloudflareWorkersLogo } from './components/CloudflareWorkers.svelte';
|
|
85
86
|
export { default as SvglCloudinaryLogo } from './components/Cloudinary.svelte';
|
|
@@ -336,6 +337,7 @@ export { default as SvglN8nLogo } from './components/N8n.svelte';
|
|
|
336
337
|
export { default as SvglNHostLogo } from './components/NHost.svelte';
|
|
337
338
|
export { default as SvglNPMLogo } from './components/NPM.svelte';
|
|
338
339
|
export { default as SvglNVIDIALogo } from './components/NVIDIA.svelte';
|
|
340
|
+
export { default as SvglNanoLogo } from './components/Nano.svelte';
|
|
339
341
|
export { default as SvglNeonLogo } from './components/Neon.svelte';
|
|
340
342
|
export { default as SvglNeovimLogo } from './components/Neovim.svelte';
|
|
341
343
|
export { default as SvglNestJSLogo } from './components/NestJS.svelte';
|
|
@@ -452,6 +454,7 @@ export { default as SvglRowyLogo } from './components/Rowy.svelte';
|
|
|
452
454
|
export { default as SvglRsbuildLogo } from './components/Rsbuild.svelte';
|
|
453
455
|
export { default as SvglRspackLogo } from './components/Rspack.svelte';
|
|
454
456
|
export { default as SvglRubyLogo } from './components/Ruby.svelte';
|
|
457
|
+
export { default as SvglRunframeLogo } from './components/Runframe.svelte';
|
|
455
458
|
export { default as SvglRunwayLogo } from './components/Runway.svelte';
|
|
456
459
|
export { default as SvglRustLogo } from './components/Rust.svelte';
|
|
457
460
|
export { default as SvglRxJSLogo } from './components/RxJS.svelte';
|
|
@@ -475,6 +478,7 @@ export { default as SvglSkyLogo } from './components/Sky.svelte';
|
|
|
475
478
|
export { default as SvglSkypeLogo } from './components/Skype.svelte';
|
|
476
479
|
export { default as SvglSlackLogo } from './components/Slack.svelte';
|
|
477
480
|
export { default as SvglSnapchatLogo } from './components/Snapchat.svelte';
|
|
481
|
+
export { default as SvglSocketIOLogo } from './components/SocketIO.svelte';
|
|
478
482
|
export { default as SvglSocketioLogo } from './components/Socketio.svelte';
|
|
479
483
|
export { default as SvglSolanaLogo } from './components/Solana.svelte';
|
|
480
484
|
export { default as SvglSolderaLogo } from './components/Soldera.svelte';
|
|
@@ -594,6 +598,7 @@ export { default as SvglYGeekerLogo } from './components/YGeeker.svelte';
|
|
|
594
598
|
export { default as SvglYarnLogo } from './components/Yarn.svelte';
|
|
595
599
|
export { default as SvglYouTubeLogo } from './components/YouTube.svelte';
|
|
596
600
|
export { default as SvglYoutubeMusicLogo } from './components/YoutubeMusic.svelte';
|
|
601
|
+
export { default as SvglZaiaEndlessLogo } from './components/ZaiaEndless.svelte';
|
|
597
602
|
export { default as SvglZeaburLogo } from './components/Zeabur.svelte';
|
|
598
603
|
export { default as SvglZedLogo } from './components/Zed.svelte';
|
|
599
604
|
export { default as SvglZenBrowserLogo } from './components/ZenBrowser.svelte';
|
package/dist/index.js
CHANGED
|
@@ -82,6 +82,7 @@ export { default as SvglChromiumLogo } from './components/Chromium.svelte';
|
|
|
82
82
|
export { default as SvglCiscoLogo } from './components/Cisco.svelte';
|
|
83
83
|
export { default as SvglClaudeAILogo } from './components/ClaudeAI.svelte';
|
|
84
84
|
export { default as SvglClerkLogo } from './components/Clerk.svelte';
|
|
85
|
+
export { default as SvglClickUpLogo } from './components/ClickUp.svelte';
|
|
85
86
|
export { default as SvglCloudflareLogo } from './components/Cloudflare.svelte';
|
|
86
87
|
export { default as SvglCloudflareWorkersLogo } from './components/CloudflareWorkers.svelte';
|
|
87
88
|
export { default as SvglCloudinaryLogo } from './components/Cloudinary.svelte';
|
|
@@ -338,6 +339,7 @@ export { default as SvglN8nLogo } from './components/N8n.svelte';
|
|
|
338
339
|
export { default as SvglNHostLogo } from './components/NHost.svelte';
|
|
339
340
|
export { default as SvglNPMLogo } from './components/NPM.svelte';
|
|
340
341
|
export { default as SvglNVIDIALogo } from './components/NVIDIA.svelte';
|
|
342
|
+
export { default as SvglNanoLogo } from './components/Nano.svelte';
|
|
341
343
|
export { default as SvglNeonLogo } from './components/Neon.svelte';
|
|
342
344
|
export { default as SvglNeovimLogo } from './components/Neovim.svelte';
|
|
343
345
|
export { default as SvglNestJSLogo } from './components/NestJS.svelte';
|
|
@@ -454,6 +456,7 @@ export { default as SvglRowyLogo } from './components/Rowy.svelte';
|
|
|
454
456
|
export { default as SvglRsbuildLogo } from './components/Rsbuild.svelte';
|
|
455
457
|
export { default as SvglRspackLogo } from './components/Rspack.svelte';
|
|
456
458
|
export { default as SvglRubyLogo } from './components/Ruby.svelte';
|
|
459
|
+
export { default as SvglRunframeLogo } from './components/Runframe.svelte';
|
|
457
460
|
export { default as SvglRunwayLogo } from './components/Runway.svelte';
|
|
458
461
|
export { default as SvglRustLogo } from './components/Rust.svelte';
|
|
459
462
|
export { default as SvglRxJSLogo } from './components/RxJS.svelte';
|
|
@@ -477,6 +480,7 @@ export { default as SvglSkyLogo } from './components/Sky.svelte';
|
|
|
477
480
|
export { default as SvglSkypeLogo } from './components/Skype.svelte';
|
|
478
481
|
export { default as SvglSlackLogo } from './components/Slack.svelte';
|
|
479
482
|
export { default as SvglSnapchatLogo } from './components/Snapchat.svelte';
|
|
483
|
+
export { default as SvglSocketIOLogo } from './components/SocketIO.svelte';
|
|
480
484
|
export { default as SvglSocketioLogo } from './components/Socketio.svelte';
|
|
481
485
|
export { default as SvglSolanaLogo } from './components/Solana.svelte';
|
|
482
486
|
export { default as SvglSolderaLogo } from './components/Soldera.svelte';
|
|
@@ -596,6 +600,7 @@ export { default as SvglYGeekerLogo } from './components/YGeeker.svelte';
|
|
|
596
600
|
export { default as SvglYarnLogo } from './components/Yarn.svelte';
|
|
597
601
|
export { default as SvglYouTubeLogo } from './components/YouTube.svelte';
|
|
598
602
|
export { default as SvglYoutubeMusicLogo } from './components/YoutubeMusic.svelte';
|
|
603
|
+
export { default as SvglZaiaEndlessLogo } from './components/ZaiaEndless.svelte';
|
|
599
604
|
export { default as SvglZeaburLogo } from './components/Zeabur.svelte';
|
|
600
605
|
export { default as SvglZedLogo } from './components/Zed.svelte';
|
|
601
606
|
export { default as SvglZenBrowserLogo } from './components/ZenBrowser.svelte';
|