@hashicorp/flight-icons 3.10.0 → 3.11.0-rc-20250602105516
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 +10 -0
- package/catalog.json +97 -37
- package/package.json +3 -3
- package/svg/bottom-16.svg +1 -1
- package/svg/bottom-24.svg +1 -1
- package/svg/end-16.svg +1 -0
- package/svg/end-24.svg +1 -0
- package/svg/index.d.ts +1 -1
- package/svg/index.js +1 -1
- package/svg/start-16.svg +1 -0
- package/svg/start-24.svg +1 -0
- package/svg/text-wrap-16.svg +1 -0
- package/svg/text-wrap-24.svg +1 -0
- package/svg/top-16.svg +1 -1
- package/svg/top-24.svg +1 -1
- package/svg-react/bottom-16.tsx +1 -1
- package/svg-react/bottom-24.tsx +1 -1
- package/svg-react/end-16.tsx +32 -0
- package/svg-react/end-24.tsx +32 -0
- package/svg-react/index.ts +10 -4
- package/svg-react/start-16.tsx +32 -0
- package/svg-react/start-24.tsx +32 -0
- package/svg-react/text-wrap-16.tsx +32 -0
- package/svg-react/text-wrap-24.tsx +32 -0
- package/svg-react/top-16.tsx +1 -1
- package/svg-react/top-24.tsx +1 -1
- package/svg-sprite/svg-sprite-module.js +1 -1
- package/svg-sprite/svg-sprite.svg +1 -1
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { forwardRef, useMemo } from 'react';
|
|
2
|
+
import { IconProps } from './types';
|
|
3
|
+
|
|
4
|
+
export const IconStart24 = 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="M2.75 3a.75.75 0 01.75.75v16.5l-.004.077a.75.75 0 01-1.492 0L2 20.25V3.75A.75.75 0 012.75 3zM12.788 5.16a.75.75 0 011.034 1.074l-.052.057-5.157 4.959H21.25a.75.75 0 010 1.5H8.613l5.157 4.959.052.057a.75.75 0 01-1.034 1.075l-.058-.05-6.5-6.25a.751.751 0 010-1.082l6.5-6.25.058-.05z" />
|
|
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 IconTextWrap16 = 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="M1.75 1a.75.75 0 01.75.75v12.5a.75.75 0 01-1.5 0V1.75A.75.75 0 011.75 1zM14.25 1a.75.75 0 01.75.75v12.5a.75.75 0 01-1.5 0V1.75a.75.75 0 01.75-.75zM9.176 5.004c.867.04 1.558.38 2.055.895C11.787 6.476 12 7.222 12 8c0 .766-.193 1.518-.778 2.104C10.69 10.633 9.97 11 9 11H7.368l.153.146.053.056a.75.75 0 01-1.032 1.077l-.058-.05-1.5-1.438-.052-.056a.746.746 0 01-.078-.111c-.005-.007-.008-.015-.012-.022-.011-.021-.023-.043-.032-.065l-.01-.025-.013-.044a.746.746 0 01-.021-.085l-.005-.033a.749.749 0 01.043-.37l.015-.036a.742.742 0 01.045-.086l.016-.025a.747.747 0 01.092-.113l1.5-1.5.057-.052a.75.75 0 011.055 1.056l-.052.056-.22.22H9c.547 0 .893-.189 1.161-.457.214-.214.339-.525.339-1.043 0-.506-.134-.836-.349-1.06-.21-.217-.51-.391-.953-.431L9 6.5H4.75a.75.75 0 010-1.5H9l.176.004z" />
|
|
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 IconTextWrap24 = 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="M2.75 3.25A.75.75 0 013.5 4v16A.75.75 0 012 20V4a.75.75 0 01.75-.75zM21.25 3.25A.75.75 0 0122 4v16a.75.75 0 01-1.5 0V4a.75.75 0 01.75-.75zM14.913 8.515c.966.067 1.886.376 2.524 1.026.718.731.918 1.642.918 2.418 0 .777-.236 1.76-.91 2.467-.688.722-1.81 1.074-2.948 1.074h-4.185l.72.72.051.056a.75.75 0 01-1.056 1.056l-.056-.052-2-2-.043-.047a.748.748 0 01-.078-.112l-.022-.043-.02-.04-.012-.035a.74.74 0 01-.035-.14l-.004-.02a.75.75 0 01.012-.252.744.744 0 01.04-.124c.003-.012.009-.023.014-.034a.745.745 0 01.044-.081l.02-.03a.75.75 0 01.084-.102l2-2a.75.75 0 011.112 1.004l-.052.056-.72.72h4.186c.885 0 1.55-.28 1.862-.608.327-.343.495-.903.495-1.433 0-.531-.133-1.007-.487-1.367-.299-.305-.824-.53-1.548-.581L14.497 10H6.498a.75.75 0 110-1.5h8l.415.015z" />
|
|
28
|
+
</g>
|
|
29
|
+
</svg>
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
);
|
package/svg-react/top-16.tsx
CHANGED
|
@@ -24,7 +24,7 @@ export const IconTop16 = forwardRef<SVGSVGElement, IconProps>(
|
|
|
24
24
|
>
|
|
25
25
|
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
26
|
<g fill={color}>
|
|
27
|
-
<path d="M2.
|
|
27
|
+
<path d="M2.75 2.5a.75.75 0 010-1.5h10.5a.75.75 0 010 1.5H2.75zM3.235 9.795a.75.75 0 001.06-.03L7.25 6.636v7.614a.75.75 0 001.5 0V6.636l2.955 3.129a.75.75 0 001.09-1.03l-4.25-4.5a.75.75 0 00-1.09 0l-4.25 4.5a.75.75 0 00.03 1.06z" />
|
|
28
28
|
</g>
|
|
29
29
|
</svg>
|
|
30
30
|
);
|
package/svg-react/top-24.tsx
CHANGED
|
@@ -24,7 +24,7 @@ export const IconTop24 = forwardRef<SVGSVGElement, IconProps>(
|
|
|
24
24
|
>
|
|
25
25
|
{title ? <title id={titleId}>{title}</title> : null}
|
|
26
26
|
<g fill={color}>
|
|
27
|
-
<path d="M3.
|
|
27
|
+
<path d="M3.75 3.5a.75.75 0 010-1.5h16.5a.75.75 0 010 1.5H3.75zM5.23 13.79a.75.75 0 001.06-.02l4.96-5.158V21.25a.75.75 0 001.5 0V8.612l4.96 5.158a.75.75 0 101.08-1.04l-6.25-6.5a.75.75 0 00-1.08 0l-6.25 6.5a.75.75 0 00.02 1.06z" />
|
|
28
28
|
</g>
|
|
29
29
|
</svg>
|
|
30
30
|
);
|