@hashicorp/flight-icons 3.1.0 → 3.2.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.
@@ -0,0 +1,35 @@
1
+ import { forwardRef, useMemo } from 'react';
2
+ import { IconProps } from './types';
3
+
4
+ export const IconGitColor16 = 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="#F03C2E"
28
+ fillRule="evenodd"
29
+ d="M8.003 15a.903.903 0 01-.626-.264L1.264 8.623a.903.903 0 010-1.275l4.192-4.19 1.587 1.587a1.074 1.074 0 00.582 1.407v3.843A1.077 1.077 0 007.04 11.4a1.072 1.072 0 101.466-1.372V6.218l1.448 1.447a1.073 1.073 0 10.642-.604L9.045 5.509a1.072 1.072 0 00-1.356-1.365l-1.61-1.61 1.27-1.27a.902.902 0 011.275 0l6.112 6.113a.903.903 0 01.264.616v.042a.903.903 0 01-.264.617l-6.084 6.084a.903.903 0 01-.626.264h-.023z"
30
+ clipRule="evenodd"
31
+ />
32
+ </svg>
33
+ );
34
+ }
35
+ );
@@ -0,0 +1,35 @@
1
+ import { forwardRef, useMemo } from 'react';
2
+ import { IconProps } from './types';
3
+
4
+ export const IconGitColor24 = 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="#F03C2E"
28
+ fillRule="evenodd"
29
+ d="M2 12.03v-.1a1.29 1.29 0 01.376-.861l5.988-5.987 2.268 2.268a1.533 1.533 0 00.831 2.01v5.49a1.537 1.537 0 00-.501 2.503 1.531 1.531 0 101.762-2.457V9.455l2.068 2.067a1.534 1.534 0 10.917-.864l-2.217-2.217a1.531 1.531 0 00-1.937-1.95l-2.3-2.3 1.813-1.813a1.287 1.287 0 011.822 0l8.733 8.731a1.29 1.29 0 010 1.822l-8.692 8.692a1.29 1.29 0 01-.89.377h-.042a1.29 1.29 0 01-.89-.377L2.376 12.89A1.29 1.29 0 012 12.03z"
30
+ clipRule="evenodd"
31
+ />
32
+ </svg>
33
+ );
34
+ }
35
+ );
@@ -118,6 +118,10 @@ export { IconGcp24 } from './gcp-24';
118
118
  export { IconGcp16 } from './gcp-16';
119
119
  export { IconGcpColor24 } from './gcp-color-24';
120
120
  export { IconGcpColor16 } from './gcp-color-16';
121
+ export { IconGit24 } from './git-24';
122
+ export { IconGit16 } from './git-16';
123
+ export { IconGitColor24 } from './git-color-24';
124
+ export { IconGitColor16 } from './git-color-16';
121
125
  export { IconGitlab24 } from './gitlab-24';
122
126
  export { IconGitlab16 } from './gitlab-16';
123
127
  export { IconGitlabColor24 } from './gitlab-color-24';
@@ -210,6 +214,10 @@ export { IconMicrosoftTeams24 } from './microsoft-teams-24';
210
214
  export { IconMicrosoftTeams16 } from './microsoft-teams-16';
211
215
  export { IconMicrosoftTeamsColor24 } from './microsoft-teams-color-24';
212
216
  export { IconMicrosoftTeamsColor16 } from './microsoft-teams-color-16';
217
+ export { IconMinio24 } from './minio-24';
218
+ export { IconMinio16 } from './minio-16';
219
+ export { IconMinioColor24 } from './minio-color-24';
220
+ export { IconMinioColor16 } from './minio-color-16';
213
221
  export { IconNewRelic24 } from './new-relic-24';
214
222
  export { IconNewRelic16 } from './new-relic-16';
215
223
  export { IconNewRelicColor24 } from './new-relic-color-24';
@@ -1072,6 +1080,8 @@ export { IconRandom24 } from './random-24';
1072
1080
  export { IconRandom16 } from './random-16';
