@hashicorp/flight-icons 2.1.0 → 2.3.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 (92) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/catalog.json +145 -1
  3. package/package.json +8 -34
  4. package/structure-mappings.json +192 -0
  5. package/svg/alert-diamond-16.svg +1 -0
  6. package/svg/alert-diamond-24.svg +1 -0
  7. package/svg/alert-diamond-fill-16.svg +1 -0
  8. package/svg/alert-diamond-fill-24.svg +1 -0
  9. package/svg/amazon-ecs-16.svg +1 -0
  10. package/svg/amazon-ecs-24.svg +1 -0
  11. package/svg/amazon-ecs-color-16.svg +1 -0
  12. package/svg/amazon-ecs-color-24.svg +1 -0
  13. package/svg/build-16.svg +1 -1
  14. package/svg/build-24.svg +1 -1
  15. package/svg/change-24.svg +1 -1
  16. package/svg/closed-caption-16.svg +1 -0
  17. package/svg/closed-caption-24.svg +1 -0
  18. package/svg/diamond-24.svg +1 -1
  19. package/svg/discussion-circle-16.svg +1 -1
  20. package/svg/discussion-circle-24.svg +1 -1
  21. package/svg/folder-star-16.svg +1 -1
  22. package/svg/government-16.svg +1 -0
  23. package/svg/government-24.svg +1 -0
  24. package/svg/info-fill-16.svg +1 -0
  25. package/svg/info-fill-24.svg +1 -0
  26. package/svg/kubernetes-color-16.svg +1 -1
  27. package/svg/layers-16.svg +1 -1
  28. package/svg/message-circle-16.svg +1 -1
  29. package/svg/message-circle-24.svg +1 -1
  30. package/svg/message-circle-fill-16.svg +1 -1
  31. package/svg/navigation-16.svg +1 -1
  32. package/svg/navigation-24.svg +1 -1
  33. package/svg/navigation-alt-16.svg +1 -1
  34. package/svg/phone-16.svg +1 -1
  35. package/svg/phone-24.svg +1 -1
  36. package/svg/phone-call-16.svg +1 -1
  37. package/svg/phone-call-24.svg +1 -1
  38. package/svg/redirect-16.svg +1 -1
  39. package/svg/redirect-24.svg +1 -1
  40. package/svg/service-16.svg +1 -0
  41. package/svg/service-24.svg +1 -0
  42. package/svg/star-24.svg +1 -1
  43. package/svg/star-fill-16.svg +1 -1
  44. package/svg/star-off-16.svg +1 -1
  45. package/svg/wand-16.svg +1 -1
  46. package/svg/x-diamond-16.svg +1 -1
  47. package/svg/x-hexagon-fill-24.svg +1 -1
  48. package/svg-react/alert-diamond-16.tsx +37 -0
  49. package/svg-react/alert-diamond-24.tsx +37 -0
  50. package/svg-react/alert-diamond-fill-16.tsx +35 -0
  51. package/svg-react/alert-diamond-fill-24.tsx +35 -0
  52. package/svg-react/amazon-ecs-16.tsx +35 -0
  53. package/svg-react/amazon-ecs-24.tsx +35 -0
  54. package/svg-react/amazon-ecs-color-16.tsx +65 -0
  55. package/svg-react/amazon-ecs-color-24.tsx +65 -0
  56. package/svg-react/build-16.tsx +1 -1
  57. package/svg-react/build-24.tsx +1 -1
  58. package/svg-react/change-24.tsx +1 -1
  59. package/svg-react/closed-caption-16.tsx +35 -0
  60. package/svg-react/closed-caption-24.tsx +37 -0
  61. package/svg-react/diamond-24.tsx +1 -1
  62. package/svg-react/discussion-circle-16.tsx +2 -2
  63. package/svg-react/discussion-circle-24.tsx +2 -2
  64. package/svg-react/folder-star-16.tsx +2 -2
  65. package/svg-react/government-16.tsx +37 -0
  66. package/svg-react/government-24.tsx +37 -0
  67. package/svg-react/index.ts +16 -0
  68. package/svg-react/info-fill-16.tsx +35 -0
  69. package/svg-react/info-fill-24.tsx +35 -0
  70. package/svg-react/kubernetes-color-16.tsx +1 -1
  71. package/svg-react/layers-16.tsx +2 -2
  72. package/svg-react/message-circle-16.tsx +1 -1
  73. package/svg-react/message-circle-24.tsx +1 -1
  74. package/svg-react/message-circle-fill-16.tsx +2 -2
  75. package/svg-react/navigation-16.tsx +1 -1
  76. package/svg-react/navigation-24.tsx +1 -1
  77. package/svg-react/navigation-alt-16.tsx +1 -1
  78. package/svg-react/phone-16.tsx +1 -1
  79. package/svg-react/phone-24.tsx +1 -1
  80. package/svg-react/phone-call-16.tsx +3 -3
  81. package/svg-react/phone-call-24.tsx +2 -2
  82. package/svg-react/redirect-16.tsx +1 -1
  83. package/svg-react/redirect-24.tsx +1 -1
  84. package/svg-react/service-16.tsx +37 -0
  85. package/svg-react/service-24.tsx +37 -0
  86. package/svg-react/star-24.tsx +1 -1
  87. package/svg-react/star-fill-16.tsx +1 -1
  88. package/svg-react/star-off-16.tsx +1 -1
  89. package/svg-react/wand-16.tsx +2 -2
  90. package/svg-react/x-diamond-16.tsx +2 -2
  91. package/svg-react/x-hexagon-fill-24.tsx +1 -1
  92. package/svg-sprite/svg-sprite-module.js +1 -1
@@ -26,7 +26,7 @@ export const IconXHexagonFill24 = forwardRef<SVGSVGElement, IconProps>(
26
26
  <path
27
27
  fill={color}
28
28
  fillRule="evenodd"
29
- d="M13.441 1.006a2.75 2.75 0 00-2.882 0l-7.75 4.77A2.75 2.75 0 001.5 8.116v7.765a2.75 2.75 0 001.309 2.342l7.75 4.77a2.75 2.75 0 002.882 0l7.75-4.77a2.75 2.75 0 001.309-2.342V8.117a2.75 2.75 0 00-1.309-2.342l-7.75-4.769zM14.72 8.22a.75.75 0 111.06 1.061L13.06 12l2.72 2.72a.75.75 0 01-1.06 1.06L12 13.06l-2.72 2.72a.75.75 0 11-1.06-1.06L10.94 12 8.22 9.28a.75.75 0 011.06-1.06L12 10.94l2.72-2.72z"
29
+ d="M13.441 1.006a2.75 2.75 0 00-2.882 0l-7.75 4.77a2.75 2.75 0 00-1.31 2.341v7.765a2.75 2.75 0 001.31 2.342l7.75 4.77a2.75 2.75 0 002.882 0l7.75-4.77a2.75 2.75 0 001.309-2.342V8.117a2.75 2.75 0 00-1.309-2.342l-7.75-4.769zM14.72 8.22a.75.75 0 011.06 1.061L13.06 12l2.72 2.72a.75.75 0 01-1.06 1.06L12 13.06l-2.72 2.72a.75.75 0 11-1.06-1.06L10.94 12 8.22 9.28a.75.75 0 011.06-1.06L12 10.94l2.72-2.72z"
30
30
  clipRule="evenodd"
31
31
  />
32
32
  </svg>