Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
5 changes: 5 additions & 0 deletions .changeset/fruity-cars-rule.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@hashicorp/flight-icons": patch
---

Re-generated all the assets due to an upgrade of the `svgo` optimization library. This change has updated the internal SVG code for every icon, due to a different optimization algorithm, but visually everything should remain the same.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
"minimatch@<3.0.5": "3.1.2",
"qs": "6.14.1",
"serialize-javascript": "7.0.3",
"svgo": "3.3.3",
"systeminformation": "5.31.0",
"undici": "6.24.0",
"underscore": "1.13.8"
Expand Down
2 changes: 2 additions & 0 deletions packages/components/src/components/hds/button/index.gts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import Component from '@glimmer/component';
import { assert } from '@ember/debug';
import { eq } from 'ember-truth-helpers';
// TEST

import {
HdsButtonSizeValues,
Expand Down Expand Up @@ -48,6 +49,7 @@ export interface HdsButtonSignature {

export default class HdsButton extends Component<HdsButtonSignature> {
get text(): string {
// TEST2
const { text } = this.args;

assert(
Expand Down
5 changes: 2 additions & 3 deletions packages/flight-icons/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"@figma-export/cli": "^6.0.2",
"@figma-export/core": "^6.3.0",
"@figma-export/output-components-as-svg": "^6.0.1",
"@figma-export/transform-svg-with-svgo": "^6.0.2",
"@figma-export/transform-svg-with-svgo": "^6.4.0",
"@figma-export/types": "^6.0.0",
"@figma/rest-api-spec": "^0.22.0",
"@svgr/core": "^5.5.0",
Expand All @@ -37,7 +37,6 @@
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/svgo": "~3.0.0",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"archiver": "^7.0.1",
Expand All @@ -50,7 +49,7 @@
"lodash": "^4.17.23",
"mini-svg-data-uri": "^1.4.4",
"prettier": "^3.4.2",
"svgo": "~1.3.2",
"svgo": "^4.0.1",
"svgstore": "^3.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
Expand Down
19 changes: 9 additions & 10 deletions packages/flight-icons/scripts/build-parts/optimizeAssetsSVG.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@
import fs from 'fs-extra';
import chalk from 'chalk';

// Notice: we're using SVGO vs 1.3.2 instead of 2.x.x because the new version has a terrible API, the documentation is still missing
// and I couldn't set it up to work in a node script; since what it does is just optimize an SVG and the SVG format hasn't changed in years
// is safe to use this older version, nothing groundbreaking is lost.
import SVGO from 'svgo';
import { optimize, type Config } from 'svgo';

import { ConfigData } from '../@types/ConfigData';
import { AssetsCatalog } from '../@types/AssetsCatalog';
Expand All @@ -18,14 +15,13 @@ import { AssetsCatalog } from '../@types/AssetsCatalog';
// is not a problem of SVGO configuration, is Figma adding it to the exported SVGs when the content of a frame/component
// touches the borders of the bounding box. The solution is to uncheck the "Clip content" flag in the Figma UI for that element.
// See: https://forum.figma.com/t/setting-an-explicit-svg-viewbox/2504/7
const svgo = new SVGO({
const svgoConfig = {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note: in SVGO v4:

  • sortAttrs is part of preset-default
  • viewBox is preserved by default, so the removeViewBox override is now obsolete

plugins: [
{ name: 'preset-default' },
// IMPORTANT: this is needed so SVGO will add the icon name (see below) as prefix for the IDs
{ prefixIds: true },
{ removeViewBox: false },
{ sortAttrs: true },
{ name: 'prefixIds' },
]
});
} satisfies Config;


// if in the future this does more than simply optimize, we can rename it to "preprocessAssetsSVG"
Expand All @@ -47,7 +43,10 @@ export async function optimizeAssetsSVG({ config, catalog } : { config: ConfigDa
const svgSource = await fs.readFile(srcAssetPath, 'utf8');

// IMPORTANT: the "path" is used by SVGO to extract the icon name and add it as prefix to the IDs
const svgOptimized = await svgo.optimize(svgSource, { path: asset.fileName });
const svgOptimized = optimize(svgSource, {
...svgoConfig,
path: asset.fileName,
});

await fs.outputFile(tempAssetPath, svgOptimized.data);

Expand Down
2 changes: 1 addition & 1 deletion packages/flight-icons/svg-react/accessibility-16.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const IconAccessibility16 = forwardRef<SVGSVGElement, IconProps>(
{title ? <title id={titleId}>{title}</title> : null}
<path
fill={color}
d="M8 0a8 8 0 110 16A8 8 0 018 0zm0 1.5a6.5 6.5 0 100 13 6.5 6.5 0 000-13zm2.114 4.607a.75.75 0 11.773 1.286L10.5 6.75l.386.644h-.002l-.005.003-.017.01-.06.034a13.852 13.852 0 01-.915.484c-.274.133-.59.272-.9.379a5.004 5.004 0 01-.247.077c.006.039.01.078.01.119v1.723l1.32 1.539a.75.75 0 01-1.14.976L8 11.652l-.93 1.086a.75.75 0 01-1.14-.976l1.32-1.54V8.5c0-.04.004-.08.01-.12a5.004 5.004 0 01-.246-.076 8.511 8.511 0 01-.902-.378 13.858 13.858 0 01-.703-.364c-.089-.049-.16-.091-.212-.12l-.06-.035-.016-.01-.005-.002-.003-.002a.75.75 0 01.774-1.286l.002.001.011.007.05.03a12.306 12.306 0 00.812.43c.245.117.502.229.738.31.25.085.417.115.5.115.083 0 .25-.03.5-.115a7.04 7.04 0 00.738-.31 12.237 12.237 0 00.813-.43l.049-.03.011-.007h.003zM8 3.25a1.5 1.5 0 110 3 1.5 1.5 0 010-3z"
d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0m0 1.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13m2.114 4.607a.75.75 0 1 1 .773 1.286L10.5 6.75l.386.644h-.002l-.005.003-.017.01-.06.034q-.076.046-.211.122c-.178.098-.426.23-.703.363-.275.132-.59.271-.902.378a5 5 0 0 1-.246.077q.01.058.01.119v1.723l1.32 1.539a.75.75 0 0 1-1.14.976L8 11.652l-.93 1.086a.75.75 0 0 1-1.14-.976l1.32-1.54V8.5q0-.06.01-.12a5 5 0 0 1-.246-.076 9 9 0 0 1-.902-.378 14 14 0 0 1-.703-.364q-.134-.075-.212-.12l-.06-.035-.016-.01-.005-.002-.003-.002a.75.75 0 0 1 .774-1.286l.002.001.011.007.05.03a12 12 0 0 0 .812.43c.245.117.502.229.738.31.25.085.417.115.5.115s.25-.03.5-.115a7 7 0 0 0 .738-.31 12 12 0 0 0 .813-.43l.049-.03.011-.007zM8 3.25a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3"
/>
</svg>
);
Expand Down
2 changes: 1 addition & 1 deletion packages/flight-icons/svg-react/accessibility-24.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const IconAccessibility24 = forwardRef<SVGSVGElement, IconProps>(
{title ? <title id={titleId}>{title}</title> : null}
<path
fill={color}
d="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1zm0 1.5a9.5 9.5 0 100 19 9.5 9.5 0 000-19zm2.935 7.07a.75.75 0 01.63 1.36l-.008.005-.02.01-.076.032c-.065.03-.158.07-.271.119-.228.097-.545.227-.898.357-.445.165-1.01.354-1.542.461v2.859l1.874 2.811a.75.75 0 11-1.248.832L12 16.352l-1.376 2.064a.75.75 0 11-1.248-.832l1.874-2.811v-2.859a10.785 10.785 0 01-1.542-.46 20.045 20.045 0 01-1.169-.477l-.075-.033-.02-.01-.007-.002a.75.75 0 11.627-1.362l.004.001.017.007c.015.007.036.018.065.03a18.474 18.474 0 001.077.439c.688.254 1.382.453 1.773.453.39 0 1.085-.199 1.773-.453a18.46 18.46 0 001.077-.439l.065-.03.017-.007.003-.002zM12 6a1.75 1.75 0 110 3.5A1.75 1.75 0 0112 6z"
d="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1m0 1.5a9.5 9.5 0 1 0 0 19 9.5 9.5 0 0 0 0-19m2.935 7.07a.75.75 0 0 1 .63 1.36l-.008.005-.02.01-.076.032c-.065.03-.158.07-.271.119-.228.097-.545.227-.898.357-.445.165-1.01.354-1.542.461v2.859l1.874 2.811a.75.75 0 1 1-1.248.832L12 16.352l-1.376 2.064a.75.75 0 1 1-1.248-.832l1.874-2.811v-2.859a11 11 0 0 1-1.542-.46 20 20 0 0 1-1.169-.477l-.075-.033-.02-.01-.007-.002a.75.75 0 1 1 .627-1.362l.004.001.017.007q.022.011.065.03a18.474 18.474 0 0 0 1.077.439c.688.254 1.382.453 1.773.453.39 0 1.085-.199 1.773-.453a19 19 0 0 0 1.077-.439l.065-.03.017-.007zM12 6a1.75 1.75 0 1 1 0 3.5A1.75 1.75 0 0 1 12 6"
/>
</svg>
);
Expand Down
2 changes: 1 addition & 1 deletion packages/flight-icons/svg-react/activity-16.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const IconActivity16 = forwardRef<SVGSVGElement, IconProps>(
<path
fill={color}
fillRule="evenodd"
d="M6.016 1c.32.007.6.217.698.521l3.306 10.33 1.47-4.341A.752.752 0 0112.2 7H15a.751.751 0 010 1.5h-2.262l-2.028 5.99a.75.75 0 01-1.424-.011L5.952 4.06 4.504 8.009A.75.75 0 013.8 8.5H1A.75.75 0 011 7h2.276l2.02-5.508c.11-.3.4-.499.72-.492z"
d="M6.016 1c.32.007.6.217.698.521l3.306 10.33 1.47-4.341A.75.75 0 0 1 12.2 7H15a.751.751 0 0 1 0 1.5h-2.262l-2.028 5.99a.75.75 0 0 1-1.424-.011L5.952 4.06 4.504 8.009A.75.75 0 0 1 3.8 8.5H1A.75.75 0 0 1 1 7h2.276l2.02-5.508c.11-.3.4-.499.72-.492"
clipRule="evenodd"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion packages/flight-icons/svg-react/activity-24.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const IconActivity24 = forwardRef<SVGSVGElement, IconProps>(
<path
fill={color}
fillRule="evenodd"
d="M9.003 2a.75.75 0 01.71.519L14.99 18.79l2.295-7.266A.75.75 0 0118 11h4a.75.75 0 010 1.5h-3.45l-2.835 8.976a.75.75 0 01-1.429.005L8.99 5.151l-2.278 6.836A.75.75 0 016 12.5H2A.75.75 0 012 11h3.459l2.83-8.487A.75.75 0 019.002 2z"
d="M9.003 2a.75.75 0 0 1 .71.519L14.99 18.79l2.295-7.266A.75.75 0 0 1 18 11h4a.75.75 0 0 1 0 1.5h-3.45l-2.835 8.976a.75.75 0 0 1-1.429.005L8.99 5.151l-2.278 6.836A.75.75 0 0 1 6 12.5H2A.75.75 0 0 1 2 11h3.459l2.83-8.487A.75.75 0 0 1 9.002 2"
clipRule="evenodd"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion packages/flight-icons/svg-react/alert-circle-16.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const IconAlertCircle16 = forwardRef<SVGSVGElement, IconProps>(
{title ? <title id={titleId}>{title}</title> : null}
<path
fill={color}
d="M8 0a8 8 0 110 16A8 8 0 018 0zm0 1.5a6.5 6.5 0 100 13 6.5 6.5 0 000-13zm.007 8.5a1 1 0 010 2H8a1 1 0 110-2h.007zM8 4a.75.75 0 01.75.75v3.5a.75.75 0 01-1.5 0v-3.5A.75.75 0 018 4z"
d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0m0 1.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13m.007 8.5a1 1 0 0 1 0 2H8a1 1 0 1 1 0-2zM8 4a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-3.5A.75.75 0 0 1 8 4"
/>
</svg>
);
Expand Down
2 changes: 1 addition & 1 deletion packages/flight-icons/svg-react/alert-circle-24.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const IconAlertCircle24 = forwardRef<SVGSVGElement, IconProps>(
{title ? <title id={titleId}>{title}</title> : null}
<path
fill={color}
d="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1zm0 1.5a9.5 9.5 0 100 19 9.5 9.5 0 000-19zm.01 12.5a1 1 0 010 2H12a1 1 0 110-2h.01zM12 7a.75.75 0 01.75.75v4.5a.75.75 0 01-1.5 0v-4.5A.75.75 0 0112 7z"
d="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1m0 1.5a9.5 9.5 0 1 0 0 19 9.5 9.5 0 0 0 0-19m.01 12.5a1 1 0 0 1 0 2H12a1 1 0 1 1 0-2zM12 7a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-1.5 0v-4.5A.75.75 0 0 1 12 7"
/>
</svg>
);
Expand Down
2 changes: 1 addition & 1 deletion packages/flight-icons/svg-react/alert-circle-fill-16.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const IconAlertCircleFill16 = forwardRef<SVGSVGElement, IconProps>(
{title ? <title id={titleId}>{title}</title> : null}
<path
fill={color}
d="M8 0a8 8 0 110 16A8 8 0 018 0zm0 10a1 1 0 100 2h.007a1 1 0 000-2H8zm0-6a.75.75 0 00-.75.75v3.5a.75.75 0 001.5 0v-3.5A.75.75 0 008 4z"
d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0m0 10a1 1 0 1 0 0 2h.007a1 1 0 0 0 0-2zm0-6a.75.75 0 0 0-.75.75v3.5a.75.75 0 0 0 1.5 0v-3.5A.75.75 0 0 0 8 4"
/>
</svg>
);
Expand Down
2 changes: 1 addition & 1 deletion packages/flight-icons/svg-react/alert-circle-fill-24.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const IconAlertCircleFill24 = forwardRef<SVGSVGElement, IconProps>(
{title ? <title id={titleId}>{title}</title> : null}
<path
fill={color}
d="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1zm0 14a1 1 0 100 2h.01a1 1 0 100-2H12zm0-8a.75.75 0 00-.75.75v4.5a.75.75 0 001.5 0v-4.5A.75.75 0 0012 7z"
d="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1m0 14a1 1 0 1 0 0 2h.01a1 1 0 1 0 0-2zm0-8a.75.75 0 0 0-.75.75v4.5a.75.75 0 0 0 1.5 0v-4.5A.75.75 0 0 0 12 7"
/>
</svg>
);
Expand Down
2 changes: 1 addition & 1 deletion packages/flight-icons/svg-react/alert-diamond-16.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const IconAlertDiamond16 = forwardRef<SVGSVGElement, IconProps>(
<path
fill={color}
fillRule="evenodd"
d="M6.407.752a2.253 2.253 0 013.183 0l5.656 5.657a2.252 2.252 0 010 3.182L9.59 15.247a2.253 2.253 0 01-3.183 0L.751 9.591a2.252 2.252 0 010-3.182L6.407.752zm2.122 1.06a.752.752 0 00-1.06 0L1.812 7.47a.752.752 0 000 1.06l5.657 5.657a.752.752 0 001.06 0l5.656-5.657a.752.752 0 000-1.06L8.53 1.813zM8.007 10c.551 0 .999.449 1 1 0 .551-.449 1-1 1H8c-.551 0-1-.449-1-1 0-.551.449-.999 1-1h.007zm-.007-5c.413 0 .75.337.75.75v2.5c0 .413-.337.75-.75.75a.752.752 0 01-.75-.75v-2.5c0-.413.337-.749.75-.75z"
d="M6.407.752a2.253 2.253 0 0 1 3.183 0l5.656 5.657a2.25 2.25 0 0 1 0 3.182L9.59 15.247a2.253 2.253 0 0 1-3.183 0L.751 9.591a2.25 2.25 0 0 1 0-3.182zm2.122 1.06a.75.75 0 0 0-1.06 0L1.812 7.47a.75.75 0 0 0 0 1.06l5.657 5.657a.75.75 0 0 0 1.06 0l5.656-5.657a.75.75 0 0 0 0-1.06zM8.007 10c.551 0 .999.449 1 1 0 .551-.449 1-1 1H8c-.551 0-1-.449-1-1s.449-.999 1-1zm-.007-5c.413 0 .75.337.75.75v2.5c0 .413-.337.75-.75.75a.75.75 0 0 1-.75-.75v-2.5c0-.413.337-.749.75-.75"
clipRule="evenodd"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion packages/flight-icons/svg-react/alert-diamond-24.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const IconAlertDiamond24 = forwardRef<SVGSVGElement, IconProps>(
<path
fill={color}
fillRule="evenodd"
d="M10.055 1.885a2.753 2.753 0 013.89 0l8.17 8.17a2.753 2.753 0 010 3.89l-8.17 8.171a2.753 2.753 0 01-3.89 0l-8.171-8.17a2.753 2.753 0 010-3.89l8.17-8.171zm2.829 1.06a1.253 1.253 0 00-1.769 0l-8.17 8.171a1.253 1.253 0 000 1.769l8.17 8.17c.488.488 1.28.488 1.769 0l8.17-8.17a1.252 1.252 0 000-1.768l-8.17-8.172zM12.01 15c.55 0 .999.449 1 1-.001.551-.449 1-1 1H12c-.551 0-1-.449-1-1 0-.551.449-1 1-1h.01zM12 7c.413 0 .75.337.75.75v4.5c0 .413-.337.75-.75.75a.752.752 0 01-.75-.75v-4.5c0-.413.337-.75.75-.75z"
d="M10.055 1.885a2.753 2.753 0 0 1 3.89 0l8.17 8.17a2.753 2.753 0 0 1 0 3.89l-8.17 8.171a2.753 2.753 0 0 1-3.89 0l-8.171-8.17a2.753 2.753 0 0 1 0-3.89zm2.829 1.06a1.253 1.253 0 0 0-1.769 0l-8.17 8.171a1.253 1.253 0 0 0 0 1.769l8.17 8.17c.488.488 1.28.488 1.769 0l8.17-8.17a1.25 1.25 0 0 0 0-1.768zM12.01 15c.55 0 .999.449 1 1-.001.551-.449 1-1 1H12c-.551 0-1-.449-1-1s.449-1 1-1zM12 7c.413 0 .75.337.75.75v4.5c0 .413-.337.75-.75.75a.75.75 0 0 1-.75-.75v-4.5c0-.413.337-.75.75-.75"
clipRule="evenodd"
/>
</svg>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const IconAlertDiamondFill16 = forwardRef<SVGSVGElement, IconProps>(
<path
fill={color}
fillRule="evenodd"
d="M6.407.753L.75 6.409a2.25 2.25 0 000 3.182l5.657 5.657a2.25 2.25 0 003.182 0l5.657-5.657a2.25 2.25 0 000-3.182L9.589.753a2.25 2.25 0 00-3.182 0zM7 11a1 1 0 011-1h.007a1 1 0 110 2H8a1 1 0 01-1-1zm1.75-5.25a.75.75 0 00-1.5 0v2.5a.75.75 0 001.5 0v-2.5z"
d="M6.407.753.75 6.409a2.25 2.25 0 0 0 0 3.182l5.657 5.657a2.25 2.25 0 0 0 3.182 0l5.657-5.657a2.25 2.25 0 0 0 0-3.182L9.589.753a2.25 2.25 0 0 0-3.182 0M7 11a1 1 0 0 1 1-1h.007a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1m1.75-5.25a.75.75 0 0 0-1.5 0v2.5a.75.75 0 0 0 1.5 0z"
clipRule="evenodd"
/>
</svg>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const IconAlertDiamondFill24 = forwardRef<SVGSVGElement, IconProps>(
<path
fill={color}
fillRule="evenodd"
d="M13.945 1.924a2.75 2.75 0 00-3.89 0l-8.131 8.132a2.75 2.75 0 000 3.889l8.132 8.131a2.75 2.75 0 003.889 0l8.131-8.131a2.75 2.75 0 000-3.89l-8.131-8.13zM11.25 7.75a.75.75 0 011.5 0v4.5a.75.75 0 01-1.5 0v-4.5zM11 16a1 1 0 011-1h.01a1 1 0 110 2H12a1 1 0 01-1-1z"
d="M13.945 1.924a2.75 2.75 0 0 0-3.89 0l-8.131 8.132a2.75 2.75 0 0 0 0 3.889l8.132 8.131a2.75 2.75 0 0 0 3.889 0l8.131-8.131a2.75 2.75 0 0 0 0-3.89zM11.25 7.75a.75.75 0 0 1 1.5 0v4.5a.75.75 0 0 1-1.5 0zM11 16a1 1 0 0 1 1-1h.01a1 1 0 1 1 0 2H12a1 1 0 0 1-1-1"
clipRule="evenodd"
/>
</svg>
Expand Down
4 changes: 2 additions & 2 deletions packages/flight-icons/svg-react/alert-octagon-16.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ export const IconAlertOctagon16 = forwardRef<SVGSVGElement, IconProps>(
>
{title ? <title id={titleId}>{title}</title> : null}
<g fill={color}>
<path d="M7 11a1 1 0 011-1h.007a1 1 0 110 2H8a1 1 0 01-1-1zM8.75 4.75a.75.75 0 00-1.5 0v3.5a.75.75 0 001.5 0v-3.5z" />
<path d="M7 11a1 1 0 0 1 1-1h.007a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1M8.75 4.75a.75.75 0 0 0-1.5 0v3.5a.75.75 0 0 0 1.5 0z" />
<path
fillRule="evenodd"
d="M3.882.805A2.75 2.75 0 015.827 0h4.346c.73 0 1.429.29 1.945.805l3.076 3.077A2.75 2.75 0 0116 5.827v4.346c0 .73-.29 1.429-.806 1.945l-3.076 3.076a2.75 2.75 0 01-1.945.806H5.827a2.75 2.75 0 01-1.945-.806L.805 12.118A2.75 2.75 0 010 10.173V5.827c0-.73.29-1.429.805-1.945L3.882.805zm1.945.695c-.332 0-.65.132-.884.366L1.866 4.943a1.25 1.25 0 00-.366.884v4.346c0 .332.132.65.366.884l3.077 3.077c.234.234.552.366.884.366h4.346c.332 0 .65-.132.884-.366l3.077-3.077a1.25 1.25 0 00.366-.884V5.827c0-.332-.132-.65-.366-.884l-3.077-3.077a1.25 1.25 0 00-.884-.366H5.827z"
d="M3.882.805A2.75 2.75 0 0 1 5.827 0h4.346c.73 0 1.429.29 1.945.805l3.076 3.077A2.75 2.75 0 0 1 16 5.827v4.346c0 .73-.29 1.429-.806 1.945l-3.076 3.076a2.75 2.75 0 0 1-1.945.806H5.827a2.75 2.75 0 0 1-1.945-.806L.805 12.119A2.75 2.75 0 0 1 0 10.173V5.827c0-.73.29-1.429.805-1.945zm1.945.695c-.332 0-.65.132-.884.366L1.866 4.943a1.25 1.25 0 0 0-.366.884v4.346c0 .332.132.65.366.884l3.077 3.077c.234.234.552.366.884.366h4.346c.332 0 .65-.132.884-.366l3.077-3.077a1.25 1.25 0 0 0 .366-.884V5.827c0-.332-.132-.65-.366-.884l-3.077-3.077a1.25 1.25 0 0 0-.884-.366z"
clipRule="evenodd"
/>
</g>
Expand Down
4 changes: 2 additions & 2 deletions packages/flight-icons/svg-react/alert-octagon-24.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ export const IconAlertOctagon24 = forwardRef<SVGSVGElement, IconProps>(
>
{title ? <title id={titleId}>{title}</title> : null}
<g fill={color}>
<path d="M11 16a1 1 0 011-1h.01a1 1 0 110 2H12a1 1 0 01-1-1zM12.75 7.75a.75.75 0 00-1.5 0v4.5a.75.75 0 001.5 0v-4.5z" />
<path d="M11 16a1 1 0 0 1 1-1h.01a1 1 0 1 1 0 2H12a1 1 0 0 1-1-1M12.75 7.75a.75.75 0 0 0-1.5 0v4.5a.75.75 0 0 0 1.5 0z" />
<path
fillRule="evenodd"
d="M6.64 1.805A2.75 2.75 0 018.585 1h6.83c.73 0 1.429.29 1.945.805l4.835 4.835A2.75 2.75 0 0123 8.585v6.83c0 .73-.29 1.429-.805 1.945l-4.835 4.835a2.75 2.75 0 01-1.945.805h-6.83a2.75 2.75 0 01-1.945-.805L1.805 17.36A2.75 2.75 0 011 15.415v-6.83c0-.73.29-1.429.805-1.945L6.64 1.805zm1.945.695c-.332 0-.65.132-.884.366L2.866 7.701a1.25 1.25 0 00-.366.884v6.83c0 .332.132.65.366.884l4.835 4.835c.234.234.552.366.884.366h6.83c.332 0 .65-.132.884-.366l4.835-4.835a1.25 1.25 0 00.366-.884v-6.83c0-.332-.132-.65-.366-.884l-4.835-4.835a1.25 1.25 0 00-.884-.366h-6.83z"
d="M6.64 1.805A2.75 2.75 0 0 1 8.585 1h6.83c.73 0 1.429.29 1.945.805l4.835 4.835A2.75 2.75 0 0 1 23 8.585v6.83c0 .73-.29 1.429-.805 1.945l-4.835 4.835a2.75 2.75 0 0 1-1.945.805h-6.83a2.75 2.75 0 0 1-1.945-.805L1.805 17.36A2.75 2.75 0 0 1 1 15.415v-6.83c0-.73.29-1.429.805-1.945zm1.945.695c-.332 0-.65.132-.884.366L2.866 7.701a1.25 1.25 0 0 0-.366.884v6.83c0 .332.132.65.366.884l4.835 4.835c.234.234.552.366.884.366h6.83c.332 0 .65-.132.884-.366l4.835-4.835a1.25 1.25 0 0 0 .366-.884v-6.83c0-.332-.132-.65-.366-.884l-4.835-4.835a1.25 1.25 0 0 0-.884-.366z"
clipRule="evenodd"
/>
</g>
Expand Down
Loading
Loading