1073
1081
  export { IconRocket24 } from './rocket-24';
1074
1082
  export { IconRocket16 } from './rocket-16';
1083
+ export { IconSparkle24 } from './sparkle-24';
1084
+ export { IconSparkle16 } from './sparkle-16';
1075
1085
  export { IconSquare24 } from './square-24';
1076
1086
  export { IconSquare16 } from './square-16';
1077
1087
  export { IconSquareFill24 } from './square-fill-24';
@@ -25,7 +25,7 @@ export const IconLinkedin16 = forwardRef<SVGSVGElement, IconProps>(
25
25
  {title ? <title id={titleId}>{title}</title> : null}
26
26
  <path
27
27
  fill={color}
28
- d="M12.225 12.225h-1.778V9.44c0-.664-.012-1.519-.925-1.519-.926 0-1.068.724-1.068 1.47v2.834H6.676V6.498h1.707v.783h.024c.348-.594.996-.95 1.684-.925 1.802 0 2.135 1.185 2.135 2.728l-.001 3.14zM4.67 5.715a1.037 1.037 0 01-1.032-1.031c0-.566.466-1.032 1.032-1.032.566 0 1.031.466 1.032 1.032 0 .566-.466 1.032-1.032 1.032zm.889 6.51h-1.78V6.498h1.78v5.727zM13.11 2H2.885A.88.88 0 002 2.866v10.268a.88.88 0 00.885.866h10.226a.882.882 0 00.889-.866V2.865a.88.88 0 00-.889-.864z"
28
+ d="M12.225 12.225h-1.778V9.44c0-.664-.012-1.518-.925-1.518-.926 0-1.068.723-1.068 1.47v2.833H6.676V6.499h1.707v.782h.024c.348-.594.996-.95 1.684-.925 1.802 0 2.135 1.186 2.135 2.728l-.001 3.14zM4.67 5.715a1.037 1.037 0 01-1.032-1.03c0-.567.466-1.033 1.032-1.033.566 0 1.031.466 1.032 1.032 0 .566-.466 1.032-1.032 1.032zm.889 6.51h-1.78V6.499h1.78v5.726zM13.11 2H2.885A.88.88 0 002 2.866v10.268a.88.88 0 00.885.866h10.226a.882.882 0 00.889-.866V2.865a.88.88 0 00-.889-.864z"
29
29
  />
30
30
  </svg>
31
31
  );
@@ -25,7 +25,7 @@ export const IconLinkedin24 = forwardRef<SVGSVGElement, IconProps>(
25
25
  {title ? <title id={titleId}>{title}</title> : null}
26
26
  <path
27
27
  fill={color}
28
- d="M19.041 19.041h-2.963v-4.64c0-1.107-.02-2.532-1.541-2.532-1.544 0-1.78 1.206-1.78 2.45v4.722H9.794V9.497h2.844v1.305h.04a3.121 3.121 0 012.807-1.542c3.004 0 3.558 1.976 3.558 4.546l-.002 5.235zM6.45 8.193c-.944 0-1.72-.776-1.72-1.72 0-.943.776-1.72 1.72-1.72.943 0 1.719.777 1.72 1.72 0 .943-.777 1.72-1.72 1.72zM7.93 19.04H4.965V9.497h2.966v9.544zM20.52 2.001H3.476A1.466 1.466 0 002 3.444v17.114c.01.8.675 1.451 1.476 1.443h17.043A1.47 1.47 0 0022 20.557V3.442A1.469 1.469 0 0020.519 2v.002z"
28
+ d="M19.041 19.041h-2.963v-4.64c0-1.107-.02-2.532-1.541-2.532-1.544 0-1.78 1.206-1.78 2.45v4.722H9.794V9.497h2.844v1.305h.04a3.121 3.121 0 012.807-1.542c3.004 0 3.558 1.976 3.558 4.546l-.002 5.235zM6.45 8.193c-.944 0-1.72-.776-1.72-1.72 0-.943.776-1.72 1.72-1.72.943 0 1.719.776 1.72 1.72 0 .943-.777 1.72-1.72 1.72zM7.93 19.04H4.965V9.497h2.966v9.544zM20.52 2.001H3.476A1.466 1.466 0 002 3.443v17.113c.01.8.675 1.452 1.476 1.444h17.043A1.47 1.47 0 0022 20.556V3.442A1.469 1.469 0 0020.519 2v.001z"
29
29
  />
30
30
  </svg>
31
31
  );
