@hashicorp/flight-icons 2.17.0 → 2.18.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.
Files changed (50) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/catalog.json +185 -5
  3. package/package.json +1 -1
  4. package/svg/aws-cdk-16.svg +1 -0
  5. package/svg/aws-cdk-24.svg +1 -0
  6. package/svg/aws-cdk-color-16.svg +1 -0
  7. package/svg/aws-cdk-color-24.svg +1 -0
  8. package/svg/index.js +1 -1
  9. package/svg/jfrog-16.svg +1 -0
  10. package/svg/jfrog-24.svg +1 -0
  11. package/svg/jfrog-color-16.svg +1 -0
  12. package/svg/jfrog-color-24.svg +1 -0
  13. package/svg/jira-16.svg +1 -0
  14. package/svg/jira-24.svg +1 -0
  15. package/svg/jira-color-16.svg +1 -0
  16. package/svg/jira-color-24.svg +1 -0
  17. package/svg/opa-24.svg +1 -1
  18. package/svg/opa-color-24.svg +1 -1
  19. package/svg/twitter-x-16.svg +1 -0
  20. package/svg/twitter-x-24.svg +1 -0
  21. package/svg/twitter-x-color-16.svg +1 -0
  22. package/svg/twitter-x-color-24.svg +1 -0
  23. package/svg/vercel-16.svg +1 -0
  24. package/svg/vercel-24.svg +1 -0
  25. package/svg/vercel-color-16.svg +1 -0
  26. package/svg/vercel-color-24.svg +1 -0
  27. package/svg-react/aws-cdk-16.tsx +35 -0
  28. package/svg-react/aws-cdk-24.tsx +35 -0
  29. package/svg-react/aws-cdk-color-16.tsx +35 -0
  30. package/svg-react/aws-cdk-color-24.tsx +35 -0
  31. package/svg-react/index.ts +20 -0
  32. package/svg-react/jfrog-16.tsx +33 -0
  33. package/svg-react/jfrog-24.tsx +33 -0
  34. package/svg-react/jfrog-color-16.tsx +33 -0
  35. package/svg-react/jfrog-color-24.tsx +33 -0
  36. package/svg-react/jira-16.tsx +33 -0
  37. package/svg-react/jira-24.tsx +33 -0
  38. package/svg-react/jira-color-16.tsx +65 -0
  39. package/svg-react/jira-color-24.tsx +65 -0
  40. package/svg-react/opa-24.tsx +1 -1
  41. package/svg-react/opa-color-24.tsx +1 -1
  42. package/svg-react/twitter-x-16.tsx +33 -0
  43. package/svg-react/twitter-x-24.tsx +33 -0
  44. package/svg-react/twitter-x-color-16.tsx +33 -0
  45. package/svg-react/twitter-x-color-24.tsx +33 -0
  46. package/svg-react/vercel-16.tsx +30 -0
  47. package/svg-react/vercel-24.tsx +30 -0
  48. package/svg-react/vercel-color-16.tsx +30 -0
  49. package/svg-react/vercel-color-24.tsx +30 -0
  50. package/svg-sprite/svg-sprite-module.js +1 -1
@@ -0,0 +1,30 @@
1
+ import { forwardRef, useMemo } from 'react';
2
+ import { IconProps } from './types';
3
+
4
+ export const IconVercelColor16 = 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 fill="#000" d="M8 2l6.5 10.833h-13L8 2z" />
27
+ </svg>
28
+ );
29
+ }
30
+ );
@@ -0,0 +1,30 @@
1
+ import { forwardRef, useMemo } from 'react';
2
+ import { IconProps } from './types';
3
+
4
+ export const IconVercelColor24 = 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 fill="#000" d="M12 3.75l9.25 15.417H2.75L12 3.75z" />
27
+ </svg>
28
+ );
29
+ }
30
+ );