@icons-pack/react-simple-icons 12.1.0 → 12.3.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.
Files changed (49) hide show
  1. package/README.md +1 -1
  2. package/icons/SiAndroid.cjs +1 -1
  3. package/icons/SiAndroid.d.ts +1 -1
  4. package/icons/SiAndroid.mjs +1 -1
  5. package/icons/SiDuckduckgo.cjs +1 -1
  6. package/icons/SiDuckduckgo.mjs +1 -1
  7. package/icons/SiEasyeda.cjs +1 -1
  8. package/icons/SiEasyeda.mjs +1 -1
  9. package/icons/SiFortnite.cjs +51 -0
  10. package/icons/SiFortnite.d.ts +4 -0
  11. package/icons/SiFortnite.mjs +27 -0
  12. package/icons/SiGleam.cjs +51 -0
  13. package/icons/SiGleam.d.ts +4 -0
  14. package/icons/SiGleam.mjs +27 -0
  15. package/icons/SiKubespray.cjs +51 -0
  16. package/icons/SiKubespray.d.ts +4 -0
  17. package/icons/SiKubespray.mjs +27 -0
  18. package/icons/SiMessenger.cjs +2 -2
  19. package/icons/SiMessenger.d.ts +1 -1
  20. package/icons/SiMessenger.mjs +2 -2
  21. package/icons/SiPortableappsdotcom.cjs +51 -0
  22. package/icons/SiPortableappsdotcom.d.ts +4 -0
  23. package/icons/SiPortableappsdotcom.mjs +27 -0
  24. package/icons/SiUmbrel.cjs +51 -0
  25. package/icons/SiUmbrel.d.ts +4 -0
  26. package/icons/SiUmbrel.mjs +27 -0
  27. package/icons/SiVercel.cjs +1 -1
  28. package/icons/SiVercel.mjs +1 -1
  29. package/icons/SiVinted.cjs +51 -0
  30. package/icons/SiVinted.d.ts +4 -0
  31. package/icons/SiVinted.mjs +27 -0
  32. package/icons/SiZsh.cjs +1 -1
  33. package/icons/SiZsh.mjs +1 -1
  34. package/index.cjs +18 -0
  35. package/index.d.ts +6 -0
  36. package/index.mjs +6 -0
  37. package/package.json +2 -2
  38. package/src/icons/SiAndroid.tsx +1 -1
  39. package/src/icons/SiDuckduckgo.tsx +1 -1
  40. package/src/icons/SiEasyeda.tsx +1 -1
  41. package/src/icons/SiFortnite.tsx +45 -0
  42. package/src/icons/SiGleam.tsx +45 -0
  43. package/src/icons/SiKubespray.tsx +45 -0
  44. package/src/icons/SiMessenger.tsx +2 -2
  45. package/src/icons/SiPortableappsdotcom.tsx +45 -0
  46. package/src/icons/SiUmbrel.tsx +45 -0
  47. package/src/icons/SiVercel.tsx +1 -1
  48. package/src/icons/SiVinted.tsx +45 -0
  49. package/src/icons/SiZsh.tsx +1 -1
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiPortableappsdotcomProps = React.ComponentPropsWithoutRef<'svg'> & {
7
+ /**
8
+ * The title provides an accessible short text description to the SVG
9
+ */
10
+ title?: string;
11
+ /**
12
+ * Hex color or color name or "default" to use the default hex for each icon
13
+ */
14
+ color?: string;
15
+ /**
16
+ * The size of the Icon.
17
+ */
18
+ size?: string | number;
19
+ }
20
+
21
+ const defaultColor = '#818F95';
22
+
23
+ const SiPortableappsdotcom: IconType = React.forwardRef<SVGSVGElement, SiPortableappsdotcomProps>(function SiPortableappsdotcom({title = 'PortableApps.com', color = 'currentColor', size = 24, ...others }, ref) {
24
+ if (color === 'default') {
25
+ color = defaultColor;
26
+ }
27
+
28
+ return (
29
+ <svg
30
+ xmlns='http://www.w3.org/2000/svg'
31
+ width={size}
32
+ height={size}
33
+ fill={color}
34
+ viewBox='0 0 24 24'
35
+ ref={ref}
36
+ {...others}
37
+ >
38
+ <title>{title}</title>
39
+ <path d='M12 0C7.977 0 4.419 1.984 2.24 5.022c-1.816 4.295.987 7.619 4.001 7.532 2.925-.084 5.264-1.365 7.04-3.4l-3.02-3.015h10.635l-.037 10.577-2.788-2.782c-2.739 2.974-5.493 5.443-9.741 5.208C3.168 18.855.553 14.7.09 10.558.033 11.032 0 11.512 0 12 0 18.63 5.37 24 12 24s12-5.371 12-12S18.625 0 12 0z' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiPortableappsdotcom as default, defaultColor };
45
+
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiUmbrelProps = React.ComponentPropsWithoutRef<'svg'> & {
7
+ /**
8
+ * The title provides an accessible short text description to the SVG
9
+ */
10
+ title?: string;
11
+ /**
12
+ * Hex color or color name or "default" to use the default hex for each icon
13
+ */
14
+ color?: string;
15
+ /**
16
+ * The size of the Icon.
17
+ */
18
+ size?: string | number;
19
+ }
20
+
21
+ const defaultColor = '#5351FB';
22
+
23
+ const SiUmbrel: IconType = React.forwardRef<SVGSVGElement, SiUmbrelProps>(function SiUmbrel({title = 'Umbrel', color = 'currentColor', size = 24, ...others }, ref) {
24
+ if (color === 'default') {
25
+ color = defaultColor;
26
+ }
27
+
28
+ return (
29
+ <svg
30
+ xmlns='http://www.w3.org/2000/svg'
31
+ width={size}
32
+ height={size}
33
+ fill={color}
34
+ viewBox='0 0 24 24'
35
+ ref={ref}
36
+ {...others}
37
+ >
38
+ <title>{title}</title>
39
+ <path d='M11.853 8.302c2.628-.05 4.698.656 6.303 2.05 1.166 1.01 2.14 2.43 2.895 4.305a7.584 7.584 0 0 0-1.818-.21c-1.345 0-2.552.31-3.558.987-1.127-.687-2.339-1.049-3.623-1.049-1.313 0-2.573.378-3.77 1.087-1.154-.726-2.456-1.087-3.875-1.087-.513 0-1.003.048-1.466.147.678-1.724 1.575-3.054 2.664-4.028 1.557-1.393 3.607-2.15 6.248-2.202zM1.842 17.616c.04-.037.078-.076.112-.119.48-.557 1.233-.91 2.453-.91 1.151 0 2.139.32 3.002.952l.035.025c.469.35 1.108.364 1.592.036 1.032-.698 2.032-1.014 3.017-1.014.967 0 1.906.304 2.836.965l.02.014a1.376 1.376 0 0 0 1.699-.078c.614-.53 1.455-.84 2.625-.84 1.232 0 2.186.344 2.94.98a1.092 1.092 0 0 0 .435.235 1.095 1.095 0 0 0 .806-.087 1.103 1.103 0 0 0 .547-1.267c-.873-3.383-2.3-6.03-4.363-7.82-2.084-1.808-4.712-2.646-7.787-2.588-3.063.06-5.653.955-7.673 2.762-2.003 1.793-3.344 4.39-4.104 7.67a1.1 1.1 0 0 0 1.807 1.083z' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiUmbrel as default, defaultColor };
45
+
@@ -36,7 +36,7 @@
36
36
  {...others}
37
37
  >
38
38
  <title>{title}</title>
39
- <path d='M24 22.525H0l12-21.05 12 21.05z' />
39
+ <path d='m12 1.608 12 20.784H0Z' />
40
40
  </svg>
41
41
  );
42
42
  });
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiVintedProps = React.ComponentPropsWithoutRef<'svg'> & {
7
+ /**
8
+ * The title provides an accessible short text description to the SVG
9
+ */
10
+ title?: string;
11
+ /**
12
+ * Hex color or color name or "default" to use the default hex for each icon
13
+ */
14
+ color?: string;
15
+ /**
16
+ * The size of the Icon.
17
+ */
18
+ size?: string | number;
19
+ }
20
+
21
+ const defaultColor = '#007782';
22
+
23
+ const SiVinted: IconType = React.forwardRef<SVGSVGElement, SiVintedProps>(function SiVinted({title = 'Vinted', color = 'currentColor', size = 24, ...others }, ref) {
24
+ if (color === 'default') {
25
+ color = defaultColor;
26
+ }
27
+
28
+ return (
29
+ <svg
30
+ xmlns='http://www.w3.org/2000/svg'
31
+ width={size}
32
+ height={size}
33
+ fill={color}
34
+ viewBox='0 0 24 24'
35
+ ref={ref}
36
+ {...others}
37
+ >
38
+ <title>{title}</title>
39
+ <path d='M19.316 0c-.258 0-.571.217-1.415.953-.3.108-.627.027-1.008.613-2.15 3.09-3.825 14.648-5.255 17.984-.286-1.444-.885-10.837-1.116-13.41-.028-.477.027-1.076.027-1.43 0-2.368-.516-3.567-2.886-3.567-1.198 0-2.382.436-3.008 1.226-.299.408-.409.708-.409 1.443 0 4.915 1.171 12.973 2.478 18.228C7.132 23.688 8.603 24 9.99 24c.654 0 1.307-.081 2.233-.544 3.212-1.567 4.07-5.84 4.9-9.993.15-.749.899-4.37 1.253-6.275.476-2.6 1.02-5.54 1.347-6.617C19.833.245 19.63 0 19.317 0z' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiVinted as default, defaultColor };
45
+
@@ -36,7 +36,7 @@
36
36
  {...others}
37
37
  >
38
38
  <title>{title}</title>
39
- <path d='M3.612.719A3.621 3.621 0 0 0 0 4.331v15.328a3.627 3.627 0 0 0 3.616 3.612h8.242a.529.529 0 0 0 .228-.042.607.607 0 0 0-.232-1.169H3.612a2.393 2.393 0 0 1-2.393-2.4V6.113h21.566v12.839a.134.134 0 0 1-.12.074h-.743a.158.158 0 0 1-.09-.043.134.134 0 0 1-.04-.095v-2.23c-.004-.001-.004-.003-.004-.006v-.007a.602.602 0 1 0-1.202 0v6.032l.004.001v.002a.6.6 0 0 0 1.202 0v.002V20.297a.116.116 0 0 1 .036-.095.134.134 0 0 1 .094-.04h.744a.12.12 0 0 1 .099.036c.01.01.018.022.024.035v2.434a.042.042 0 0 0 .002.023.6.6 0 0 0 .14.38.601.601 0 0 0 .46.213h.01a.592.592 0 0 0 .547-.368l.004-.011a.445.445 0 0 0 .023-.074.608.608 0 0 0 .025-.162V4.326A3.615 3.615 0 0 0 20.392.715H3.616Zm0 1.215h16.776a2.383 2.383 0 0 1 2.401 2.393V4.9H1.215v-.57a2.388 2.388 0 0 1 2.397-2.396ZM6.36 7.28a.213.213 0 0 0-.145.076l-3.964 4.72a.213.213 0 1 0 .327.275l3.964-4.72a.213.213 0 0 0-.182-.35Zm-2.94.12c-.632 0-1.151.52-1.151 1.151 0 .632.52 1.152 1.151 1.152.632 0 1.152-.52 1.152-1.152 0-.632-.52-1.151-1.152-1.151Zm0 .667a.48.48 0 0 1 .485.484.48.48 0 0 1-.485.485.48.48 0 0 1-.484-.485.48.48 0 0 1 .484-.484Zm1.94 1.939c-.632 0-1.152.52-1.152 1.152 0 .632.52 1.15 1.152 1.15.632 0 1.151-.518 1.151-1.15 0-.633-.52-1.152-1.151-1.152Zm0 .667a.48.48 0 0 1 .485.485.48.48 0 0 1-.485.484.48.48 0 0 1-.485-.484.48.48 0 0 1 .485-.485Zm2.658 1.21a.214.214 0 0 0-.081.41c.026.01.053.016.081.016h2.831a.327.327 0 0 0 .086-.02.215.215 0 0 0 .131-.198.213.213 0 0 0-.213-.213h-2.83Zm5.77 4.159a.61.61 0 0 0-.61.61v-.004.004a.61.61 0 0 0 .61.61l.028-.002h1.123a.052.052 0 0 1 .04.005.077.077 0 0 1 .04.058.076.076 0 0 1-.006.037l-1.783 4.453a.67.67 0 0 0-.048.249v.55a.65.65 0 0 0 .192.474.67.67 0 0 0 .474.196h2.09a.718.718 0 0 0 .243-.051.623.623 0 0 0 .386-.578v.004-.004a.626.626 0 0 0-.625-.626l-.014.001h-1.406a.05.05 0 0 1-.038-.005.074.074 0 0 1-.038-.056.072.072 0 0 1 .005-.034l2.056-5.127a.555.555 0 0 0-.516-.762h-2.167a.07.07 0 0 0-.033-.006Zm4.915.03c-.286 0-.613.027-.81.082a.946.946 0 0 0-.466.267 1.174 1.174 0 0 0-.247.525c-.05.215-.076.488-.076.82 0 .318.003.576.01.772.008.16.026.32.056.479a.93.93 0 0 0 .124.294c.055.078.119.15.19.212.1.087.208.165.324.23.127.074.257.144.39.212.133.067.26.138.38.211.114.064.22.142.315.23.037.041.072.084.104.13a.294.294 0 0 1 .053.091.651.651 0 0 1 .042.24c.007.073.01.175.01.303a3.77 3.77 0 0 1-.029.525.745.745 0 0 1-.076.285.261.261 0 0 1-.152.12 2.324 2.324 0 0 1-.378.028.83.83 0 0 1-.228-.028.315.315 0 0 1-.143-.129 1.072 1.072 0 0 1-.076-.276 4.459 4.459 0 0 1-.02-.46c0-.016 0-.034-.002-.05h-.004a.54.54 0 0 0-.176-.311.517.517 0 0 0-.847.315h-.003c.002.014.002.033.002.052v.023l.003.284c0 .362.026.656.076.883.057.221.146.396.267.525a.916.916 0 0 0 .457.248c.22.054.448.078.675.074.305 0 .698-.027.901-.083a.897.897 0 0 0 .486-.313c.127-.153.215-.365.266-.635.057-.276.086-.628.086-1.058 0-.313-.01-.565-.029-.755a1.65 1.65 0 0 0-.085-.47.763.763 0 0 0-.181-.294 1.5 1.5 0 0 0-.276-.22 2.733 2.733 0 0 0-.286-.157 4.382 4.382 0 0 0-.342-.175 8.27 8.27 0 0 1-.343-.184 2.885 2.885 0 0 1-.276-.193.938.938 0 0 1-.114-.11.398.398 0 0 1-.057-.139 1.452 1.452 0 0 1-.029-.211v-.346a2.59 2.59 0 0 1 .015-.396.633.633 0 0 1 .067-.23.23.23 0 0 1 .143-.101c.057-.019.216-.028.305-.028.203 0 .33.058.38.175.04.074.063.155.066.24.003.066.004.153.004.245h.003c.004-.003.004-.002.004 0a.512.512 0 0 0 .516.512.516.516 0 0 0 .515-.512v-.004c-.004-.099-.004-.19-.004-.242a3.184 3.184 0 0 0-.067-.709.896.896 0 0 0-.228-.469.869.869 0 0 0-.457-.258 2.693 2.693 0 0 0-.733-.082Z' />
39
+ <path d='M11.415 5.038a.58.58 0 0 0-.543.197L.135 18.021a.58.58 0 0 0 .071.814.58.58 0 0 0 .815-.07L11.757 5.979a.58.58 0 0 0-.07-.815.6.6 0 0 0-.272-.126m-8.113.317a3.133 3.133 0 0 0-3.12 3.12 3.13 3.13 0 0 0 3.12 3.119A3.133 3.133 0 0 0 6.42 8.475a3.13 3.13 0 0 0-3.119-3.119m0 1.806a1.3 1.3 0 0 1 1.314 1.313 1.3 1.3 0 0 1-1.314 1.312A1.3 1.3 0 0 1 1.99 8.475a1.3 1.3 0 0 1 1.312-1.314m5.253 5.253a3.13 3.13 0 0 0-3.119 3.119 3.13 3.13 0 0 0 3.12 3.118 3.133 3.133 0 0 0 3.118-3.12 3.133 3.133 0 0 0-3.119-3.118m0 1.805a1.3 1.3 0 0 1 1.313 1.314c0 .735-.577 1.312-1.312 1.312a1.3 1.3 0 0 1-1.314-1.312 1.3 1.3 0 0 1 1.313-1.314m7.201 3.276a.58.58 0 0 0-.578.578.58.58 0 0 0 .578.578h7.666a.58.58 0 0 0 .579-.578.58.58 0 0 0-.579-.578Z' />
40
40
  </svg>
41
41
  );
42
42
  });