@@ -25,7 +25,7 @@ export const IconLinkedinColor16 = forwardRef<SVGSVGElement, IconProps>(
25
25
  {title ? <title id={titleId}>{title}</title> : null}
26
26
  <path
27
27
  fill="#0A66C2"
28
- d="M12.225 12.225h-1.778V9.44c0-.664-.012-1.519-.925-1.519-.926 0-1.068.724-1.068 1.47v2.834H6.676V6.498h1.707v.783h.024c.348-.594.996-.95 1.684-.925 1.802 0 2.135 1.185 2.135 2.728l-.001 3.14zM4.67 5.715a1.037 1.037 0 01-1.032-1.031c0-.566.466-1.032 1.032-1.032.566 0 1.031.466 1.032 1.032 0 .566-.466 1.032-1.032 1.032zm.889 6.51h-1.78V6.498h1.78v5.727zM13.11 2H2.885A.88.88 0 002 2.866v10.268a.88.88 0 00.885.866h10.226a.882.882 0 00.889-.866V2.865a.88.88 0 00-.889-.864z"
28
+ d="M12.225 12.225h-1.778V9.44c0-.664-.012-1.518-.925-1.518-.926 0-1.068.723-1.068 1.47v2.833H6.676V6.499h1.707v.782h.024c.348-.594.996-.95 1.684-.925 1.802 0 2.135 1.186 2.135 2.728l-.001 3.14zM4.67 5.715a1.037 1.037 0 01-1.032-1.03c0-.567.466-1.033 1.032-1.033.566 0 1.031.466 1.032 1.032 0 .566-.466 1.032-1.032 1.032zm.889 6.51h-1.78V6.499h1.78v5.726zM13.11 2H2.885A.88.88 0 002 2.866v10.268a.88.88 0 00.885.866h10.226a.882.882 0 00.889-.866V2.865a.88.88 0 00-.889-.864z"
29
29
  />
30
30
  </svg>
31
31
  );
@@ -25,7 +25,7 @@ export const IconLinkedinColor24 = forwardRef<SVGSVGElement, IconProps>(
25
25
  {title ? <title id={titleId}>{title}</title> : null}
26
26
  <path
27
27
  fill="#0A66C2"
28
- d="M19.041 19.041h-2.963v-4.64c0-1.107-.02-2.532-1.541-2.532-1.544 0-1.78 1.206-1.78 2.45v4.722H9.794V9.497h2.844v1.305h.04a3.121 3.121 0 012.807-1.542c3.004 0 3.558 1.976 3.558 4.546l-.002 5.235zM6.45 8.193c-.944 0-1.72-.776-1.72-1.72 0-.943.776-1.72 1.72-1.72.943 0 1.719.777 1.72 1.72 0 .943-.777 1.72-1.72 1.72zM7.93 19.04H4.965V9.497h2.966v9.544zM20.52 2.001H3.476A1.466 1.466 0 002 3.444v17.114c.01.8.675 1.451 1.476 1.443h17.043A1.47 1.47 0 0022 20.557V3.442A1.469 1.469 0 0020.519 2v.002z"
28
+ d="M19.041 19.041h-2.963v-4.64c0-1.107-.02-2.532-1.541-2.532-1.544 0-1.78 1.206-1.78 2.45v4.722H9.794V9.497h2.844v1.305h.04a3.121 3.121 0 012.807-1.542c3.004 0 3.558 1.976 3.558 4.546l-.002 5.235zM6.45 8.193c-.944 0-1.72-.776-1.72-1.72 0-.943.776-1.72 1.72-1.72.943 0 1.719.776 1.72 1.72 0 .943-.777 1.72-1.72 1.72zM7.93 19.04H4.965V9.497h2.966v9.544zM20.52 2.001H3.476A1.466 1.466 0 002 3.443v17.113c.01.8.675 1.452 1.476 1.444h17.043A1.47 1.47 0 0022 20.556V3.442A1.469 1.469 0 0020.519 2v.001z"
29
29
  />
30
30
  </svg>
31
31
  );
