@hashicorp/flight-icons 2.23.0 → 2.24.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 +30 -20
- package/catalog.json +163 -1
- package/package.json +1 -1
- package/svg/index.d.ts +1 -1
- package/svg/index.js +1 -1
- package/svg/jwt-16.svg +1 -0
- package/svg/jwt-24.svg +1 -0
- package/svg/jwt-color-16.svg +1 -0
- package/svg/jwt-color-24.svg +1 -0
- package/svg/kubernetes-color-16.svg +1 -1
- package/svg/meetup-16.svg +1 -0
- package/svg/meetup-24.svg +1 -0
- package/svg/meetup-color-16.svg +1 -0
- package/svg/meetup-color-24.svg +1 -0
- package/svg/openid-16.svg +1 -0
- package/svg/openid-24.svg +1 -0
- package/svg/openid-color-16.svg +1 -0
- package/svg/openid-color-24.svg +1 -0
- package/svg/rabbitmq-16.svg +1 -0
- package/svg/rabbitmq-24.svg +1 -0
- package/svg/rabbitmq-color-16.svg +1 -0
- package/svg/rabbitmq-color-24.svg +1 -0
- package/svg/transform-data-16.svg +1 -0
- package/svg/transform-data-24.svg +1 -0
- package/svg/wand-16.svg +1 -1
- package/svg/wand-24.svg +1 -1
- package/svg/x-diamond-16.svg +1 -1
- package/svg/x-diamond-24.svg +1 -1
- package/svg-react/index.ts +18 -0
- package/svg-react/jwt-16.tsx +33 -0
- package/svg-react/jwt-24.tsx +33 -0
- package/svg-react/jwt-color-16.tsx +51 -0
- package/svg-react/jwt-color-24.tsx +51 -0
- package/svg-react/kubernetes-color-16.tsx +1 -1
- package/svg-react/meetup-16.tsx +35 -0
- package/svg-react/meetup-24.tsx +35 -0
- package/svg-react/meetup-color-16.tsx +35 -0
- package/svg-react/meetup-color-24.tsx +35 -0
- package/svg-react/openid-16.tsx +32 -0
- package/svg-react/openid-24.tsx +33 -0
- package/svg-react/openid-color-16.tsx +43 -0
- package/svg-react/openid-color-24.tsx +43 -0
- package/svg-react/rabbitmq-16.tsx +33 -0
- package/svg-react/rabbitmq-24.tsx +33 -0
- package/svg-react/rabbitmq-color-16.tsx +33 -0
- package/svg-react/rabbitmq-color-24.tsx +33 -0
- package/svg-react/transform-data-16.tsx +37 -0
- package/svg-react/transform-data-24.tsx +48 -0
- package/svg-react/wand-16.tsx +2 -2
- package/svg-react/wand-24.tsx +1 -1
- package/svg-react/x-diamond-16.tsx +1 -1
- package/svg-react/x-diamond-24.tsx +1 -1
- package/svg-sprite/svg-sprite-module.js +1 -1
- package/svg-sprite/svg-sprite.svg +1 -1
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconRabbitmq24 = 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="M20.487 10.05h-6.15a.558.558 0 01-.558-.557V3.107a.858.858 0 00-.86-.857h-2.194a.858.858 0 00-.86.857v6.347a.6.6 0 01-.597.599l-2.015.01a.6.6 0 01-.604-.6l.013-6.355a.858.858 0 00-.86-.858H3.61a.858.858 0 00-.859.857v17.882c0 .42.342.761.763.761h16.974c.422 0 .763-.34.763-.76V10.81c0-.42-.341-.76-.763-.76zm-2.884 6.714c0 .55-.448.997-1 .997h-1.735c-.552 0-1-.446-1-.997v-1.728c0-.551.448-.997 1-.997h1.735c.552 0 1 .446 1 .997v1.728z"
|
|
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 IconRabbitmqColor16 = 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="#F60"
|
|
28
|
+
d="M13.734 6.75H9.58a.368.368 0 01-.378-.357V2.299c0-.303-.26-.549-.58-.549H7.137c-.32 0-.58.246-.58.55v4.068c0 .211-.18.383-.404.384l-1.362.006a.395.395 0 01-.407-.384L4.393 2.3c0-.304-.26-.55-.58-.55H2.33c-.321 0-.581.246-.581.55v11.462c0 .27.23.488.515.488h11.47a.502.502 0 00.515-.488V7.237c0-.269-.23-.487-.516-.487zm-1.948 4.304c0 .353-.303.64-.676.64H9.938c-.373 0-.676-.287-.676-.64V9.946c0-.353.303-.64.676-.64h1.172c.373 0 .676.287.676.64v1.108z"
|
|
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 IconRabbitmqColor24 = 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="#F60"
|
|
28
|
+
d="M20.487 10.05h-6.15a.558.558 0 01-.558-.557V3.107a.858.858 0 00-.86-.857h-2.194a.858.858 0 00-.86.857v6.347a.6.6 0 01-.597.599l-2.015.01a.6.6 0 01-.604-.6l.013-6.355a.858.858 0 00-.86-.858H3.61a.858.858 0 00-.859.857v17.882c0 .42.342.761.763.761h16.974c.422 0 .763-.34.763-.76V10.81c0-.42-.341-.76-.763-.76zm-2.884 6.714c0 .55-.448.997-1 .997h-1.735c-.552 0-1-.446-1-.997v-1.728c0-.551.448-.997 1-.997h1.735c.552 0 1 .446 1 .997v1.728z"
|
|
29
|
+
/>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
);
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconTransformData16 = 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
|
+
<g fill={color}>
|
|
27
|
+
<path
|
|
28
|
+
fillRule="evenodd"
|
|
29
|
+
d="M2.23 6.387l-.96-.275.014-.05.042-.145a116.975 116.975 0 01.62-2.066c.176-.564.362-1.136.52-1.57.079-.214.155-.407.222-.55.033-.07.072-.146.117-.212a.71.71 0 01.108-.127.538.538 0 01.361-.142c.198 0 .325.11.363.144a.705.705 0 01.108.128c.045.066.083.143.115.212.066.145.14.337.216.552.154.434.334 1.005.504 1.57a102.87 102.87 0 01.598 2.066l.04.144.014.05-.482.134-.482.133-.014-.05-.04-.142c-.033-.122-.082-.297-.142-.508l-.059-.206H2.497l-.063.211-.148.508-.04.142-.015.05zm1.392-2.243l.1.333h-.923L2.9 4.15c.125-.398.252-.792.368-1.134.113.34.235.733.354 1.13z"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
/>
|
|
32
|
+
<path d="M4.75 6.25l.482-.134a.5.5 0 01-.964.267l.482-.133zM1.27 6.112a.5.5 0 00.96.275l-.96-.275zM11.75 7.75a.75.75 0 001.5 0v-2.5A2.25 2.25 0 0011 3H7.5a.75.75 0 000 1.5H11a.75.75 0 01.75.75v2.5zM4.25 8.25a.75.75 0 00-1.5 0v2.5A2.25 2.25 0 005 13h3.5a.75.75 0 000-1.5H5a.75.75 0 01-.75-.75v-2.5zM12.387 9.5a.5.5 0 01.5.5v1.223l1.108-.63a.508.508 0 01.687.184.492.492 0 01-.182.68l-1.168.664 1.168.665c.24.136.322.44.182.678a.508.508 0 01-.687.184l-1.108-.63v1.232a.5.5 0 01-1 0v-1.307l-1.131.644a.508.508 0 01-.688-.185.492.492 0 01.182-.678l1.06-.603-1.06-.603a.492.492 0 01-.182-.679.508.508 0 01.688-.184l1.131.644V10a.5.5 0 01.5-.5z" />
|
|
33
|
+
</g>
|
|
34
|
+
</svg>
|
|
35
|
+
);
|
|
36
|
+
}
|
|
37
|
+
);
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconTransformData24 = 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
|
+
<g fill={color}>
|
|
27
|
+
<path
|
|
28
|
+
fillRule="evenodd"
|
|
29
|
+
d="M5.73 9.137l-.96-.275.014-.05.042-.145a116.732 116.732 0 01.62-2.066c.176-.564.362-1.136.52-1.57.079-.214.154-.407.222-.55.033-.07.072-.146.117-.212a.709.709 0 01.108-.127A.538.538 0 016.774 4c.198 0 .325.11.363.144a.705.705 0 01.108.128c.045.066.083.143.115.212.066.145.14.337.216.552.154.434.334 1.005.504 1.57a102.987 102.987 0 01.598 2.066l.04.144.014.05L8.25 9l-.482.133-.014-.05-.04-.142c-.033-.122-.083-.297-.142-.508l-.06-.206H5.998l-.063.211-.148.508-.041.142-.014.05zm1.392-2.243l.1.333h-.923L6.4 6.9c.125-.398.252-.792.368-1.134.113.34.235.733.354 1.13z"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
/>
|
|
32
|
+
<path d="M8.25 9l.482-.134a.5.5 0 01-.964.267L8.25 9zM4.77 8.862a.5.5 0 00.96.275l-.96-.275z" />
|
|
33
|
+
<path
|
|
34
|
+
fillRule="evenodd"
|
|
35
|
+
d="M2 4.75A2.75 2.75 0 014.75 2h4a2.75 2.75 0 012.75 2.75v4a2.75 2.75 0 01-2.75 2.75h-4A2.75 2.75 0 012 8.75v-4zM4.75 3.5c-.69 0-1.25.56-1.25 1.25v4c0 .69.56 1.25 1.25 1.25h4C9.44 10 10 9.44 10 8.75v-4c0-.69-.56-1.25-1.25-1.25h-4z"
|
|
36
|
+
clipRule="evenodd"
|
|
37
|
+
/>
|
|
38
|
+
<path d="M17.5 11.25a.75.75 0 001.5 0v-3.5A2.75 2.75 0 0016.25 5h-3.5a.75.75 0 000 1.5h3.5c.69 0 1.25.56 1.25 1.25v3.5zM6.5 12.75a.75.75 0 00-1.5 0v3.5A2.75 2.75 0 007.75 19h3.5a.75.75 0 000-1.5h-3.5c-.69 0-1.25-.56-1.25-1.25v-3.5zM17.762 15.125a.5.5 0 00-1 0v1.299l-1.132-.644a.508.508 0 00-.687.184.492.492 0 00.182.679l1.06.603-1.06.603a.492.492 0 00-.182.678c.14.239.447.321.687.185l1.132-.644v1.307a.5.5 0 101 0v-1.232l1.107.63c.24.137.548.054.688-.184a.492.492 0 00-.182-.678l-1.168-.665 1.168-.665a.492.492 0 00.182-.679.508.508 0 00-.688-.184l-1.107.63v-1.223z" />
|
|
39
|
+
<path
|
|
40
|
+
fillRule="evenodd"
|
|
41
|
+
d="M12.5 15.25a2.75 2.75 0 012.75-2.75h4A2.75 2.75 0 0122 15.25v4A2.75 2.75 0 0119.25 22h-4a2.75 2.75 0 01-2.75-2.75v-4zM15.25 14c-.69 0-1.25.56-1.25 1.25v4c0 .69.56 1.25 1.25 1.25h4c.69 0 1.25-.56 1.25-1.25v-4c0-.69-.56-1.25-1.25-1.25h-4z"
|
|
42
|
+
clipRule="evenodd"
|
|
43
|
+
/>
|
|
44
|
+
</g>
|
|
45
|
+
</svg>
|
|
46
|
+
);
|
|
47
|
+
}
|
|
48
|
+
);
|
package/svg-react/wand-16.tsx
CHANGED
|
@@ -27,10 +27,10 @@ export const IconWand16 = forwardRef<SVGSVGElement, IconProps>(
|
|
|
27
27
|
<path d="M4.083.183a.5.5 0 00-.65.65l.393.981a.5.5 0 010 .371l-.393.982a.5.5 0 00.65.65l.981-.393a.5.5 0 01.372 0l.98.392a.5.5 0 00.65-.65l-.392-.98a.5.5 0 010-.372l.393-.981a.5.5 0 00-.65-.65l-.981.392a.5.5 0 01-.372 0l-.98-.392z" />
|
|
28
28
|
<path
|
|
29
29
|
fillRule="evenodd"
|
|
30
|
-
d="M11.414 4.104a2 2 0 00-2.828 0L.808 11.882a2 2 0 002.828 2.828l7.778-7.778a2 2 0 000-2.828zm-1.768 1.06a.5.5 0
|
|
30
|
+
d="M11.414 4.104a2 2 0 00-2.828 0L.808 11.882a2 2 0 002.828 2.828l7.778-7.778a2 2 0 000-2.828zm-1.768 1.06a.5.5 0 01.708.707l-.884.884-.707-.707.883-.884zM7.702 7.11l.707.707-5.834 5.834a.5.5 0 11-.707-.707l5.834-5.834z"
|
|
31
31
|
clipRule="evenodd"
|
|
32
32
|
/>
|
|
33
|
-
<path d="M10.572 11.21a.5.5 0 010-.92l1.
|
|
33
|
+
<path d="M10.572 11.21a.5.5 0 010-.92l1.22-.522a.5.5 0 00.262-.262l.522-1.22a.5.5 0 01.92 0l.521 1.22a.5.5 0 00.263.262l1.219.522a.5.5 0 010 .92l-1.219.522a.5.5 0 00-.263.263l-.522 1.218a.5.5 0 01-.919 0l-.522-1.218a.5.5 0 00-.263-.263l-1.219-.522zM12.833.183a.5.5 0 00-.65.65l.293.731a.5.5 0 010 .371l-.293.732a.5.5 0 00.65.65l.731-.293a.5.5 0 01.372 0l.73.292a.5.5 0 00.65-.65l-.292-.73a.5.5 0 010-.372l.293-.731a.5.5 0 00-.65-.65l-.731.292a.5.5 0 01-.372 0l-.73-.292z" />
|
|
34
34
|
</g>
|
|
35
35
|
</svg>
|
|
36
36
|
);
|
package/svg-react/wand-24.tsx
CHANGED
|
@@ -24,7 +24,7 @@ export const IconWand24 = forwardRef<SVGSVGElement, IconProps>(
|
|
|
24
24
|
>
|
|
25
25
|
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
26
|
<g fill={color}>
|
|
27
|
-
<path d="M18.875 1.15a.75.75 0 00-.975.975l.289.721a.75.75 0 010 .557l-.
|
|
27
|
+
<path d="M18.875 1.15a.75.75 0 00-.975.975l.289.721a.75.75 0 010 .557l-.289.722a.75.75 0 00.975.975l.721-.289a.75.75 0 01.558 0l.721.289a.75.75 0 00.975-.975l-.289-.722a.75.75 0 010-.557l.29-.721a.75.75 0 00-.976-.975l-.721.288a.75.75 0 01-.558 0l-.721-.288zM7.125 1.15a.75.75 0 00-.975.975l.439 1.096a.75.75 0 010 .557l-.44 1.097a.75.75 0 00.976.975l1.096-.439a.75.75 0 01.558 0l1.096.439a.75.75 0 00.975-.975l-.439-1.097a.75.75 0 010-.557l.44-1.096a.75.75 0 00-.976-.975l-1.096.438a.75.75 0 01-.558 0L7.125 1.15z" />
|
|
28
28
|
<path
|
|
29
29
|
fillRule="evenodd"
|
|
30
30
|
d="M17.017 6.707a2.5 2.5 0 00-3.535 0L2.168 18.021a2.5 2.5 0 003.536 3.535l11.313-11.313a2.5 2.5 0 000-3.536zm-2.474 1.06a1 1 0 011.414 1.415l-1.591 1.591-1.414-1.414 1.59-1.591zM11.89 10.42l1.414 1.415-8.662 8.662a1 1 0 01-1.414-1.414l8.662-8.663z"
|
|
@@ -27,7 +27,7 @@ export const IconXDiamond16 = forwardRef<SVGSVGElement, IconProps>(
|
|
|
27
27
|
<path d="M10.78 5.22a.75.75 0 010 1.06L9.06 8l1.72 1.72a.75.75 0 11-1.06 1.06L8 9.06l-1.72 1.72a.75.75 0 11-1.06-1.06L6.94 8 5.22 6.28a.75.75 0 011.06-1.06L8 6.94l1.72-1.72a.75.75 0 011.06 0z" />
|
|
28
28
|
<path
|
|
29
29
|
fillRule="evenodd"
|
|
30
|
-
d="M.75 6.41L6.407.753a2.25 2.25 0 013.182 0l5.657 5.657a2.25 2.25 0 010 3.182l-5.657 5.656a2.25 2.25 0 01-3.182 0L.75 9.592a2.25 2.25 0 010-3.182zm6.718-4.597L1.81 7.47a.75.75 0 000 1.06l5.657 5.658a.75.75 0 001.06 0l5.657-5.657a.75.75 0 000-1.06L8.
|
|
30
|
+
d="M.75 6.41L6.407.753a2.25 2.25 0 013.182 0l5.657 5.657a2.25 2.25 0 010 3.182l-5.657 5.656a2.25 2.25 0 01-3.182 0L.75 9.592a2.25 2.25 0 010-3.182zm6.718-4.597L1.81 7.47a.75.75 0 000 1.06l5.657 5.658a.75.75 0 001.06 0l5.657-5.657a.75.75 0 000-1.06L8.53 1.812a.75.75 0 00-1.061 0z"
|
|
31
31
|
clipRule="evenodd"
|
|
32
32
|
/>
|
|
33
33
|
</g>
|
|
@@ -24,7 +24,7 @@ export const IconXDiamond24 = forwardRef<SVGSVGElement, IconProps>(
|
|
|
24
24
|
>
|
|
25
25
|
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
26
|
<g fill={color}>
|
|
27
|
-
<path d="M15.78 8.22a.75.75 0 010 1.06L13.06 12l2.72 2.72a.75.75 0 11-1.06 1.06L12 13.06l-2.72 2.72a.75.75 0 01-1.06-1.06L10.94 12 8.22 9.28a.75.75 0
|
|
27
|
+
<path d="M15.78 8.22a.75.75 0 010 1.06L13.06 12l2.72 2.72a.75.75 0 11-1.06 1.06L12 13.06l-2.72 2.72a.75.75 0 01-1.06-1.06L10.94 12 8.22 9.28a.75.75 0 011.06-1.06L12 10.94l2.72-2.72a.75.75 0 011.06 0z" />
|
|
28
28
|
<path
|
|
29
29
|
fillRule="evenodd"
|
|
30
30
|
d="M1.884 10.056l8.171-8.172a2.75 2.75 0 013.89 0l8.171 8.172a2.75 2.75 0 010 3.889l-8.171 8.171a2.75 2.75 0 01-3.89 0l-8.171-8.171a2.75 2.75 0 010-3.89zm9.232-7.111l-8.172 8.171a1.25 1.25 0 000 1.768l8.172 8.172a1.25 1.25 0 001.768 0l8.171-8.172a1.25 1.25 0 000-1.768l-8.171-8.171a1.25 1.25 0 00-1.768 0z"
|