@hashicorp/flight-icons 3.3.0 → 3.4.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 +18 -0
- package/catalog.json +81 -1
- package/package.json +1 -1
- package/svg/index.d.ts +1 -1
- package/svg/index.js +1 -1
- package/svg/pager-duty-16.svg +1 -0
- package/svg/pager-duty-24.svg +1 -0
- package/svg/pager-duty-color-16.svg +1 -0
- package/svg/pager-duty-color-24.svg +1 -0
- package/svg/search-16.svg +1 -1
- package/svg/service-now-16.svg +1 -0
- package/svg/service-now-24.svg +1 -0
- package/svg/service-now-color-16.svg +1 -0
- package/svg/service-now-color-24.svg +1 -0
- package/svg-react/index.ts +8 -0
- package/svg-react/pager-duty-16.tsx +32 -0
- package/svg-react/pager-duty-24.tsx +32 -0
- package/svg-react/pager-duty-color-16.tsx +32 -0
- package/svg-react/pager-duty-color-24.tsx +32 -0
- package/svg-react/search-16.tsx +1 -1
- package/svg-react/service-now-16.tsx +35 -0
- package/svg-react/service-now-24.tsx +35 -0
- package/svg-react/service-now-color-16.tsx +35 -0
- package/svg-react/service-now-color-24.tsx +35 -0
- package/svg-sprite/svg-sprite-module.js +1 -1
- package/svg-sprite/svg-sprite.svg +1 -1
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconServiceNowColor24 = 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="#62D84E"
|
|
28
|
+
fillRule="evenodd"
|
|
29
|
+
d="M12.067 2C6.038 1.964 1.054 6.918 1 13.002a11.09 11.09 0 003.457 8.167 2.176 2.176 0 002.84.152c1.251-.978 2.859-1.57 4.708-1.57 1.849 0 3.456.583 4.707 1.57.857.673 2.063.583 2.85-.17A11.102 11.102 0 0023 13.092C23 6.99 18.105 2.036 12.067 2zm-.071 16.638c-3.27 0-5.502-2.468-5.502-5.528 0-3.06 2.233-5.564 5.502-5.564 3.269 0 5.502 2.513 5.502 5.564s-2.233 5.528-5.502 5.528z"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
);
|
|
34
|
+
}
|
|
35
|
+
);
|