@hashicorp/flight-icons 2.18.0 → 2.20.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 +23 -0
- package/catalog.json +253 -1
- package/package.json +1 -1
- package/svg/google-docs-16.svg +1 -0
- package/svg/google-docs-24.svg +1 -0
- package/svg/google-docs-color-16.svg +1 -0
- package/svg/google-docs-color-24.svg +1 -0
- package/svg/google-drive-16.svg +1 -0
- package/svg/google-drive-24.svg +1 -0
- package/svg/google-drive-color-16.svg +1 -0
- package/svg/google-drive-color-24.svg +1 -0
- package/svg/google-forms-16.svg +1 -0
- package/svg/google-forms-24.svg +1 -0
- package/svg/google-forms-color-16.svg +1 -0
- package/svg/google-forms-color-24.svg +1 -0
- package/svg/google-sheets-16.svg +1 -0
- package/svg/google-sheets-24.svg +1 -0
- package/svg/google-sheets-color-16.svg +1 -0
- package/svg/google-sheets-color-24.svg +1 -0
- package/svg/google-slides-16.svg +1 -0
- package/svg/google-slides-24.svg +1 -0
- package/svg/google-slides-color-16.svg +1 -0
- package/svg/google-slides-color-24.svg +1 -0
- package/svg/index.js +1 -1
- package/svg/linkedin-16.svg +1 -1
- package/svg/linkedin-color-16.svg +1 -1
- package/svg/linode-color-16.svg +1 -1
- package/svg/linode-color-24.svg +1 -1
- package/svg/linux-color-16.svg +1 -1
- package/svg/linux-color-24.svg +1 -1
- package/svg/loading-static-16.svg +1 -0
- package/svg/loading-static-24.svg +1 -0
- package/svg/running-static-16.svg +1 -0
- package/svg/running-static-24.svg +1 -0
- package/svg/vault-secrets-16.svg +1 -0
- package/svg/vault-secrets-24.svg +1 -0
- package/svg/vault-secrets-color-16.svg +1 -0
- package/svg/vault-secrets-color-24.svg +1 -0
- package/svg-react/google-docs-16.tsx +36 -0
- package/svg-react/google-docs-24.tsx +36 -0
- package/svg-react/google-docs-color-16.tsx +38 -0
- package/svg-react/google-docs-color-24.tsx +38 -0
- package/svg-react/google-drive-16.tsx +34 -0
- package/svg-react/google-drive-24.tsx +34 -0
- package/svg-react/google-drive-color-16.tsx +53 -0
- package/svg-react/google-drive-color-24.tsx +53 -0
- package/svg-react/google-forms-16.tsx +35 -0
- package/svg-react/google-forms-24.tsx +35 -0
- package/svg-react/google-forms-color-16.tsx +37 -0
- package/svg-react/google-forms-color-24.tsx +37 -0
- package/svg-react/google-sheets-16.tsx +37 -0
- package/svg-react/google-sheets-24.tsx +37 -0
- package/svg-react/google-sheets-color-16.tsx +38 -0
- package/svg-react/google-sheets-color-24.tsx +38 -0
- package/svg-react/google-slides-16.tsx +37 -0
- package/svg-react/google-slides-24.tsx +37 -0
- package/svg-react/google-slides-color-16.tsx +40 -0
- package/svg-react/google-slides-color-24.tsx +40 -0
- package/svg-react/index.ts +28 -0
- package/svg-react/linkedin-16.tsx +1 -1
- package/svg-react/linkedin-color-16.tsx +1 -1
- package/svg-react/linode-color-16.tsx +2 -2
- package/svg-react/linode-color-24.tsx +4 -4
- package/svg-react/linux-color-16.tsx +5 -5
- package/svg-react/linux-color-24.tsx +1 -1
- package/svg-react/loading-static-16.tsx +36 -0
- package/svg-react/loading-static-24.tsx +36 -0
- package/svg-react/running-static-16.tsx +36 -0
- package/svg-react/running-static-24.tsx +36 -0
- package/svg-react/vault-secrets-16.tsx +38 -0
- package/svg-react/vault-secrets-24.tsx +38 -0
- package/svg-react/vault-secrets-color-16.tsx +39 -0
- package/svg-react/vault-secrets-color-24.tsx +39 -0
- package/svg-sprite/svg-sprite-module.js +1 -1
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconVaultSecretsColor24 = 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="#000"
|
|
28
|
+
d="M11.315 18v-2.493c0-.584.037-1.17.11-1.747l.066-.537-.333.427c-.357.46-.747.903-1.157 1.313l-1.764 1.764-.967-.967 1.764-1.763c.41-.414.854-.8 1.314-1.157l.43-.333-.537.066a13.92 13.92 0 01-1.747.11H6v-1.366h5.318V6h1.367v2.493c0 .584-.037 1.17-.11 1.747l-.066.537.333-.43c.357-.46.747-.9 1.157-1.314l1.764-1.763.967.967L14.966 10c-.414.413-.854.8-1.314 1.157l-.43.333.537-.067c.577-.073 1.167-.11 1.747-.11H18v1.367h-5.318v5.317h-1.367V18zm2.694-3.023v-.967h.967l1.75 1.75-.967.967-1.75-1.75zM9.02 9.99L7.27 8.24l.966-.967 1.75 1.75v.967h-.966z"
|
|
29
|
+
/>
|
|
30
|
+
<path
|
|
31
|
+
fill="#FFD814"
|
|
32
|
+
fillRule="evenodd"
|
|
33
|
+
d="M1.25 4A2.75 2.75 0 014 1.25h16A2.75 2.75 0 0122.75 4v16A2.75 2.75 0 0120 22.75H4A2.75 2.75 0 011.25 20V4zM4 2.75c-.69 0-1.25.56-1.25 1.25v16c0 .69.56 1.25 1.25 1.25h16c.69 0 1.25-.56 1.25-1.25V4c0-.69-.56-1.25-1.25-1.25H4z"
|
|
34
|
+
clipRule="evenodd"
|
|
35
|
+
/>
|
|
36
|
+
</svg>
|
|
37
|
+
);
|
|
38
|
+
}
|
|
39
|
+
);
|