@icons-pack/react-simple-icons 13.11.2 → 13.12.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/README.md +1 -1
- package/icons/SiBaseui.cjs +51 -0
- package/icons/SiBaseui.d.ts +4 -0
- package/icons/SiBaseui.mjs +27 -0
- package/icons/SiGhostfolio.cjs +51 -0
- package/icons/SiGhostfolio.d.ts +4 -0
- package/icons/SiGhostfolio.mjs +27 -0
- package/icons/SiIndieweb.cjs +51 -0
- package/icons/SiIndieweb.d.ts +4 -0
- package/icons/SiIndieweb.mjs +27 -0
- package/icons/SiKarakeep.cjs +51 -0
- package/icons/SiKarakeep.d.ts +4 -0
- package/icons/SiKarakeep.mjs +27 -0
- package/icons/SiLinkvertise.cjs +51 -0
- package/icons/SiLinkvertise.d.ts +4 -0
- package/icons/SiLinkvertise.mjs +27 -0
- package/icons/SiLoops.cjs +51 -0
- package/icons/SiLoops.d.ts +4 -0
- package/icons/SiLoops.mjs +27 -0
- package/icons/SiOrchardcore.cjs +51 -0
- package/icons/SiOrchardcore.d.ts +4 -0
- package/icons/SiOrchardcore.mjs +27 -0
- package/icons/SiPangolin.cjs +51 -0
- package/icons/SiPangolin.d.ts +4 -0
- package/icons/SiPangolin.mjs +27 -0
- package/icons/SiSolveddotac.cjs +51 -0
- package/icons/SiSolveddotac.d.ts +4 -0
- package/icons/SiSolveddotac.mjs +27 -0
- package/icons/SiSupercell.cjs +51 -0
- package/icons/SiSupercell.d.ts +4 -0
- package/icons/SiSupercell.mjs +27 -0
- package/icons/SiTarteaucitron.cjs +51 -0
- package/icons/SiTarteaucitron.d.ts +4 -0
- package/icons/SiTarteaucitron.mjs +27 -0
- package/icons/SiTidb.cjs +51 -0
- package/icons/SiTidb.d.ts +4 -0
- package/icons/SiTidb.mjs +27 -0
- package/icons/SiTrezor.cjs +51 -0
- package/icons/SiTrezor.d.ts +4 -0
- package/icons/SiTrezor.mjs +27 -0
- package/icons/SiYew.cjs +51 -0
- package/icons/SiYew.d.ts +4 -0
- package/icons/SiYew.mjs +27 -0
- package/index.cjs +42 -0
- package/index.d.ts +14 -0
- package/index.mjs +14 -0
- package/package.json +2 -2
- package/src/icons/SiBaseui.tsx +45 -0
- package/src/icons/SiGhostfolio.tsx +45 -0
- package/src/icons/SiIndieweb.tsx +45 -0
- package/src/icons/SiKarakeep.tsx +45 -0
- package/src/icons/SiLinkvertise.tsx +45 -0
- package/src/icons/SiLoops.tsx +45 -0
- package/src/icons/SiOrchardcore.tsx +45 -0
- package/src/icons/SiPangolin.tsx +45 -0
- package/src/icons/SiSolveddotac.tsx +45 -0
- package/src/icons/SiSupercell.tsx +45 -0
- package/src/icons/SiTarteaucitron.tsx +45 -0
- package/src/icons/SiTidb.tsx +45 -0
- package/src/icons/SiTrezor.tsx +45 -0
- package/src/icons/SiYew.tsx +45 -0
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiKarakeepProps = 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 SiKarakeep: IconType = React.forwardRef<SVGSVGElement, SiKarakeepProps>(function SiKarakeep({title = 'Karakeep', 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.582.054H1.418C.635.054 0 .69 0 1.472v21.056c0 .783.635 1.418 1.418 1.418h21.164c.783 0 1.418-.635 1.418-1.418V1.472C24 .69 23.365.054 22.582.054M10.487 20.437a.37.37 0 0 1-.37.37H3.592a.37.37 0 0 1-.37-.37V3.485a.37.37 0 0 1 .37-.37h6.422a.37.37 0 0 1 .37.37v6.452s-.035 2.776.103 4.955zm10.188 0a.371.371 0 0 1-.575.31l-2.975-1.945a.37.37 0 0 0-.42.01l-2.608 1.887a.36.36 0 0 1-.345.042.37.37 0 0 1-.159-.302V7.274c.353-.07.746-.106 1.2-.106 2.229 0 5.882 1.257 5.882 4.81z' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiKarakeep as default, defaultColor };
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiLinkvertiseProps = 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 = '#FF8114';
|
|
22
|
+
|
|
23
|
+
const SiLinkvertise: IconType = React.forwardRef<SVGSVGElement, SiLinkvertiseProps>(function SiLinkvertise({title = 'Linkvertise', 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='M7.876 23.998c-.008.006.009-.003.028-.011a606 606 0 0 1 3.027-1.48.6.6 0 0 1 .25-.056q3.705-.004 7.412-.003c.178 0 .36-.01.535-.039a4.1 4.1 0 0 0 3.475-4.064l.002-7.571c0-.1.026-.207.07-.3.25-.53.512-1.06.771-1.588.156-.322.312-.643.476-.985zM.078 16.021l.016.011A45293 45293 0 0 1 16.001.025L15.98 0l-.123.056c-.807.394-1.612.794-2.422 1.183a.8.8 0 0 1-.331.078c-2.453.006-4.906.003-7.362.006q-.368-.001-.732.056a4.096 4.096 0 0 0-3.44 4.055q0 3.68-.003 7.357c0 .092-.022.19-.064.274q-.636 1.317-1.28 2.634zm11.12-6.344c.276 0 .524-.03.763.006 1.056.162 1.802.747 2.175 1.748.379 1.015.195 1.966-.524 2.778-.45.506-.952.967-1.43 1.448q-1.192 1.197-2.384 2.389l-4.096 4.109c-.022.022-.042.047-.072.08.036.004.056.006.075.01.79 0 1.582.002 2.37-.004.052 0 .12-.036.158-.075q1.705-1.699 3.405-3.401 1.543-1.55 3.091-3.1c.922-.92 1.387-2.03 1.384-3.339-.003-1.936-1.309-3.709-3.152-4.274-.086-.025-.142-.017-.209.05-.487.496-.98.988-1.47 1.483-.025.025-.045.05-.084.092m1.74 4.459q-.003-.016-.008-.031c-.247 0-.5.025-.743-.006-1.309-.165-2.333-1.334-2.342-2.662-.002-.772.26-1.438.802-1.986.888-.898 1.782-1.79 2.673-2.685l4.761-4.789c.031-.03.056-.061.103-.117h-.172c-.727 0-1.456.003-2.183-.003a.36.36 0 0 0-.273.115q-3.083 3.105-6.17 6.209c-.83.836-1.261 1.852-1.323 3.024a4.35 4.35 0 0 0 .452 2.17c.57 1.158 1.478 1.935 2.7 2.335.048.017.131.009.165-.022.526-.512 1.041-1.032 1.559-1.552zm-11.34 4.416c.044-.039.075-.064.103-.092 1.949-1.958 3.895-3.919 5.847-5.877.07-.07.092-.134.07-.23a4.9 4.9 0 0 1 0-1.94c.038-.196.091-.392.141-.601-.025.022-.036.03-.05.041a6082 6082 0 0 0-6.047 6.081.27.27 0 0 0-.07.174c-.005.777-.003 1.555-.003 2.33 0 .03.003.064.009.114m14.849-4.632.07-.067c1.792-1.801 3.588-3.602 5.379-5.406a.28.28 0 0 0 .072-.185c.006-.76.003-1.522.003-2.28 0-.033-.006-.07-.009-.125l-.114.109-3.088 3.102q-1.067 1.073-2.135 2.142c-.059.056-.078.106-.064.196q.064.364.086.733a5.6 5.6 0 0 1-.2 1.781' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiLinkvertise as default, defaultColor };
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiLoopsProps = 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 = '#FC5200';
|
|
22
|
+
|
|
23
|
+
const SiLoops: IconType = React.forwardRef<SVGSVGElement, SiLoopsProps>(function SiLoops({title = 'Loops', 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.608 1.622h-3.231A10.39 10.39 0 0 0 0 12.002a10.39 10.39 0 0 0 10.377 10.376h3.243A10.39 10.39 0 0 0 24 12.001 10.39 10.39 0 0 0 13.608 1.622M1.284 12a9.085 9.085 0 0 1 10.6-8.96 9.044 9.044 0 0 1 7.568 8.955 5.85 5.85 0 0 1-4.87 5.756 7.12 7.12 0 0 0 2.923-5.756 7.121 7.121 0 0 0-12.17-5.038 7.14 7.14 0 0 0-2.087 5.038 10.35 10.35 0 0 0 4.83 8.783A9.1 9.1 0 0 1 1.291 12zm10.704-5.606A5.83 5.83 0 0 1 16.204 12a5.83 5.83 0 0 1-4.216 5.603A5.83 5.83 0 0 1 7.772 12a5.83 5.83 0 0 1 4.216-5.606m1.62 14.686h-.036a9 9 0 0 1-1.474-.125 9.04 9.04 0 0 1-7.558-8.651V12a5.844 5.844 0 0 1 4.87-5.756A7.12 7.12 0 0 0 6.485 12a7.12 7.12 0 0 0 5.35 6.907A7.143 7.143 0 0 0 20.756 12a10.34 10.34 0 0 0-4.828-8.784A9.086 9.086 0 0 1 22.702 12a9.086 9.086 0 0 1-9.092 9.08' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiLoops as default, defaultColor };
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiOrchardcoreProps = 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 = '#41B670';
|
|
22
|
+
|
|
23
|
+
const SiOrchardcore: IconType = React.forwardRef<SVGSVGElement, SiOrchardcoreProps>(function SiOrchardcore({title = 'Orchard Core', 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.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.629 0 12 0m0 21.69c-5.352 0-9.692-4.338-9.692-9.692 0-5.352 4.338-9.691 9.692-9.691 5.352 0 9.692 4.338 9.692 9.691A9.69 9.69 0 0 1 12 21.69m5.778-3.964a7.996 7.996 0 0 1 0-11.305 7.993 7.993 0 0 1 0 11.305m-3.212-3.211A7.994 7.994 0 0 1 6.572 6.52a7.996 7.996 0 0 1 7.994 7.994m-8.13 3.242a7.996 7.996 0 0 1 11.306 0 7.996 7.996 0 0 1-11.305 0' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiOrchardcore as default, defaultColor };
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiPangolinProps = 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 = '#F36118';
|
|
22
|
+
|
|
23
|
+
const SiPangolin: IconType = React.forwardRef<SVGSVGElement, SiPangolinProps>(function SiPangolin({title = 'Pangolin', 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.729 7.988a.852.852 0 1 1 0 1.705.85.85 0 0 1 0-1.701m3.345 3.557c-.087 2.835-2.249 6.577-5.178 7.537-3.425 1.123-6.022-.563-6.846-2.54-.642-1.542-.159-3.383 1.04-4.162 1.013-.661 2.895-.831 4.479.208-.556-1.459-2.053-2.419-3.38-2.706a5.67 5.67 0 0 0-3.681.54c1.263-1.398 4.218-2.748 7.431-1.043 2.155 1.145 3.081 2.748 3.996 4.914C23.33 10.63 21.66 6.219 18.75 3.6A14.44 14.44 0 0 0 8.71.009c1.013.627 2.2 1.52 3.3 2.562-4.853-.6-8.856.503-11.328 3.867a21.6 21.6 0 0 1 5.02-.355C2.164 8.578.107 12.766 1.154 17.139a20.2 20.2 0 0 1 2.73-3.666c-.353 3.262.136 7.673 4.33 10.527a19 19 0 0 1-.465-3.137c1.962 1.534 4.812 2.797 8.35 1.924 6.245-1.543 7.915-7.58 6.974-11.242' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiPangolin as default, defaultColor };
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiSolveddotacProps = 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 = '#17CE3A';
|
|
22
|
+
|
|
23
|
+
const SiSolveddotac: IconType = React.forwardRef<SVGSVGElement, SiSolveddotacProps>(function SiSolveddotac({title = 'solved.ac', 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='M2.452 5.44A2.446 2.446 0 0 0 0 7.892v8.216a2.446 2.446 0 0 0 2.452 2.452h19.096A2.446 2.446 0 0 0 24 16.108V7.892a2.446 2.446 0 0 0-2.452-2.452zM15.73 8.9c.964 0 1.616.257 2.149.651a.7.7 0 0 1 .275.56.69.69 0 0 1-.698.689.74.74 0 0 1-.422-.137c-.395-.295-.809-.46-1.314-.46-1.083 0-1.863.9-1.863 2.002v.019c0 1.102.762 2.02 1.861 2.02.597 0 .993-.184 1.396-.506a.655.655 0 1 1 .845 1.001c-.578.505-1.258.808-2.286.808-1.89 0-3.295-1.458-3.295-3.305v-.018c0-1.828 1.377-3.325 3.352-3.325m-6.98.008h.084c.385 0 .661.212.817.56l2.24 5.061a.7.7 0 0 1 .074.284.67.67 0 0 1-.668.68c-.33 0-.551-.193-.68-.487l-.431-1.01H7.358l-.45 1.056a.695.695 0 0 1-.652.441.65.65 0 0 1-.652-.661.75.75 0 0 1 .08-.303l2.242-5.06c.154-.35.44-.56.826-.56m.02 1.718-.891 2.121H9.66z' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiSolveddotac as default, defaultColor };
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiSupercellProps = 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 = '#FFFFFF';
|
|
22
|
+
|
|
23
|
+
const SiSupercell: IconType = React.forwardRef<SVGSVGElement, SiSupercellProps>(function SiSupercell({title = 'Supercell', 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='M6.997 21.76H0v-1.583h.673v-3.01H0v-1.592h6.997l.68.747v2.14H5.759v-1.296H3.134v.927h1.132v1.15H3.134v.934h2.624v-1.296h1.92v2.14zm0-6.68H0V13.5h.673v-3.01H0V8.896h6.997l.68.747v2.14H5.759v-1.296H3.134v.927h1.132v1.149H3.134v.934h2.624v-1.295h1.92v2.14zm-.51-6.65h-4.29l-.507-.54-.451.542H0V6.545h1.73v.534h3.232v-.903H1.116L0 5.15V3.625l1.28-1.378h3.854l.509.542.45-.542h1.24v1.887H5.6V3.6H2.674v.902h3.748l1.263 1.19v1.443zm16.83 13.33H16.31v-1.584h.672v-3.01h-.672v-1.592h3.805v1.592h-.672v3.01h2.636v-1.997h1.92v2.842zm-8.157 0H8.153v-1.583h.673v-3.01h-.673v-1.592h3.806v1.592h-.673v3.01h2.636V18.18h1.92v2.842zm7.452-6.68h-4.676l-1.615-1.581v-3.02l1.616-1.584h3.684l.459.575.45-.575H24V11.5h-1.92v-1.02h-3.24v3.02h3.24v-1.04h1.919v1.27zM21.555 3.829h-2.1v1.083h2.1zm1.476 2.157h-3.576v.853h.673v1.584h-3.806V6.839h.672v-3.01h-.672v-1.59h6.595l1.082 1.082v1.698zm-7.772-2.15v3.233l-1.37 1.362h-3.69L8.836 7.069V3.837h-.673V2.246h3.724v1.59h-.59v3.01h2.083v-3.01h-.509v-1.59h2.97v1.59zm-2.562 6.65h-1.41v1.026h1.41zm.681 4.593-.68-.68V12.47h-1.412v1.025h.5v1.583H8.154v-1.583h.673v-3.01h-.673v-1.59h6.078l1.026 1.025v1.28l-.911.68.91.69v1.148h.575v1.361z' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiSupercell as default, defaultColor };
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiTarteaucitronProps = 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 = '#F7D917';
|
|
22
|
+
|
|
23
|
+
const SiTarteaucitron: IconType = React.forwardRef<SVGSVGElement, SiTarteaucitronProps>(function SiTarteaucitron({title = 'Tarteaucitron', 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='M8.125 17.789c.083.1.241.105.31.022l2.458-2.458c.126-.126.038-.363-.148-.363H7.266c-.118 0-.207.097-.152.633.056.537.426 1.425 1.01 2.166m5.167-3.428h3.479a.207.207 0 0 0 .207-.207c-.087-.96-.486-1.832-1.066-2.59-.083-.1-.241-.106-.31-.023l-2.466 2.457c-.123.124-.044.363.156.363m2.28 3.457a.21.21 0 0 0 .31-.015c.608-.747.945-1.644 1.067-2.59a.213.213 0 0 0-.208-.215h-3.48c-.197 0-.269.242-.148.363zm-6.692.755c.74.593 1.628.963 2.568 1.066a.205.205 0 0 0 .23-.207V15.96a.207.207 0 0 0-.355-.148L8.865 18.27c-.046.036-.114.175.015.303m-.46-7.017a.21.21 0 0 0-.31.014c-.607.747-.944 1.645-1.066 2.591 0 .119.096.215.207.215h3.48c.192 0 .282-.235.155-.363zm3.028-1.82A5 5 0 0 0 8.88 10.8c-.093.066-.1.225-.015.31l2.458 2.458c.13.13.355.043.355-.148V9.94c0-.124-.1-.223-.23-.206m1.222 3.834 2.458-2.458a.215.215 0 0 0-.015-.31 4.96 4.96 0 0 0-2.569-1.066.205.205 0 0 0-.23.207v3.472c0 .225.185.307.356.155m-.655 7.893.01-1.282c-2.618.003-5.592-2.01-5.598-5.533a5.527 5.527 0 0 1 5.525-5.527c3.042 0 5.522 2.48 5.53 5.523v.007a5.52 5.52 0 0 1-1.614 3.9l.88.87.704.708c.326-.17.615-.57.577-.896a.203.203 0 0 1 .163-.222c.415-.081.792-.733.652-1.133a.21.21 0 0 1 .11-.251c.386-.163.623-.881.408-1.244a.2.2 0 0 1 .06-.266c.347-.245.42-.992.132-1.303-.09-.09-.057-.217 0-.274.29-.311.208-1.06-.133-1.303a.21.21 0 0 1-.06-.266c.216-.363-.014-1.081-.406-1.244-.096-.037-.14-.148-.111-.252.133-.4-.237-1.051-.652-1.132a.21.21 0 0 1-.163-.223c.052-.421-.451-.977-.873-.97a.2.2 0 0 1-.2-.184c-.037-.422-.644-.866-1.058-.77a.203.203 0 0 1-.237-.133c-.126-.4-.815-.711-1.2-.533a.2.2 0 0 1-.26-.082c-.206-.37-.94-.525-1.28-.274a.196.196 0 0 1-.266-.03c-.148-.17-.422-.244-.696-.236-.244.007-.48.089-.614.237a.204.204 0 0 1-.267.03c-.34-.252-1.073-.097-1.28.273a.2.2 0 0 1-.26.082c-.384-.178-1.073.125-1.199.533a.203.203 0 0 1-.237.133c-.414-.096-1.021.348-1.058.77a.2.2 0 0 1-.2.185c-.422-.008-.925.555-.873.97.014.103-.06.2-.163.222-.415.08-.792.732-.652 1.132a.21.21 0 0 1-.11.252c-.386.163-.623.88-.408 1.244a.2.2 0 0 1-.06.266c-.347.244-.42.992-.132 1.303.03.03.044.067.051.104a.21.21 0 0 1-.051.17c-.29.31-.208 1.058.133 1.303.081.059.11.177.059.266-.215.363.015 1.08.407 1.244.096.037.14.148.111.25-.133.4.237 1.053.652 1.134a.21.21 0 0 1 .163.222c-.052.422.451.977.873.97a.2.2 0 0 1 .2.185c.037.422.644.866 1.058.77a.203.203 0 0 1 .237.133c.126.4.815.71 1.2.533a.2.2 0 0 1 .259.082c.207.37.94.525 1.28.273a.197.197 0 0 1 .267.03c.133.148.413.086.657.094zm1.15-.416a5 5 0 0 0 2.57-1.066c.093-.067.1-.226.014-.311l-2.457-2.458a.208.208 0 0 0-.356.148v3.472c0 .176.15.225.23.215M7.97 5.715a3.936 3.936 0 0 1 3.938-3.938 3.936 3.936 0 0 1 3.939 3.938v1.362a8.2 8.2 0 0 1 1.643 1.162V5.53a5.53 5.53 0 0 0-11.06 0v2.6a8.2 8.2 0 0 1 1.54-1.06zm8.66 14.324a5.5 5.5 0 0 1-4.048 1.777c0 .424-.006.849 0 1.273v.91c.274.009.548-.065.696-.235a.204.204 0 0 1 .266-.03c.341.252 1.074.096 1.281-.274a.2.2 0 0 1 .26-.081c.384.177 1.073-.126 1.198-.533a.203.203 0 0 1 .237-.134c.415.097 1.022-.347 1.059-.77a.2.2 0 0 1 .2-.184.77.77 0 0 0 .414-.148l-.725-.733z' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiTarteaucitron as default, defaultColor };
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiTidbProps = 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 = '#DC150B';
|
|
22
|
+
|
|
23
|
+
const SiTidb: IconType = React.forwardRef<SVGSVGElement, SiTidbProps>(function SiTidb({title = 'TiDB', 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 0 1.609 6.001v11.998L11.999 24l10.393-6.001V6.001ZM8.535 17.999v-7.998L5.07 12V8L12 4l3.462 2-3.464 2.001v12Zm6.93 0v-7.997l3.464-2v7.997z' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiTidb as default, defaultColor };
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiTrezorProps = 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 = '#141609';
|
|
22
|
+
|
|
23
|
+
const SiTrezor: IconType = React.forwardRef<SVGSVGElement, SiTrezorProps>(function SiTrezor({title = 'Trezor', 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.858 5.569c0-3.044-2.643-5.569-5.86-5.569-3.216 0-5.856 2.525-5.856 5.569v1.78H3.731V20.15L11.998 24l8.271-3.849V7.403h-2.411zm-8.73 0c0-1.434 1.264-2.584 2.87-2.584 1.61 0 2.87 1.15 2.87 2.584v1.78h-5.74Zm7.81 12.516-4.94 2.298-4.937-2.298v-7.693h9.878z' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiTrezor as default, defaultColor };
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiYewProps = 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 = '#009A5B';
|
|
22
|
+
|
|
23
|
+
const SiYew: IconType = React.forwardRef<SVGSVGElement, SiYewProps>(function SiYew({title = 'Yew', 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='M21.47.002a1.18 1.18 0 0 0-.815.392L13.33 8.566h-.002a3.5 3.5 0 0 0-1.423-.303 3.5 3.5 0 0 0-1.287.246h-.002L3.345.394a1.18 1.18 0 0 0-.815-.39 1.18 1.18 0 0 0-.853.298 1.18 1.18 0 0 0-.092 1.667l7.246 8.083a3.5 3.5 0 0 0-.466 1.75 3.56 3.56 0 0 0 2.453 3.37v7.647A1.18 1.18 0 0 0 12 24a1.18 1.18 0 0 0 1.18-1.18v-7.715a3.56 3.56 0 0 0 2.267-3.302 3.5 3.5 0 0 0-.396-1.62l7.364-8.213a1.18 1.18 0 0 0-.092-1.668 1.18 1.18 0 0 0-.854-.3m-9.563 1.573a9.84 9.84 0 0 0-5.39 1.61l.671.748a8.8 8.8 0 0 1 4.72-1.357c1.787 0 3.448.527 4.836 1.435l.67-.748a9.84 9.84 0 0 0-5.507-1.688M4.06 5.482a9.84 9.84 0 0 0-1.99 5.93 9.835 9.835 0 0 0 8.248 9.705v-1.013a8.82 8.82 0 0 1-7.247-8.693 8.8 8.8 0 0 1 1.666-5.175Zm15.777.113-.68.757a8.8 8.8 0 0 1 1.584 5.058 8.82 8.82 0 0 1-7.062 8.657v1.016a9.835 9.835 0 0 0 8.062-9.673 9.84 9.84 0 0 0-1.904-5.815m-7.93 4.241a1.955 1.955 0 0 1 1.965 1.967 1.955 1.955 0 0 1-1.966 1.967 1.955 1.955 0 0 1-1.967-1.969 1.955 1.955 0 0 1 1.967-1.966' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiYew as default, defaultColor };
|
|
45
|
+
|