@hashicorp/flight-icons 2.0.0 → 2.1.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/catalog.json +3843 -3716
- package/package.json +4 -2
- package/svg/animation.css +23 -0
- package/svg/bulb-16.svg +1 -0
- package/svg/bulb-24.svg +1 -0
- package/svg/discussion-circle-16.svg +1 -1
- package/svg/discussion-circle-24.svg +1 -1
- package/svg/enterprise-16.svg +1 -0
- package/svg/enterprise-24.svg +1 -0
- package/svg/folder-star-16.svg +1 -1
- package/svg/hammer-16.svg +1 -1
- package/svg/hcp-16.svg +1 -0
- package/svg/hcp-24.svg +1 -0
- package/svg/hcp-color-16.svg +1 -0
- package/svg/hcp-color-24.svg +1 -0
- package/svg/layers-16.svg +1 -1
- package/svg/loading-16.svg +1 -0
- package/svg/loading-24.svg +1 -0
- package/svg/message-circle-24.svg +1 -1
- package/svg/navigation-16.svg +1 -1
- package/svg/navigation-24.svg +1 -1
- package/svg/navigation-alt-16.svg +1 -1
- package/svg/nomad-color-16.svg +1 -1
- package/svg/nomad-color-24.svg +1 -1
- package/svg/phone-call-16.svg +1 -1
- package/svg/phone-call-24.svg +1 -1
- package/svg/redirect-16.svg +1 -1
- package/svg/redirect-24.svg +1 -1
- package/svg/rewind-16.svg +1 -1
- package/svg/running-16.svg +1 -0
- package/svg/running-24.svg +1 -0
- package/svg/star-fill-16.svg +1 -1
- package/svg/star-off-16.svg +1 -1
- package/svg/vault-16.svg +1 -1
- package/svg/vault-24.svg +1 -1
- package/svg/vault-color-16.svg +1 -1
- package/svg/vault-color-24.svg +1 -1
- package/svg/volume-2-16.svg +1 -1
- package/svg/wand-16.svg +1 -0
- package/svg/wand-24.svg +1 -0
- package/svg/x-diamond-16.svg +1 -1
- package/svg/x-hexagon-fill-24.svg +1 -1
- package/svg-react/animation.css +23 -0
- package/svg-react/bulb-16.tsx +37 -0
- package/svg-react/bulb-24.tsx +37 -0
- package/svg-react/discussion-circle-16.tsx +2 -2
- package/svg-react/discussion-circle-24.tsx +2 -2
- package/svg-react/enterprise-16.tsx +38 -0
- package/svg-react/enterprise-24.tsx +38 -0
- package/svg-react/folder-star-16.tsx +2 -2
- package/svg-react/hammer-16.tsx +1 -1
- package/svg-react/hcp-16.tsx +34 -0
- package/svg-react/hcp-24.tsx +34 -0
- package/svg-react/hcp-color-16.tsx +34 -0
- package/svg-react/hcp-color-24.tsx +34 -0
- package/svg-react/index.ts +162 -148
- package/svg-react/layers-16.tsx +2 -2
- package/svg-react/loading-16.tsx +37 -0
- package/svg-react/loading-24.tsx +37 -0
- package/svg-react/message-circle-24.tsx +1 -1
- package/svg-react/navigation-16.tsx +1 -1
- package/svg-react/navigation-24.tsx +1 -1
- package/svg-react/navigation-alt-16.tsx +1 -1
- package/svg-react/nomad-color-16.tsx +1 -1
- package/svg-react/nomad-color-24.tsx +1 -1
- package/svg-react/phone-call-16.tsx +3 -3
- package/svg-react/phone-call-24.tsx +2 -2
- package/svg-react/redirect-16.tsx +1 -1
- package/svg-react/redirect-24.tsx +1 -1
- package/svg-react/rewind-16.tsx +1 -1
- package/svg-react/running-16.tsx +37 -0
- package/svg-react/running-24.tsx +37 -0
- package/svg-react/star-fill-16.tsx +1 -1
- package/svg-react/star-off-16.tsx +1 -1
- package/svg-react/vault-16.tsx +1 -1
- package/svg-react/vault-24.tsx +1 -1
- package/svg-react/vault-color-16.tsx +2 -2
- package/svg-react/vault-color-24.tsx +2 -2
- package/svg-react/volume-2-16.tsx +2 -2
- package/svg-react/wand-16.tsx +38 -0
- package/svg-react/wand-24.tsx +38 -0
- package/svg-react/x-diamond-16.tsx +2 -2
- package/svg-react/x-hexagon-fill-24.tsx +1 -1
- package/svg-sprite/svg-sprite-module.js +1 -1
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconHcp16 = 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="M6.835.6L1 3.96v8.074l2.192 1.264V5.224l3.643-2.1V.6z" />
|
|
28
|
+
<path d="M9.165.6v6.43h-2.33v-2.4L4.642 5.894v8.237l2.193 1.266v-6.41h2.33v2.383l2.192-1.264V1.864L9.165.6z" />
|
|
29
|
+
<path d="M15 12.04L9.165 15.4v-2.525l3.642-2.1V2.703L15 3.966v8.073z" />
|
|
30
|
+
</g>
|
|
31
|
+
</svg>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
);
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconHcp24 = 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="M10.336 1.5L2 6.268v11.456l3.131 1.793V8.061l5.205-2.979V1.5z" />
|
|
28
|
+
<path d="M13.664 1.5v9.123h-3.328V7.219L7.203 9.012V20.7l3.133 1.796V13.4h3.328v3.381l3.131-1.793V3.293L13.664 1.5z" />
|
|
29
|
+
<path d="M22 17.732L13.664 22.5v-3.582l5.203-2.98V4.484L22 6.276v11.456z" />
|
|
30
|
+
</g>
|
|
31
|
+
</svg>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
);
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconHcpColor16 = 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="#000">
|
|
27
|
+
<path d="M6.835.6L1 3.96v8.074l2.192 1.264V5.224l3.643-2.1V.6z" />
|
|
28
|
+
<path d="M9.165.6v6.43h-2.33v-2.4L4.642 5.894v8.237l2.193 1.266v-6.41h2.33v2.383l2.192-1.264V1.864L9.165.6z" />
|
|
29
|
+
<path d="M9.165 15.4L15 12.04V3.966l-2.193-1.264v8.074l-3.642 2.1V15.4z" />
|
|
30
|
+
</g>
|
|
31
|
+
</svg>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
);
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconHcpColor24 = 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="#000">
|
|
27
|
+
<path d="M10.336 1.5L2 6.268v11.456l3.131 1.793V8.061l5.205-2.979V1.5z" />
|
|
28
|
+
<path d="M13.664 1.5v9.123h-3.328V7.219L7.203 9.012V20.7l3.133 1.796V13.4h3.328v3.381l3.131-1.793V3.293L13.664 1.5z" />
|
|
29
|
+
<path d="M13.664 22.5L22 17.732V6.276l-3.133-1.793v11.456l-5.203 2.979V22.5z" />
|
|
30
|
+
</g>
|
|
31
|
+
</svg>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
);
|
package/svg-react/index.ts
CHANGED
|
@@ -1,3 +1,159 @@
|
|
|
1
|
+
export { IconLoading24 } from './loading-24';
|
|
2
|
+
export { IconLoading16 } from './loading-16';
|
|
3
|
+
export { IconRunning24 } from './running-24';
|
|
4
|
+
export { IconRunning16 } from './running-16';
|
|
5
|
+
export { IconApple24 } from './apple-24';
|
|
6
|
+
export { IconApple16 } from './apple-16';
|
|
7
|
+
export { IconAppleColor24 } from './apple-color-24';
|
|
8
|
+
export { IconAppleColor16 } from './apple-color-16';
|
|
9
|
+
export { IconAlibaba24 } from './alibaba-24';
|
|
10
|
+
export { IconAlibaba16 } from './alibaba-16';
|
|
11
|
+
export { IconAlibabaColor24 } from './alibaba-color-24';
|
|
12
|
+
export { IconAlibabaColor16 } from './alibaba-color-16';
|
|
13
|
+
export { IconAmazonEks24 } from './amazon-eks-24';
|
|
14
|
+
export { IconAmazonEks16 } from './amazon-eks-16';
|
|
15
|
+
export { IconAmazonEksColor24 } from './amazon-eks-color-24';
|
|
16
|
+
export { IconAmazonEksColor16 } from './amazon-eks-color-16';
|
|
17
|
+
export { IconAws24 } from './aws-24';
|
|
18
|
+
export { IconAws16 } from './aws-16';
|
|
19
|
+
export { IconAwsColor24 } from './aws-color-24';
|
|
20
|
+
export { IconAwsColor16 } from './aws-color-16';
|
|
21
|
+
export { IconAwsEc224 } from './aws-ec2-24';
|
|
22
|
+
export { IconAwsEc216 } from './aws-ec2-16';
|
|
23
|
+
export { IconAwsEc2Color24 } from './aws-ec2-color-24';
|
|
24
|
+
export { IconAwsEc2Color16 } from './aws-ec2-color-16';
|
|
25
|
+
export { IconAuth024 } from './auth0-24';
|
|
26
|
+
export { IconAuth016 } from './auth0-16';
|
|
27
|
+
export { IconAuth0Color24 } from './auth0-color-24';
|
|
28
|
+
export { IconAuth0Color16 } from './auth0-color-16';
|
|
29
|
+
export { IconAzure24 } from './azure-24';
|
|
30
|
+
export { IconAzure16 } from './azure-16';
|
|
31
|
+
export { IconAzureColor24 } from './azure-color-24';
|
|
32
|
+
export { IconAzureColor16 } from './azure-color-16';
|
|
33
|
+
export { IconAzureDevops24 } from './azure-devops-24';
|
|
34
|
+
export { IconAzureDevops16 } from './azure-devops-16';
|
|
35
|
+
export { IconAzureDevopsColor24 } from './azure-devops-color-24';
|
|
36
|
+
export { IconAzureDevopsColor16 } from './azure-devops-color-16';
|
|
37
|
+
export { IconBitbucket24 } from './bitbucket-24';
|
|
38
|
+
export { IconBitbucket16 } from './bitbucket-16';
|
|
39
|
+
export { IconBitbucketColor24 } from './bitbucket-color-24';
|
|
40
|
+
export { IconBitbucketColor16 } from './bitbucket-color-16';
|
|
41
|
+
export { IconCodepen24 } from './codepen-24';
|
|
42
|
+
export { IconCodepen16 } from './codepen-16';
|
|
43
|
+
export { IconCodepenColor24 } from './codepen-color-24';
|
|
44
|
+
export { IconCodepenColor16 } from './codepen-color-16';
|
|
45
|
+
export { IconDocker24 } from './docker-24';
|
|
46
|
+
export { IconDocker16 } from './docker-16';
|
|
47
|
+
export { IconDockerColor24 } from './docker-color-24';
|
|
48
|
+
export { IconDockerColor16 } from './docker-color-16';
|
|
49
|
+
export { IconF524 } from './f5-24';
|
|
50
|
+
export { IconF516 } from './f5-16';
|
|
51
|
+
export { IconF5Color24 } from './f5-color-24';
|
|
52
|
+
export { IconF5Color16 } from './f5-color-16';
|
|
53
|
+
export { IconFacebook24 } from './facebook-24';
|
|
54
|
+
export { IconFacebook16 } from './facebook-16';
|
|
55
|
+
export { IconFacebookColor24 } from './facebook-color-24';
|
|
56
|
+
export { IconFacebookColor16 } from './facebook-color-16';
|
|
57
|
+
export { IconGcp24 } from './gcp-24';
|
|
58
|
+
export { IconGcp16 } from './gcp-16';
|
|
59
|
+
export { IconGcpColor24 } from './gcp-color-24';
|
|
60
|
+
export { IconGcpColor16 } from './gcp-color-16';
|
|
61
|
+
export { IconGitlab24 } from './gitlab-24';
|
|
62
|
+
export { IconGitlab16 } from './gitlab-16';
|
|
63
|
+
export { IconGitlabColor24 } from './gitlab-color-24';
|
|
64
|
+
export { IconGitlabColor16 } from './gitlab-color-16';
|
|
65
|
+
export { IconGithub24 } from './github-24';
|
|
66
|
+
export { IconGithub16 } from './github-16';
|
|
67
|
+
export { IconGithubColor24 } from './github-color-24';
|
|
68
|
+
export { IconGithubColor16 } from './github-color-16';
|
|
69
|
+
export { IconGoogle24 } from './google-24';
|
|
70
|
+
export { IconGoogle16 } from './google-16';
|
|
71
|
+
export { IconGoogleColor24 } from './google-color-24';
|
|
72
|
+
export { IconGoogleColor16 } from './google-color-16';
|
|
73
|
+
export { IconKubernetes24 } from './kubernetes-24';
|
|
74
|
+
export { IconKubernetes16 } from './kubernetes-16';
|
|
75
|
+
export { IconKubernetesColor24 } from './kubernetes-color-24';
|
|
76
|
+
export { IconKubernetesColor16 } from './kubernetes-color-16';
|
|
77
|
+
export { IconLinkedin24 } from './linkedin-24';
|
|
78
|
+
export { IconLinkedin16 } from './linkedin-16';
|
|
79
|
+
export { IconLinkedinColor24 } from './linkedin-color-24';
|
|
80
|
+
export { IconLinkedinColor16 } from './linkedin-color-16';
|
|
81
|
+
export { IconMicrosoft24 } from './microsoft-24';
|
|
82
|
+
export { IconMicrosoft16 } from './microsoft-16';
|
|
83
|
+
export { IconMicrosoftColor24 } from './microsoft-color-24';
|
|
84
|
+
export { IconMicrosoftColor16 } from './microsoft-color-16';
|
|
85
|
+
export { IconOkta24 } from './okta-24';
|
|
86
|
+
export { IconOkta16 } from './okta-16';
|
|
87
|
+
export { IconOktaColor24 } from './okta-color-24';
|
|
88
|
+
export { IconOktaColor16 } from './okta-color-16';
|
|
89
|
+
export { IconOracle24 } from './oracle-24';
|
|
90
|
+
export { IconOracle16 } from './oracle-16';
|
|
91
|
+
export { IconOracleColor24 } from './oracle-color-24';
|
|
92
|
+
export { IconOracleColor16 } from './oracle-color-16';
|
|
93
|
+
export { IconPack24 } from './pack-24';
|
|
94
|
+
export { IconPack16 } from './pack-16';
|
|
95
|
+
export { IconPackColor24 } from './pack-color-24';
|
|
96
|
+
export { IconPackColor16 } from './pack-color-16';
|
|
97
|
+
export { IconSlack24 } from './slack-24';
|
|
98
|
+
export { IconSlack16 } from './slack-16';
|
|
99
|
+
export { IconSlackColor24 } from './slack-color-24';
|
|
100
|
+
export { IconSlackColor16 } from './slack-color-16';
|
|
101
|
+
export { IconTwitch24 } from './twitch-24';
|
|
102
|
+
export { IconTwitch16 } from './twitch-16';
|
|
103
|
+
export { IconTwitchColor24 } from './twitch-color-24';
|
|
104
|
+
export { IconTwitchColor16 } from './twitch-color-16';
|
|
105
|
+
export { IconTwitter24 } from './twitter-24';
|
|
106
|
+
export { IconTwitter16 } from './twitter-16';
|
|
107
|
+
export { IconTwitterColor24 } from './twitter-color-24';
|
|
108
|
+
export { IconTwitterColor16 } from './twitter-color-16';
|
|
109
|
+
export { IconVmware24 } from './vmware-24';
|
|
110
|
+
export { IconVmware16 } from './vmware-16';
|
|
111
|
+
export { IconVmwareColor24 } from './vmware-color-24';
|
|
112
|
+
export { IconVmwareColor16 } from './vmware-color-16';
|
|
113
|
+
export { IconYoutube24 } from './youtube-24';
|
|
114
|
+
export { IconYoutube16 } from './youtube-16';
|
|
115
|
+
export { IconYoutubeColor24 } from './youtube-color-24';
|
|
116
|
+
export { IconYoutubeColor16 } from './youtube-color-16';
|
|
117
|
+
export { IconBoundary24 } from './boundary-24';
|
|
118
|
+
export { IconBoundary16 } from './boundary-16';
|
|
119
|
+
export { IconBoundaryColor24 } from './boundary-color-24';
|
|
120
|
+
export { IconBoundaryColor16 } from './boundary-color-16';
|
|
121
|
+
export { IconConsul24 } from './consul-24';
|
|
122
|
+
export { IconConsul16 } from './consul-16';
|
|
123
|
+
export { IconConsulColor24 } from './consul-color-24';
|
|
124
|
+
export { IconConsulColor16 } from './consul-color-16';
|
|
125
|
+
export { IconNomad24 } from './nomad-24';
|
|
126
|
+
export { IconNomad16 } from './nomad-16';
|
|
127
|
+
export { IconNomadColor24 } from './nomad-color-24';
|
|
128
|
+
export { IconNomadColor16 } from './nomad-color-16';
|
|
129
|
+
export { IconPacker24 } from './packer-24';
|
|
130
|
+
export { IconPacker16 } from './packer-16';
|
|
131
|
+
export { IconPackerColor24 } from './packer-color-24';
|
|
132
|
+
export { IconPackerColor16 } from './packer-color-16';
|
|
133
|
+
export { IconTerraform24 } from './terraform-24';
|
|
134
|
+
export { IconTerraform16 } from './terraform-16';
|
|
135
|
+
export { IconTerraformColor24 } from './terraform-color-24';
|
|
136
|
+
export { IconTerraformColor16 } from './terraform-color-16';
|
|
137
|
+
export { IconVagrant24 } from './vagrant-24';
|
|
138
|
+
export { IconVagrant16 } from './vagrant-16';
|
|
139
|
+
export { IconVagrantColor24 } from './vagrant-color-24';
|
|
140
|
+
export { IconVagrantColor16 } from './vagrant-color-16';
|
|
141
|
+
export { IconVault24 } from './vault-24';
|
|
142
|
+
export { IconVault16 } from './vault-16';
|
|
143
|
+
export { IconVaultColor24 } from './vault-color-24';
|
|
144
|
+
export { IconVaultColor16 } from './vault-color-16';
|
|
145
|
+
export { IconWaypoint24 } from './waypoint-24';
|
|
146
|
+
export { IconWaypoint16 } from './waypoint-16';
|
|
147
|
+
export { IconWaypointColor24 } from './waypoint-color-24';
|
|
148
|
+
export { IconWaypointColor16 } from './waypoint-color-16';
|
|
149
|
+
export { IconHashicorp24 } from './hashicorp-24';
|
|
150
|
+
export { IconHashicorp16 } from './hashicorp-16';
|
|
151
|
+
export { IconHashicorpColor24 } from './hashicorp-color-24';
|
|
152
|
+
export { IconHashicorpColor16 } from './hashicorp-color-16';
|
|
153
|
+
export { IconHcp24 } from './hcp-24';
|
|
154
|
+
export { IconHcp16 } from './hcp-16';
|
|
155
|
+
export { IconHcpColor24 } from './hcp-color-24';
|
|
156
|
+
export { IconHcpColor16 } from './hcp-color-16';
|
|
1
157
|
export { IconActivity24 } from './activity-24';
|
|
2
158
|
export { IconActivity16 } from './activity-16';
|
|
3
159
|
export { IconAlertCircle24 } from './alert-circle-24';
|
|
@@ -94,6 +250,8 @@ export { IconBug24 } from './bug-24';
|
|
|
94
250
|
export { IconBug16 } from './bug-16';
|
|
95
251
|
export { IconBuild24 } from './build-24';
|
|
96
252
|
export { IconBuild16 } from './build-16';
|
|
253
|
+
export { IconBulb24 } from './bulb-24';
|
|
254
|
+
export { IconBulb16 } from './bulb-16';
|
|
97
255
|
export { IconCalendar24 } from './calendar-24';
|
|
98
256
|
export { IconCalendar16 } from './calendar-16';
|
|
99
257
|
export { IconCamera24 } from './camera-24';
|
|
@@ -252,6 +410,8 @@ export { IconDuplicate24 } from './duplicate-24';
|
|
|
252
410
|
export { IconDuplicate16 } from './duplicate-16';
|
|
253
411
|
export { IconEdit24 } from './edit-24';
|
|
254
412
|
export { IconEdit16 } from './edit-16';
|
|
413
|
+
export { IconEnterprise24 } from './enterprise-24';
|
|
414
|
+
export { IconEnterprise16 } from './enterprise-16';
|
|
255
415
|
export { IconEntryPoint24 } from './entry-point-24';
|
|
256
416
|
export { IconEntryPoint16 } from './entry-point-16';
|
|
257
417
|
export { IconExitPoint24 } from './exit-point-24';
|
|
@@ -742,6 +902,8 @@ export { IconVolumeX24 } from './volume-x-24';
|
|
|
742
902
|
export { IconVolumeX16 } from './volume-x-16';
|
|
743
903
|
export { IconWall24 } from './wall-24';
|
|
744
904
|
export { IconWall16 } from './wall-16';
|
|
905
|
+
export { IconWand24 } from './wand-24';
|
|
906
|
+
export { IconWand16 } from './wand-16';
|
|
745
907
|
export { IconWatch24 } from './watch-24';
|
|
746
908
|
export { IconWatch16 } from './watch-16';
|
|
747
909
|
export { IconWebhook24 } from './webhook-24';
|
|
@@ -778,151 +940,3 @@ export { IconZoomIn24 } from './zoom-in-24';
|
|
|
778
940
|
export { IconZoomIn16 } from './zoom-in-16';
|
|
779
941
|
export { IconZoomOut24 } from './zoom-out-24';
|
|
780
942
|
export { IconZoomOut16 } from './zoom-out-16';
|
|
781
|
-
export { IconApple24 } from './apple-24';
|
|
782
|
-
export { IconApple16 } from './apple-16';
|
|
783
|
-
export { IconAppleColor24 } from './apple-color-24';
|
|
784
|
-
export { IconAppleColor16 } from './apple-color-16';
|
|
785
|
-
export { IconAlibaba24 } from './alibaba-24';
|
|
786
|
-
export { IconAlibaba16 } from './alibaba-16';
|
|
787
|
-
export { IconAlibabaColor24 } from './alibaba-color-24';
|
|
788
|
-
export { IconAlibabaColor16 } from './alibaba-color-16';
|
|
789
|
-
export { IconAmazonEks24 } from './amazon-eks-24';
|
|
790
|
-
export { IconAmazonEks16 } from './amazon-eks-16';
|
|
791
|
-
export { IconAmazonEksColor24 } from './amazon-eks-color-24';
|
|
792
|
-
export { IconAmazonEksColor16 } from './amazon-eks-color-16';
|
|
793
|
-
export { IconAws24 } from './aws-24';
|
|
794
|
-
export { IconAws16 } from './aws-16';
|
|
795
|
-
export { IconAwsColor24 } from './aws-color-24';
|
|
796
|
-
export { IconAwsColor16 } from './aws-color-16';
|
|
797
|
-
export { IconAwsEc224 } from './aws-ec2-24';
|
|
798
|
-
export { IconAwsEc216 } from './aws-ec2-16';
|
|
799
|
-
export { IconAwsEc2Color24 } from './aws-ec2-color-24';
|
|
800
|
-
export { IconAwsEc2Color16 } from './aws-ec2-color-16';
|
|
801
|
-
export { IconAuth024 } from './auth0-24';
|
|
802
|
-
export { IconAuth016 } from './auth0-16';
|
|
803
|
-
export { IconAuth0Color24 } from './auth0-color-24';
|
|
804
|
-
export { IconAuth0Color16 } from './auth0-color-16';
|
|
805
|
-
export { IconAzure24 } from './azure-24';
|
|
806
|
-
export { IconAzure16 } from './azure-16';
|
|
807
|
-
export { IconAzureColor24 } from './azure-color-24';
|
|
808
|
-
export { IconAzureColor16 } from './azure-color-16';
|
|
809
|
-
export { IconAzureDevops24 } from './azure-devops-24';
|
|
810
|
-
export { IconAzureDevops16 } from './azure-devops-16';
|
|
811
|
-
export { IconAzureDevopsColor24 } from './azure-devops-color-24';
|
|
812
|
-
export { IconAzureDevopsColor16 } from './azure-devops-color-16';
|
|
813
|
-
export { IconBitbucket24 } from './bitbucket-24';
|
|
814
|
-
export { IconBitbucket16 } from './bitbucket-16';
|
|
815
|
-
export { IconBitbucketColor24 } from './bitbucket-color-24';
|
|
816
|
-
export { IconBitbucketColor16 } from './bitbucket-color-16';
|
|
817
|
-
export { IconCodepenColor24 } from './codepen-color-24';
|
|
818
|
-
export { IconCodepenColor16 } from './codepen-color-16';
|
|
819
|
-
export { IconCodepen24 } from './codepen-24';
|
|
820
|
-
export { IconCodepen16 } from './codepen-16';
|
|
821
|
-
export { IconDocker24 } from './docker-24';
|
|
822
|
-
export { IconDocker16 } from './docker-16';
|
|
823
|
-
export { IconDockerColor24 } from './docker-color-24';
|
|
824
|
-
export { IconDockerColor16 } from './docker-color-16';
|
|
825
|
-
export { IconF524 } from './f5-24';
|
|
826
|
-
export { IconF516 } from './f5-16';
|
|
827
|
-
export { IconF5Color24 } from './f5-color-24';
|
|
828
|
-
export { IconF5Color16 } from './f5-color-16';
|
|
829
|
-
export { IconFacebook24 } from './facebook-24';
|
|
830
|
-
export { IconFacebook16 } from './facebook-16';
|
|
831
|
-
export { IconFacebookColor24 } from './facebook-color-24';
|
|
832
|
-
export { IconFacebookColor16 } from './facebook-color-16';
|
|
833
|
-
export { IconGcp24 } from './gcp-24';
|
|
834
|
-
export { IconGcp16 } from './gcp-16';
|
|
835
|
-
export { IconGcpColor24 } from './gcp-color-24';
|
|
836
|
-
export { IconGcpColor16 } from './gcp-color-16';
|
|
837
|
-
export { IconGitlab24 } from './gitlab-24';
|
|
838
|
-
export { IconGitlab16 } from './gitlab-16';
|
|
839
|
-
export { IconGitlabColor24 } from './gitlab-color-24';
|
|
840
|
-
export { IconGitlabColor16 } from './gitlab-color-16';
|
|
841
|
-
export { IconGithub24 } from './github-24';
|
|
842
|
-
export { IconGithub16 } from './github-16';
|
|
843
|
-
export { IconGithubColor24 } from './github-color-24';
|
|
844
|
-
export { IconGithubColor16 } from './github-color-16';
|
|
845
|
-
export { IconGoogle24 } from './google-24';
|
|
846
|
-
export { IconGoogle16 } from './google-16';
|
|
847
|
-
export { IconGoogleColor24 } from './google-color-24';
|
|
848
|
-
export { IconGoogleColor16 } from './google-color-16';
|
|
849
|
-
export { IconKubernetes24 } from './kubernetes-24';
|
|
850
|
-
export { IconKubernetes16 } from './kubernetes-16';
|
|
851
|
-
export { IconKubernetesColor24 } from './kubernetes-color-24';
|
|
852
|
-
export { IconKubernetesColor16 } from './kubernetes-color-16';
|
|
853
|
-
export { IconLinkedin24 } from './linkedin-24';
|
|
854
|
-
export { IconLinkedin16 } from './linkedin-16';
|
|
855
|
-
export { IconLinkedinColor24 } from './linkedin-color-24';
|
|
856
|
-
export { IconLinkedinColor16 } from './linkedin-color-16';
|
|
857
|
-
export { IconMicrosoft24 } from './microsoft-24';
|
|
858
|
-
export { IconMicrosoft16 } from './microsoft-16';
|
|
859
|
-
export { IconMicrosoftColor24 } from './microsoft-color-24';
|
|
860
|
-
export { IconMicrosoftColor16 } from './microsoft-color-16';
|
|
861
|
-
export { IconOkta24 } from './okta-24';
|
|
862
|
-
export { IconOkta16 } from './okta-16';
|
|
863
|
-
export { IconOktaColor24 } from './okta-color-24';
|
|
864
|
-
export { IconOktaColor16 } from './okta-color-16';
|
|
865
|
-
export { IconOracle24 } from './oracle-24';
|
|
866
|
-
export { IconOracle16 } from './oracle-16';
|
|
867
|
-
export { IconOracleColor24 } from './oracle-color-24';
|
|
868
|
-
export { IconOracleColor16 } from './oracle-color-16';
|
|
869
|
-
export { IconPack24 } from './pack-24';
|
|
870
|
-
export { IconPack16 } from './pack-16';
|
|
871
|
-
export { IconPackColor24 } from './pack-color-24';
|
|
872
|
-
export { IconPackColor16 } from './pack-color-16';
|
|
873
|
-
export { IconSlack24 } from './slack-24';
|
|
874
|
-
export { IconSlack16 } from './slack-16';
|
|
875
|
-
export { IconSlackColor24 } from './slack-color-24';
|
|
876
|
-
export { IconSlackColor16 } from './slack-color-16';
|
|
877
|
-
export { IconTwitch24 } from './twitch-24';
|
|
878
|
-
export { IconTwitch16 } from './twitch-16';
|
|
879
|
-
export { IconTwitchColor24 } from './twitch-color-24';
|
|
880
|
-
export { IconTwitchColor16 } from './twitch-color-16';
|
|
881
|
-
export { IconTwitter24 } from './twitter-24';
|
|
882
|
-
export { IconTwitter16 } from './twitter-16';
|
|
883
|
-
export { IconTwitterColor24 } from './twitter-color-24';
|
|
884
|
-
export { IconTwitterColor16 } from './twitter-color-16';
|
|
885
|
-
export { IconVmware24 } from './vmware-24';
|
|
886
|
-
export { IconVmware16 } from './vmware-16';
|
|
887
|
-
export { IconVmwareColor24 } from './vmware-color-24';
|
|
888
|
-
export { IconVmwareColor16 } from './vmware-color-16';
|
|
889
|
-
export { IconYoutube24 } from './youtube-24';
|
|
890
|
-
export { IconYoutube16 } from './youtube-16';
|
|
891
|
-
export { IconYoutubeColor24 } from './youtube-color-24';
|
|
892
|
-
export { IconYoutubeColor16 } from './youtube-color-16';
|
|
893
|
-
export { IconBoundary24 } from './boundary-24';
|
|
894
|
-
export { IconBoundary16 } from './boundary-16';
|
|
895
|
-
export { IconBoundaryColor24 } from './boundary-color-24';
|
|
896
|
-
export { IconBoundaryColor16 } from './boundary-color-16';
|
|
897
|
-
export { IconConsul24 } from './consul-24';
|
|
898
|
-
export { IconConsul16 } from './consul-16';
|
|
899
|
-
export { IconConsulColor24 } from './consul-color-24';
|
|
900
|
-
export { IconConsulColor16 } from './consul-color-16';
|
|
901
|
-
export { IconNomad24 } from './nomad-24';
|
|
902
|
-
export { IconNomad16 } from './nomad-16';
|
|
903
|
-
export { IconNomadColor24 } from './nomad-color-24';
|
|
904
|
-
export { IconNomadColor16 } from './nomad-color-16';
|
|
905
|
-
export { IconPacker24 } from './packer-24';
|
|
906
|
-
export { IconPacker16 } from './packer-16';
|
|
907
|
-
export { IconPackerColor24 } from './packer-color-24';
|
|
908
|
-
export { IconPackerColor16 } from './packer-color-16';
|
|
909
|
-
export { IconTerraform24 } from './terraform-24';
|
|
910
|
-
export { IconTerraform16 } from './terraform-16';
|
|
911
|
-
export { IconTerraformColor24 } from './terraform-color-24';
|
|
912
|
-
export { IconTerraformColor16 } from './terraform-color-16';
|
|
913
|
-
export { IconVagrant24 } from './vagrant-24';
|
|
914
|
-
export { IconVagrant16 } from './vagrant-16';
|
|
915
|
-
export { IconVagrantColor24 } from './vagrant-color-24';
|
|
916
|
-
export { IconVagrantColor16 } from './vagrant-color-16';
|
|
917
|
-
export { IconVault24 } from './vault-24';
|
|
918
|
-
export { IconVault16 } from './vault-16';
|
|
919
|
-
export { IconVaultColor24 } from './vault-color-24';
|
|
920
|
-
export { IconVaultColor16 } from './vault-color-16';
|
|
921
|
-
export { IconWaypoint24 } from './waypoint-24';
|
|
922
|
-
export { IconWaypoint16 } from './waypoint-16';
|
|
923
|
-
export { IconWaypointColor24 } from './waypoint-color-24';
|
|
924
|
-
export { IconWaypointColor16 } from './waypoint-color-16';
|
|
925
|
-
export { IconHashicorp24 } from './hashicorp-24';
|
|
926
|
-
export { IconHashicorp16 } from './hashicorp-16';
|
|
927
|
-
export { IconHashicorpColor24 } from './hashicorp-color-24';
|
|
928
|
-
export { IconHashicorpColor16 } from './hashicorp-color-16';
|
package/svg-react/layers-16.tsx
CHANGED
|
@@ -29,8 +29,8 @@ export const IconLayers16 = forwardRef<SVGSVGElement, IconProps>(
|
|
|
29
29
|
d="M7.656.084a.75.75 0 01.689 0l7.25 3.75a.75.75 0 010 1.332l-7.25 3.75a.75.75 0 01-.69 0l-7.25-3.75a.75.75 0 010-1.332l7.25-3.75zM2.383 4.5L8 7.405 13.617 4.5 8 1.594 2.383 4.5z"
|
|
30
30
|
clipRule="evenodd"
|
|
31
31
|
/>
|
|
32
|
-
<path d="M.093 10.887a.75.75 0 011.02-.294L8 14.393l6.
|
|
33
|
-
<path d="M1.112 7.093a.75.75 0
|
|
32
|
+
<path d="M.093 10.887a.75.75 0 011.02-.294L8 14.393l6.888-3.8a.75.75 0 11.724 1.313l-7.25 4a.75.75 0 01-.724 0l-7.25-4a.75.75 0 01-.295-1.019z" />
|
|
33
|
+
<path d="M1.112 7.093a.75.75 0 00-.724 1.313l7.25 4a.75.75 0 00.724 0l7.25-4a.75.75 0 00-.724-1.313L8 10.893l-6.888-3.8z" />
|
|
34
34
|
</g>
|
|
35
35
|
</svg>
|
|
36
36
|
);
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconLoading16 = 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
|
+
className="hds-flight-icon--animation-loading"
|
|
21
|
+
aria-hidden={!title}
|
|
22
|
+
ref={svgRef}
|
|
23
|
+
aria-labelledby={titleId}
|
|
24
|
+
{...props}
|
|
25
|
+
>
|
|
26
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
27
|
+
<g fill={color} fillRule="evenodd" clipRule="evenodd">
|
|
28
|
+
<path
|
|
29
|
+
d="M8 1.5a6.5 6.5 0 100 13 6.5 6.5 0 000-13zM0 8a8 8 0 1116 0A8 8 0 010 8z"
|
|
30
|
+
opacity={0.2}
|
|
31
|
+
/>
|
|
32
|
+
<path d="M7.25.75A.75.75 0 018 0a8 8 0 018 8 .75.75 0 01-1.5 0A6.5 6.5 0 008 1.5a.75.75 0 01-.75-.75z" />
|
|
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 IconLoading24 = 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
|
+
className="hds-flight-icon--animation-loading"
|
|
21
|
+
aria-hidden={!title}
|
|
22
|
+
ref={svgRef}
|
|
23
|
+
aria-labelledby={titleId}
|
|
24
|
+
{...props}
|
|
25
|
+
>
|
|
26
|
+
{title ? <title id={titleId}>{title}</title> : null}
|
|
27
|
+
<g fill={color} fillRule="evenodd" clipRule="evenodd">
|
|
28
|
+
<path
|
|
29
|
+
d="M12 2.5a9.5 9.5 0 100 19 9.5 9.5 0 000-19zM1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12z"
|
|
30
|
+
opacity={0.2}
|
|
31
|
+
/>
|
|
32
|
+
<path d="M11.25 1.75A.75.75 0 0112 1c6.075 0 11 4.925 11 11a.75.75 0 01-1.5 0A9.5 9.5 0 0012 2.5a.75.75 0 01-.75-.75z" />
|
|
33
|
+
</g>
|
|
34
|
+
</svg>
|
|
35
|
+
);
|
|
36
|
+
}
|
|
37
|
+
);
|
|
@@ -26,7 +26,7 @@ export const IconMessageCircle24 = forwardRef<SVGSVGElement, IconProps>(
|
|
|
26
26
|
<path
|
|
27
27
|
fill={color}
|
|
28
28
|
fillRule="evenodd"
|
|
29
|
-
d="M12.343 3.5a8.157 8.157 0 11-3.765 15.396 1.439 1.439 0 00-.
|
|
29
|
+
d="M12.343 3.5a8.157 8.157 0 11-3.765 15.396 1.439 1.439 0 00-.688-.139c-.2.003-.416.033-.628.074-.426.082-.922.227-1.417.391-.566.188-1.157.412-1.684.621.204-.51.421-1.081.606-1.63.169-.505.318-1.012.403-1.448.042-.217.072-.438.075-.643a1.466 1.466 0 00-.141-.7A8.157 8.157 0 0112.343 3.5zM3.7 21.655a37.13 37.13 0 012.618-1.01c.47-.156.896-.277 1.228-.341a2.28 2.28 0 01.398-.047A9.657 9.657 0 0022 11.657 9.657 9.657 0 0012.343 2a9.657 9.657 0 00-8.598 14.06v.038a2.32 2.32 0 01-.048.382c-.066.34-.191.776-.352 1.255a36.658 36.658 0 01-1.21 3.052l-.05.114-.014.03-.004.009a.75.75 0 00.982.998l.648-.282.003-.001zm.043-5.621v.002-.002z"
|
|
30
30
|
clipRule="evenodd"
|
|
31
31
|
/>
|
|
32
32
|
</svg>
|
|
@@ -26,7 +26,7 @@ export const IconNavigation16 = forwardRef<SVGSVGElement, IconProps>(
|
|
|
26
26
|
<path
|
|
27
27
|
fill={color}
|
|
28
28
|
fillRule="evenodd"
|
|
29
|
-
d="M14.78 1.22a.75.75 0 01.148.851l-5.921 12.5a.75.75 0 01-1.406-.14L6.395 9.606 1.568 8.4a.75.75 0 01-.14-1.406l12.
|
|
29
|
+
d="M14.78 1.22a.75.75 0 01.148.851l-5.921 12.5a.75.75 0 01-1.406-.14L6.395 9.606 1.568 8.4a.75.75 0 01-.14-1.406l12.5-5.92a.75.75 0 01.852.147zM3.965 7.452l3.23.807a.75.75 0 01.546.546l.807 3.23 4.125-8.708-8.708 4.125z"
|
|
30
30
|
clipRule="evenodd"
|
|
31
31
|
/>
|
|
32
32
|
</svg>
|
|
@@ -26,7 +26,7 @@ export const IconNavigation24 = forwardRef<SVGSVGElement, IconProps>(
|
|
|
26
26
|
<path
|
|
27
27
|
fill={color}
|
|
28
28
|
fillRule="evenodd"
|
|
29
|
-
d="M21.78 2.22a.75.75 0 01.148.851l-8.763 18.5a.75.75 0 01-1.406-.14L9.921 14.08l-7.353-1.838a.75.75 0 01-.14-1.
|
|
29
|
+
d="M21.78 2.22a.75.75 0 01.148.851l-8.763 18.5a.75.75 0 01-1.406-.14L9.921 14.08l-7.353-1.838a.75.75 0 01-.14-1.406l18.5-8.763a.75.75 0 01.852.148zM4.965 11.294l5.756 1.439a.75.75 0 01.546.546l1.44 5.756 6.966-14.708-14.708 6.967z"
|
|
30
30
|
clipRule="evenodd"
|
|
31
31
|
/>
|
|
32
32
|
</svg>
|
|
@@ -26,7 +26,7 @@ export const IconNavigationAlt16 = forwardRef<SVGSVGElement, IconProps>(
|
|
|
26
26
|
<path
|
|
27
27
|
fill={color}
|
|
28
28
|
fillRule="evenodd"
|
|
29
|
-
d="M8 1a.75.75 0 01.
|
|
29
|
+
d="M8 1a.75.75 0 01.691.46l5.25 12.5a.75.75 0 01-1.027.96L8 12.457 3.086 14.92a.75.75 0 01-1.027-.96l5.25-12.5A.75.75 0 018 1zM4.227 12.67l3.437-1.722a.75.75 0 01.672 0l3.437 1.723L8 3.687 4.227 12.67z"
|
|
30
30
|
clipRule="evenodd"
|
|
31
31
|
/>
|
|
32
32
|
</svg>
|
|
@@ -24,7 +24,7 @@ export const IconNomadColor16 = forwardRef<SVGSVGElement, IconProps>(
|
|
|
24
24
|
>
|
|
25
25
|
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
26
|
<path
|
|
27
|
-
fill="#
|
|
27
|
+
fill="#06D092"
|
|
28
28
|
d="M8 0L1 4v8l7 4 7-4V4L8 0zm3.119 8.797L9.254 9.863 7.001 8.65v2.549l-2.118 1.33v-5.33l1.68-1.018 2.332 1.216V4.794l2.23-1.322-.006 5.325z"
|
|
29
29
|
/>
|
|
30
30
|
</svg>
|
|
@@ -24,7 +24,7 @@ export const IconNomadColor24 = forwardRef<SVGSVGElement, IconProps>(
|
|
|
24
24
|
>
|
|
25
25
|
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
26
|
<path
|
|
27
|
-
fill="#
|
|
27
|
+
fill="#06D092"
|
|
28
28
|
d="M12 .5L2 6.25v11.5l10 5.75 10-5.75V6.25L12 .5zm4.456 12.646l-2.664 1.533-3.22-1.745v3.664l-3.026 1.911v-7.661l2.401-1.463 3.331 1.748v-3.74l3.185-1.902-.008 7.655z"
|
|
29
29
|
/>
|
|
30
30
|
</svg>
|