@@ -0,0 +1,33 @@
1
+ import { forwardRef, useMemo } from 'react';
2
+ import { IconProps } from './types';
3
+
4
+ export const IconMinio16 = 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 d="M9.548 2.586l1.57 2.57a.03.03 0 010 .036.029.029 0 01-.02.009.028.028 0 01-.02-.01L9.041 3.07l.506-.484zM8.892 8.84v.778l-.737.375v-.774l.737-.38z" />
28
+ <path d="M6.078 9.507a6.99 6.99 0 012.077-2.571v1.497L6.078 9.507zM4.88 10.895L8.155 9.23v3.81l.737.959V8.841l.448-.231a2.221 2.221 0 00.61-3.515L8.266 3.333a.374.374 0 01.547-.51l.237.247.499-.486c-.598-.776-1.332-.677-1.753-.29a1.075 1.075 0 00-.046 1.518l1.704 1.776A1.521 1.521 0 019.12 7.93l-.231.12V5.643a7.71 7.71 0 00-4.01 5.243v.009z" />
29
+ </g>
30
+ </svg>
31
+ );
32
+ }
33
+ );
@@ -0,0 +1,33 @@
1
+ import { forwardRef, useMemo } from 'react';
2
+ import { IconProps } from './types';
3
+
4
+ export const IconMinio24 = 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 d="M14.58 2.976l2.618 4.285a.05.05 0 010 .059.047.047 0 01-.053.01.047.047 0 01-.016-.01l-3.392-3.537.843-.807zM13.487 13.4v1.297l-1.229.624v-1.29l1.23-.632z" />
28
+ <path d="M8.797 14.511a11.649 11.649 0 012.308-3.272c.362-.363.747-.7 1.153-1.013v2.496l-3.461 1.79zM6.8 16.825l5.458-2.774v6.351L13.488 22v-8.598l.745-.386a3.703 3.703 0 001.018-5.857l-2.81-2.938a.623.623 0 01.913-.848l.394.41.832-.81c-.996-1.292-2.219-1.129-2.92-.482a1.792 1.792 0 00-.078 2.53l2.84 2.959a2.536 2.536 0 01-.555 3.905l-.385.2V8.07a12.85 12.85 0 00-6.682 8.74v.014z" />
29
+ </g>
30
+ </svg>
31
+ );
32
+ }
33
+ );
@@ -0,0 +1,33 @@
1
+ import { forwardRef, useMemo } from 'react';
2
+ import { IconProps } from './types';
3
+
4
+ export const IconMinioColor16 = 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="#C72C48">
27
+ <path d="M9.548 2.586l1.57 2.57a.03.03 0 010 .036.029.029 0 01-.02.009.028.028 0 01-.02-.01L9.041 3.07l.506-.484zM8.892 8.84v.778l-.737.375v-.774l.737-.38z" />
28
+ <path d="M6.078 9.507a6.99 6.99 0 012.077-2.571v1.497L6.078 9.507zM4.88 10.895L8.155 9.23v3.81l.737.959V8.841l.448-.231a2.221 2.221 0 00.61-3.515L8.266 3.333a.374.374 0 01.547-.51l.237.247.499-.486c-.598-.776-1.332-.677-1.753-.29a1.075 1.075 0 00-.046 1.518l1.704 1.776A1.521 1.521 0 019.12 7.93l-.231.12V5.643a7.71 7.71 0 00-4.01 5.243v.009z" />
29
+ </g>
30
+ </svg>
31
+ );
32
+ }
33
+ );
@@ -0,0 +1,33 @@
1
+ import { forwardRef, useMemo } from 'react';
2
+ import { IconProps } from './types';
3
+
4
+ export const IconMinioColor24 = 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="#C72C48">
27
+ <path d="M14.58 2.976l2.618 4.285a.05.05 0 010 .059.047.047 0 01-.053.01.047.047 0 01-.016-.01l-3.392-3.537.843-.807zM13.487 13.4v1.297l-1.229.624v-1.29l1.23-.632z" />
28
+ <path d="M8.797 14.511a11.649 11.649 0 012.308-3.272c.362-.363.747-.7 1.153-1.013v2.496l-3.461 1.79zM6.8 16.825l5.458-2.774v6.351L13.488 22v-8.598l.745-.386a3.703 3.703 0 001.018-5.857l-2.81-2.938a.623.623 0 01.913-.848l.394.41.832-.81c-.996-1.292-2.219-1.129-2.92-.482a1.792 1.792 0 00-.078 2.53l2.84 2.959a2.536 2.536 0 01-.555 3.905l-.385.2V8.07a12.85 12.85 0 00-6.682 8.74v.014z" />
29
+ </g>
30
+ </svg>
31
+ );
32
+ }
33
+ );
@@ -0,0 +1,32 @@
1
+ import { forwardRef, useMemo } from 'react';
2
+ import { IconProps } from './types';
3
+
4
+ export const IconSparkle16 = 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 d="M9.822 4.04a.5.5 0 000 .92l1.219.522a.5.5 0 01.263.262l.522 1.22a.5.5 0 00.92 0l.521-1.22a.5.5 0 01.263-.262l1.219-.522a.5.5 0 000-.92l-1.219-.522a.5.5 0 01-.263-.262l-.522-1.22a.5.5 0 00-.919 0l-.522 1.22a.5.5 0 01-.263.262l-1.219.522zM1.572 9.49a.5.5 0 000 .92l2.704 1.158a.5.5 0 01.263.263l1.158 2.704a.5.5 0 00.92 0l1.158-2.704a.5.5 0 01.263-.263l2.703-1.158a.5.5 0 000-.92L8.038 8.332a.5.5 0 01-.263-.263L6.616 5.365a.5.5 0 00-.919 0L4.54 8.07a.5.5 0 01-.263.263L1.572 9.49z" />
28
+ </g>
29
+ </svg>
30
+ );
31
+ }
32
+ );
@@ -0,0 +1,32 @@
1
+ import { forwardRef, useMemo } from 'react';
2
+ import { IconProps } from './types';
3
+
4
+ export const IconSparkle24 = 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 d="M13.572 5.79a.5.5 0 000 .92l1.219.522a.5.5 0 01.263.262l.522 1.22a.5.5 0 00.92 0l.521-1.22a.5.5 0 01.263-.262l1.219-.522a.5.5 0 000-.92l-1.219-.522a.5.5 0 01-.263-.262l-.522-1.22a.5.5 0 00-.919 0l-.522 1.22a.5.5 0 01-.263.262l-1.219.522zM2.572 13.21a.5.5 0 010-.92l3.694-1.582a.5.5 0 00.263-.263L8.11 6.75a.5.5 0 01.92 0l1.583 3.694a.5.5 0 00.262.262l3.694 1.583a.5.5 0 010 .92l-3.694 1.582a.5.5 0 00-.262.263L9.03 18.75a.5.5 0 01-.92 0L6.53 15.055a.5.5 0 00-.263-.262L2.572 13.21zM15.022 17.21a.5.5 0 010-.92l1.961-.84a.5.5 0 00.263-.263l.84-1.96a.5.5 0 01.92 0l.84 1.96a.5.5 0 00.263.263l1.961.84a.5.5 0 010 .92l-1.961.84a.5.5 0 00-.263.263l-.84 1.96a.5.5 0 01-.92 0l-.84-1.96a.5.5 0 00-.263-.263l-1.96-.84z" />
28
+ </g>
29
+ </svg>
30
+ );
31
+ }
32
+ );