@hashicorp/flight-icons 2.10.0 → 2.11.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/CHANGELOG.md +8 -0
- package/catalog.json +73 -1
- package/css-props/aws-lambda-16.css +1 -0
- package/css-props/aws-lambda-24.css +1 -0
- package/css-props/aws-lambda-color-16.css +1 -0
- package/css-props/aws-lambda-color-24.css +1 -0
- package/css-props/codepen-color-16.css +1 -1
- package/css-props/index.css +9 -1
- package/css-props/linux-16.css +1 -0
- package/css-props/linux-24.css +1 -0
- package/css-props/linux-color-16.css +1 -0
- package/css-props/linux-color-24.css +1 -0
- package/package.json +1 -1
- package/svg/aws-lambda-16.svg +1 -0
- package/svg/aws-lambda-24.svg +1 -0
- package/svg/aws-lambda-color-16.svg +1 -0
- package/svg/aws-lambda-color-24.svg +1 -0
- package/svg/codepen-color-16.svg +1 -1
- package/svg/index.js +1 -0
- package/svg/linux-16.svg +1 -0
- package/svg/linux-24.svg +1 -0
- package/svg/linux-color-16.svg +1 -0
- package/svg/linux-color-24.svg +1 -0
- package/svg-react/aws-lambda-16.tsx +33 -0
- package/svg-react/aws-lambda-24.tsx +33 -0
- package/svg-react/aws-lambda-color-16.tsx +33 -0
- package/svg-react/aws-lambda-color-24.tsx +33 -0
- package/svg-react/codepen-color-16.tsx +1 -1
- package/svg-react/index.ts +8 -0
- package/svg-react/linux-16.tsx +33 -0
- package/svg-react/linux-24.tsx +33 -0
- package/svg-react/linux-color-16.tsx +61 -0
- package/svg-react/linux-color-24.tsx +61 -0
- package/svg-sprite/svg-sprite-module.js +1 -1
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconAwsLambda24 = forwardRef<SVGSVGElement, IconProps>(
|
|
5
|
+
({ color = 'currentColor', title, ...props }, svgRef) => {
|
|
6
|
+
const titleId = useMemo(
|
|
7
|
+
() =>
|
|
8
|
+
title
|
|
9
|
+
? 'title-' + Math.random().toString(36).substr(2, 9)
|
|
10
|
+
: undefined,
|
|
11
|
+
[title]
|
|
12
|
+
);
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width={24}
|
|
17
|
+
height={24}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 24 24"
|
|
20
|
+
aria-hidden={!title}
|
|
21
|
+
ref={svgRef}
|
|
22
|
+
aria-labelledby={titleId}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
+
<path
|
|
27
|
+
fill={color}
|
|
28
|
+
d="M12.048 12.523c-.075.104-.139.19-.2.277l-2.912 4.19c-.903 1.3-1.807 2.598-2.712 3.895a.182.182 0 01-.129.073 872.9 872.9 0 01-3.831-.04c-.014 0-.029-.004-.057-.009a.664.664 0 01.036-.076l2.673-4.048 2.372-3.587 2.63-3.986c.129-.196.263-.389.386-.588a.238.238 0 00.026-.177c-.236-.735-.476-1.469-.717-2.202-.103-.315-.21-.627-.307-.943-.03-.101-.082-.132-.188-.132-.803.003-1.6.003-2.4.003-.153 0-.153 0-.153-.147 0-.962 0-1.923-.003-2.884 0-.107.036-.131.139-.131 1.61.002 3.222.002 4.834 0a.158.158 0 01.106.024c.031.021.054.052.064.088l2.549 6.263 2.974 7.303c.308.755.618 1.51.922 2.268.037.092.075.11.17.081.844-.255 1.69-.503 2.535-.759.106-.032.145-.01.178.093.288.884.581 1.766.873 2.65.01.03.018.061.03.104-.06.021-.117.046-.176.061l-5.756 1.785c-.091.028-.119-.002-.15-.078-.585-1.45-1.172-2.9-1.76-4.349l-1.728-4.257c-.087-.213-.172-.427-.258-.64-.014-.037-.033-.069-.06-.125z"
|
|
29
|
+
/>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
);
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconAwsLambdaColor16 = forwardRef<SVGSVGElement, IconProps>(
|
|
5
|
+
({ color = 'currentColor', title, ...props }, svgRef) => {
|
|
6
|
+
const titleId = useMemo(
|
|
7
|
+
() =>
|
|
8
|
+
title
|
|
9
|
+
? 'title-' + Math.random().toString(36).substr(2, 9)
|
|
10
|
+
: undefined,
|
|
11
|
+
[title]
|
|
12
|
+
);
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width={16}
|
|
17
|
+
height={16}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 16 16"
|
|
20
|
+
aria-hidden={!title}
|
|
21
|
+
ref={svgRef}
|
|
22
|
+
aria-labelledby={titleId}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
+
<path
|
|
27
|
+
fill="#FA7E14"
|
|
28
|
+
d="M7.983 8.37c-.053.073-.098.133-.141.194L5.775 11.5c-.64.91-1.282 1.82-1.924 2.73a.128.128 0 01-.092.051c-.906-.007-1.813-.017-2.719-.028-.01 0-.02-.003-.04-.006a.455.455 0 01.025-.053 13977.496 13977.496 0 015.446-8.146c.092-.138.188-.273.275-.413a.165.165 0 00.018-.124c-.167-.515-.338-1.03-.508-1.543-.073-.22-.15-.44-.218-.66-.022-.072-.059-.094-.134-.093-.57.002-1.136.001-1.704.001-.108 0-.108 0-.108-.103 0-.674 0-1.347-.002-2.021 0-.075.026-.092.099-.092 1.143.002 2.286.002 3.43 0a.113.113 0 01.076.017.107.107 0 01.045.061 18266.184 18266.184 0 003.92 9.51c.218.53.438 1.059.654 1.59.026.064.053.076.12.056.6-.178 1.2-.352 1.8-.531.075-.023.102-.008.126.064.204.62.412 1.239.62 1.858l.02.073c-.043.015-.083.032-.124.043l-4.085 1.25c-.065.02-.085 0-.106-.054l-1.25-3.048-1.226-2.984-.183-.449c-.01-.026-.023-.048-.043-.087z"
|
|
29
|
+
/>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
);
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconAwsLambdaColor24 = forwardRef<SVGSVGElement, IconProps>(
|
|
5
|
+
({ color = 'currentColor', title, ...props }, svgRef) => {
|
|
6
|
+
const titleId = useMemo(
|
|
7
|
+
() =>
|
|
8
|
+
title
|
|
9
|
+
? 'title-' + Math.random().toString(36).substr(2, 9)
|
|
10
|
+
: undefined,
|
|
11
|
+
[title]
|
|
12
|
+
);
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width={24}
|
|
17
|
+
height={24}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 24 24"
|
|
20
|
+
aria-hidden={!title}
|
|
21
|
+
ref={svgRef}
|
|
22
|
+
aria-labelledby={titleId}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
+
<path
|
|
27
|
+
fill="#FA7E14"
|
|
28
|
+
d="M11.976 12.528c-.076.104-.14.19-.202.277l-2.953 4.196c-.915 1.3-1.831 2.601-2.749 3.9a.183.183 0 01-.13.074 913.41 913.41 0 01-3.885-.04c-.014 0-.029-.005-.057-.01a.653.653 0 01.036-.075l2.71-4.055 2.405-3.59c.889-1.33 1.777-2.661 2.665-3.993.131-.196.268-.389.392-.589a.236.236 0 00.027-.177c-.24-.736-.483-1.47-.727-2.205-.104-.315-.213-.627-.311-.944-.032-.101-.084-.132-.191-.132-.814.003-1.623.002-2.434.002-.154 0-.155 0-.155-.146 0-.963 0-1.926-.003-2.889 0-.107.037-.13.141-.13 1.633.002 3.267.002 4.9 0a.162.162 0 01.109.024c.032.02.054.052.064.087a26142.71 26142.71 0 005.6 13.585c.312.757.626 1.513.935 2.271.037.093.075.11.171.082.857-.256 1.715-.504 2.57-.76.108-.033.147-.01.18.092.293.886.59 1.77.886 2.654.01.03.018.061.03.104-.061.022-.119.046-.178.062-1.946.595-3.89 1.19-5.835 1.787-.093.028-.12-.003-.152-.078-.593-1.452-1.189-2.904-1.785-4.355l-1.752-4.263-.261-.641c-.014-.037-.033-.069-.06-.125z"
|
|
29
|
+
/>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
);
|
|
@@ -31,7 +31,7 @@ export const IconCodepenColor16 = forwardRef<SVGSVGElement, IconProps>(
|
|
|
31
31
|
<path
|
|
32
32
|
fill="#fff"
|
|
33
33
|
fillRule="evenodd"
|
|
34
|
-
d="M12.327 9.32c0 .018 0 .033-.003.
|
|
34
|
+
d="M12.327 9.32c0 .018 0 .033-.003.048 0 .003 0 .006-.002.01v.004a.14.14 0 00-.004.017c0 .003 0 .007-.002.012v.004a.044.044 0 00-.004.009c0 .002 0 .004-.002.006v.003l-.01.026-.008.018-.009.018-.003.006a.06.06 0 01-.012.017l-.003.006-.004.006a.33.33 0 01-.02.027.129.129 0 00-.008.01l-.01.01-.014.015a.135.135 0 01-.01.01.118.118 0 00-.01.008l-.01.006-.009.006-.003.003-.003.003-3.96 2.64a.377.377 0 01-.414 0L3.832 9.631l-.003-.003-.002-.003-.01-.006-.008-.006a.13.13 0 00-.01-.009.127.127 0 01-.01-.009l-.016-.014a.129.129 0 01-.017-.021.065.065 0 00-.012-.015.064.064 0 01-.015-.024.062.062 0 00-.012-.017l-.009-.018-.003-.006-.009-.018-.009-.026-.003-.01-.002-.008a.106.106 0 01-.006-.033l-.002-.01-.001-.005c-.003-.014-.003-.032-.003-.047V6.686c0-.018 0-.033.003-.047l.001-.01.002-.005.003-.017c0-.003 0-.007.002-.011V6.59l.003-.009.003-.009.01-.026.008-.018a.104.104 0 01.009-.018l.003-.006a.062.062 0 01.012-.017l.007-.012.008-.012a.065.065 0 01.012-.015l.008-.01c.003-.004.006-.008.01-.01l.014-.015a.131.131 0 01.01-.01c.004-.002.008-.005.01-.008l.004-.002.006-.004a.062.062 0 01.009-.006l.003-.003.002-.003L7.79 3.741a.371.371 0 01.411 0l3.957 2.637.004.003.002.003.01.006.005.004.003.002a.091.091 0 00.006.005l.005.004.01.009.015.014.017.021.008.01.004.005a.065.065 0 01.015.024.06.06 0 00.012.017.087.087 0 01.012.024l.009.018.008.026c.002.003.003.006.003.01l.003.008c.003.01.006.02.006.033l.002.01.001.005a.251.251 0 01.003.047V9.32h.006zm-7.911-.698V7.378L5.345 8l-.93.622zm3.211-3.884v1.735l-1.613 1.08-1.302-.87 2.915-1.945zm.743 0l2.915 1.945-1.302.87-1.613-1.08V4.738zm-.743 6.524L4.712 9.32l1.302-.873 1.613 1.08v1.735zm.743 0V9.527l1.613-1.08 1.302.873-2.915 1.942zM8 8.879L6.683 8 8 7.121 9.314 8 8 8.88zm3.584-1.5v1.243L10.652 8l.932-.622z"
|
|
35
35
|
clipRule="evenodd"
|
|
36
36
|
/>
|
|
37
37
|
</svg>
|
package/svg-react/index.ts
CHANGED
|
@@ -34,6 +34,10 @@ export { IconAwsEc224 } from './aws-ec2-24';
|
|
|
34
34
|
export { IconAwsEc216 } from './aws-ec2-16';
|
|
35
35
|
export { IconAwsEc2Color24 } from './aws-ec2-color-24';
|
|
36
36
|
export { IconAwsEc2Color16 } from './aws-ec2-color-16';
|
|
37
|
+
export { IconAwsLambda24 } from './aws-lambda-24';
|
|
38
|
+
export { IconAwsLambda16 } from './aws-lambda-16';
|
|
39
|
+
export { IconAwsLambdaColor24 } from './aws-lambda-color-24';
|
|
40
|
+
export { IconAwsLambdaColor16 } from './aws-lambda-color-16';
|
|
37
41
|
export { IconAwsS324 } from './aws-s3-24';
|
|
38
42
|
export { IconAwsS316 } from './aws-s3-16';
|
|
39
43
|
export { IconAwsS3Color24 } from './aws-s3-color-24';
|
|
@@ -138,6 +142,10 @@ export { IconLinode24 } from './linode-24';
|
|
|
138
142
|
export { IconLinode16 } from './linode-16';
|
|
139
143
|
export { IconLinodeColor24 } from './linode-color-24';
|
|
140
144
|
export { IconLinodeColor16 } from './linode-color-16';
|
|
145
|
+
export { IconLinux24 } from './linux-24';
|
|
146
|
+
export { IconLinux16 } from './linux-16';
|
|
147
|
+
export { IconLinuxColor24 } from './linux-color-24';
|
|
148
|
+
export { IconLinuxColor16 } from './linux-color-16';
|
|
141
149
|
export { IconMicrosoft24 } from './microsoft-24';
|
|
142
150
|
export { IconMicrosoft16 } from './microsoft-16';
|
|
143
151
|
export { IconMicrosoftColor24 } from './microsoft-color-24';
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconLinux16 = forwardRef<SVGSVGElement, IconProps>(
|
|
5
|
+
({ color = 'currentColor', title, ...props }, svgRef) => {
|
|
6
|
+
const titleId = useMemo(
|
|
7
|
+
() =>
|
|
8
|
+
title
|
|
9
|
+
? 'title-' + Math.random().toString(36).substr(2, 9)
|
|
10
|
+
: undefined,
|
|
11
|
+
[title]
|
|
12
|
+
);
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width={16}
|
|
17
|
+
height={16}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 16 16"
|
|
20
|
+
aria-hidden={!title}
|
|
21
|
+
ref={svgRef}
|
|
22
|
+
aria-labelledby={titleId}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
+
<path
|
|
27
|
+
fill={color}
|
|
28
|
+
d="M8.294 1c-.09 0-.184.005-.28.012-2.465.194-1.811 2.804-1.85 3.674-.043.637-.174 1.14-.612 1.762-.516.613-1.24 1.604-1.584 2.637-.162.485-.24.982-.167 1.452a.247.247 0 00-.064.079c-.152.156-.263.35-.387.49-.116.115-.283.155-.465.232-.183.08-.384.157-.504.397a.78.78 0 00-.077.351c0 .116.016.234.032.313.034.233.068.425.023.566-.145.396-.163.668-.062.865.102.195.313.275.549.351.472.117 1.114.079 1.618.35.54.272 1.088.39 1.526.274.307-.067.566-.27.705-.552.342-.001.717-.157 1.318-.194.408-.034.918.155 1.503.116.015.078.037.116.067.194l.001.002c.229.454.65.66 1.1.625.45-.035.928-.313 1.316-.762.368-.446.982-.632 1.387-.877.203-.116.367-.273.379-.497.013-.234-.117-.473-.417-.803v-.056l-.002-.002c-.099-.117-.145-.312-.197-.54-.05-.234-.106-.459-.287-.61h-.001c-.035-.032-.072-.04-.11-.08a.208.208 0 00-.11-.037c.25-.745.153-1.487-.102-2.154-.31-.823-.854-1.54-1.269-2.032-.464-.587-.919-1.142-.91-1.965.016-1.255.138-3.578-2.067-3.581zm.309 1.986h.007c.125 0 .231.036.34.116a.89.89 0 01.256.31c.062.152.093.268.097.423 0-.012.004-.023.004-.035v.061a.05.05 0 01-.003-.012l-.002-.014c-.001.142-.03.282-.087.412a.556.556 0 01-.125.195.415.415 0 00-.051-.024c-.06-.027-.115-.038-.166-.078a.765.765 0 00-.128-.038c.03-.035.085-.078.107-.116a.69.69 0 00.051-.234V3.94a.706.706 0 00-.035-.233c-.027-.079-.06-.117-.107-.195-.05-.038-.098-.077-.156-.077h-.01c-.054 0-.102.018-.152.077a.467.467 0 00-.12.195.688.688 0 00-.052.234v.01c0 .053.004.105.011.156-.112-.039-.255-.078-.354-.117a.954.954 0 01-.01-.117V3.86a1.034 1.034 0 01.087-.448.63.63 0 01.251-.31.575.575 0 01.347-.117zm-1.728.035h.02c.084 0 .158.028.234.078a.806.806 0 01.2.272c.053.116.082.233.09.389v.002a.856.856 0 01-.002.155v.047l-.048.014c-.089.032-.16.079-.23.117a.633.633 0 00.002-.156V3.93c-.007-.078-.023-.117-.047-.194a.358.358 0 00-.097-.156.145.145 0 00-.107-.037h-.012c-.042.003-.076.023-.109.077a.322.322 0 00-.07.157.55.55 0 00-.013.193v.008c.007.08.021.117.047.195a.363.363 0 00.096.157c.006.005.012.01.02.014-.04.033-.068.04-.102.079a.177.177 0 01-.077.04 1.53 1.53 0 01-.16-.235 1.034 1.034 0 01-.09-.389c-.01-.132.005-.264.046-.39a.834.834 0 01.165-.312c.075-.077.152-.116.244-.116zm.799.995c.194 0 .428.038.71.233.17.116.304.157.613.273h.002c.149.079.236.155.279.232v-.076a.333.333 0 01.009.274c-.072.18-.301.375-.62.491v.001c-.156.08-.292.195-.452.272-.161.078-.343.17-.59.155a.664.664 0 01-.262-.039 2.077 2.077 0 01-.188-.115c-.113-.079-.211-.194-.357-.271v-.003h-.003c-.233-.144-.359-.299-.4-.414-.04-.157-.003-.275.113-.35.13-.08.221-.159.282-.197.06-.043.083-.059.102-.076h.001v-.002c.099-.117.255-.274.49-.35.08-.021.171-.038.272-.038h-.001zm1.633 1.25c.21.826.698 2.026 1.012 2.609.167.311.5.967.643 1.764.091-.003.193.01.3.037.376-.975-.319-2.022-.636-2.314-.128-.116-.135-.195-.071-.195.344.312.796.917.96 1.608.075.312.093.644.012.974.039.017.079.035.12.04.601.311.824.547.717.896v-.025c-.035-.002-.07 0-.105 0h-.01c.089-.272-.106-.481-.62-.714-.534-.233-.96-.196-1.033.271-.005.025-.008.039-.01.079-.04.013-.082.03-.123.037-.25.157-.386.39-.462.693-.076.31-.1.674-.12 1.09v.002c-.011.195-.099.489-.186.787-.875.626-2.088.897-3.12.195a1.543 1.543 0 00-.234-.31.846.846 0 00-.16-.195.963.963 0 00.27-.04.359.359 0 00.184-.194c.063-.156 0-.407-.201-.678-.201-.273-.543-.58-1.043-.888-.368-.233-.575-.507-.671-.814-.096-.312-.083-.633-.009-.96.143-.624.51-1.23.743-1.611.063-.038.022.078-.238.568-.23.438-.665 1.456-.07 2.248.022-.578.15-1.146.377-1.678.329-.745 1.016-2.044 1.07-3.073.029.021.127.08.17.118.126.078.22.194.343.271a.694.694 0 00.511.196l.065.003c.24 0 .425-.078.581-.156.17-.078.304-.195.432-.233h.003c.272-.08.487-.235.609-.409zm1.275 5.225c.021.35.2.726.514.803.343.078.837-.194 1.045-.446l.123-.006c.184-.004.337.006.494.156l.002.002c.121.116.178.31.228.511.05.233.09.455.239.622.283.307.376.528.37.665l.003-.004v.01l-.002-.007c-.009.153-.108.231-.29.347-.368.234-1.02.416-1.434.916-.36.43-.8.665-1.188.695-.387.03-.721-.117-.918-.524l-.003-.002c-.122-.233-.07-.597.033-.985.103-.39.25-.784.27-1.107.022-.417.044-.779.114-1.058.07-.271.18-.465.374-.574l.026-.013v-.001zm-6.308.028h.006a.53.53 0 01.091.009c.22.032.412.194.597.438l.53.97.003.003c.141.31.44.62.693.955.253.348.45.66.425.915v.004c-.033.434-.28.67-.656.755-.376.079-.887 0-1.397-.27-.565-.314-1.235-.274-1.667-.352-.215-.039-.355-.117-.421-.233-.064-.117-.066-.352.071-.718v-.002l.002-.002c.068-.195.017-.439-.016-.652-.032-.234-.049-.414.025-.549.093-.194.23-.233.402-.31.172-.08.374-.118.534-.275h.001c.15-.157.26-.351.39-.49.11-.117.222-.196.387-.196zM8.45 5.226c-.254.117-.551.312-.868.312-.316 0-.566-.155-.747-.272-.09-.078-.163-.156-.217-.195-.096-.078-.084-.194-.044-.194.064.01.076.078.117.117.056.038.125.116.21.194.17.116.396.272.68.272.283 0 .615-.156.816-.272.114-.078.26-.194.378-.272.09-.08.087-.156.163-.156.074.01.02.078-.086.194-.13.098-.264.189-.403.273zm-.631-.923V4.29c-.004-.012.007-.024.017-.03.043-.024.105-.015.151.003.037 0 .094.04.088.079-.004.029-.05.038-.079.038-.032 0-.054-.025-.082-.04-.03-.01-.085-.004-.095-.037zm-.322 0c-.011.034-.066.028-.097.038-.027.015-.05.04-.081.04-.03 0-.076-.012-.08-.04-.005-.038.052-.077.088-.077.047-.018.107-.028.151-.003.011.005.021.017.018.029v.012h.001z"
|
|
29
|
+
/>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
);
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconLinux24 = forwardRef<SVGSVGElement, IconProps>(
|
|
5
|
+
({ color = 'currentColor', title, ...props }, svgRef) => {
|
|
6
|
+
const titleId = useMemo(
|
|
7
|
+
() =>
|
|
8
|
+
title
|
|
9
|
+
? 'title-' + Math.random().toString(36).substr(2, 9)
|
|
10
|
+
: undefined,
|
|
11
|
+
[title]
|
|
12
|
+
);
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width={24}
|
|
17
|
+
height={24}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 24 24"
|
|
20
|
+
aria-hidden={!title}
|
|
21
|
+
ref={svgRef}
|
|
22
|
+
aria-labelledby={titleId}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
+
<path
|
|
27
|
+
fill={color}
|
|
28
|
+
d="M12.42 2c-.13 0-.263.007-.4.018-3.522.277-2.588 4.005-2.642 5.248-.063.91-.25 1.627-.875 2.517-.737.875-1.772 2.291-2.263 3.767-.232.693-.342 1.403-.24 2.074a.352.352 0 00-.091.113c-.217.223-.375.5-.552.699-.166.166-.405.222-.665.333-.26.114-.548.224-.72.567a1.116 1.116 0 00-.11.502c0 .165.023.333.046.446.049.333.097.607.034.809-.208.566-.234.954-.089 1.236.145.279.446.392.784.501.675.167 1.591.113 2.311.5.772.388 1.555.558 2.18.392a1.477 1.477 0 001.007-.789c.489-.002 1.025-.224 1.883-.278.583-.048 1.312.223 2.148.167.02.111.052.165.095.277l.002.003c.326.648.928.943 1.57.892.643-.05 1.327-.447 1.881-1.088.526-.638 1.402-.903 1.982-1.253.29-.165.524-.39.54-.71.02-.334-.166-.676-.595-1.147v-.081l-.002-.003c-.142-.166-.208-.445-.282-.771-.07-.334-.151-.655-.41-.872h-.002c-.05-.045-.103-.056-.157-.112a.297.297 0 00-.158-.054c.359-1.065.22-2.125-.144-3.078-.445-1.175-1.221-2.198-1.813-2.902-.663-.838-1.313-1.631-1.3-2.807.022-1.793.197-5.111-2.953-5.116zm.44 2.838h.011c.178 0 .33.051.487.165.159.112.275.276.365.444.088.215.132.382.138.603 0-.017.005-.033.005-.05v.088a.074.074 0 01-.003-.018l-.003-.02a1.506 1.506 0 01-.125.588c-.039.105-.1.2-.178.28a.586.586 0 00-.073-.035c-.087-.038-.165-.054-.237-.111a1.094 1.094 0 00-.183-.055c.042-.05.122-.111.152-.165a.986.986 0 00.074-.335V6.2a1.006 1.006 0 00-.051-.333c-.038-.112-.084-.167-.153-.278-.07-.055-.139-.11-.222-.11h-.013c-.078 0-.147.025-.219.11a.666.666 0 00-.17.278.986.986 0 00-.075.334v.016c.001.074.006.149.016.222-.16-.056-.365-.112-.506-.168a1.368 1.368 0 01-.015-.167v-.016c-.006-.22.037-.44.125-.64a.9.9 0 01.359-.445.821.821 0 01.495-.166zm-2.468.049h.03c.119 0 .225.04.333.112.121.108.22.24.286.388.075.166.117.333.128.556v.003c.006.112.005.167-.002.222v.066c-.025.006-.046.015-.069.02-.127.046-.228.113-.327.167.01-.075.01-.15.002-.223v-.012c-.01-.111-.033-.167-.068-.278a.51.51 0 00-.139-.222.206.206 0 00-.152-.053h-.018c-.059.005-.108.033-.155.11a.46.46 0 00-.1.224.786.786 0 00-.019.276v.012c.01.112.031.167.067.278a.52.52 0 00.138.224.1.1 0 00.029.02c-.059.047-.098.058-.147.113a.253.253 0 01-.11.057 2.185 2.185 0 01-.228-.335 1.477 1.477 0 01-.13-.556 1.466 1.466 0 01.067-.557c.046-.164.127-.316.236-.446.107-.11.217-.166.348-.166zm1.142 1.421c.277 0 .61.054 1.013.333.244.167.436.224.877.39h.003c.212.113.337.222.398.332v-.109a.476.476 0 01.013.392c-.102.258-.43.536-.886.702v.001c-.223.113-.417.278-.646.388-.23.112-.49.243-.843.222a.949.949 0 01-.373-.056 2.975 2.975 0 01-.268-.165c-.163-.112-.303-.276-.51-.387v-.004h-.005c-.333-.205-.513-.427-.571-.592-.059-.223-.004-.392.16-.5.187-.112.317-.226.403-.28.087-.062.12-.085.147-.11h.001v-.002c.141-.168.364-.391.7-.5.115-.03.245-.055.388-.055h-.001zm2.333 1.785c.299 1.181.997 2.896 1.446 3.728.239.445.713 1.382.918 2.52.13-.004.275.015.428.053.538-1.392-.455-2.889-.907-3.305-.184-.167-.194-.279-.103-.279.492.445 1.138 1.31 1.372 2.297.108.446.133.92.017 1.392.056.024.113.05.171.056.86.445 1.178.782 1.025 1.28V15.8c-.05-.003-.1 0-.15 0h-.013c.125-.39-.152-.688-.888-1.02-.762-.333-1.371-.28-1.475.388-.007.035-.01.055-.015.112-.056.02-.116.044-.174.053-.358.224-.552.558-.66.99-.11.444-.143.963-.172 1.557v.003c-.016.278-.141.698-.265 1.125-1.25.893-2.984 1.281-4.457.278a2.204 2.204 0 00-.335-.444 1.206 1.206 0 00-.23-.278c.152 0 .282-.025.388-.056a.513.513 0 00.262-.278c.09-.223 0-.58-.288-.97-.287-.388-.775-.828-1.49-1.267-.525-.333-.821-.725-.958-1.163-.137-.445-.12-.904-.012-1.37.204-.893.727-1.76 1.061-2.303.09-.055.031.112-.34.811-.33.626-.95 2.081-.101 3.212a6.77 6.77 0 01.539-2.397c.47-1.065 1.452-2.92 1.53-4.39.04.03.18.113.24.169.182.11.317.277.492.387a.99.99 0 00.73.28c.033.002.063.004.092.004.343 0 .608-.111.83-.223.242-.112.434-.278.617-.333h.004c.39-.113.696-.335.87-.584h.001zm1.821 7.465c.031.5.286 1.038.735 1.148.49.111 1.195-.278 1.493-.638l.175-.008c.263-.006.481.008.706.223l.003.003c.173.166.254.441.326.73.07.333.128.65.34.888.405.44.538.755.53.95l.003-.006v.015l-.002-.01c-.013.219-.155.33-.416.496-.524.334-1.454.593-2.047 1.308-.515.615-1.142.95-1.697.993-.553.044-1.03-.167-1.311-.748l-.005-.003c-.175-.333-.1-.854.047-1.408.147-.557.357-1.12.386-1.581.03-.595.063-1.113.162-1.512.1-.387.257-.664.535-.82l.037-.018v-.002zm-9.011.041h.008c.044 0 .087.004.13.012.314.046.589.277.853.627l.759 1.386.002.003c.203.444.628.886.99 1.364.363.498.643.942.608 1.308v.005c-.047.62-.4.957-.937 1.079-.538.112-1.267.001-1.996-.387-.807-.447-1.765-.391-2.38-.502-.308-.055-.51-.166-.603-.333-.092-.167-.094-.502.102-1.025v-.003l.002-.003c.097-.278.025-.627-.023-.932-.045-.334-.069-.591.036-.783.134-.278.33-.333.575-.444.245-.113.534-.169.763-.392h.001v-.002c.214-.223.371-.5.557-.698.158-.167.317-.28.553-.28zm5.965-7.562c-.362.168-.787.446-1.24.446-.451 0-.808-.222-1.066-.388-.129-.112-.234-.223-.311-.28-.137-.11-.12-.277-.062-.277.091.014.108.112.166.167.08.055.18.167.3.277.243.167.567.39.973.39.404 0 .877-.223 1.165-.389.162-.112.37-.278.54-.389.13-.113.124-.222.232-.222.107.013.028.111-.123.276a6.73 6.73 0 01-.574.39zm-.901-1.319V6.7c-.005-.017.01-.035.024-.042.061-.036.15-.022.216.004.053 0 .134.056.126.112-.005.041-.071.055-.113.055-.046 0-.077-.036-.117-.056-.044-.015-.122-.007-.136-.055zm-.46 0c-.016.049-.094.041-.138.055-.039.021-.072.057-.117.057-.041 0-.108-.017-.113-.057-.008-.055.073-.11.125-.11.067-.026.153-.04.216-.005.016.008.03.025.025.042v.017h.002v.001z"
|
|
29
|
+
/>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
);
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconLinuxColor16 = forwardRef<SVGSVGElement, IconProps>(
|
|
5
|
+
({ color = 'currentColor', title, ...props }, svgRef) => {
|
|
6
|
+
const titleId = useMemo(
|
|
7
|
+
() =>
|
|
8
|
+
title
|
|
9
|
+
? 'title-' + Math.random().toString(36).substr(2, 9)
|
|
10
|
+
: undefined,
|
|
11
|
+
[title]
|
|
12
|
+
);
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width={16}
|
|
17
|
+
height={16}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 16 16"
|
|
20
|
+
aria-hidden={!title}
|
|
21
|
+
ref={svgRef}
|
|
22
|
+
aria-labelledby={titleId}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
+
<path
|
|
27
|
+
fill="#202020"
|
|
28
|
+
d="M13.338 12.033c-.1-.112-.146-.319-.197-.54-.05-.22-.107-.457-.288-.61v-.001a.756.756 0 00-.223-.134c.252-.745.153-1.487-.1-2.157-.312-.823-.855-1.54-1.27-2.03-.464-.586-.918-1.142-.91-1.963.014-1.254.138-3.579-2.068-3.582-.09 0-.183.004-.28.012-2.466.198-1.812 2.803-1.849 3.675-.045.638-.174 1.14-.613 1.764-.515.613-1.24 1.604-1.584 2.637-.162.487-.24.984-.168 1.454-.023.02-.044.041-.064.063-.151.161-.263.357-.388.489-.116.116-.282.16-.464.225-.183.066-.383.162-.504.395v.001a.702.702 0 00-.077.339c0 .108.016.217.032.322.034.22.068.427.023.567-.144.395-.163.667-.061.865.102.199.31.286.547.335.473.1 1.114.075 1.619.342l.043-.082-.043.082c.54.283 1.089.383 1.526.284a.99.99 0 00.706-.552c.342-.002.717-.146 1.318-.18.408-.032.918.145 1.503.113a.806.806 0 00.068.183l.001.001c.227.455.65.662 1.1.627.45-.036.928-.301 1.315-.762l-.07-.06.07.06c.37-.448.982-.633 1.388-.878.203-.123.368-.276.38-.499.013-.222-.118-.471-.418-.805z"
|
|
29
|
+
/>
|
|
30
|
+
<path
|
|
31
|
+
fill="#F8BF11"
|
|
32
|
+
d="M13.571 12.828c-.007.137-.107.24-.29.35-.368.222-1.019.414-1.434.918-.362.43-.802.665-1.19.696-.387.03-.721-.13-.919-.526v-.002c-.123-.233-.072-.6.031-.987s.251-.785.271-1.108v-.001c.02-.415.044-.776.114-1.055.07-.28.179-.468.373-.575a.876.876 0 01.027-.014c.022.359.2.725.514.804.343.09.838-.204 1.047-.445l.122-.004c.184-.005.337.006.495.143v.001c.121.102.179.296.229.512.05.217.09.453.239.621.287.32.38.534.371.672zM6.592 13.843v.003c-.034.435-.28.672-.656.758-.377.086-.888 0-1.398-.266-.565-.3-1.237-.27-1.667-.36-.216-.045-.357-.113-.421-.238-.064-.126-.066-.345.071-.72v-.001l.001-.002c.068-.209.018-.438-.015-.653-.033-.214-.049-.41.024-.546l.001-.001c.094-.181.232-.246.403-.307.17-.062.373-.11.533-.27l.001-.001h.001c.148-.157.26-.353.39-.492.11-.117.22-.195.385-.196h.005a.61.61 0 01.093.008c.22.033.411.187.596.437l.533.971v.001c.142.296.441.622.695.954.254.333.45.666.425.921z"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fill="#D6A312"
|
|
36
|
+
d="M9.25 4.788c-.043-.084-.13-.164-.28-.225-.31-.133-.444-.142-.617-.254-.28-.181-.513-.244-.706-.244a.834.834 0 00-.272.047c-.236.08-.392.25-.49.342-.02.019-.044.035-.104.08-.06.043-.15.11-.28.208-.117.086-.154.2-.114.332.04.132.167.285.4.417h.001c.145.085.244.2.358.291a.801.801 0 00.189.117c.072.031.156.052.26.058.248.015.43-.06.59-.151.16-.092.296-.204.452-.255h.001c.32-.1.548-.301.62-.493a.324.324 0 00-.008-.27z"
|
|
37
|
+
/>
|
|
38
|
+
<path
|
|
39
|
+
fill="#202020"
|
|
40
|
+
d="M8.438 5.26c-.255.133-.552.294-.869.294-.316 0-.566-.146-.745-.289-.09-.07-.163-.142-.218-.193-.096-.075-.084-.181-.045-.178.066.008.076.095.117.134.056.052.126.12.211.187.17.135.397.266.68.266.284 0 .614-.166.816-.28.115-.064.26-.179.379-.266.09-.067.087-.147.162-.138.075.009.02.089-.085.18-.105.092-.27.214-.403.283z"
|
|
41
|
+
/>
|
|
42
|
+
<path
|
|
43
|
+
fill="#fff"
|
|
44
|
+
d="M12.337 10.694a1.724 1.724 0 00-.104 0h-.01c.088-.277-.106-.48-.621-.713-.534-.235-.96-.212-1.032.265-.005.025-.009.05-.011.076a.801.801 0 00-.12.054c-.252.137-.389.386-.465.692-.076.305-.098.674-.119 1.09-.013.208-.099.49-.186.79-.875.624-2.09.894-3.122.19-.07-.11-.15-.22-.233-.328a13.85 13.85 0 00-.16-.205.65.65 0 00.268-.05.34.34 0 00.186-.192c.063-.17 0-.408-.202-.68-.201-.273-.542-.58-1.043-.888-.368-.23-.574-.51-.67-.814-.097-.305-.084-.635-.01-.96.143-.625.51-1.233.743-1.614.063-.046.023.086-.236.567-.232.44-.667 1.455-.072 2.248.016-.564.15-1.14.377-1.677.329-.747 1.018-2.041 1.072-3.073.029.02.125.086.169.11.126.075.221.184.344.283a.85.85 0 00.575.2c.24 0 .427-.079.582-.168.17-.096.304-.204.433-.245.27-.085.486-.235.608-.41.21.83.7 2.027 1.014 2.611.167.31.5.969.643 1.762.091-.002.191.01.299.038.375-.973-.319-2.022-.636-2.314-.128-.124-.135-.18-.07-.177.343.304.795.917.96 1.608.075.315.09.646.01.973.04.017.08.034.12.054.603.293.826.548.719.897z"
|
|
45
|
+
/>
|
|
46
|
+
<path
|
|
47
|
+
fill="#E6E6E6"
|
|
48
|
+
d="M8.04 8.062c-.556.002-1.099.251-1.558.716-.46.464-.814 1.122-1.018 1.888l.061.038v.004c.47.298.805.598 1.012.878.219.296.316.584.223.834a.513.513 0 01-.27.283l-.041.015c.074.097.146.197.213.3.944.628 2.042.396 2.867-.172.08-.278.153-.536.163-.698.021-.415.042-.792.124-1.12.082-.33.242-.63.544-.795.017-.01.034-.015.051-.023a.756.756 0 01.022-.094c-.242-.622-.591-1.14-1.01-1.5-.42-.36-.897-.551-1.382-.554zm2.37 2.155l-.002.005v-.002l.001-.004z"
|
|
49
|
+
/>
|
|
50
|
+
<path
|
|
51
|
+
fill="#fff"
|
|
52
|
+
d="M9.278 3.833a1.05 1.05 0 01-.215.656 4.119 4.119 0 00-.218-.09l-.127-.045c.029-.035.085-.075.107-.127a.669.669 0 00.05-.243l.001-.01a.673.673 0 00-.035-.236.434.434 0 00-.108-.184.223.223 0 00-.156-.07H8.57a.228.228 0 00-.151.06.434.434 0 00-.122.175.676.676 0 00-.05.243v.01a.718.718 0 00.009.14 1.773 1.773 0 00-.354-.12 1.196 1.196 0 01-.01-.133v-.013a1.035 1.035 0 01.088-.447.793.793 0 01.25-.328.554.554 0 01.346-.123h.006c.125 0 .232.036.342.116a.78.78 0 01.257.324c.063.138.094.273.097.433l.001.012zM7.388 3.997a1.05 1.05 0 00-.277.125.623.623 0 00.002-.15v-.008a.651.651 0 00-.048-.192.37.37 0 00-.096-.141.158.158 0 00-.119-.045c-.042.004-.077.024-.11.065a.372.372 0 00-.07.156.626.626 0 00-.013.205v.008a.634.634 0 00.048.193.367.367 0 00.116.156l-.102.08-.078.056a.706.706 0 01-.16-.24c-.053-.12-.082-.24-.09-.381v-.001a1.071 1.071 0 01.045-.39.668.668 0 01.167-.292.359.359 0 01.264-.118c.084 0 .158.028.235.09a.68.68 0 01.199.271c.053.12.08.24.089.382v.001c.003.06.003.115-.002.17z"
|
|
53
|
+
/>
|
|
54
|
+
<path
|
|
55
|
+
fill="#202020"
|
|
56
|
+
d="M7.806 4.335c.01.034.065.029.097.045.027.014.05.045.08.046.03.001.076-.01.08-.04.005-.038-.052-.063-.088-.077-.047-.019-.107-.028-.151-.003-.01.005-.021.018-.018.03zM7.484 4.335c-.01.034-.065.029-.096.045-.028.014-.05.045-.081.046-.03.001-.076-.01-.08-.04-.005-.038.052-.063.088-.077.047-.019.108-.028.152-.003.01.005.02.018.017.03z"
|
|
57
|
+
/>
|
|
58
|
+
</svg>
|
|
59
|
+
);
|
|
60
|
+
}
|
|
61
|
+
);
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconLinuxColor24 = forwardRef<SVGSVGElement, IconProps>(
|
|
5
|
+
({ color = 'currentColor', title, ...props }, svgRef) => {
|
|
6
|
+
const titleId = useMemo(
|
|
7
|
+
() =>
|
|
8
|
+
title
|
|
9
|
+
? 'title-' + Math.random().toString(36).substr(2, 9)
|
|
10
|
+
: undefined,
|
|
11
|
+
[title]
|
|
12
|
+
);
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width={24}
|
|
17
|
+
height={24}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 24 24"
|
|
20
|
+
aria-hidden={!title}
|
|
21
|
+
ref={svgRef}
|
|
22
|
+
aria-labelledby={titleId}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
+
<path
|
|
27
|
+
fill="#202020"
|
|
28
|
+
d="M19.626 17.761c-.142-.16-.21-.455-.282-.77-.072-.314-.152-.653-.41-.873l-.002-.001a1.063 1.063 0 00-.317-.191c.359-1.064.218-2.124-.144-3.082-.445-1.175-1.22-2.199-1.814-2.9-.663-.836-1.312-1.63-1.3-2.804.02-1.791.198-5.112-2.954-5.117-.128 0-.262.005-.4.016-3.523.284-2.589 4.005-2.64 5.25-.065.912-.25 1.63-.877 2.52-.736.876-1.773 2.293-2.263 3.768-.232.696-.342 1.406-.24 2.077a1.578 1.578 0 00-.092.09c-.216.23-.376.51-.554.698-.166.166-.403.23-.663.323s-.546.23-.72.564l-.001.002a1.003 1.003 0 00-.108.483c0 .154.023.31.046.461.048.313.096.61.032.81-.206.563-.233.953-.088 1.235.146.284.445.409.783.48.675.14 1.59.105 2.312.488l.062-.117-.062.117c.773.404 1.555.547 2.18.404.453-.103.82-.373 1.01-.788.487-.002 1.024-.209 1.882-.256.583-.047 1.31.207 2.147.16.022.091.054.178.097.262l.001.002c.325.649.928.945 1.57.895.643-.051 1.327-.43 1.88-1.088l-.1-.085.101.084c.527-.64 1.402-.904 1.982-1.254.29-.175.525-.394.544-.712.018-.318-.17-.674-.598-1.15z"
|
|
29
|
+
/>
|
|
30
|
+
<path
|
|
31
|
+
fill="#F8BF11"
|
|
32
|
+
d="M19.959 18.897c-.011.196-.153.342-.416.5-.524.317-1.454.592-2.048 1.311-.516.614-1.145.951-1.699.995-.553.044-1.03-.186-1.313-.752v-.002c-.176-.333-.103-.857.044-1.41.147-.554.359-1.122.387-1.584v-.001c.03-.592.063-1.109.163-1.508.1-.398.256-.668.533-.82a1.19 1.19 0 01.039-.02c.03.512.285 1.035.733 1.148.49.13 1.198-.292 1.496-.635l.175-.007c.262-.006.482.01.706.205v.001h.002c.172.147.254.423.325.732.072.31.128.647.342.887.41.456.542.764.531.96zM9.988 20.348v.003c-.047.622-.398.96-.937 1.083-.538.123-1.268 0-1.997-.38-.807-.428-1.766-.385-2.382-.514-.308-.064-.508-.16-.6-.34-.093-.18-.095-.493.101-1.028l.001-.002v-.002c.098-.3.026-.626-.021-.933-.047-.307-.07-.586.035-.78v-.002c.135-.259.332-.351.576-.439.244-.088.534-.156.762-.386l.002-.001v-.001c.212-.223.371-.503.557-.701.157-.168.314-.279.55-.28h.008c.042 0 .086.003.132.01.314.048.588.268.852.625l.761 1.388v.001c.203.423.631.889.994 1.363.362.475.643.951.606 1.316z"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fill="#D6A312"
|
|
36
|
+
d="M13.785 7.411c-.06-.12-.186-.233-.398-.32l-.001-.001c-.442-.19-.634-.203-.881-.363-.402-.258-.734-.349-1.01-.348-.144 0-.273.026-.388.066-.336.116-.56.357-.7.49-.027.026-.063.05-.148.113-.086.063-.216.158-.402.297-.165.124-.219.285-.162.475.057.189.24.407.573.595l.001.001c.207.122.349.286.511.416.081.065.167.123.27.167.102.044.222.074.372.083.353.02.612-.086.842-.217.23-.13.424-.29.647-.363.458-.143.784-.431.886-.704a.463.463 0 00-.012-.387z"
|
|
37
|
+
/>
|
|
38
|
+
<path
|
|
39
|
+
fill="#202020"
|
|
40
|
+
d="M12.626 8.086c-.364.19-.789.42-1.241.42-.452 0-.809-.209-1.066-.412-.128-.102-.232-.203-.31-.277-.137-.107-.12-.258-.065-.254.094.012.108.135.167.19.08.076.18.173.302.269.243.192.566.38.972.38.405 0 .877-.238 1.165-.4.164-.091.371-.256.541-.38.13-.095.125-.21.232-.198.107.013.028.127-.122.258s-.385.305-.575.404z"
|
|
41
|
+
/>
|
|
42
|
+
<path
|
|
43
|
+
fill="#fff"
|
|
44
|
+
d="M18.195 15.848c-.05-.002-.1-.001-.148 0h-.014c.125-.395-.151-.685-.888-1.018-.763-.336-1.371-.303-1.474.379a1.41 1.41 0 00-.016.108c-.057.02-.114.045-.172.077-.359.196-.554.552-.663.989-.109.436-.14.963-.17 1.556-.018.298-.141.701-.265 1.128-1.25.893-2.987 1.28-4.46.273a6.57 6.57 0 00-.333-.468 20.821 20.821 0 00-.23-.294c.152 0 .28-.024.384-.071a.486.486 0 00.265-.274c.09-.242 0-.583-.288-.972-.288-.39-.775-.829-1.49-1.268-.527-.327-.82-.728-.958-1.164-.138-.435-.119-.906-.013-1.371.204-.892.727-1.76 1.061-2.305.09-.066.032.123-.338.81-.331.629-.952 2.079-.103 3.211a6.733 6.733 0 01.539-2.396c.47-1.066 1.454-2.916 1.532-4.39a4.082 4.082 0 00.241.159c.18.106.316.261.492.402a1.215 1.215 0 00.821.286c.342 0 .61-.112.832-.239.241-.138.434-.291.617-.35h.001c.387-.122.694-.336.869-.585.3 1.184.999 2.895 1.448 3.73.239.442.714 1.383.919 2.517.13-.004.273.015.426.054.537-1.391-.454-2.889-.908-3.306-.183-.178-.192-.257-.1-.254.49.436 1.137 1.31 1.371 2.298.108.45.13.923.016 1.39.056.024.113.05.17.077.862.419 1.18.784 1.027 1.281z"
|
|
45
|
+
/>
|
|
46
|
+
<path
|
|
47
|
+
fill="#E6E6E6"
|
|
48
|
+
d="M12.058 12.088c-.795.003-1.57.36-2.227 1.023-.656.663-1.163 1.603-1.453 2.698l.087.055v.004c.671.427 1.15.854 1.445 1.254.313.424.451.835.32 1.192a.733.733 0 01-.388.404c-.019.009-.039.015-.058.022.106.139.21.282.305.429 1.349.897 2.917.565 4.095-.247.115-.396.22-.765.234-.996.03-.594.06-1.131.176-1.6.118-.471.346-.9.777-1.136.025-.014.05-.021.073-.033a1.08 1.08 0 01.032-.135c-.347-.888-.845-1.627-1.444-2.142-.6-.515-1.28-.788-1.974-.792zm3.384 3.078l-.001.008v-.003-.005z"
|
|
49
|
+
/>
|
|
50
|
+
<path
|
|
51
|
+
fill="#fff"
|
|
52
|
+
d="M13.826 6.047a1.5 1.5 0 01-.128.638c-.05.117-.109.214-.179.3a5.95 5.95 0 00-.311-.128c-.07-.028-.125-.046-.182-.065.041-.05.122-.108.152-.182a.957.957 0 00.072-.347l.002-.015a.961.961 0 00-.05-.337.62.62 0 00-.155-.262.318.318 0 00-.222-.101h-.012a.326.326 0 00-.216.085.62.62 0 00-.174.25.966.966 0 00-.072.349v.014c-.002.071.002.136.013.2a2.533 2.533 0 00-.506-.172 1.699 1.699 0 01-.014-.19v-.018a1.479 1.479 0 01.126-.638c.09-.204.201-.35.358-.47a.79.79 0 01.494-.176h.008c.179 0 .332.053.489.167.159.115.274.26.366.462.09.198.135.39.14.619v.017zM11.126 6.281a1.477 1.477 0 00-.396.18.89.89 0 00.003-.214v-.012a.929.929 0 00-.068-.274.528.528 0 00-.138-.203.225.225 0 00-.17-.063c-.06.005-.11.034-.157.092a.532.532 0 00-.1.223.895.895 0 00-.019.293l.001.011a.91.91 0 00.068.276.524.524 0 00.166.223c-.059.045-.098.078-.147.113l-.11.081a1.009 1.009 0 01-.23-.342 1.532 1.532 0 01-.128-.545v-.002a1.53 1.53 0 01.065-.556c.055-.18.13-.31.238-.417a.513.513 0 01.378-.169c.119 0 .225.04.335.128.119.095.209.217.284.388.076.171.116.343.127.545v.002c.006.085.005.165-.002.242z"
|
|
53
|
+
/>
|
|
54
|
+
<path
|
|
55
|
+
fill="#202020"
|
|
56
|
+
d="M11.723 6.765c.015.048.093.04.138.063.04.02.071.065.115.067.043 0 .109-.015.114-.057.007-.056-.074-.09-.126-.111-.067-.026-.153-.04-.216-.005-.014.008-.03.027-.025.043zM11.263 6.765c-.015.048-.093.04-.137.063-.04.02-.072.065-.116.067-.042 0-.108-.015-.114-.057-.007-.056.074-.09.126-.111.067-.026.153-.04.216-.005.014.008.03.027.025.043z"
|
|
57
|
+
/>
|
|
58
|
+
</svg>
|
|
59
|
+
);
|
|
60
|
+
}
|
|
61
|
+
);
|