@selemondev/svgl-svelte 2.0.3 → 2.0.4
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/README.md
CHANGED
|
@@ -5,6 +5,15 @@
|
|
|
5
5
|
</h1>
|
|
6
6
|
</p>
|
|
7
7
|
|
|
8
|
+
<!-- automd:badges color="green" license name="@selemondev/svgl-svelte" codecov packagephobia -->
|
|
9
|
+
[](https://github.com/selemondev/svgl-svelte/actions/workflows/ci.yml)
|
|
10
|
+
[](https://npmjs.com/package/@selemondev/svgl-svelte)
|
|
11
|
+
[](https://npm.chart.dev/@selemondev/svgl-svelte)
|
|
12
|
+
[](https://packagephobia.com/result?p=@selemondev/svgl-svelte)
|
|
13
|
+
|
|
14
|
+
<!-- /automd -->
|
|
15
|
+
|
|
16
|
+
|
|
8
17
|
**Svgl Svelte** is an open-source npm package that offers a collection of high-quality brand SVG logos as reusable **Svelte components** with complete TypeScript support.
|
|
9
18
|
|
|
10
19
|
This package is powered by the official [`pheralb/svgl`](https://github.com/pheralb/svgl) repository.
|
|
@@ -0,0 +1,27 @@
|
|
|
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 restAttrs = Object.entries(rest)
|
|
11
|
+
.map(([k, v]) => `${k}="${v}"`)
|
|
12
|
+
.join(' ');
|
|
13
|
+
const svgContent = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 121 121" width="${width}" height="${height}" ${restAttrs}>
|
|
14
|
+
<path fill="#c6fe1e" d="M60.5.5C27.364.5.5 27.364.5 60.5s26.864 60 60 60 60-26.864 60-60-26.864-60-60-60" />
|
|
15
|
+
<mask id="a" width="91" height="76" x="18" y="27" maskUnits="userSpaceOnUse" style="mask-type:luminance">
|
|
16
|
+
<path fill="#fff" d="M108.5 27.5h-90v75h90z" />
|
|
17
|
+
</mask>
|
|
18
|
+
<g fill="#0d0d0d" mask="url(#a)">
|
|
19
|
+
<path
|
|
20
|
+
d="M53.341 44.804h-.04c-2.48-.712-5.104.712-5.944 3.064-.928 2.528.544 5.424 3.144 6.224 6.368 1.808 9.104-7.32 2.84-9.288" />
|
|
21
|
+
<path
|
|
22
|
+
d="M107.614 57.708c-8.2-17.96-34.36-10.528-36.776-15.232-7.08-11.112-20.296-17.352-34.584-14.136-2.2-.88-9.776-1.12-14.672 1.96l2.952 1.304c.224.096.16.072.488.192 1.336.504 1.104.36.144.888-2.2 1.288-4.944 2.784-6.656 5.032.072.104 3.768.992 3.768.992.064.016.752.088.6.392-12.088 19.088 8.296 47.896 18.192 63.4h28.648c-4.424-7.92-9.48-18.728-7.752-26.064.312-1.328.712-3.016 2.344-3.24 3.944-.632 9.224-.576 12.984-1h.056c.8-.04 20.384-2.528 25.072 9.68.4 1.12 1.32.392 1.688-.344 3.496-6.952 5.752-17.896 3.52-23.816zm-31.616-5.896c-1.376 2.456-2.312 5.648-2.552 8.432-.128 1.768.056 3.512.232 5.28.096.976.104 2.208-.68 2.848-.68.576-1.808.632-2.944.712-5.576-.024-19.176 0-24.416-3.568l-.032-.024c-7.624-4.648-11.704-15.144-7.176-23.296 1.464-2.768 4.16-4.568 7.232-5.248 3.952-.904 8.304-.232 11.832 1.616 1.44.728 3.16 1.688 4.472 2.792 2.6 2.272 4.824 4.632 8.232 5.36 1.568.448 3.2.384 4.768.704 2.936.704 2.2 2.376 1.024 4.376z" />
|
|
23
|
+
</g>
|
|
24
|
+
</svg>`;
|
|
25
|
+
</script>
|
|
26
|
+
|
|
27
|
+
{@html svgContent}
|
|
@@ -0,0 +1,34 @@
|
|
|
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 restAttrs = Object.entries(rest)
|
|
11
|
+
.map(([k, v]) => `${k}="${v}"`)
|
|
12
|
+
.join(' ');
|
|
13
|
+
const svgContent = `<svg viewBox="0 0 212 46" fill="none" xmlns="http://www.w3.org/2000/svg" width="${width}" height="${height}" ${restAttrs}>
|
|
14
|
+
<g clip-path="url(#clip0_2005_3051)">
|
|
15
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.7987 32.4147L14.2387 42.0947C15.5813 42.5627 16.9547 42.8747 18.36 43V37.848H21.6387V43C23.044 42.8747 24.4493 42.5627 25.8227 42.0947L22.2627 32.4147C21.5133 30.3533 18.5787 30.3533 17.7973 32.4147H17.7987Z" fill="#01353C" style="fill:#01353C;fill:color(display-p3 0.0039 0.2078 0.2353);fill-opacity:1;"/>
|
|
16
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.1053 31.228L29.4453 40.596C30.7253 39.972 31.944 39.2227 33.0053 38.316L29.352 34.6627L31.6933 32.3213L35.3467 35.9747C36.252 34.8813 37.0333 33.664 37.6573 32.384L28.2893 28.044C26.2907 27.1067 24.2307 29.2 25.136 31.1973L25.1053 31.228Z" fill="#01353C" style="fill:#01353C;fill:color(display-p3 0.0039 0.2078 0.2353);fill-opacity:1;"/>
|
|
17
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.4147 25.232L39.0947 28.792C39.5627 27.4493 39.8747 26.076 40 24.6707H34.848V21.392H40C39.8747 19.9867 39.5627 18.5813 39.0947 17.208L29.4147 20.768C27.3533 21.5173 27.3533 24.452 29.4147 25.2333V25.232Z" fill="#01353C" style="fill:#01353C;fill:color(display-p3 0.0039 0.2078 0.2353);fill-opacity:1;"/>
|
|
18
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.228 17.9253L37.596 13.5853C36.972 12.3053 36.2227 11.0867 35.316 10.0253L31.6627 13.6787L29.3213 11.3373L32.9747 7.68399C31.8813 6.77866 30.664 5.99732 29.384 5.37332L25.044 14.7413C24.1067 16.74 26.2 18.8 28.1973 17.8947L28.228 17.9253Z" fill="#01353C" style="fill:#01353C;fill:color(display-p3 0.0039 0.2078 0.2353);fill-opacity:1;"/>
|
|
19
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.232 13.6173L25.792 3.93733C24.4493 3.46933 23.076 3.15733 21.6707 3.032V8.184H18.392V3C16.9867 3.12533 15.5813 3.43733 14.208 3.93733L17.768 13.6173C18.5173 15.6787 21.452 15.6787 22.2333 13.6173H22.232Z" fill="#01353C" style="fill:#01353C;fill:color(display-p3 0.0039 0.2078 0.2353);fill-opacity:1;"/>
|
|
20
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.9253 14.8027L10.5853 5.436C9.30534 6.06 8.08667 6.80934 7.02534 7.716L10.6787 11.3693L8.33734 13.7107L4.684 10.0573C3.77867 11.1507 2.99734 12.368 2.37334 13.648L11.7413 17.988C13.74 18.9253 15.8 16.832 14.8947 14.8347L14.9253 14.804V14.8027Z" fill="#01353C" style="fill:#01353C;fill:color(display-p3 0.0039 0.2078 0.2353);fill-opacity:1;"/>
|
|
21
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.6173 20.7987L0.937341 17.208C0.437341 18.5507 0.125341 19.956 7.62939e-06 21.3613H5.15201V24.64H7.62939e-06C0.125341 26.0453 0.437341 27.4507 0.937341 28.824L10.6173 25.264C12.6787 24.5147 12.6787 21.58 10.6173 20.7987Z" fill="#01353C" style="fill:#01353C;fill:color(display-p3 0.0039 0.2078 0.2353);fill-opacity:1;"/>
|
|
22
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8027 28.1053L2.43467 32.4453C3.05867 33.7253 3.80801 34.944 4.71467 36.0053L8.36801 32.352L10.7093 34.6933L7.05601 38.3466C8.14934 39.252 9.36667 40.0333 10.6467 40.6573L14.9867 31.2893C15.924 29.2906 13.8307 27.2306 11.8333 28.136L11.8027 28.1053Z" fill="#01353C" style="fill:#01353C;fill:color(display-p3 0.0039 0.2078 0.2353);fill-opacity:1;"/>
|
|
23
|
+
</g>
|
|
24
|
+
<path d="M47.5078 36V10.5907H63.216V14.2473H51.4628V21.7469H62.6563V25.2915H51.4628V36H47.5078ZM74.0218 36.5224C72.5543 36.5224 71.211 36.2736 69.9922 35.7761C68.7982 35.2538 67.7659 34.5324 66.8953 33.6121C66.0247 32.6668 65.3407 31.5723 64.8432 30.3286C64.3705 29.06 64.1342 27.6919 64.1342 26.2243C64.1342 24.2592 64.5571 22.5056 65.4028 20.9634C66.2486 19.3963 67.4052 18.165 68.8728 17.2695C70.3404 16.374 72.0568 15.9263 74.0218 15.9263C75.4894 15.9263 76.8202 16.1875 78.0142 16.7098C79.233 17.2073 80.2653 17.9163 81.1111 18.8366C81.9817 19.757 82.6533 20.8514 83.1259 22.12C83.6234 23.3638 83.8721 24.7194 83.8721 26.187C83.8721 28.1521 83.4617 29.9182 82.6409 31.4853C81.82 33.0524 80.6633 34.2837 79.1709 35.1791C77.6784 36.0746 75.9621 36.5224 74.0218 36.5224ZM74.0218 33.1643C75.2656 33.1643 76.3352 32.8534 77.2307 32.2315C78.151 31.5848 78.8475 30.739 79.3201 29.6943C79.8176 28.6247 80.0663 27.4556 80.0663 26.187C80.0663 24.9184 79.8176 23.7618 79.3201 22.717C78.8475 21.6723 78.151 20.839 77.2307 20.2171C76.3352 19.5953 75.2656 19.2844 74.0218 19.2844C72.7781 19.2844 71.6961 19.5953 70.7757 20.2171C69.8802 20.839 69.1838 21.6723 68.6863 22.717C68.1888 23.7618 67.94 24.9309 67.94 26.2243C67.94 27.4929 68.1888 28.6496 68.6863 29.6943C69.1838 30.739 69.8802 31.5848 70.7757 32.2315C71.6961 32.8534 72.7781 33.1643 74.0218 33.1643ZM86.5962 36V16.486H90.3274C90.3274 16.884 90.3274 17.2571 90.3274 17.6053C90.3274 17.9536 90.3149 18.3018 90.29 18.6501C90.29 18.9983 90.29 19.3714 90.29 19.7694H90.402C90.9492 18.6501 91.6955 17.8043 92.6407 17.2322C93.6108 16.6601 94.6804 16.374 95.8495 16.374C96.0485 16.374 96.2226 16.3865 96.3719 16.4113C96.546 16.4113 96.7325 16.4238 96.9315 16.4487L96.8942 19.8813C96.6455 19.8813 96.4092 19.8813 96.1853 19.8813C95.9614 19.8813 95.7251 19.8813 95.4764 19.8813C94.3819 19.8813 93.4491 20.1301 92.678 20.6276C91.9069 21.1002 91.3223 21.7594 90.9243 22.6051C90.5512 23.4508 90.3647 24.3961 90.3647 25.4408V36H86.5962ZM98.8391 36V16.486H102.57C102.57 16.9088 102.57 17.282 102.57 17.6053C102.57 17.9287 102.558 18.2521 102.533 18.5754C102.533 18.8988 102.533 19.2595 102.533 19.6575L102.645 19.6948C103.267 18.5257 104.063 17.6302 105.033 17.0083C106.028 16.3616 107.184 16.0382 108.503 16.0382C109.896 16.0382 111.052 16.374 111.973 17.0456C112.918 17.6924 113.602 18.563 114.025 19.6575H114.174C114.796 18.4884 115.629 17.5929 116.674 16.971C117.719 16.3492 118.913 16.0382 120.256 16.0382C121.848 16.0382 123.141 16.3865 124.136 17.083C125.131 17.7546 125.853 18.6749 126.301 19.844C126.773 21.0131 127.009 22.319 127.009 23.7618V36H123.241V24.508C123.241 22.9906 122.893 21.7594 122.196 20.8141C121.5 19.8689 120.467 19.3963 119.099 19.3963C118.179 19.3963 117.395 19.6202 116.749 20.0679C116.102 20.5156 115.617 21.1251 115.294 21.8962C114.97 22.6424 114.809 23.513 114.809 24.508V36H111.04V24.508C111.04 22.9906 110.692 21.7594 109.995 20.8141C109.299 19.8689 108.304 19.3963 107.01 19.3963C106.115 19.3963 105.331 19.645 104.66 20.1425C104.013 20.6151 103.503 21.2494 103.13 22.0454C102.782 22.8165 102.608 23.6747 102.608 24.6199V36H98.8391ZM138.345 36.4851C137.027 36.4851 135.821 36.2363 134.726 35.7388C133.657 35.2165 132.724 34.4951 131.928 33.5747C131.157 32.6544 130.56 31.5723 130.137 30.3286C129.714 29.0849 129.503 27.7417 129.503 26.299C129.503 24.3339 129.876 22.5802 130.622 21.038C131.393 19.4958 132.45 18.2769 133.793 17.3815C135.137 16.486 136.679 16.0382 138.42 16.0382C139.888 16.0382 141.181 16.3492 142.301 16.971C143.42 17.5929 144.315 18.5257 144.987 19.7694L145.136 19.7321C145.111 19.359 145.086 19.0107 145.062 18.6874C145.062 18.3391 145.062 17.9909 145.062 17.6426C145.062 17.2944 145.062 16.9088 145.062 16.486H148.793V36H145.062C145.062 35.5523 145.062 35.1667 145.062 34.8433C145.062 34.52 145.062 34.1966 145.062 33.8732C145.086 33.5499 145.111 33.1892 145.136 32.7912L144.987 32.7539C144.29 33.9727 143.358 34.9055 142.189 35.5523C141.02 36.1741 139.738 36.4851 138.345 36.4851ZM139.166 33.0897C140.41 33.0897 141.48 32.8036 142.375 32.2315C143.271 31.6594 143.967 30.8634 144.465 29.8436C144.962 28.7988 145.211 27.6049 145.211 26.2616C145.211 24.9184 144.962 23.7369 144.465 22.717C143.967 21.6972 143.258 20.9012 142.338 20.3291C141.442 19.7321 140.385 19.4336 139.166 19.4336C137.972 19.4336 136.928 19.7445 136.032 20.3664C135.162 20.9634 134.478 21.7842 133.98 22.829C133.507 23.8488 133.271 25.0055 133.271 26.299C133.271 27.5924 133.507 28.7491 133.98 29.7689C134.478 30.7888 135.162 31.5972 136.032 32.1942C136.928 32.7912 137.972 33.0897 139.166 33.0897ZM152.22 36V16.486H155.951C155.951 16.884 155.951 17.2571 155.951 17.6053C155.951 17.9287 155.938 18.2521 155.913 18.5754C155.913 18.8988 155.913 19.2595 155.913 19.6575L156.025 19.6948C156.647 18.5506 157.481 17.6551 158.525 17.0083C159.595 16.3616 160.814 16.0382 162.182 16.0382C163.749 16.0382 165.055 16.374 166.1 17.0456C167.169 17.7173 167.953 18.6376 168.45 19.8067C168.973 20.9509 169.234 22.2569 169.234 23.7244V36H165.503V24.6946C165.503 23.1275 165.105 21.8589 164.309 20.8888C163.538 19.9186 162.381 19.4336 160.839 19.4336C159.794 19.4336 158.911 19.6823 158.189 20.1798C157.468 20.6773 156.921 21.3365 156.548 22.1574C156.175 22.9533 155.988 23.8488 155.988 24.8438V36H152.22ZM181.655 36.5597C180.212 36.5597 178.881 36.2985 177.662 35.7761C176.468 35.2538 175.436 34.5324 174.566 33.6121C173.695 32.6917 173.023 31.5972 172.551 30.3286C172.103 29.06 171.879 27.6795 171.879 26.187C171.879 24.2219 172.29 22.4683 173.11 20.9261C173.931 19.359 175.075 18.1277 176.543 17.2322C178.011 16.3367 179.715 15.889 181.655 15.889C182.998 15.889 184.217 16.1129 185.311 16.5606C186.406 16.9835 187.376 17.6053 188.222 18.4262C189.067 19.247 189.764 20.2545 190.311 21.4484L186.99 22.9782C186.468 21.834 185.759 20.9385 184.864 20.2918C183.968 19.645 182.898 19.3217 181.655 19.3217C180.436 19.3217 179.366 19.6326 178.446 20.2545C177.526 20.8514 176.817 21.6723 176.319 22.717C175.847 23.7369 175.61 24.8935 175.61 26.187C175.61 27.4805 175.847 28.6496 176.319 29.6943C176.817 30.739 177.513 31.5723 178.409 32.1942C179.329 32.8161 180.411 33.127 181.655 33.127C182.923 33.127 184.005 32.7912 184.901 32.1196C185.796 31.448 186.493 30.5525 186.99 29.4331L190.348 30.8883C189.801 32.0823 189.105 33.1021 188.259 33.9479C187.413 34.7936 186.431 35.4403 185.311 35.8881C184.217 36.3358 182.998 36.5597 181.655 36.5597ZM201.328 36.5597C199.886 36.5597 198.567 36.3109 197.373 35.8134C196.204 35.2911 195.184 34.5697 194.314 33.6494C193.468 32.7041 192.809 31.6097 192.336 30.3659C191.888 29.1222 191.665 27.7541 191.665 26.2616C191.665 24.2468 192.075 22.4683 192.896 20.9261C193.717 19.3838 194.848 18.165 196.291 17.2695C197.759 16.3492 199.45 15.889 201.366 15.889C203.331 15.889 204.985 16.2994 206.328 17.1203C207.671 17.9411 208.691 19.0854 209.388 20.5529C210.109 22.0205 210.47 23.7493 210.47 25.7393C210.47 25.988 210.47 26.2368 210.47 26.4855C210.47 26.7343 210.445 26.9954 210.395 27.2691H193.082V24.2841H208.828L207.037 25.702C207.037 24.4334 206.813 23.314 206.365 22.3439C205.942 21.3738 205.308 20.6151 204.462 20.0679C203.642 19.5207 202.609 19.247 201.366 19.247C200.122 19.247 199.04 19.558 198.119 20.1798C197.199 20.8017 196.49 21.635 195.993 22.6797C195.52 23.7244 195.284 24.9184 195.284 26.2616C195.284 27.58 195.533 28.7615 196.03 29.8063C196.552 30.851 197.274 31.6843 198.194 32.3061C199.114 32.9031 200.196 33.2016 201.44 33.2016C202.684 33.2016 203.766 32.9031 204.686 32.3061C205.607 31.7092 206.34 30.8634 206.888 29.7689L210.022 31.2987C209.176 33.0648 207.995 34.3832 206.477 35.2538C204.985 36.1244 203.268 36.5597 201.328 36.5597Z" fill="#01353C" style="fill:#01353C;fill:color(display-p3 0.0039 0.2078 0.2353);fill-opacity:1;"/>
|
|
25
|
+
<defs>
|
|
26
|
+
<clipPath id="clip0_2005_3051">
|
|
27
|
+
<rect width="40" height="40" fill="white" style="fill:white;fill-opacity:1;" transform="translate(0 3)"/>
|
|
28
|
+
</clipPath>
|
|
29
|
+
</defs>
|
|
30
|
+
</svg>
|
|
31
|
+
`;
|
|
32
|
+
</script>
|
|
33
|
+
|
|
34
|
+
{@html svgContent}
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
const restAttrs = Object.entries(rest)
|
|
11
11
|
.map(([k, v]) => `${k}="${v}"`)
|
|
12
12
|
.join(' ');
|
|
13
|
-
const svgContent = `<svg
|
|
13
|
+
const svgContent = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="#f6009b" width="${width}" height="${height}" ${restAttrs}><path fill-rule="evenodd" clip-rule="evenodd" d="M50 6.90308L87.323 28.4515V71.5484L50 93.0968L12.677 71.5484V28.4515L50 6.90308ZM16.8647 30.8693V62.5251L44.2795 15.0414L16.8647 30.8693ZM50 13.5086L18.3975 68.2457H81.6025L50 13.5086ZM77.4148 72.4334H22.5852L50 88.2613L77.4148 72.4334ZM83.1353 62.5251L55.7205 15.0414L83.1353 30.8693V62.5251Z"/><circle cx="50" cy="9.3209" r="8.82"/><circle cx="85.2292" cy="29.6605" r="8.82"/><circle cx="85.2292" cy="70.3396" r="8.82"/><circle cx="50" cy="90.6791" r="8.82"/><circle cx="14.7659" cy="70.3396" r="8.82"/><circle cx="14.7659" cy="29.6605" r="8.82"/></svg>
|
|
14
14
|
`;
|
|
15
15
|
</script>
|
|
16
16
|
|
|
@@ -10,9 +10,33 @@
|
|
|
10
10
|
const restAttrs = Object.entries(rest)
|
|
11
11
|
.map(([k, v]) => `${k}="${v}"`)
|
|
12
12
|
.join(' ');
|
|
13
|
-
const svgContent = `<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" viewBox="0 0 256
|
|
14
|
-
<
|
|
15
|
-
|
|
13
|
+
const svgContent = `<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" viewBox="0 0 256 257" width="${width}" height="${height}" ${restAttrs}>
|
|
14
|
+
<defs>
|
|
15
|
+
<linearGradient x1="25.2%" y1="43.3%" x2="99.2%" y2="67.4%" id="a">
|
|
16
|
+
<stop stop-color="#FE2857" offset="21%"/>
|
|
17
|
+
<stop stop-color="#293896" offset="100%"/>
|
|
18
|
+
</linearGradient>
|
|
19
|
+
<linearGradient x1="2.3%" y1="77.1%" x2="90.7%" y2="24.1%" id="b">
|
|
20
|
+
<stop stop-color="#FE2857" offset="0%"/>
|
|
21
|
+
<stop stop-color="#FE2857" offset="1%"/>
|
|
22
|
+
<stop stop-color="#FF318C" offset="86%"/>
|
|
23
|
+
</linearGradient>
|
|
24
|
+
<linearGradient x1="6.3%" y1="13.9%" x2="94.6%" y2="87.7%" id="c">
|
|
25
|
+
<stop stop-color="#FF318C" offset="2%"/>
|
|
26
|
+
<stop stop-color="#FE2857" offset="21%"/>
|
|
27
|
+
<stop stop-color="#FDB60D" offset="86%"/>
|
|
28
|
+
</linearGradient>
|
|
29
|
+
<linearGradient x1="91.1%" y1="27.7%" x2="2%" y2="68.6%" id="d">
|
|
30
|
+
<stop stop-color="#FDB60D" offset="1%"/>
|
|
31
|
+
<stop stop-color="#FCF84A" offset="86%"/>
|
|
32
|
+
</linearGradient>
|
|
33
|
+
</defs>
|
|
34
|
+
<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)"/>
|
|
35
|
+
<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)"/>
|
|
36
|
+
<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)"/>
|
|
37
|
+
<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)"/>
|
|
38
|
+
<path d="M75.8 76.9h102.5v102.4H75.8z"/>
|
|
39
|
+
<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"/>
|
|
16
40
|
</svg>
|
|
17
41
|
`;
|
|
18
42
|
</script>
|