@icons-pack/react-simple-icons 13.2.0 → 13.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icons-pack/react-simple-icons",
3
- "version": "13.2.0",
3
+ "version": "13.3.0",
4
4
  "description": "This package provides the Simple Icons packaged as a set of React components.",
5
5
  "keywords": [
6
6
  "react",
@@ -68,7 +68,7 @@
68
68
  "react": "^18",
69
69
  "rimraf": "6.0.1",
70
70
  "signale": "1.4.0",
71
- "simple-icons": "15.3.0",
71
+ "simple-icons": "15.4.0",
72
72
  "turbo": "2.0.14",
73
73
  "typescript": "5.5.4",
74
74
  "uppercamelcase": "3.0.0",
@@ -87,8 +87,8 @@
87
87
  "lint:types": "tsc --noEmit",
88
88
  "clean:icons": "rimraf -rf ./src/icons/**",
89
89
  "clean:files": "rimraf -rf ./src/index.ts",
90
- "bump": "pnpm install -D simple-icons@latest",
91
- "generate:icons": "pnpm clean:icons && pnpm clean:files && node scripts/generate-icons",
90
+ "bump": "pnpm install -D simple-icons@latest && node scripts/update-readme.mjs",
91
+ "generate:icons": "pnpm clean:icons && pnpm clean:files && node scripts/generate-icons.mjs",
92
92
  "prettier:format": "prettier --config .prettierrc \"./**/*.+(js|json|ts|tsx)\" --write",
93
93
  "changeset": "changeset",
94
94
  "version": "changeset version",
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiBraintrustProps = 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 = '#000000';
22
+
23
+ const SiBraintrust: IconType = React.forwardRef<SVGSVGElement, SiBraintrustProps>(function SiBraintrust({title = 'Braintrust', 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='M0 12.002C0 5.372 5.374-.002 12.001-.002 18.626-.002 24 5.372 24 12.002c0 6.625-5.374 12-11.999 12h-9.98a2.01 2.01 0 0 1-2.013-2.013V12.01zm0 0' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiBraintrust as default, defaultColor };
45
+
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiDolphinProps = 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 = '#00AAFF';
22
+
23
+ const SiDolphin: IconType = React.forwardRef<SVGSVGElement, SiDolphinProps>(function SiDolphin({title = 'Dolphin', 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='M17.195 5.308a6.61 6.61 0 0 0-.804.026c-1.223.108-1.834.504-2.135.691-.135.083-.344.1-.518.062-3.518-1.08-6.743-.62-8.363-.142-3.228.951-3.893 2.885-4.098 3.978-.07.295-.093.532-.13.67-.115.443-1.565 1.225-1.029 1.78.517.534 1.423.478 2.08.216 1.494-.592 2.652-.809 4.599-.882h.021c.181-.003.338-.034.475.091.16.149.708 1.308 1.927 2.16 1.363.953 2.772.913 2.86.768v-.002h.002l.002-.002v-.002c.036-.12-.315-.2-1.063-1.13-.646-.804-.592-1.645.036-1.49a.591.591 0 0 0 .04.007c3.447.901 5.748 2.922 5.868 2.947v.002h.002l.002-.002.002-.002v-.008c.166-.229-.958-2.957-3.871-4.586-3.297-1.843-6.389-.971-7.061-.693-.162-.272.967-1.383 3.377-1.476 5.4-.209 8.744 2.753 10.578 4.56 2.25 2.217 3.923 5.853 3.973 5.846l.002-.002h.002v-.004h.004c.12-.125-.2-2.393-.885-4.045-.881-2.126-1.966-3.69-3.525-5.148a15.572 15.572 0 0 0-2.153-1.69c-.114-.079-.254-.183-.337-.328.434-1.003 2.046-1.04 2.213-1.13l.007-.005.002-.002v-.002l.002-.004c.085-.183-.424-.966-2.107-1.023z' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiDolphin as default, defaultColor };
45
+
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiEnteProps = 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 = '#00BC45';
22
+
23
+ const SiEnte: IconType = React.forwardRef<SVGSVGElement, SiEnteProps>(function SiEnte({title = 'Ente', 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='M13.0569.404c-1.9042.0042-3.8052.4582-5.4881 1.3223.1477.2404.2528.506.3086.7794.283 1.383-.5717 2.6728-1.8945 4.3458l-.6855.8594a1.165 1.165 0 0 1-.912.4356 1.1517 1.1517 0 0 1-.627-.1856c-.3196-.2084-.538-.3299-1.2343-.7832-2.042 4.897-.5548 11.2114 3.8826 14.2446 3.5434 2.5674 8.7443 2.8326 12.6499.9434.7786-.3952 1.5287-.838 2.0663-1.4004a2.7886 2.7886 0 0 0 .9238-2.0724c0-1.3257-.9333-2.4682-2.2323-2.7325-.5056-.1094-1.2926-.0854-1.9863.3399-.2262.1083-.4475.2277-.6679.3437-.6341.3344-.7472.3702-1.4374.588-1.9956.6344-6.0325.556-7.0662-1.6388-.1441-.6302.424-.7857.9258-.7852 2.992-.0074 5.9841-.0002 8.9762-.0059.781-.0032 1.5788-.0068 2.3339-.2246 2.302-.5946 3.43-2.7624 3.0272-5.2463-.6121-3.973-3.577-7.5172-7.4606-8.633C15.3562.563 14.2058.4015 13.0569.404zM5.4576.9646c-.7885.0002-1.5143.4442-1.9023 1.0723-.3962-.325-.9281-.5137-1.4472-.5137s-1.0492.18-1.4824.588C.1608 2.5486-.0652 3.1988.0164 3.826c.0856.6424.431 1.1825.9882 1.711.6832.6479 1.6854 1.2787 2.9257 2.0567l.0488.0293a.7427.7427 0 0 0 .4062.1211.7655.7655 0 0 0 .5938-.2832c.011-.013.0208-.0274.0312-.041 1.6662-2.07 2.759-3.4236 2.4706-4.8342-.126-.6165-.5471-1.1606-1.1327-1.4238-.2125-.0973-.5208-.1973-.8906-.1973Zm-3.6757 1.543c.3428 0 .6211.2777.6211.6192 0 .3415-.2783.6172-.621.6172-.3428 0-.6211-.2757-.6211-.6172 0-.3415.2783-.6192.621-.6192zm11.4449 3.6622c1.6882.0106 3.4584.8528 4.1756 2.4923.0547.1383.0885.2821.0703.422-.0512.3676-.387.498-.7168.498-2.0929.0125-5.2392.005-7.4137.002-.288-.0092-.3718-.0665-.3906-.0665-.2202-.0814-.3686-.2946-.3574-.5293.0057-.2033.0986-.4013.1933-.5801.8201-1.5407 2.634-2.3014 4.4393-2.2384Z' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiEnte as default, defaultColor };
45
+
@@ -18,7 +18,7 @@
18
18
  size?: string | number;
19
19
  }
20
20
 
21
- const defaultColor = '#000000';
21
+ const defaultColor = '#3BABC3';
22
22
 
23
23
  const SiFlask: IconType = React.forwardRef<SVGSVGElement, SiFlaskProps>(function SiFlask({title = 'Flask', color = 'currentColor', size = 24, ...others }, ref) {
24
24
  if (color === 'default') {
@@ -36,7 +36,7 @@
36
36
  {...others}
37
37
  >
38
38
  <title>{title}</title>
39
- <path d='M7.172 20.36c-.914-.72-1.89-1.41-2.556-2.38-1.402-1.712-2.482-3.694-3.22-5.777-.446-1.355-.6-2.808-1.174-4.11-.602-.944.103-1.978 1.138-2.28.46-.087 1.272-.522.293-.211-.878.644-.963-.585-.063-.662.615-.082.84-.585.63-1.037-.66-.43 1.6-.903.463-1.544C1.5 1.08 4.34.835 3.64 2.285 3.473 3.4 5.624 2.08 5.125 3.368c.507.619 1.9.14 1.865 1.009.74.05.993.672 1.687.72.72.325 2.022.58 2.266 1.39-.713.566-2.364-1.165-2.443.398.215 2.31.16 4.689 1.004 6.888.4 1.332 1.37 2.38 2.244 3.418.837 1.016 1.971 1.73 3.127 2.333 1.014.478 2.107.795 3.213.994.448-.343 1.24-1.617 1.938-1.08.033.604-1.388 1.263-.067 1.196.776-.234 1.314.6 1.953-.152.588.697 2.446-.446 2.027.98-.566.364-1.392.144-1.959.646-.935-.467-1.68.418-2.715.306a19.86 19.86 0 01-3.484.29c-1.912-.15-3.865-.214-5.684-.88-1.024-.297-2.023-.881-2.924-1.464zm1.615.7c1 .432 1.978.888 3.074 1.026 1.74.24 3.537.614 5.283.274-.79-.357-1.608.14-2.395-.255-.944.203-1.957-.052-2.917-.177-1.092-.486-2.27-.82-3.291-1.452-1.277-.466.66.598 1.005.685.798.453-.877-.233-1.114-.421-.668-.375-.754-.297-.066.084.139.08.276.166.42.235zm-1.904-1.346c.97.359-.004-.682-.45-.622-.196-.341-.751-.557-.36-.74-.704.244-.737-.93-1.07-.763-.744-.235-.29-1.07-1.176-1.58-.081-.54-.882-1.008-1.138-1.822-.113-.416-.905-1.613-.418-.5.414 1.072 1.143 1.99 1.75 2.907.47.873 1.027 1.786 1.885 2.33.29.278.568.703.977.79zM4.09 16.647c.033-.146.177.317 0 0zm3.954 3.497c.215-.096-.31-.12 0 0zm.526.192c-.054-.265-.24.148 0 0zm.66.275c.312-.3-.484-.188 0 0zm1.127.63c.191-.282-.61-.107 0 0zM8.19 19.728c.487-.315-.63-.004 0 0zm.494.246c-.014-.166-.176.075 0 0zm2.47 1.542c.397.25 2.32.55 1.115.103-.2.042-2.23-.574-1.116-.103zm-3.921-3.054c-.04-.167-.616-.185 0 0zm1.15.67c.3-.21-.621-.16 0 0zm.966.593c.43-.162-.696-.163 0 0zm-2.584-1.773c.466.358 1.88.046.714-.213-.53-.283-1.727-.476-.912.17zm3.24 1.978c.193-.33-.815-.19 0 0zm-.984-.783c1.14.323-.958-.72-.281-.118l.15.068.13.05zm1.973 1.14c1.08.01-.975-.147 0 0zm-4.644-2.96c-.042-.2-.266.018 0 0zm6.47 3.985c.028-.363-.353.27 0 0zm-4.63-2.856c-.064-.191-.336-.008 0 0zm-1.738-1.254c.62-.037-.848-.273 0 0zm-2.06-1.332c-.077-.297-.674-.534 0 0zm5.407 3.435c-.114-.13-.054.028 0 0zm3.366 2.065c-.01-.197-.183.075 0 0zm-3.664-2.373c.06-.255-.528-.077 0 0zm-2.506-1.592c.46-.05-.74-.311 0 0zm4.241 2.637c.718-.285-.7-.14 0 0zM9.03 18.545c.827.106-.985-.563-.181-.06zm2.876 1.768c.773-.462.518 1.082 1.311.13.782-.57-.675.707.29.103.696-.467 1.726.22 2.376.445.468-.023.923.405 1.403.145.923-.25-1.806-.37-1.09-.81-.845.245-1.47-.294-1.885-.835-.948-.22-2.044-.703-2.517-1.542-.192-.315.28.044-.166-.47-.57-.508-.856-1.085-1.24-1.702-.457-.244-.51-.963-.557-.024.004-.593-.553-.992-.688-.826-.002-.571.595-.285.176-.707-.09-.592-.386-1.21-.475-1.877-.138-.322-.02-1.011-.473-.282-.165.77-.055-.947.202-.38.337-.58-.12-.51-.14-.43.22-.488.14-1.18-.057-.916.117-.517.185-1.902-.175-1.656.218-.54.414-2.473-.534-1.736-.384.005-1.048.14-1.363.296.986.543-.1.196-.5.11-.052.502-.45.285-.946.29.793.098-.386.81-.841.534-.59.282.51.987.012 1.205.06.328-.905-.12-.83.64-.573-.241-.078.9.209.514.975.264.686.866.71 1.437-.158.333-.784-.783-.14-.731-.507-.827-.561-.3-.984.085-.1.028 1.079.547.34.803.65.1.668.67.8 1.03.39.407.31-.45.779.04-.296-.436-1.567-1.228-.544-.974-.005-.44-.185-.793.129-.784.31-.562-.325 1.387.375.672.193-.085.24-.563.59.045.505.498.182.858-.531.403.127.433.954.587.799 1.265.165.595.395.376.596.342.158.578.247.153.255-.123.72.155.552.58.778.88.497.224-.712-1.522.142-.526.898.81.337 1.15-.47 1.02.51-.041.675.69 1.313.664.582.277.975 1.34-.027.897-.348-.313-1.58-.7-.573-.104.929.43 1.665.688 2.561 1.227.64.458.918.982 1.16 1.086-.538.257-1.623-.206-.817-.348-.503-.091-1.068-.345-.587.28.41.343 1.45.306 1.637.345-.159.348-.43.376.006.403-.486.26.156.3.201.448zm-.994-2.808c-.296-.31-.373-.89-.053-.385.164.066.525.947.053.385zm3.238 2.057c.185-.011.006.14 0 0zm-3.706-2.816c-.01-.468.107.36 0 0zm-.322-.433c-.372-.72.47.204 0 0zm-3.9-2.692c.219-.06.108.374 0 0zm3.104 1.682c.134-.504.158.424 0 0zm-2.192-1.525c-.155-.278.323.26 0 0zm1.882.604c-.352-.79.25-.432.078.13zM5.77 12.217c-.158-.26-.418-1.02-.334-1.252.076.378.804 1.627.357.518-.494-.93.59.302.702.534.05.23-.305-.063-.064.478-.44-.617-.26.34-.661-.278zm-1.003-.691c.04-.603.23.413 0 0zm.45.155c.216-.455.366.634 0 0zm-1.084-.84c-.374-.37-.644-.713.017-.23.255.01-.566-.778.06-.25.66.12.327 1.082-.077.48zm.57-.015c.217-.215.115.212 0 0zm.35.113c-.328-.617.4.258 0 0zm-.697-.667c-1.086-.966 1.365.506.177.18zm3.11 1.808c-.47-.282-.123-1.984.037-.82.457-.148-.025.6.315.594-.053.473-.206.643-.35.226zm1.15.68c.048-.513.099.35 0 0zm-.2-.198c.054-.22.007.258 0 0zM4.57 9.955c-.697-.963 2.027.973.447.244-.165-.043-.364-.06-.447-.244zm2.216 1.175c-.066-.81.147.134 0 0zm1.682 1.079c.13-.462.01.305 0 0zM4.676 9.587c.415-.088 1.718.729.52.234-.132-.148-.416-.08-.52-.234zm3.56 1.775c.044-.83.248-.495.002.118zM4.985 9.299c.169-.248-.45-1.12.089-.313.232.185.672.31.283.387.61.539-.15.146-.372-.074zm3.075 1.804c.117-.944.103.553 0 0zM4.632 8.427c.129-.055.068.172 0 0zm.802.478c.206-.434.38.483 0 0zm2.263 1.259c-.002-.167.043.242 0 0zm-.131-.29c-.314-.776.292.41 0 0zm-.193-.51c-.053-.32.18.404 0 0zm.314-.51c-.216-.38.272-1.673.326-.87-.227.625-.065.975.093.136.293-.66-.063 1.303-.42.735zm.322-1.923c.094-.115.02.139 0 0zM7.47 17.544c-.128-.111.016.07 0 0zm1.11.56c.615.16.612-.095.055-.17-.3-.28-1.246-.575-.4-.035.057.142.235.139.344.206zM6.389 16.65c.34.253 1.28.719.484.096.269-.312-.514-.478-.254-.686-.66-.404-.52-.368-.058-.356-.794-.354.114-.328.07-.51-.305-.06-1.52-.54-.804.04-.726-.37-.173.138-.392.084-.743-.202.66.565-.118.375.425.337 1.146.864.18.357-.128.183.69.46.892.6zm1.16.667c1.41.454-.691-.556 0 0zm5.94 3.598c.02-.28-.193.24 0 0zm.611.257c.325-.315.013.503.54-.077.005-.415-.017-.66-.606-.156-.162.09-.234.473.066.233zm-9.692-6.087c-.1-.393-.7-.39 0 0zm.652.428c-.242-.402-.864-.364 0 0zm3.71 2.237c.362.32 1.662.236.44.04-.182-.27-1.151-.204-.44-.04zm5.097 3.149c.558-.468-.54.208 0 0zm1.16.796c.003-.15-.24.066 0 0zm.001-.21c.617-.654-.598.039 0 0zM2.805 13.743c-.526-.75-.327-1.088-.835-1.7-.096-.47-.87-1.533-.4-.406.43.659.558 1.679 1.235 2.106zm12.03 7.534c1.135-.734-.466-.32 0 0zm.866.34c.57-.488-.36-.102 0 0zM4.215 14.255c.163-.242-.42-.031 0 0zm11.305 7.129c.551-.355-.126-.3-.1.032zm-7.47-4.71c-.02-.24-.291.02 0 0zm.46.267c-.145-.297-.224.047 0 0zm7.894 4.684c.705-.51-.428-.098-.148.096zm-.27-.13c.574-.482-.607.213 0 0zm1.38.918c.386-.258-.469-.083 0 0zM4.57 14.08c.517.116 2.066 1.274 1.152.08-.468-.138-.187-1.283-.665-1.08.32.535.264.763-.41.426-.845-.413-.474.204-.31.374-.224.052.299.196.233.2zm-2.356-1.86c.092-.383-.853-2.107-.446-.864.146.26.13.754.446.864zm4.324 2.666c-.266-.223-.013-.032 0 0zm.656.152c0-.405-.725-.164 0 0zm5.681 3.583c-.108-.278-.428-.006 0 0zm.273.199c-.04-.155-.157.03 0 0zM15.4 20.24c.216-.16-.27-.02 0 0zM3.39 12.52c.62-.24-.664-.17 0 0zm8.984 5.662c-.007-.401-.395.1 0 0zm-9.23-6.231c.399-.135-.367-.09 0 0zm1.156.56c-.007-.133-.122.05 0 0zm14.09 8.64c.512-.104 1.678.26 1.866-.136-.62-.015-2.15-.438-2.222.1l.136.023.22.013zM4.667 12.603c.009-.407-.317-.015 0 0zM1.63 10.495c-.138-.775-.525-.118 0 0zm.724.182c.009-.25-.663-.224 0 0zm.414.203c-.12-.097-.094.122 0 0zm2.605 1.67c.122-.112-.29-.083 0 0zm-2.88-2.128c-.07-.585-.84-.088 0 0zm-1.486-.964c-.02-.27-.144.102 0 0zm.22-.167c-.035-.32-.19.04 0 0zm1.22.729c.518-.203-.94-.42-.104-.04zm16.334 10.089c.33-.303-.42-.094 0 0zm1.974 1.023c.132-.392-.334.05 0 0zM2.573 9.38c.055-.38-.41.075 0 0zM.837 8.218c-.093-.535-.08-1.474.812-1.156-1.191.236.824 1.48.57.498.5.024.98-.296.716.19.987-.11 1.67-.964 2.624-.845.742-.098 1.554-.172 2.354-.471.658-.048 1.29-.756.93-1.175-.896-.076-1.835.036-2.827.233-1.098.228-2.096.662-3.205.849-1.08.145.217.4-.092.456-.564.196.672.328-.073.534-.46-.088-.94-.246-.743-.73-1.035.133-1.945.563-1.127 1.616h.06zm2.494-1.27c.243-.894 1.3.735.398.118-.108-.08-.285-.146-.398-.12zm.047-.434c.35-.26.186.146 0 0zm.445.008c.032-.411 1.018.218.163.148zm.608-.245c.222-.26.064.23 0 0zm.156-.104c.37-.444 2.095-.283.832-.043-.338-.255-.598.15-.832.043zm2.25-.347c-.055-1.214 1.119.432 0 0zm.64-.004c.233-.612.906-.245.108-.123.017.065-.024.316-.108.123zM2.322 9.067c.697-.427-.741-.37 0 0zm.515.144c.245-.26-.531-.106 0 0zm-1.52-1.08c.399-.305-.471-.116 0 0zm20.602 12.89c.012-.355-.304.16 0 0zm-2.093-1.43c.06-.408-.27.037 0 0zm2.67 1.568c.557 0 1.688-.173.475-.173-.19.03-1.109.024-.476.173zM3.29 8.959c.45-.03.706-.497-.087-.47-1.23-.127 1.084.42-.158.264-.167.11.236.237.245.207zm.398.202c-.048-.29-.14.154 0 0zm.47-1.257c.197-.243-.27-.065 0 0zm-1.5-2.508c.806-.274 1.907-.581 2.287.135-.387-.466-.156-.924.21-.243.516.689.775-.313.438-.545.383.476.819.7.257.03.61-.734-1.223.097-1.64.088-.2.09-2.071.477-1.551.535zm.472-.903c.46-.347 1.588.206.864-.345-.07-.062-1.586.418-.864.345zm1.674.069c.538.013-.231-.722.409-.39-.105-.343-.746-.407-1.06-.544-.176.314.36.938.65.934zm-1.38-1.52c.186-.252-.326.128 0 0zm.684.164c.866-.115-.22-.373-.174-.01zm-1.277-1c-.61-.796 1.146.134.527-.7-.522-.415-1.023.468-.527.7zm7.824 4.215c.28-.496-1.155-.668-.188-.175.09.03.07.21.188.175z' />
39
+ <path d='M10.773 2.878c-.013 1.434.322 4.624.445 5.734l-8.558 3.83c-.56-.959-.98-2.304-1.237-3.38l-.06.027c-.205.09-.406.053-.494-.088l-.011-.018-.82-1.506c-.058-.105-.05-.252.024-.392a.78.78 0 0 1 .358-.331l9.824-4.207c.146-.064.299-.063.4.004.106.062.127.128.13.327Zm.68 7c.523 1.97.675 2.412.832 2.818l-7.263 3.7a19.35 19.35 0 0 1-1.81-2.83l8.24-3.689Zm12.432 8.786h.003c.283.402-.047.657-.153.698l-.947.37c.037.125.035.319-.217.414l-.736.287c-.229.09-.398-.059-.42-.2l-.025-.125c-4.427 1.784-7.94 1.685-10.696.647-1.981-.745-3.576-1.983-4.846-3.379l6.948-3.54c.721 1.431 1.586 2.454 2.509 3.178 2.086 1.638 4.415 1.712 5.793 1.563l-.047-.233c-.015-.077.007-.135.086-.165l.734-.288a.302.302 0 0 1 .342.086l.748-.288a.306.306 0 0 1 .341.086l.583.89Z' />
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 SiGplv3Props = 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 = '#BD0000';
22
+
23
+ const SiGplv3: IconType = React.forwardRef<SVGSVGElement, SiGplv3Props>(function SiGplv3({title = 'GPLv3', 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='M22.588 7.177h-.005c-.43.031-1.003.161-1.546.379H2.056L0 16.526H13.376a2.42 2.42 0 0 0 1.012.296l.006.001h.679c.215-.017.44-.048.672-.094.4-.078.822-.198 1.26-.357.33-.121.67-.264 1.015-.43.75-.36 1.524-.822 2.283-1.38.25-.184.49-.373.72-.565.165-.137.315-.266.608-.536.544-.524.957-1.057 1.197-1.538.003-.015.19-.34.222-.708a.84.84 0 0 0-.146-.592.787.787 0 0 0-.365-.252c.476-.39.864-.808 1.118-1.216.297-.477.429-.95.284-1.348a.927.927 0 0 0-.578-.547 1.57 1.57 0 0 0-.4-.083h-.006zm.014.295h.34c.12.01.228.033.32.066.21.076.34.201.401.37.098.268.013.656-.257 1.09-.27.436-.718.907-1.286 1.333l-.313.236.39.03c.232.018.384.09.47.204.004.009.105.11.089.388a1.76 1.76 0 0 1-.193.602c-.217.437-.611.95-1.136 1.457a15.051 15.051 0 0 1-1.3 1.076c-.084.06-.924.724-2.235 1.352-.336.162-.667.3-.989.418a8.12 8.12 0 0 1-1.215.345c-.22.043-.432.073-.633.088-.198-.001-.397.003-.594 0-.59-.052-1.055-.259-1.332-.636a1.342 1.342 0 0 1-.2-.399 1.778 1.778 0 0 1-.072-.619c.03-.62.32-1.356.824-2.128.535-.82 1.31-1.68 2.27-2.477.216-.179.438-.355.671-.527.288-.211.578-.407.868-.589 1.07-.673 2.136-1.144 3.082-1.384-.904.295-1.918.795-2.92 1.476l-.108.074c-.556.386-1.06.795-1.5 1.208-1.415 1.331-2.163 2.71-1.823 3.518.024.055.053.108.086.159.366.537 1.271.63 2.419.341a9.333 9.333 0 0 0 1.714-.637c1.265-.629 2.237-1.352 2.448-1.786.046-.095.057-.175.025-.239-.15-.304-1.2-.098-2.473.453-.102.044-.206.09-.31.139a9.853 9.853 0 0 1 .716-.603c.25-.188.5-.359.748-.51 1.16-.875 1.747-1.702 1.624-2.01-.023-.057-.072-.097-.148-.121-.241-.077-.683.015-1.219.234-.442.182-.95.45-1.465.785l-.083.054-.247.164.142-.26c.21-.386.555-.79.983-1.164a6.98 6.98 0 0 1 1.941-1.19c.424-.167.83-.27 1.182-.297h-.251c.2-.043.389-.072.549-.084zm-9.939.097c-.058.884.114 2.18.503 3.617a20.062 20.062 0 0 0 .386 1.26c-.032.047-.064.093-.094.14-.486.744-.77 1.447-.84 2.058a12.67 12.67 0 0 1-.448-2.237 13.603 13.603 0 0 1-.057-.678c-.096-1.622.116-3.093.55-4.16zm-9.685 1.15h2.219c.186 0 .33.036.434.106.102.07.14.162.116.273l-.26 1.177h-.77l.252-1.145H3.041l-.948 4.288H4.02l.388-1.752h-.905l.086-.393h1.676l-.48 2.176a.307.307 0 0 1-.034.087.48.48 0 0 1-.205.184c-.133.07-.293.106-.48.106H1.882c-.186 0-.33-.035-.434-.106-.102-.07-.141-.16-.116-.271l.962-4.35c.025-.112.103-.203.237-.274l.015-.005c.122-.062.266-.096.432-.1zm3.425 0h2.75c.185 0 .33.036.433.106.103.07.143.162.118.273l-.514 2.32c-.024.111-.103.201-.238.272a1.01 1.01 0 0 1-.478.107h-2c-.149.677-.3 1.352-.448 2.029h-.754l1.13-5.106zm3.8 0h.753l-1.04 4.699h1.803c.02.138.041.274.065.408H9.072l1.13-5.106zm-3.137.41-.5 2.258h1.878l.499-2.257zm-1.58 5.051h.023a.53.53 0 0 1 .225.045c.066.03.113.076.139.137a.334.334 0 0 1 .018.197l-.005.028h-.217l.002-.026c.006-.05 0-.09-.02-.118a.1.1 0 0 0-.028-.026.267.267 0 0 0-.138-.03.323.323 0 0 0-.183.043c-.04.028-.066.059-.074.096-.008.038.005.058.015.068l.002.002c.011.01.053.034.182.065.117.028.195.054.239.075a.282.282 0 0 1 .136.132c.025.053.03.115.015.183a.417.417 0 0 1-.098.182.495.495 0 0 1-.186.133.63.63 0 0 1-.24.048.599.599 0 0 1-.26-.048.298.298 0 0 1-.149-.153.376.376 0 0 1-.018-.223l.005-.026h.213l-.002.026c-.005.049 0 .088.013.118a.143.143 0 0 0 .074.07.407.407 0 0 0 .288.006.248.248 0 0 0 .098-.06.164.164 0 0 0 .042-.079c.006-.025.005-.047-.005-.065-.011-.019-.034-.035-.069-.05l-.18-.053a.813.813 0 0 1-.21-.074.259.259 0 0 1-.112-.122.263.263 0 0 1-.01-.16.391.391 0 0 1 .091-.176.454.454 0 0 1 .181-.124.636.636 0 0 1 .204-.04zm1.94.004h.035l.133.015.045.004-.065.164-.013.026-.102-.01c-.03 0-.052.005-.066.015a.255.255 0 0 0-.011.012.175.175 0 0 0-.028.07l-.007.03h.159l-.041.182H7.31l-.157.704h-.214l.157-.704h-.124l.04-.183h.122l.015-.057a.452.452 0 0 1 .044-.131.279.279 0 0 1 .233-.137zm.512.01-.07.315h.138l-.04.183h-.139l-.1.445s-.007.043-.007.065l.024.002.102-.007-.012.164.002.03-.146.016c-.058 0-.1-.01-.13-.03a.13.13 0 0 1-.06-.084c-.001-.007-.004-.016-.004-.03 0-.027.005-.072.023-.15l.094-.42H7.51l.04-.184h.102l.043-.188.242-.128zM1.13 14.2h.832l-.046.207h-.608l-.061.273h.526l-.046.207h-.526l-.113.508H.865l.265-1.195zm1.114.292h.026c.054 0 .103.016.15.05l.03.02-.115.188-.031-.022a.135.135 0 0 0-.074-.022.116.116 0 0 0-.065.022.163.163 0 0 0-.055.061.585.585 0 0 0-.056.152l-.1.454H1.74l.198-.887h.2l-.01.037c.01-.007.02-.017.028-.022a.228.228 0 0 1 .088-.031zm.636 0h.039c.12 0 .212.042.271.125.038.054.058.12.058.2 0 .044-.006.09-.017.142l-.017.065h-.602a.408.408 0 0 0-.002.037c0 .046.01.082.03.109.01.013.02.024.033.033a.164.164 0 0 0 .09.024.213.213 0 0 0 .119-.035.312.312 0 0 0 .096-.105h.229l-.02.044a.49.49 0 0 1-.449.283c-.131 0-.228-.043-.288-.126-.06-.082-.073-.194-.041-.336a.612.612 0 0 1 .188-.34.477.477 0 0 1 .283-.12zm.962 0h.04c.12 0 .211.042.27.125.038.054.058.12.058.2a.65.65 0 0 1-.033.207h-.602l-.002.024c0 .02 0 .026.002.039a.16.16 0 0 0 .027.083l.01.013a.15.15 0 0 0 .114.044.212.212 0 0 0 .118-.035.312.312 0 0 0 .096-.105h.231l-.022.044a.49.49 0 0 1-.449.283c-.13 0-.228-.043-.288-.126-.079-.108-.059-.256-.04-.336a.612.612 0 0 1 .186-.34.483.483 0 0 1 .284-.12zm2.622 0h.039c.122 0 .217.041.278.124.061.082.076.193.045.332a.681.681 0 0 1-.107.26.509.509 0 0 1-.405.206c-.125 0-.219-.043-.279-.126-.078-.104-.064-.25-.042-.344a.58.58 0 0 1 .214-.356.5.5 0 0 1 .257-.096zm3.245 0c.016-.001.03 0 .047 0 .074 0 .133.007.177.026.047.019.08.045.1.077.018.03.027.067.027.113l-.022.135-.04.183a2.008 2.008 0 0 0-.045.236c-.001.03.001.058.01.085l.014.048H9.76l-.009-.028c-.003-.013-.002-.03-.004-.044a.522.522 0 0 1-.29.09c-.1 0-.174-.026-.22-.077a.196.196 0 0 1-.05-.137.308.308 0 0 1 .065-.187.346.346 0 0 1 .1-.088.444.444 0 0 1 .12-.048l.131-.022a1.44 1.44 0 0 0 .231-.043l.004-.013c.009-.038.007-.066-.002-.08l-.011-.012c-.022-.018-.06-.026-.11-.026-.058 0-.1.01-.13.028a.241.241 0 0 0-.08.1h-.223l.02-.045a.472.472 0 0 1 .098-.151.408.408 0 0 1 .155-.09.615.615 0 0 1 .155-.03zm.937 0h.026c.054 0 .104.016.151.05l.028.02-.114.188-.032-.022a.13.13 0 0 0-.072-.022.123.123 0 0 0-.066.022.164.164 0 0 0-.054.061.607.607 0 0 0-.055.152l-.102.454h-.214l.197-.887h.2l-.008.037c.01-.007.02-.017.028-.022a.218.218 0 0 1 .087-.031zm.634 0h.038c.121 0 .213.042.272.125.038.054.057.12.057.2a.68.68 0 0 1-.018.142l-.015.065h-.602c-.001.012-.004.025-.004.037 0 .046.01.082.03.109a.189.189 0 0 0 .018.02.154.154 0 0 0 .107.037.214.214 0 0 0 .119-.035.318.318 0 0 0 .096-.105h.23l-.022.044a.49.49 0 0 1-.449.283c-.13 0-.226-.043-.286-.126-.06-.082-.074-.194-.042-.336a.61.61 0 0 1 .186-.34.484.484 0 0 1 .285-.12zm-3.235.016h.22l.028.534a.991.991 0 0 0 .016-.037l.242-.497h.202l.018.523.275-.523h.218l-.48.887h-.198l-.02-.508-.248.508h-.203l-.07-.887zm-5.161.168a.235.235 0 0 0-.14.056.272.272 0 0 0-.077.105h.364l.002-.02a.153.153 0 0 0-.016-.078c-.026-.042-.065-.063-.122-.063h-.011zm.962 0a.234.234 0 0 0-.14.056.278.278 0 0 0-.076.105h.364l.002-.02a.147.147 0 0 0-.017-.078.147.147 0 0 0-.018-.024.137.137 0 0 0-.104-.039h-.01zm7.445 0c-.033.001-.09.01-.147.057a.279.279 0 0 0-.077.104h.366l.002-.02a.15.15 0 0 0-.017-.078.12.12 0 0 0-.098-.06c-.014-.002-.017-.003-.03-.003zm-4.84.004a.245.245 0 0 0-.137.067.4.4 0 0 0-.109.214c-.017.077-.021.155.011.205.02.029.056.06.124.06.06 0 .112-.021.163-.067a.41.41 0 0 0 .109-.218c.02-.09.017-.157-.012-.2-.027-.041-.067-.06-.122-.06-.009 0-.018-.002-.027 0zm3.338.323c-.05.014-.107.025-.181.035a.629.629 0 0 0-.118.026.132.132 0 0 0-.05.035.11.11 0 0 0-.026.048.094.094 0 0 0 0 .037.073.073 0 0 0 .013.023c.015.016.044.024.087.024a.294.294 0 0 0 .133-.03c.04-.02.073-.05.098-.085a.345.345 0 0 0 .044-.113z' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiGplv3 as default, defaultColor };
45
+
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiLuauProps = 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 = '#00A2FF';
22
+
23
+ const SiLuau: IconType = React.forwardRef<SVGSVGElement, SiLuauProps>(function SiLuau({title = 'Luau', 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='M24 5.072 18.928 24 0 18.928 5.072 0 24 5.072ZM8.984 18.402l-.085.375.61.163 1.005-3.75-.641-.172-.731 2.728c-.26.322-.635.417-1.125.286-.462-.124-.616-.47-.464-1.039l.649-2.422-.641-.172-.654 2.44c-.12.455-.107.828.039 1.117.148.287.422.485.822.592.483.13.888.081 1.216-.146Zm3.818 1.42.672.18.015-.055c-.034-.227-.004-.512.088-.857l.462-1.725c.093-.382.045-.713-.142-.994-.187-.282-.496-.481-.928-.597a1.897 1.897 0 0 0-.793-.05 1.42 1.42 0 0 0-.652.272.912.912 0 0 0-.343.488l.645.172c.044-.164.159-.283.344-.357a.969.969 0 0 1 .622-.02c.261.07.44.19.54.36.098.168.117.364.057.588l-.079.295-.624-.167c-.538-.145-.985-.148-1.342-.01-.353.135-.582.398-.687.789-.086.32-.04.618.14.891.183.272.458.458.828.557.414.11.811.05 1.192-.179-.028.196-.033.336-.015.42Zm-.934-.774a.8.8 0 0 1-.47-.307.606.606 0 0 1-.075-.526c.123-.46.577-.584 1.363-.374l.502.135-.206.77a.978.978 0 0 1-.5.3 1.166 1.166 0 0 1-.614.002ZM21 6.804l-3.786-1.015L16.2 9.575l3.786 1.014L21 6.804ZM3.818 16.832l1.207-4.502-.67-.18-1.352 5.047 3.06.82.146-.544-2.39-.64Zm12.944 3.654-.086.375.61.163 1.005-3.75-.641-.172-.731 2.728c-.26.322-.634.417-1.124.286-.462-.124-.617-.47-.465-1.039l.65-2.422-.642-.172-.654 2.44c-.12.456-.106.828.04 1.117.147.288.421.485.821.592.483.13.889.081 1.217-.146Z' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiLuau as default, defaultColor };
45
+
@@ -18,7 +18,7 @@
18
18
  size?: string | number;
19
19
  }
20
20
 
21
- const defaultColor = '#CD792C';
21
+ const defaultColor = '#0075FF';
22
22
 
23
23
  const SiPolars: IconType = React.forwardRef<SVGSVGElement, SiPolarsProps>(function SiPolars({title = 'Polars', color = 'currentColor', size = 24, ...others }, ref) {
24
24
  if (color === 'default') {
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiVikunjaProps = 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 = '#196AFF';
22
+
23
+ const SiVikunja: IconType = React.forwardRef<SVGSVGElement, SiVikunjaProps>(function SiVikunja({title = 'Vikunja', 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 .253a11.92 11.92 0 0 0-8.485 3.516A11.91 11.91 0 0 0 0 12.2541a11.922 11.922 0 0 0 3.515 8.4862 11.92 11.92 0 0 0 4.628 2.884c.1101-1.1427.3843-2.327.357-3.4952-.0338-1.655.5087-3.5564-.1388-5.0914-.215-.5074-.495-1.0112-.675-1.5062a5.66 5.66 0 0 1-.3224-1.2025c-.0288-.2287-.0513-1.1737-.03-1.4125.09-1.0175.2087-2.1724.2087-2.1724S7.2722 8.049 7.6632 7.2c-.0643-.055-.0886-.1914-.1057-.2522-.0662-.2275-.09-.4674-.1038-.7024-.0888-1.4412-.1111-4.2074 1.8926-4.8324.935-.2925.69.4475.6674 1.0725-.0212.9087-.0761 1.826-.0761 2.7535 0 .066.0157.1329.0207.1963.8099-.2266 1.6332-.2538 2.203-.2538.6795 0 1.7288.0387 2.6841.4084.1963-.7248.2844-2.9959.3084-3.5944.02-.4743.1576-.6601.3477-.67.4503-.0235 1.1948.9395 1.367 1.3912.6287 1.651.374 2.9068-.2914 4.2767.5432.9409.2278 1.752.2278 1.752s.2163 2.2436.1838 2.9499c-.0912 2.0112-.8287 2.41-1.275 3.7125-.5162 1.5075-.1325 3.1763 0 4.75.046.5189.3398 1.8736.594 3.3037a11.92 11.92 0 0 0 4.1773-2.7212A11.92 11.92 0 0 0 24 12.2541c0-2.74-.9863-5.465-2.73-7.6125v-.0011a12 12 0 0 0-.6251-.7127C18.3886 1.5591 15.3174.253 11.9999.253m4.0067 2.573c-.0266.0006-.046.0177-.0555.0557-.025.1062-.04.8886-.1038 1.2636-.08.4638-.225.9226-.225 1.3951-.0025 1.0563.3163 1.1.4413 1.34v.0011c.1287.2275.4624-1.0037.5674-1.54.1-.5037.2252-1.1723.0502-1.6735-.0795-.231-.5118-.8452-.6746-.842m-6.941.104c-.0141 0-.0298.0071-.047.023C7.7675 4.0941 8.13 6.0165 8.25 7.094v-.0013c.0325.2938.47-.0638.6988-.7438.115-.3424.2112-.3074.3312-.8699.045-.2063-.05-.4425-.0588-.8938-.005-.2387.0276-.9199-.005-1.1574-.0196-.151-.0508-.498-.1504-.4979m1.0094 4.8914c-.0341-.001-.0692.0118-.099.044-.1687.185-.2823.6087.0827.7.1937.0462.4724.0437.7099-.01-.1.3187-.12.61.29.8137.2763.1387.6562.1376.8174-.075.34.1813.8713.3587.945-.0975.0263-.1625-.255-.2312-.2812-.0687-.0412.2525-.5137-.0414-.6312-.1214-.1037-.0687-.2374-.0261-.25.0914-.0174.1587-.2313.1124-.3288.0924-.185-.0375-.3425-.1525-.3462-.325-.005-.17.1024-.3462.1574-.505.0363-.1-.1087-.2125-.215-.1437-.19.1212-1.1087.2313-.7424-.17.0871-.0956-.0063-.2222-.1086-.2252m.055 2.31c-.3473-.0082-.4943.4326-.6315.7877-.0425.0975-.0974.2562.0114.2274.225-.06.4574-.6425.625-.605.2637.0613.3762.5202.5174.5752.2588.1-.1474-.9127-.4499-.9777a.44.44 0 0 0-.0723-.0077m4.3011 0c-.3483-.0082-.4942.4326-.6313.7877h-.0011c-.0425.0975-.0963.2562.0124.2274.225-.06.4562-.6425.625-.605.2637.0613.375.5202.5162.5752.26.1-.1462-.9127-.4487-.9777a.45.45 0 0 0-.0725-.0077m-1.985 1.4427c-.5988-.015-1.0299.1675-1.3411.49-.4688.4875-.5926.775-.5939 1.6987 0 .4987.5375 1.6013.6962 1.8563.2663.45.7575.6111 1.2387.5774.4825.0337.9738-.1286 1.2388-.5774.16-.255.6888-1.3375.6876-1.9237h.0013c-.0012-.9225-.1164-1.295-.6301-1.7463-.3225-.2825-.6988-.39-1.2975-.375m.7963 1.3487c.0887.035-.0125.1037-.0487.1474a1.7 1.7 0 0 0-.0976.1352c-.0488.0712-.3663.4962-.405.5337a1.5 1.5 0 0 1-.0885.08c.0205.0764-.0106.169-.019.2438a4 4 0 0 0-.02.5586c.0058.1488.0623.3287.0482.4789.2619-.0188.528-.055.7842-.0927.2275-.0337.5063-.075.6588-.2424.0125.5625-1.1574.7388-1.6111.75-.5262.0125-1.1187-.2149-1.4874-.541l-.0015-.0003h.0013l.0002.0002c.4353.0377.8707.129 1.3086.1373-.0141-.079-.0092-.1686-.0139-.2199a4.42 4.42 0 0 1 .0339-1.0913q0-.0008.0002-.0015c-.0838-.1044-.163-.2112-.2478-.3148-.0862-.1025-.1812-.2024-.2962-.28-.0638-.04-.2-.0862-.05-.1287.2525-.0712.5575.0512.7588.185.2212-.16.4962-.325.7925-.3375m1.4319 3.7223c-.0938.0033-.1865.0673-.1619.1714.03.125.0349.55-.2001.3175-.0938-.0938-.2824-.0375-.2899.0875-.0175.2925-.3113.3-.5638.2113-.2-.07-.3074.2076-.1074.2763.3712.13.7749.0574.9336-.2226.1263.0587.2688.075.3838-.0324.2-.1875.23-.4525.1712-.6962-.0191-.081-.0926-.1154-.1655-.1128m-4.9793 1.4198c-.054-.0005-.1093.019-.1476.0667-.3625.4512.6124 1.2924 1.17 1.065.025.1124.0499.225.0999.3324.0925.2113.2988.3476.5125.4626.2888.155.8525-.1189.9375-.3789.0613-.1812-.265-.2462-.325-.065-.0275.0813-.2325.1425-.31.1663-.1862.0612-.3513-.0863-.455-.21-.145-.1713-.141-.445-.2023-.645-.0363-.1212-.2439-.1375-.3064-.025-.2075.3725-1.0137-.33-.8262-.565.0851-.1056-.0284-.203-.1474-.2041m5.5316 4.7863a.132.132 0 0 0-.1218.0778c-.0875.1788-.2474.1675-.4199.0925-.1262-.055-.2825.035-.245.1626.0775.2575-.2464.3324-.4664.2411-.1925-.0812-.36.1726-.165.2538.395.165.8964.02.9689-.3276.255.0413.4974-.0299.6174-.2787.0576-.1168-.061-.223-.1682-.2215' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiVikunja as default, defaultColor };
45
+
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiYaakProps = 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 = '#814EDF';
22
+
23
+ const SiYaak: IconType = React.forwardRef<SVGSVGElement, SiYaakProps>(function SiYaak({title = 'Yaak', 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 0C5.377 0 0 5.377 0 12s5.377 12 12 12c1.26 0 2.474-.194 3.615-.555-.272-.827-.485-1.57-.72-1.496C8.607 23.925 1.668 18.246 1.668 12 1.667 6.29 7.79-.043 14.7 1.779c.18.047 1.364-.405 2.19-.738A11.95 11.95 0 0 0 12 0m6.37 1.83c-1.866.712-6.182 2.136-7.332 3.731-2.676.004-3.675.532-4.069.814-.316.226-.407 2.034-.407 2.034h-.814l-.406-1.627s-3.967 4.496 1.22 4.475c.202 1.339.15 3.974.407 5.696.27 1.806 4.18 3.74 5.29 3.662.58-.04.362-1.65.406-2.441 2.345.802 3.653 1.981 4.285 4.76C21.106 21.046 24 16.858 24 12c0-4.284-2.25-8.046-5.63-10.17m-2.81 4.124c.667-.062 6.563 2.538 4.428 4.454-.572.21-1.268.195-1.782.21-2.198.065-3.007-.61-3.421-1.376-.229-.422-.62-1.084-.492-1.24.67.001 1.497-.031 2.034 0-.191-.29-1.398-1.596-.814-2.034a.1.1 0 0 1 .048-.014m-3.465 6.166a1.124 1.124 0 1 1 0 2.248 1.124 1.124 0 0 1 0-2.248' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiYaak as default, defaultColor };
45
+