@hashicorp/flight-icons 2.23.0 → 2.25.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 +40 -20
- package/catalog.json +199 -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/vault-radar-16.svg +1 -0
- package/svg/vault-radar-24.svg +1 -0
- package/svg/vault-radar-color-16.svg +1 -0
- package/svg/vault-radar-color-24.svg +1 -0
- package/svg/vault-secrets-16.svg +1 -1
- package/svg/vault-secrets-24.svg +1 -1
- package/svg/vault-secrets-color-16.svg +1 -1
- package/svg/vault-secrets-color-24.svg +1 -1
- 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 +22 -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/vault-radar-16.tsx +37 -0
- package/svg-react/vault-radar-24.tsx +37 -0
- package/svg-react/vault-radar-color-16.tsx +35 -0
- package/svg-react/vault-radar-color-24.tsx +37 -0
- package/svg-react/vault-secrets-16.tsx +3 -3
- package/svg-react/vault-secrets-24.tsx +3 -3
- package/svg-react/vault-secrets-color-16.tsx +9 -10
- package/svg-react/vault-secrets-color-24.tsx +9 -10
- 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 IconOpenid24 = 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="M11.127 5.069v15.64l2.793-1.308V3.71l-2.793 1.358z" />
|
|
28
|
+
<path d="M5.542 14.757c0-1.97 2.156-3.63 5.095-4.136V8.855c-4.495.54-7.887 2.977-7.887 5.902 0 3.03 3.641 5.535 8.377 5.952v-1.743c-3.186-.398-5.585-2.131-5.585-4.21zM14.41 8.855v1.766c1.095.188 2.08.536 2.887 1.001l-1.514.85 5.4 1.17-.385-3.985-1.433.804c-1.336-.805-3.046-1.376-4.955-1.606z" />
|
|
29
|
+
</g>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
);
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconOpenidColor16 = 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 fillRule="evenodd" clipRule="evenodd">
|
|
27
|
+
<path
|
|
28
|
+
fill="#F8941C"
|
|
29
|
+
d="M7.438 3.71v10.014l1.797-.838V2.84l-1.797.87z"
|
|
30
|
+
/>
|
|
31
|
+
<path
|
|
32
|
+
fill="#BCBEC0"
|
|
33
|
+
d="M3.845 9.913c0-1.262 1.387-2.324 3.278-2.649v-1.13C4.23 6.48 2.048 8.04 2.048 9.913c0 1.94 2.343 3.544 5.39 3.811v-1.116c-2.05-.255-3.593-1.365-3.593-2.695zM9.55 6.134v1.13c.752.13 1.425.375 1.963.704l1.27-.778c-.866-.53-1.983-.906-3.233-1.056z"
|
|
34
|
+
/>
|
|
35
|
+
<path
|
|
36
|
+
fill="#BCBEC0"
|
|
37
|
+
d="M13.662 6.647L13.91 9.2l-3.475-.75"
|
|
38
|
+
/>
|
|
39
|
+
</g>
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
}
|
|
43
|
+
);
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconOpenidColor24 = 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 fillRule="evenodd" clipRule="evenodd">
|
|
27
|
+
<path
|
|
28
|
+
fill="#F8941C"
|
|
29
|
+
d="M11.127 5.069v15.64l2.793-1.308V3.71l-2.793 1.358z"
|
|
30
|
+
/>
|
|
31
|
+
<path
|
|
32
|
+
fill="#BCBEC0"
|
|
33
|
+
d="M5.542 14.757c0-1.97 2.156-3.63 5.095-4.136V8.855c-4.495.54-7.887 2.977-7.887 5.902 0 3.03 3.641 5.535 8.377 5.952v-1.743c-3.186-.398-5.585-2.131-5.585-4.21zm8.868-5.902v1.766c1.17.201 2.215.584 3.05 1.098l1.974-1.215c-1.345-.828-3.082-1.415-5.024-1.649z"
|
|
34
|
+
/>
|
|
35
|
+
<path
|
|
36
|
+
fill="#BCBEC0"
|
|
37
|
+
d="M20.798 9.657l.386 3.985-5.4-1.17"
|
|
38
|
+
/>
|
|
39
|
+
</g>
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
}
|
|
43
|
+
);
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconRabbitmq16 = 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="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 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
|
+
);
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconVaultRadar16 = 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={17}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 16 17"
|
|
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="M12.37 7.536l.463.464-.001.002a4.838 4.838 0 01-4.833 4.833 4.838 4.838 0 01-4.832-4.833 4.838 4.838 0 014.832-4.834c1.44 0 2.815.653 3.73 1.76L8.654 8.002H8v-.657l.964-.964A1.882 1.882 0 008 6.115c-1.04 0-1.886.847-1.886 1.887s.846 1.886 1.886 1.886 1.886-.846 1.886-1.886l.465-.465.464.465a2.818 2.818 0 01-2.815 2.815 2.818 2.818 0 01-2.815-2.815A2.818 2.818 0 018 5.186c.596 0 1.16.186 1.634.525l.779-.778A3.917 3.917 0 008 4.095 3.91 3.91 0 004.097 8 3.91 3.91 0 008 11.905 3.91 3.91 0 0011.905 8l.464-.464z" />
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
d="M1.333 0h13.333v.002c.736 0 1.332.596 1.332 1.332v13.333c0 .736-.596 1.333-1.332 1.333H1.333A1.333 1.333 0 010 14.667V1.334C0 .598.597.002 1.333 0zm14.001 1.336c0-.368-.299-.667-.667-.667l-.001-.002H1.333c-.368 0-.667.3-.667.667V14.67c0 .368.299.667.667.667h13.334c.368 0 .667-.3.667-.667V1.336z"
|
|
31
|
+
clipRule="evenodd"
|
|
32
|
+
/>
|
|
33
|
+
</g>
|
|
34
|
+
</svg>
|
|
35
|
+
);
|
|
36
|
+
}
|
|
37
|
+
);
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconVaultRadar24 = 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={25}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 24 25"
|
|
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="M18.554 11.304l.696.696-.002.002c0 3.998-3.252 7.25-7.25 7.25-3.996 0-7.248-3.252-7.248-7.25 0-3.997 3.252-7.25 7.249-7.25 2.16 0 4.222.98 5.594 2.64l-4.61 4.61h-.984v-.984l1.446-1.446a2.823 2.823 0 00-1.446-.4c-1.56 0-2.83 1.27-2.83 2.83s1.27 2.83 2.83 2.83 2.83-1.27 2.83-2.83l.696-.696.696.696a4.227 4.227 0 01-4.222 4.223 4.227 4.227 0 01-4.222-4.223 4.227 4.227 0 014.222-4.222c.893 0 1.74.278 2.45.787l1.168-1.168a5.875 5.875 0 00-3.616-1.256A5.864 5.864 0 006.145 12a5.864 5.864 0 005.856 5.857A5.864 5.864 0 0017.857 12l.697-.696z" />
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
d="M2 0h19.998v.002a2 2 0 012 2V22a2 2 0 01-2 1.999H2A2 2 0 010 22V2.003C0 .898.895.002 2 0zm21.002 2.004c0-.552-.45-1-1.001-1L21.998 1H2c-.552 0-1 .449-1 1v20.002c0 .552.448 1.001 1 1.001h20.002c.552 0 1-.449 1-1v-20z"
|
|
31
|
+
clipRule="evenodd"
|
|
32
|
+
/>
|
|
33
|
+
</g>
|
|
34
|
+
</svg>
|
|
35
|
+
);
|
|
36
|
+
}
|
|
37
|
+
);
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconVaultRadarColor16 = 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={17}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 16 17"
|
|
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="#FFD814"
|
|
28
|
+
fillRule="evenodd"
|
|
29
|
+
d="M15.334 1.336c0-.368-.299-.667-.667-.667l-.001-.002H1.333c-.368 0-.667.3-.667.667V14.67c0 .368.299.667.667.667h13.334c.368 0 .667-.3.667-.667V1.336zM1.333 0h13.333v.002c.736 0 1.332.596 1.332 1.332v13.333c0 .736-.596 1.333-1.332 1.333H1.333A1.333 1.333 0 010 14.667V1.334C0 .598.597.002 1.333 0zm11.036 7.536l.464.464-.001.002a4.838 4.838 0 01-4.833 4.833 4.838 4.838 0 01-4.832-4.833 4.838 4.838 0 014.832-4.834c1.44 0 2.815.653 3.73 1.76l-.313.313-.348.348-.223.223-2.19 2.19H8v-.657l.723-.722.241-.242A1.882 1.882 0 008 6.115c-1.04 0-1.886.847-1.886 1.887s.846 1.886 1.886 1.886 1.886-.846 1.886-1.886l.465-.465.464.465a2.818 2.818 0 01-2.815 2.815 2.818 2.818 0 01-2.815-2.815A2.818 2.818 0 018 5.186c.596 0 1.16.186 1.634.525l.779-.778A3.917 3.917 0 008 4.095 3.91 3.91 0 004.097 8 3.91 3.91 0 008 11.905 3.91 3.91 0 0011.905 8l.464-.464z"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
);
|
|
34
|
+
}
|
|
35
|
+
);
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconVaultRadarColor24 = 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={25}
|
|
18
|
+
fill="none"
|
|
19
|
+
viewBox="0 0 24 25"
|
|
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="#FFD814">
|
|
27
|
+
<path d="M18.554 11.304l.696.696-.002.002c0 3.998-3.252 7.25-7.25 7.25-3.996 0-7.248-3.252-7.248-7.25 0-3.997 3.252-7.25 7.249-7.25 2.16 0 4.222.98 5.594 2.64l-4.61 4.61h-.984v-.984l1.446-1.446a2.823 2.823 0 00-1.446-.4c-1.56 0-2.83 1.27-2.83 2.83s1.27 2.83 2.83 2.83 2.83-1.27 2.83-2.83l.696-.696.696.696a4.227 4.227 0 01-4.222 4.223 4.227 4.227 0 01-4.222-4.223 4.227 4.227 0 014.222-4.222c.893 0 1.74.278 2.45.787l1.168-1.168a5.875 5.875 0 00-3.616-1.256A5.864 5.864 0 006.145 12a5.864 5.864 0 005.856 5.857A5.864 5.864 0 0017.857 12l.697-.696z" />
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
d="M2 0h19.998v.002a2 2 0 012 2V22a2 2 0 01-2 1.999H2A2 2 0 010 22V2.003C0 .898.895.002 2 0zm21.002 2.004c0-.552-.45-1-1.001-1L21.998 1H2c-.552 0-1 .449-1 1v20.002c0 .552.448 1.001 1 1.001h20.002c.552 0 1-.449 1-1v-20z"
|
|
31
|
+
clipRule="evenodd"
|
|
32
|
+
/>
|
|
33
|
+
</g>
|
|
34
|
+
</svg>
|
|
35
|
+
);
|
|
36
|
+
}
|
|
37
|
+
);
|
|
@@ -24,11 +24,11 @@ export const IconVaultSecrets16 = forwardRef<SVGSVGElement, IconProps>(
|
|
|
24
24
|
>
|
|
25
25
|
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
26
|
<g fill={color}>
|
|
27
|
-
<path d="M7.
|
|
28
|
-
<path d="M9.
|
|
27
|
+
<path d="M7.552 10.8v2h1.104V8.544h4.256V7.456h-2c-.464 0-.928.032-1.392.096l-.432.048.336-.272c.368-.288.72-.592 1.056-.928l1.392-1.408-.768-.768-1.408 1.408c-.336.336-.64.688-.928 1.056l-.272.336.048-.432c.064-.464.096-.928.096-1.392v-2H7.552v4.256H3.296v1.088h2c.464 0 .928-.032 1.392-.096L7.12 8.4l-.336.272c-.368.288-.72.592-1.056.928L4.32 11.008l.768.768 1.408-1.408c.336-.336.64-.688.928-1.056l.272-.336-.048.432c-.064.464-.096.928-.096 1.392z" />
|
|
28
|
+
<path d="M9.712 9.616v.768l1.392 1.392.768-.768-1.392-1.392h-.768zM4.32 4.992l1.392 1.392h.768v-.768L5.088 4.224l-.768.768z" />
|
|
29
29
|
<path
|
|
30
30
|
fillRule="evenodd"
|
|
31
|
-
d="
|
|
31
|
+
d="M1.328 0h13.344c.736 0 1.328.592 1.312 1.328v13.328c0 .736-.592 1.328-1.328 1.328H1.328A1.325 1.325 0 010 14.656V1.328C0 .592.592 0 1.328 0zm14.016 1.344a.676.676 0 00-.672-.672L1.328.656a.676.676 0 00-.672.672v13.344c0 .368.304.672.672.672h13.344a.676.676 0 00.672-.672V1.344z"
|
|
32
32
|
clipRule="evenodd"
|
|
33
33
|
/>
|
|
34
34
|
</g>
|
|
@@ -24,11 +24,11 @@ export const IconVaultSecrets24 = forwardRef<SVGSVGElement, IconProps>(
|
|
|
24
24
|
>
|
|
25
25
|
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
26
|
<g fill={color}>
|
|
27
|
-
<path d="M11.
|
|
28
|
-
<path d="M14.
|
|
27
|
+
<path d="M11.328 16.2v3h1.656v-6.384h6.384v-1.632h-3c-.696 0-1.392.048-2.088.144l-.648.072.504-.408c.552-.432 1.08-.888 1.584-1.392l2.088-2.112-1.152-1.152-2.112 2.112c-.504.504-.96 1.032-1.392 1.584l-.408.504.072-.648c.096-.696.144-1.392.144-2.088v-3h-1.632v6.384H4.944v1.632h3c.696 0 1.392-.048 2.088-.144l.648-.072-.504.408c-.552.432-1.08.888-1.584 1.392L6.48 16.512l1.152 1.152 2.112-2.112c.504-.504.96-1.032 1.392-1.584l.408-.504-.072.648a15.264 15.264 0 00-.144 2.088z" />
|
|
28
|
+
<path d="M14.568 14.424v1.152l2.088 2.088 1.152-1.152-2.088-2.088h-1.152zM6.48 7.488l2.088 2.088H9.72V8.424L7.632 6.336 6.48 7.488z" />
|
|
29
29
|
<path
|
|
30
30
|
fillRule="evenodd"
|
|
31
|
-
d="
|
|
31
|
+
d="M1.992 0h20.016c1.104 0 1.992.888 1.968 1.992v19.992a1.987 1.987 0 01-1.992 1.992H1.992A1.987 1.987 0 010 21.984V1.992C0 .888.888 0 1.992 0zm21.024 2.016c0-.552-.456-1.008-1.008-1.008L1.992.984C1.44.984.984 1.44.984 1.992v20.016c0 .552.456 1.008 1.008 1.008h20.016c.552 0 1.008-.456 1.008-1.008V2.016z"
|
|
32
32
|
clipRule="evenodd"
|
|
33
33
|
/>
|
|
34
34
|
</g>
|
|
@@ -23,16 +23,15 @@ export const IconVaultSecretsColor16 = forwardRef<SVGSVGElement, IconProps>(
|
|
|
23
23
|
{...props}
|
|
24
24
|
>
|
|
25
25
|
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
-
<
|
|
27
|
-
|
|
28
|
-
d="
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
/>
|
|
26
|
+
<g fill="#FFD814">
|
|
27
|
+
<path d="M7.552 10.8v2h1.104V8.544h4.256V7.456h-2c-.464 0-.928.032-1.392.096l-.432.048.336-.272c.368-.288.72-.592 1.056-.928l1.392-1.408-.768-.768-1.408 1.408c-.336.336-.64.688-.928 1.056l-.272.336.048-.432c.064-.464.096-.928.096-1.392v-2H7.552v4.256H3.296v1.088h2c.464 0 .928-.032 1.392-.096L7.12 8.4l-.336.272c-.368.288-.72.592-1.056.928L4.32 11.008l.768.768 1.408-1.408c.336-.336.64-.688.928-1.056l.272-.336-.048.432c-.064.464-.096.928-.096 1.392z" />
|
|
28
|
+
<path d="M9.712 9.616v.768l1.392 1.392.768-.768-1.392-1.392h-.768zM4.32 4.992l1.392 1.392h.768v-.768L5.088 4.224l-.768.768z" />
|
|
29
|
+
<path
|
|
30
|
+
fillRule="evenodd"
|
|
31
|
+
d="M1.328 0h13.344c.736 0 1.328.592 1.312 1.328v13.328c0 .736-.592 1.328-1.328 1.328H1.328A1.325 1.325 0 010 14.656V1.328C0 .592.592 0 1.328 0zm14.016 1.344a.676.676 0 00-.672-.672L1.328.656a.676.676 0 00-.672.672v13.344c0 .368.304.672.672.672h13.344a.676.676 0 00.672-.672V1.344z"
|
|
32
|
+
clipRule="evenodd"
|
|
33
|
+
/>
|
|
34
|
+
</g>
|
|
36
35
|
</svg>
|
|
37
36
|
);
|
|
38
37
|
}
|
|
@@ -23,16 +23,15 @@ export const IconVaultSecretsColor24 = forwardRef<SVGSVGElement, IconProps>(
|
|
|
23
23
|
{...props}
|
|
24
24
|
>
|
|
25
25
|
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
|
-
<
|
|
27
|
-
|
|
28
|
-
d="
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
/>
|
|
26
|
+
<g fill="#FFD814">
|
|
27
|
+
<path d="M11.328 16.2v3h1.656v-6.384h6.384v-1.632h-3c-.696 0-1.392.048-2.088.144l-.648.072.504-.408c.552-.432 1.08-.888 1.584-1.392l2.088-2.112-1.152-1.152-2.112 2.112c-.504.504-.96 1.032-1.392 1.584l-.408.504.072-.648c.096-.696.144-1.392.144-2.088v-3h-1.632v6.384H4.944v1.632h3c.696 0 1.392-.048 2.088-.144l.648-.072-.504.408c-.552.432-1.08.888-1.584 1.392L6.48 16.512l1.152 1.152 2.112-2.112c.504-.504.96-1.032 1.392-1.584l.408-.504-.072.648a15.264 15.264 0 00-.144 2.088z" />
|
|
28
|
+
<path d="M14.568 14.424v1.152l2.088 2.088 1.152-1.152-2.088-2.088h-1.152zM6.48 7.488l2.088 2.088H9.72V8.424L7.632 6.336 6.48 7.488z" />
|
|
29
|
+
<path
|
|
30
|
+
fillRule="evenodd"
|
|
31
|
+
d="M1.992 0h20.016c1.104 0 1.992.888 1.968 1.992v19.992a1.987 1.987 0 01-1.992 1.992H1.992A1.987 1.987 0 010 21.984V1.992C0 .888.888 0 1.992 0zm21.024 2.016c0-.552-.456-1.008-1.008-1.008L1.992.984C1.44.984.984 1.44.984 1.992v20.016c0 .552.456 1.008 1.008 1.008h20.016c.552 0 1.008-.456 1.008-1.008V2.016z"
|
|
32
|
+
clipRule="evenodd"
|
|
33
|
+
/>
|
|
34
|
+
</g>
|
|
36
35
|
</svg>
|
|
37
36
|
);
|
|
38
37
|
}
|
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"
|