diff --git a/package.json b/package.json
index c019aec4a3c..7bfed35044b 100644
--- a/package.json
+++ b/package.json
@@ -135,8 +135,9 @@
"@storybook/react": "^7.0.17",
"@storybook/react-webpack5": "^7.0.17",
"@storybook/testing-library": "^0.0.14-next.2",
- "@svgr/core": "5.5.0",
- "@svgr/plugin-svgo": "^4.0.3",
+ "@svgr/core": "8.0.0",
+ "@svgr/plugin-jsx": "^8.0.1",
+ "@svgr/plugin-svgo": "^8.0.1",
"@testing-library/dom": "^8.12.0",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.5",
diff --git a/scripts/compile-icons.js b/scripts/compile-icons.js
index faf7ca56e3c..47ef62a1ccb 100644
--- a/scripts/compile-icons.js
+++ b/scripts/compile-icons.js
@@ -1,10 +1,9 @@
const glob = require('glob');
-const svgr = require('@svgr/core').default;
+const svgr = require('@svgr/core').transform;
const path = require('path');
const fs = require('fs');
-const license = require('../.eslintrc.js').rules[
- 'local/require-license-header'
-][1].license;
+const license =
+ require('../.eslintrc.js').rules['local/require-license-header'][1].license;
const rootDir = path.resolve(__dirname, '..');
const srcDir = path.resolve(rootDir, 'src');
@@ -37,10 +36,15 @@ iconFiles.forEach((filePath) => {
plugins: ['@svgr/plugin-svgo', '@svgr/plugin-jsx'],
svgoConfig: {
plugins: [
- { cleanupIDs: true },
- { prefixIds: false },
- { removeViewBox: false },
- { removeUselessStrokeAndFill: false },
+ {
+ name: 'preset-default',
+ params: {
+ overrides: {
+ removeViewBox: false,
+ removeUselessStrokeAndFill: false,
+ },
+ },
+ },
],
},
svgProps: {
@@ -49,12 +53,11 @@ iconFiles.forEach((filePath) => {
titleProp: true,
typescript: true,
template: (
- { template },
- opts,
- { imports, interfaces, componentName, props, jsx }
+ { imports, interfaces, componentName, props, jsx },
+ { tpl }
) =>
hasIds
- ? template.ast`
+ ? tpl`
${imports}
import { htmlIdGenerator } from '../../../services';
${interfaces}
@@ -66,7 +69,7 @@ const ${componentName} = (${props}) => {
};
export const icon = ${componentName};
`
- : template.ast`
+ : tpl`
${imports}
${interfaces}
const ${componentName} = (${props}) => ${jsx}
diff --git a/src/components/icon/__snapshots__/icon.test.tsx.snap b/src/components/icon/__snapshots__/icon.test.tsx.snap
index 7456904f0f4..d3046eec745 100644
--- a/src/components/icon/__snapshots__/icon.test.tsx.snap
+++ b/src/components/icon/__snapshots__/icon.test.tsx.snap
@@ -14,7 +14,7 @@ exports[`EuiIcon is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -33,7 +33,7 @@ exports[`EuiIcon props color #885522 is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -52,7 +52,7 @@ exports[`EuiIcon props color #fde is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -70,7 +70,7 @@ exports[`EuiIcon props color accent is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -88,7 +88,7 @@ exports[`EuiIcon props color danger is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -106,7 +106,7 @@ exports[`EuiIcon props color default is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -124,7 +124,7 @@ exports[`EuiIcon props color ghost is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -143,7 +143,7 @@ exports[`EuiIcon props color hsla(270, 60%, 70%, 0.9) is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -161,7 +161,7 @@ exports[`EuiIcon props color inherit is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -179,7 +179,7 @@ exports[`EuiIcon props color primary is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -198,7 +198,7 @@ exports[`EuiIcon props color rgb(100, 150, 200) is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -216,7 +216,7 @@ exports[`EuiIcon props color subdued is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -234,7 +234,7 @@ exports[`EuiIcon props color success is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -252,7 +252,7 @@ exports[`EuiIcon props color text is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -270,7 +270,7 @@ exports[`EuiIcon props color warning is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -291,7 +291,7 @@ exports[`EuiIcon props other props are passed through to the icon 1`] = `
Search
`;
@@ -309,7 +309,7 @@ exports[`EuiIcon props size \${size} is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -327,7 +327,7 @@ exports[`EuiIcon props size \${size} is rendered 2`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -345,7 +345,7 @@ exports[`EuiIcon props size \${size} is rendered 3`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -363,7 +363,7 @@ exports[`EuiIcon props size \${size} is rendered 4`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -381,7 +381,7 @@ exports[`EuiIcon props size \${size} is rendered 5`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -399,7 +399,7 @@ exports[`EuiIcon props size \${size} is rendered 6`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -418,7 +418,7 @@ exports[`EuiIcon props tabIndex renders focusable="false" when -1 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -436,7 +436,7 @@ exports[`EuiIcon props tabIndex renders focusable="false" when not provided 1`]
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -455,7 +455,7 @@ exports[`EuiIcon props tabIndex renders focusable="true" when 0 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -478,7 +478,7 @@ exports[`EuiIcon props title and titleId are passed and generate an aria-labelle
Search icon
`;
@@ -496,7 +496,7 @@ exports[`EuiIcon props type accessibility is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -514,7 +514,7 @@ exports[`EuiIcon props type addDataApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -573,19 +573,19 @@ exports[`EuiIcon props type agentApp is rendered 1`] = `
>
@@ -604,7 +604,7 @@ exports[`EuiIcon props type aggregate is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -623,10 +623,10 @@ exports[`EuiIcon props type alert is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -646,7 +646,7 @@ exports[`EuiIcon props type analyzeEvent is rendered 1`] = `
>
@@ -665,7 +665,7 @@ exports[`EuiIcon props type annotation is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -687,7 +687,7 @@ exports[`EuiIcon props type apmApp is rendered 1`] = `
/>
`;
@@ -705,7 +705,7 @@ exports[`EuiIcon props type apmTrace is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -723,12 +723,12 @@ exports[`EuiIcon props type appSearchApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -747,7 +747,7 @@ exports[`EuiIcon props type apps is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -767,7 +767,7 @@ exports[`EuiIcon props type arrowDown is rendered 1`] = `
>
@@ -787,11 +787,11 @@ exports[`EuiIcon props type arrowEnd is rendered 1`] = `
>
`;
@@ -811,7 +811,7 @@ exports[`EuiIcon props type arrowLeft is rendered 1`] = `
>
@@ -832,7 +832,7 @@ exports[`EuiIcon props type arrowRight is rendered 1`] = `
>
@@ -851,11 +851,11 @@ exports[`EuiIcon props type arrowStart is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -876,7 +876,7 @@ exports[`EuiIcon props type arrowUp is rendered 1`] = `
>
@@ -896,11 +896,11 @@ exports[`EuiIcon props type article is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -919,7 +919,7 @@ exports[`EuiIcon props type asterisk is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -959,7 +959,7 @@ exports[`EuiIcon props type beaker is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -977,7 +977,7 @@ exports[`EuiIcon props type bell is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -996,7 +996,7 @@ exports[`EuiIcon props type bellSlash is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1014,7 +1014,7 @@ exports[`EuiIcon props type beta is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1032,7 +1032,7 @@ exports[`EuiIcon props type bolt is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1050,7 +1050,7 @@ exports[`EuiIcon props type boxesHorizontal is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1068,7 +1068,7 @@ exports[`EuiIcon props type boxesVertical is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1086,7 +1086,7 @@ exports[`EuiIcon props type branch is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1105,11 +1105,11 @@ exports[`EuiIcon props type branchUser is rendered 1`] = `
>
`;
@@ -1127,7 +1127,7 @@ exports[`EuiIcon props type broom is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1145,7 +1145,7 @@ exports[`EuiIcon props type brush is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1163,7 +1163,7 @@ exports[`EuiIcon props type bug is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1181,7 +1181,7 @@ exports[`EuiIcon props type bullseye is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1199,7 +1199,7 @@ exports[`EuiIcon props type calendar is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -1222,7 +1222,7 @@ exports[`EuiIcon props type canvasApp is rendered 1`] = `
d="M7 17h2v7H7zM12 14h2v10h-2zM17 16h2v8h-2zM22 14h3v2h-3zM22 18h3v2h-3zM22 22h3v2h-3z"
/>
`;
@@ -1241,16 +1241,16 @@ exports[`EuiIcon props type casesApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -1269,7 +1269,7 @@ exports[`EuiIcon props type check is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -1288,7 +1288,7 @@ exports[`EuiIcon props type checkInCircleFilled is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -1307,7 +1307,7 @@ exports[`EuiIcon props type cheer is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1325,11 +1325,11 @@ exports[`EuiIcon props type classificationJob is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1347,7 +1347,7 @@ exports[`EuiIcon props type clock is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -1366,7 +1366,7 @@ exports[`EuiIcon props type cloudDrizzle is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1384,7 +1384,7 @@ exports[`EuiIcon props type cloudStormy is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1402,7 +1402,7 @@ exports[`EuiIcon props type cloudSunny is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1422,7 +1422,7 @@ exports[`EuiIcon props type cluster is rendered 1`] = `
>
@@ -1441,11 +1441,11 @@ exports[`EuiIcon props type codeApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1463,7 +1463,7 @@ exports[`EuiIcon props type color is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1481,7 +1481,7 @@ exports[`EuiIcon props type compute is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1524,14 +1524,14 @@ exports[`EuiIcon props type consoleApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1549,7 +1549,7 @@ exports[`EuiIcon props type container is rendered 1`] = `
>
@@ -1568,7 +1568,7 @@ exports[`EuiIcon props type continuityAbove is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1586,7 +1586,7 @@ exports[`EuiIcon props type continuityAboveBelow is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1604,7 +1604,7 @@ exports[`EuiIcon props type continuityBelow is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1622,7 +1622,7 @@ exports[`EuiIcon props type continuityWithin is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1640,7 +1640,7 @@ exports[`EuiIcon props type controlsHorizontal is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -1659,7 +1659,7 @@ exports[`EuiIcon props type controlsVertical is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -1678,10 +1678,10 @@ exports[`EuiIcon props type copy is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1699,10 +1699,10 @@ exports[`EuiIcon props type copyClipboard is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1743,10 +1743,10 @@ exports[`EuiIcon props type createMultiMetricJob is rendered 1`] = `
>
`;
@@ -1764,11 +1764,11 @@ exports[`EuiIcon props type createPopulationJob is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1786,7 +1786,7 @@ exports[`EuiIcon props type createSingleMetricJob is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1830,7 +1830,7 @@ exports[`EuiIcon props type crossClusterReplicationApp is rendered 1`] = `
/>
`;
@@ -1848,7 +1848,7 @@ exports[`EuiIcon props type crosshairs is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1866,7 +1866,7 @@ exports[`EuiIcon props type currency is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1884,7 +1884,7 @@ exports[`EuiIcon props type cut is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -1903,18 +1903,18 @@ exports[`EuiIcon props type dashboardApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1932,11 +1932,11 @@ exports[`EuiIcon props type dataVisualizer is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1954,7 +1954,7 @@ exports[`EuiIcon props type database is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -1973,11 +1973,11 @@ exports[`EuiIcon props type desktop is rendered 1`] = `
>
`;
@@ -1995,7 +1995,7 @@ exports[`EuiIcon props type devToolsApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2040,10 +2040,10 @@ exports[`EuiIcon props type discuss is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2061,7 +2061,7 @@ exports[`EuiIcon props type document is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2079,7 +2079,7 @@ exports[`EuiIcon props type documentEdit is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2097,13 +2097,13 @@ exports[`EuiIcon props type documentation is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2121,7 +2121,7 @@ exports[`EuiIcon props type documents is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2161,11 +2161,11 @@ exports[`EuiIcon props type dotInCircle is rendered 1`] = `
>
`;
@@ -2185,12 +2185,12 @@ exports[`EuiIcon props type doubleArrowLeft is rendered 1`] = `
>
@@ -2211,12 +2211,12 @@ exports[`EuiIcon props type doubleArrowRight is rendered 1`] = `
>
@@ -2235,10 +2235,10 @@ exports[`EuiIcon props type download is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2256,7 +2256,7 @@ exports[`EuiIcon props type editorAlignCenter is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2274,7 +2274,7 @@ exports[`EuiIcon props type editorAlignLeft is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2292,7 +2292,7 @@ exports[`EuiIcon props type editorAlignRight is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2310,7 +2310,7 @@ exports[`EuiIcon props type editorBold is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2329,7 +2329,7 @@ exports[`EuiIcon props type editorChecklist is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2347,7 +2347,7 @@ exports[`EuiIcon props type editorCodeBlock is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2365,7 +2365,7 @@ exports[`EuiIcon props type editorComment is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2383,7 +2383,7 @@ exports[`EuiIcon props type editorDistributeHorizontal is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2401,7 +2401,7 @@ exports[`EuiIcon props type editorDistributeVertical is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2419,7 +2419,7 @@ exports[`EuiIcon props type editorHeading is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2437,7 +2437,7 @@ exports[`EuiIcon props type editorItalic is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2455,7 +2455,7 @@ exports[`EuiIcon props type editorItemAlignBottom is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2473,7 +2473,7 @@ exports[`EuiIcon props type editorItemAlignCenter is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2491,7 +2491,7 @@ exports[`EuiIcon props type editorItemAlignLeft is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2509,7 +2509,7 @@ exports[`EuiIcon props type editorItemAlignMiddle is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2527,7 +2527,7 @@ exports[`EuiIcon props type editorItemAlignRight is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2545,7 +2545,7 @@ exports[`EuiIcon props type editorItemAlignTop is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2563,7 +2563,7 @@ exports[`EuiIcon props type editorLink is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2581,7 +2581,7 @@ exports[`EuiIcon props type editorOrderedList is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2599,7 +2599,7 @@ exports[`EuiIcon props type editorPositionBottomLeft is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2617,7 +2617,7 @@ exports[`EuiIcon props type editorPositionBottomRight is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2635,7 +2635,7 @@ exports[`EuiIcon props type editorPositionTopLeft is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2653,7 +2653,7 @@ exports[`EuiIcon props type editorPositionTopRight is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2671,7 +2671,7 @@ exports[`EuiIcon props type editorRedo is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2689,7 +2689,7 @@ exports[`EuiIcon props type editorStrike is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2707,7 +2707,7 @@ exports[`EuiIcon props type editorTable is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2725,7 +2725,7 @@ exports[`EuiIcon props type editorUnderline is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2743,7 +2743,7 @@ exports[`EuiIcon props type editorUndo is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2761,7 +2761,7 @@ exports[`EuiIcon props type editorUnorderedList is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2779,7 +2779,7 @@ exports[`EuiIcon props type email is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -2816,7 +2816,7 @@ exports[`EuiIcon props type emsApp is rendered 1`] = `
d="M3 22h3v2H1V1h23v5h-2V3H3z"
/>
`;
@@ -2834,10 +2834,10 @@ exports[`EuiIcon props type eql is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2855,10 +2855,10 @@ exports[`EuiIcon props type eraser is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2876,7 +2876,7 @@ exports[`EuiIcon props type error is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -2895,7 +2895,7 @@ exports[`EuiIcon props type exit is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -2914,7 +2914,7 @@ exports[`EuiIcon props type expand is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -2933,7 +2933,7 @@ exports[`EuiIcon props type expandMini is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -2952,7 +2952,7 @@ exports[`EuiIcon props type exportAction is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2970,7 +2970,7 @@ exports[`EuiIcon props type eye is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -2988,7 +2988,7 @@ exports[`EuiIcon props type eyeClosed is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3006,7 +3006,7 @@ exports[`EuiIcon props type faceHappy is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3024,7 +3024,7 @@ exports[`EuiIcon props type faceNeutral is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -3043,7 +3043,7 @@ exports[`EuiIcon props type faceSad is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3065,7 +3065,7 @@ exports[`EuiIcon props type filebeatApp is rendered 1`] = `
d="M8 18h16v2H8zM8 13h9v2H8zM8 23h16v2H8z"
/>
`;
@@ -3083,7 +3083,7 @@ exports[`EuiIcon props type filter is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3101,14 +3101,14 @@ exports[`EuiIcon props type filterExclude is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3126,7 +3126,7 @@ exports[`EuiIcon props type filterIgnore is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3144,7 +3144,7 @@ exports[`EuiIcon props type filterInCircle is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -3163,7 +3163,7 @@ exports[`EuiIcon props type filterInclude is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3181,7 +3181,7 @@ exports[`EuiIcon props type flag is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3199,11 +3199,11 @@ exports[`EuiIcon props type fleetApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3219,7 +3219,7 @@ exports[`EuiIcon props type fold is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3237,7 +3237,7 @@ exports[`EuiIcon props type folderCheck is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -3256,7 +3256,7 @@ exports[`EuiIcon props type folderClosed is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3274,7 +3274,7 @@ exports[`EuiIcon props type folderExclamation is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -3293,7 +3293,7 @@ exports[`EuiIcon props type folderOpen is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3313,7 +3313,7 @@ exports[`EuiIcon props type frameNext is rendered 1`] = `
>
`;
@@ -3333,7 +3333,7 @@ exports[`EuiIcon props type framePrevious is rendered 1`] = `
>
`;
@@ -3351,7 +3351,7 @@ exports[`EuiIcon props type fullScreen is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -3370,7 +3370,7 @@ exports[`EuiIcon props type fullScreenExit is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3406,7 +3406,7 @@ exports[`EuiIcon props type gear is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3425,10 +3425,10 @@ exports[`EuiIcon props type gisApp is rendered 1`] = `
>
`;
@@ -3446,7 +3446,7 @@ exports[`EuiIcon props type glasses is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3464,7 +3464,7 @@ exports[`EuiIcon props type globe is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3482,7 +3482,7 @@ exports[`EuiIcon props type grab is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -3501,7 +3501,7 @@ exports[`EuiIcon props type grabHorizontal is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -3521,10 +3521,10 @@ exports[`EuiIcon props type graphApp is rendered 1`] = `
>
`;
@@ -3542,7 +3542,7 @@ exports[`EuiIcon props type grid is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3560,11 +3560,11 @@ exports[`EuiIcon props type grokApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3582,7 +3582,7 @@ exports[`EuiIcon props type heart is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3601,10 +3601,10 @@ exports[`EuiIcon props type heartbeatApp is rendered 1`] = `
>
`;
@@ -3622,7 +3622,7 @@ exports[`EuiIcon props type heatmap is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3640,7 +3640,7 @@ exports[`EuiIcon props type help is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -3659,7 +3659,7 @@ exports[`EuiIcon props type home is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3677,7 +3677,7 @@ exports[`EuiIcon props type iInCircle is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -3696,7 +3696,7 @@ exports[`EuiIcon props type image is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3714,7 +3714,7 @@ exports[`EuiIcon props type importAction is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3732,7 +3732,7 @@ exports[`EuiIcon props type indexClose is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3750,7 +3750,7 @@ exports[`EuiIcon props type indexEdit is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3768,7 +3768,7 @@ exports[`EuiIcon props type indexFlush is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -3791,10 +3791,10 @@ exports[`EuiIcon props type indexManagementApp is rendered 1`] = `
/>
`;
@@ -3812,7 +3812,7 @@ exports[`EuiIcon props type indexMapping is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3830,7 +3830,7 @@ exports[`EuiIcon props type indexOpen is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3848,11 +3848,11 @@ exports[`EuiIcon props type indexPatternApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3870,17 +3870,17 @@ exports[`EuiIcon props type indexRollupApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3901,7 +3901,7 @@ exports[`EuiIcon props type indexRuntime is rendered 1`] = `
d="M12 2H2v11h6v1H1V1h12v6.839l-1-.707V2z"
/>
`;
@@ -3919,13 +3919,13 @@ exports[`EuiIcon props type indexSettings is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3943,10 +3943,10 @@ exports[`EuiIcon props type indexTemporary is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -3964,7 +3964,7 @@ exports[`EuiIcon props type infinity is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -4006,7 +4006,7 @@ exports[`EuiIcon props type inspect is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -4024,10 +4024,10 @@ exports[`EuiIcon props type invert is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -4045,7 +4045,7 @@ exports[`EuiIcon props type ip is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -4062,7 +4062,7 @@ exports[`EuiIcon props type keyboard is rendered 1`] = `
>
@@ -4081,7 +4081,7 @@ exports[`EuiIcon props type kqlField is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -4099,7 +4099,7 @@ exports[`EuiIcon props type kqlFunction is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -4117,7 +4117,7 @@ exports[`EuiIcon props type kqlOperand is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -4135,7 +4135,7 @@ exports[`EuiIcon props type kqlSelector is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -4153,7 +4153,7 @@ exports[`EuiIcon props type kqlValue is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -4214,15 +4214,15 @@ exports[`EuiIcon props type launch is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -4240,13 +4240,13 @@ exports[`EuiIcon props type layers is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -4265,10 +4265,10 @@ exports[`EuiIcon props type lensApp is rendered 1`] = `
>
`;
@@ -4286,7 +4286,7 @@ exports[`EuiIcon props type lettering is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -4305,7 +4305,7 @@ exports[`EuiIcon props type lineDashed is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -4323,7 +4323,7 @@ exports[`EuiIcon props type lineDotted is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -4341,7 +4341,7 @@ exports[`EuiIcon props type lineSolid is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -4359,7 +4359,7 @@ exports[`EuiIcon props type link is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -4377,7 +4377,7 @@ exports[`EuiIcon props type list is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -4395,7 +4395,7 @@ exports[`EuiIcon props type listAdd is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -4413,7 +4413,7 @@ exports[`EuiIcon props type lock is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -4431,7 +4431,7 @@ exports[`EuiIcon props type lockOpen is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -4454,16 +4454,16 @@ exports[`EuiIcon props type logoAWS is rendered 1`] = `
>
@@ -4486,14 +4486,14 @@ exports[`EuiIcon props type logoAWSMono is rendered 1`] = `
fill-rule="evenodd"
>
@@ -4519,7 +4519,7 @@ exports[`EuiIcon props type logoAerospike is rendered 1`] = `
fill="#C4373A"
/>
@@ -4708,37 +4708,37 @@ exports[`EuiIcon props type logoApache is rendered 1`] = `
fill="none"
>
@@ -4759,15 +4759,15 @@ exports[`EuiIcon props type logoAppSearch is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -4786,7 +4786,7 @@ exports[`EuiIcon props type logoAzure is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -4805,7 +4805,7 @@ exports[`EuiIcon props type logoAzureMono is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -4827,12 +4827,12 @@ exports[`EuiIcon props type logoBeats is rendered 1`] = `
fill="#0080D5"
/>
`;
@@ -4883,7 +4883,7 @@ exports[`EuiIcon props type logoCeph is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -4907,14 +4907,14 @@ exports[`EuiIcon props type logoCloud is rendered 1`] = `
>
@@ -4935,14 +4935,14 @@ exports[`EuiIcon props type logoCloudEnterprise is rendered 1`] = `
>
@@ -4962,14 +4962,14 @@ exports[`EuiIcon props type logoCode is rendered 1`] = `
>
@@ -4988,7 +4988,7 @@ exports[`EuiIcon props type logoCodesandbox is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -5006,7 +5006,7 @@ exports[`EuiIcon props type logoCouchbase is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -5054,11 +5054,11 @@ exports[`EuiIcon props type logoDropwizard is rendered 1`] = `
fill="url(#logo_dropwizard_generated-id_b)"
/>
@@ -5183,7 +5183,7 @@ exports[`EuiIcon props type logoElasticStack is rendered 1`] = `
fill-rule="evenodd"
>
@@ -5220,14 +5220,14 @@ exports[`EuiIcon props type logoElasticsearch is rendered 1`] = `
>
@@ -5248,20 +5248,20 @@ exports[`EuiIcon props type logoEnterpriseSearch is rendered 1`] = `
>
@@ -5286,7 +5286,7 @@ exports[`EuiIcon props type logoEtcd is rendered 1`] = `
d="M14.65 14.164c0 1.189-.933 2.15-2.083 2.15-1.152 0-2.082-.961-2.082-2.15 0-1.185.93-2.15 2.082-2.15 1.15 0 2.083.965 2.083 2.15zm2.693 0c0 1.189.934 2.15 2.084 2.15s2.083-.961 2.083-2.15c0-1.185-.933-2.15-2.083-2.15-1.15 0-2.084.965-2.084 2.15z"
/>
@@ -5316,22 +5316,22 @@ exports[`EuiIcon props type logoGCP is rendered 1`] = `
fill-rule="evenodd"
>
@@ -5348,13 +5348,13 @@ exports[`EuiIcon props type logoGCP is rendered 1`] = `
/>
@@ -5378,7 +5378,7 @@ exports[`EuiIcon props type logoGCPMono is rendered 1`] = `
d="M20.256 15.982c0-2.316-1.91-4.194-4.268-4.194-2.357 0-4.268 1.878-4.268 4.194 0 2.317 1.911 4.195 4.268 4.195 2.357 0 4.268-1.878 4.268-4.195"
/>
`;
@@ -5396,7 +5396,7 @@ exports[`EuiIcon props type logoGithub is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -5417,31 +5417,31 @@ exports[`EuiIcon props type logoGmail is rendered 1`] = `
fill="none"
>
@@ -5462,75 +5462,75 @@ exports[`EuiIcon props type logoGolang is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -5619,7 +5619,7 @@ exports[`EuiIcon props type logoGoogleG is rendered 1`] = `
id="logo_google_g_generated-id_c"
/>
@@ -5921,31 +5921,31 @@ exports[`EuiIcon props type logoIBM is rendered 1`] = `
fill-rule="evenodd"
>
@@ -5966,7 +5966,7 @@ exports[`EuiIcon props type logoIBMMono is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -5985,7 +5985,7 @@ exports[`EuiIcon props type logoKafka is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -6012,10 +6012,10 @@ exports[`EuiIcon props type logoKibana is rendered 1`] = `
/>
@@ -6035,7 +6035,7 @@ exports[`EuiIcon props type logoKubernetes is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -6054,7 +6054,7 @@ exports[`EuiIcon props type logoLogging is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -6108,15 +6108,15 @@ exports[`EuiIcon props type logoMaps is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -6206,28 +6206,28 @@ exports[`EuiIcon props type logoMemcached is rendered 1`] = `
fill="none"
>
@@ -6252,15 +6252,15 @@ exports[`EuiIcon props type logoMetrics is rendered 1`] = `
fill-rule="evenodd"
>
@@ -6283,11 +6283,11 @@ exports[`EuiIcon props type logoMongodb is rendered 1`] = `
fill="none"
>
@@ -6326,10 +6326,10 @@ exports[`EuiIcon props type logoMySQL is rendered 1`] = `
fill="#00546B"
>
@@ -6352,11 +6352,11 @@ exports[`EuiIcon props type logoNginx is rendered 1`] = `
fill-rule="evenodd"
>
@@ -6377,7 +6377,7 @@ exports[`EuiIcon props type logoObservability is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -6551,27 +6551,27 @@ exports[`EuiIcon props type logoPhp is rendered 1`] = `
mask="url(#logo_php_generated-id_g)"
>
@@ -6595,19 +6595,19 @@ exports[`EuiIcon props type logoPostgres is rendered 1`] = `
fill="none"
>
@@ -6627,7 +6627,7 @@ exports[`EuiIcon props type logoPrometheus is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -6646,7 +6646,7 @@ exports[`EuiIcon props type logoRabbitmq is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -6693,7 +6693,7 @@ exports[`EuiIcon props type logoRedis is rendered 1`] = `
fill="#D82C20"
/>
@@ -6728,16 +6728,16 @@ exports[`EuiIcon props type logoSecurity is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -6763,12 +6763,12 @@ exports[`EuiIcon props type logoSiteSearch is rendered 1`] = `
fill="#FA744E"
/>
@@ -6790,27 +6790,27 @@ exports[`EuiIcon props type logoSketch is rendered 1`] = `
fill="none"
>
@@ -6833,19 +6833,19 @@ exports[`EuiIcon props type logoSlack is rendered 1`] = `
fill="none"
>
@@ -6865,16 +6865,16 @@ exports[`EuiIcon props type logoUptime is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -6891,21 +6891,18 @@ exports[`EuiIcon props type logoVulnerabilityManagement is rendered 1`] = `
width="32"
xmlns="http://www.w3.org/2000/svg"
>
-
-
-
-
-
+
+
+
`;
@@ -6925,15 +6922,15 @@ exports[`EuiIcon props type logoWebhook is rendered 1`] = `
fill="none"
>
@@ -6953,7 +6950,7 @@ exports[`EuiIcon props type logoWindows is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -6972,16 +6969,16 @@ exports[`EuiIcon props type logoWorkplaceSearch is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -6999,11 +6996,11 @@ exports[`EuiIcon props type logsApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7021,7 +7018,7 @@ exports[`EuiIcon props type logstashFilter is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7039,7 +7036,7 @@ exports[`EuiIcon props type logstashIf is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7057,7 +7054,7 @@ exports[`EuiIcon props type logstashInput is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7075,7 +7072,7 @@ exports[`EuiIcon props type logstashOutput is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7093,7 +7090,7 @@ exports[`EuiIcon props type logstashQueue is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7112,10 +7109,10 @@ exports[`EuiIcon props type machineLearningApp is rendered 1`] = `
>
`;
@@ -7133,7 +7130,7 @@ exports[`EuiIcon props type magnet is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7151,7 +7148,7 @@ exports[`EuiIcon props type magnifyWithExclamation is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7169,7 +7166,7 @@ exports[`EuiIcon props type magnifyWithMinus is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7187,7 +7184,7 @@ exports[`EuiIcon props type magnifyWithPlus is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7206,10 +7203,10 @@ exports[`EuiIcon props type managementApp is rendered 1`] = `
>
`;
@@ -7227,7 +7224,7 @@ exports[`EuiIcon props type mapMarker is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7248,7 +7245,7 @@ exports[`EuiIcon props type memory is rendered 1`] = `
d="M7 10h2V6H7zM3 10h2V6H3zM11.025 10h2V6h-2zM3.5 13.75h1v-2.4h-1zM6.175 13.75h1.001v-2.4H6.175zM8.85 13.75h1v-2.4h-1zM11.525 13.75h1v-2.4h-1z"
/>
`;
@@ -7267,7 +7264,7 @@ exports[`EuiIcon props type menu is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7285,7 +7282,7 @@ exports[`EuiIcon props type menuDown is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7303,7 +7300,7 @@ exports[`EuiIcon props type menuLeft is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7321,7 +7318,7 @@ exports[`EuiIcon props type menuRight is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7339,7 +7336,7 @@ exports[`EuiIcon props type menuUp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7357,7 +7354,7 @@ exports[`EuiIcon props type merge is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7375,14 +7372,14 @@ exports[`EuiIcon props type metricbeatApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7400,11 +7397,11 @@ exports[`EuiIcon props type metricsApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7422,7 +7419,7 @@ exports[`EuiIcon props type minimize is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7462,7 +7459,7 @@ exports[`EuiIcon props type minusInCircle is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -7481,7 +7478,7 @@ exports[`EuiIcon props type minusInCircleFilled is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -7500,11 +7497,11 @@ exports[`EuiIcon props type mobile is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -7523,11 +7520,11 @@ exports[`EuiIcon props type monitoringApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7545,7 +7542,7 @@ exports[`EuiIcon props type moon is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7584,7 +7581,7 @@ exports[`EuiIcon props type nested is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7602,7 +7599,7 @@ exports[`EuiIcon props type node is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7620,7 +7617,7 @@ exports[`EuiIcon props type notebookApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7682,7 +7679,7 @@ exports[`EuiIcon props type online is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7704,7 +7701,7 @@ exports[`EuiIcon props type outlierDetectionJob is rendered 1`] = `
/>
`;
@@ -7722,7 +7719,7 @@ exports[`EuiIcon props type package is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7741,10 +7738,10 @@ exports[`EuiIcon props type packetbeatApp is rendered 1`] = `
>
`;
@@ -7762,7 +7759,7 @@ exports[`EuiIcon props type pageSelect is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -7781,7 +7778,7 @@ exports[`EuiIcon props type pagesSelect is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -7800,7 +7797,7 @@ exports[`EuiIcon props type paperClip is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7818,7 +7815,7 @@ exports[`EuiIcon props type partial is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7836,7 +7833,7 @@ exports[`EuiIcon props type pause is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7855,7 +7852,7 @@ exports[`EuiIcon props type payment is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7873,7 +7870,7 @@ exports[`EuiIcon props type pencil is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7917,7 +7914,7 @@ exports[`EuiIcon props type pin is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -7936,7 +7933,7 @@ exports[`EuiIcon props type pinFilled is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -7954,7 +7951,7 @@ exports[`EuiIcon props type pipelineApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -7997,7 +7994,7 @@ exports[`EuiIcon props type play is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -8016,7 +8013,7 @@ exports[`EuiIcon props type playFilled is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -8034,7 +8031,7 @@ exports[`EuiIcon props type plus is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -8052,7 +8049,7 @@ exports[`EuiIcon props type plusInCircle is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -8071,7 +8068,7 @@ exports[`EuiIcon props type plusInCircleFilled is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -8089,7 +8086,7 @@ exports[`EuiIcon props type popout is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -8107,10 +8104,10 @@ exports[`EuiIcon props type push is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -8128,7 +8125,7 @@ exports[`EuiIcon props type questionInCircle is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -8146,7 +8143,7 @@ exports[`EuiIcon props type quote is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -8164,11 +8161,11 @@ exports[`EuiIcon props type recentlyViewedApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -8186,7 +8183,7 @@ exports[`EuiIcon props type refresh is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -8204,7 +8201,7 @@ exports[`EuiIcon props type regressionJob is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -8245,10 +8242,10 @@ exports[`EuiIcon props type reportingApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -8288,7 +8285,7 @@ exports[`EuiIcon props type save is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -8307,10 +8304,10 @@ exports[`EuiIcon props type savedObjectsApp is rendered 1`] = `
>
`;
@@ -8328,7 +8325,7 @@ exports[`EuiIcon props type scale is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -8347,7 +8344,7 @@ exports[`EuiIcon props type search is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -8379,7 +8376,7 @@ exports[`EuiIcon props type searchProfilerApp is rendered 1`] = `
d="M15.81 16H19v2h-3.19zM7 12h9v2H7z"
/>
`;
@@ -8422,11 +8419,11 @@ exports[`EuiIcon props type securityApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -8444,7 +8441,7 @@ exports[`EuiIcon props type securitySignal is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -8463,7 +8460,7 @@ exports[`EuiIcon props type securitySignalDetected is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -8482,7 +8479,7 @@ exports[`EuiIcon props type securitySignalResolved is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -8505,7 +8502,7 @@ exports[`EuiIcon props type sessionViewer is rendered 1`] = `
/>
@@ -8524,7 +8521,7 @@ exports[`EuiIcon props type shard is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -8542,7 +8539,7 @@ exports[`EuiIcon props type share is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -8560,7 +8557,7 @@ exports[`EuiIcon props type snowflake is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -8579,7 +8576,7 @@ exports[`EuiIcon props type sortAscending is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -8597,7 +8594,7 @@ exports[`EuiIcon props type sortDescending is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -8615,7 +8612,7 @@ exports[`EuiIcon props type sortDown is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -8633,7 +8630,7 @@ exports[`EuiIcon props type sortLeft is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -8652,7 +8649,7 @@ exports[`EuiIcon props type sortRight is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -8670,7 +8667,7 @@ exports[`EuiIcon props type sortUp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -8688,7 +8685,7 @@ exports[`EuiIcon props type sortable is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -8708,7 +8705,7 @@ exports[`EuiIcon props type spaces is rendered 1`] = `
>
@@ -8757,7 +8754,7 @@ exports[`EuiIcon props type sqlApp is rendered 1`] = `
d="M18 6h9v2h-9zM5 6h9v2H5zM5 12h9v2H5zM18 12h9v2h-9zM5 18h9v2H5zM18 18h9v2h-9zM18 24h9v2h-9zM5 24h9v2H5z"
/>
`;
@@ -8775,7 +8772,7 @@ exports[`EuiIcon props type starEmpty is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -8794,7 +8791,7 @@ exports[`EuiIcon props type starEmptySpace is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -8813,7 +8810,7 @@ exports[`EuiIcon props type starFilled is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -8832,7 +8829,7 @@ exports[`EuiIcon props type starFilledSpace is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -8851,7 +8848,7 @@ exports[`EuiIcon props type starMinusEmpty is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -8870,7 +8867,7 @@ exports[`EuiIcon props type starMinusFilled is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -8889,7 +8886,7 @@ exports[`EuiIcon props type starPlusEmpty is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -8908,7 +8905,7 @@ exports[`EuiIcon props type starPlusFilled is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -8927,7 +8924,7 @@ exports[`EuiIcon props type stats is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -8946,7 +8943,7 @@ exports[`EuiIcon props type stop is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -8988,7 +8985,7 @@ exports[`EuiIcon props type stopSlash is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -9010,7 +9007,7 @@ exports[`EuiIcon props type storage is rendered 1`] = `
transform="translate(0 2)"
>
@@ -9064,7 +9061,7 @@ exports[`EuiIcon props type submodule is rendered 1`] = `
>
@@ -9083,7 +9080,7 @@ exports[`EuiIcon props type sun is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -9133,7 +9130,7 @@ exports[`EuiIcon props type symlink is rendered 1`] = `
>
@@ -9152,7 +9149,7 @@ exports[`EuiIcon props type tableDensityCompact is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -9170,7 +9167,7 @@ exports[`EuiIcon props type tableDensityExpanded is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -9188,7 +9185,7 @@ exports[`EuiIcon props type tableDensityNormal is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -9224,7 +9221,7 @@ exports[`EuiIcon props type tag is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -9242,7 +9239,7 @@ exports[`EuiIcon props type tear is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -9260,10 +9257,10 @@ exports[`EuiIcon props type temperature is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -9283,11 +9280,11 @@ exports[`EuiIcon props type timeRefresh is rendered 1`] = `
>
`;
@@ -9305,7 +9302,7 @@ exports[`EuiIcon props type timeline is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -9324,7 +9321,7 @@ exports[`EuiIcon props type timelineWithArrow is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -9343,7 +9340,7 @@ exports[`EuiIcon props type timelionApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -9385,7 +9382,7 @@ exports[`EuiIcon props type tokenAlias is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -9404,7 +9401,7 @@ exports[`EuiIcon props type tokenAnnotation is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -9423,7 +9420,7 @@ exports[`EuiIcon props type tokenArray is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -9442,7 +9439,7 @@ exports[`EuiIcon props type tokenBinary is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -9461,7 +9458,7 @@ exports[`EuiIcon props type tokenBoolean is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -9480,7 +9477,7 @@ exports[`EuiIcon props type tokenClass is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -9500,11 +9497,11 @@ exports[`EuiIcon props type tokenCompletionSuggester is rendered 1`] = `
>
`;
@@ -9522,7 +9519,7 @@ exports[`EuiIcon props type tokenConstant is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -9541,7 +9538,7 @@ exports[`EuiIcon props type tokenDate is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -9560,7 +9557,7 @@ exports[`EuiIcon props type tokenDenseVector is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -9578,7 +9575,7 @@ exports[`EuiIcon props type tokenElement is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -9616,7 +9613,7 @@ exports[`EuiIcon props type tokenEnumMember is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -9635,7 +9632,7 @@ exports[`EuiIcon props type tokenEvent is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -9654,7 +9651,7 @@ exports[`EuiIcon props type tokenException is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -9691,7 +9688,7 @@ exports[`EuiIcon props type tokenFile is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -9709,7 +9706,7 @@ exports[`EuiIcon props type tokenFlattened is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -9727,7 +9724,7 @@ exports[`EuiIcon props type tokenFunction is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -9746,7 +9743,7 @@ exports[`EuiIcon props type tokenGeo is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -9783,7 +9780,7 @@ exports[`EuiIcon props type tokenIP is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -9802,7 +9799,7 @@ exports[`EuiIcon props type tokenInterface is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -9822,7 +9819,7 @@ exports[`EuiIcon props type tokenJoin is rendered 1`] = `
>
@@ -9841,7 +9838,7 @@ exports[`EuiIcon props type tokenKey is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -9878,7 +9875,7 @@ exports[`EuiIcon props type tokenMethod is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -9897,7 +9894,7 @@ exports[`EuiIcon props type tokenMetricCounter is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -9915,7 +9912,7 @@ exports[`EuiIcon props type tokenMetricGauge is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -9933,10 +9930,10 @@ exports[`EuiIcon props type tokenModule is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -9954,7 +9951,7 @@ exports[`EuiIcon props type tokenNamespace is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -9975,10 +9972,10 @@ exports[`EuiIcon props type tokenNested is rendered 1`] = `
fill-rule="evenodd"
>
@@ -9997,7 +9994,7 @@ exports[`EuiIcon props type tokenNull is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10015,7 +10012,7 @@ exports[`EuiIcon props type tokenNumber is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10033,7 +10030,7 @@ exports[`EuiIcon props type tokenObject is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -10052,7 +10049,7 @@ exports[`EuiIcon props type tokenOperator is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -10071,7 +10068,7 @@ exports[`EuiIcon props type tokenPackage is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -10090,7 +10087,7 @@ exports[`EuiIcon props type tokenParameter is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -10110,7 +10107,7 @@ exports[`EuiIcon props type tokenPercolator is rendered 1`] = `
>
@@ -10129,7 +10126,7 @@ exports[`EuiIcon props type tokenProperty is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -10151,7 +10148,7 @@ exports[`EuiIcon props type tokenRange is rendered 1`] = `
fill-rule="evenodd"
>
@@ -10170,7 +10167,7 @@ exports[`EuiIcon props type tokenRankFeature is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10188,7 +10185,7 @@ exports[`EuiIcon props type tokenRankFeatures is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10206,7 +10203,7 @@ exports[`EuiIcon props type tokenRepo is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -10225,11 +10222,11 @@ exports[`EuiIcon props type tokenSearchType is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -10248,7 +10245,7 @@ exports[`EuiIcon props type tokenShape is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -10267,7 +10264,7 @@ exports[`EuiIcon props type tokenString is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10285,7 +10282,7 @@ exports[`EuiIcon props type tokenStruct is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -10304,7 +10301,7 @@ exports[`EuiIcon props type tokenSymbol is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10322,10 +10319,10 @@ exports[`EuiIcon props type tokenTag is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -10344,7 +10341,7 @@ exports[`EuiIcon props type tokenText is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10362,7 +10359,7 @@ exports[`EuiIcon props type tokenTokenCount is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10380,7 +10377,7 @@ exports[`EuiIcon props type tokenVariable is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -10399,7 +10396,7 @@ exports[`EuiIcon props type training is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10417,7 +10414,7 @@ exports[`EuiIcon props type trash is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10433,7 +10430,7 @@ exports[`EuiIcon props type unfold is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10452,10 +10449,10 @@ exports[`EuiIcon props type unlink is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10474,10 +10471,10 @@ exports[`EuiIcon props type upgradeAssistantApp is rendered 1`] = `
>
`;
@@ -10496,10 +10493,10 @@ exports[`EuiIcon props type uptimeApp is rendered 1`] = `
>
`;
@@ -10518,11 +10515,11 @@ exports[`EuiIcon props type user is rendered 1`] = `
>
`;
@@ -10543,10 +10540,10 @@ exports[`EuiIcon props type userAvatar is rendered 1`] = `
fill-rule="evenodd"
>
@@ -10565,11 +10562,11 @@ exports[`EuiIcon props type users is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -10588,11 +10585,11 @@ exports[`EuiIcon props type usersRolesApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10610,7 +10607,7 @@ exports[`EuiIcon props type vector is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10628,7 +10625,7 @@ exports[`EuiIcon props type videoPlayer is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10646,7 +10643,7 @@ exports[`EuiIcon props type visArea is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10664,7 +10661,7 @@ exports[`EuiIcon props type visAreaStacked is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10682,7 +10679,7 @@ exports[`EuiIcon props type visBarHorizontal is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10700,7 +10697,7 @@ exports[`EuiIcon props type visBarHorizontalStacked is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10718,7 +10715,7 @@ exports[`EuiIcon props type visBarVertical is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10736,7 +10733,7 @@ exports[`EuiIcon props type visBarVerticalStacked is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10754,7 +10751,7 @@ exports[`EuiIcon props type visGauge is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10772,7 +10769,7 @@ exports[`EuiIcon props type visGoal is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10790,7 +10787,7 @@ exports[`EuiIcon props type visLine is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10808,7 +10805,7 @@ exports[`EuiIcon props type visMapCoordinate is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10826,7 +10823,7 @@ exports[`EuiIcon props type visMapRegion is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10844,7 +10841,7 @@ exports[`EuiIcon props type visMetric is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10862,7 +10859,7 @@ exports[`EuiIcon props type visPie is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10880,7 +10877,7 @@ exports[`EuiIcon props type visTable is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10898,7 +10895,7 @@ exports[`EuiIcon props type visTagCloud is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10916,7 +10913,7 @@ exports[`EuiIcon props type visText is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10934,7 +10931,7 @@ exports[`EuiIcon props type visTimelion is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10952,7 +10949,7 @@ exports[`EuiIcon props type visVega is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10970,7 +10967,7 @@ exports[`EuiIcon props type visVisualBuilder is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -10989,13 +10986,13 @@ exports[`EuiIcon props type visualizeApp is rendered 1`] = `
>
`;
@@ -11014,10 +11011,10 @@ exports[`EuiIcon props type vulnerabilityManagementApp is rendered 1`] = `
>
`;
@@ -11035,10 +11032,10 @@ exports[`EuiIcon props type warning is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -11056,17 +11053,17 @@ exports[`EuiIcon props type watchesApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -11087,7 +11084,7 @@ exports[`EuiIcon props type wordWrap is rendered 1`] = `
d="M2 3h12v1H2V3zm0 8h6v1H2v-1z"
/>
`;
@@ -11105,7 +11102,7 @@ exports[`EuiIcon props type wordWrapDisabled is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
@@ -11123,12 +11120,12 @@ exports[`EuiIcon props type workplaceSearchApp is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
@@ -11147,7 +11144,7 @@ exports[`EuiIcon props type wrench is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
diff --git a/src/components/icon/assets/accessibility.tsx b/src/components/icon/assets/accessibility.tsx
index 81caea2ac48..a8b0356f211 100644
--- a/src/components/icon/assets/accessibility.tsx
+++ b/src/components/icon/assets/accessibility.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAccessibility = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAccessibility;
diff --git a/src/components/icon/assets/aggregate.tsx b/src/components/icon/assets/aggregate.tsx
index 4c94ae6c509..3607f2297ee 100644
--- a/src/components/icon/assets/aggregate.tsx
+++ b/src/components/icon/assets/aggregate.tsx
@@ -9,30 +9,29 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAggregate = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAggregate;
diff --git a/src/components/icon/assets/analyzeEvent.tsx b/src/components/icon/assets/analyzeEvent.tsx
index 19110dedac4..f1215a9a06e 100644
--- a/src/components/icon/assets/analyzeEvent.tsx
+++ b/src/components/icon/assets/analyzeEvent.tsx
@@ -9,32 +9,31 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAnalyzeEvent = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAnalyzeEvent;
diff --git a/src/components/icon/assets/annotation.tsx b/src/components/icon/assets/annotation.tsx
index d750fe96b88..601806b6da1 100644
--- a/src/components/icon/assets/annotation.tsx
+++ b/src/components/icon/assets/annotation.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAnnotation = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAnnotation;
diff --git a/src/components/icon/assets/apm_trace.tsx b/src/components/icon/assets/apm_trace.tsx
index 15720a726c4..81570f1c472 100644
--- a/src/components/icon/assets/apm_trace.tsx
+++ b/src/components/icon/assets/apm_trace.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconApmTrace = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconApmTrace;
diff --git a/src/components/icon/assets/app_add_data.tsx b/src/components/icon/assets/app_add_data.tsx
index b8df1b8e735..f864505746d 100644
--- a/src/components/icon/assets/app_add_data.tsx
+++ b/src/components/icon/assets/app_add_data.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppAddData = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppAddData;
diff --git a/src/components/icon/assets/app_advanced_settings.tsx b/src/components/icon/assets/app_advanced_settings.tsx
index 5f6c50b4f3d..f74ff4a9cf7 100644
--- a/src/components/icon/assets/app_advanced_settings.tsx
+++ b/src/components/icon/assets/app_advanced_settings.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppAdvancedSettings = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppAdvancedSettings;
diff --git a/src/components/icon/assets/app_agent.tsx b/src/components/icon/assets/app_agent.tsx
index 65e4037cbf4..08ddb74e2b6 100644
--- a/src/components/icon/assets/app_agent.tsx
+++ b/src/components/icon/assets/app_agent.tsx
@@ -9,31 +9,30 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppAgent = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppAgent;
diff --git a/src/components/icon/assets/app_apm.tsx b/src/components/icon/assets/app_apm.tsx
index 636dbd2c4d7..60d4c25bdaa 100644
--- a/src/components/icon/assets/app_apm.tsx
+++ b/src/components/icon/assets/app_apm.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppApm = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppApm;
diff --git a/src/components/icon/assets/app_app_search.tsx b/src/components/icon/assets/app_app_search.tsx
index 76e0fc5fcbf..28c26f3ec6c 100644
--- a/src/components/icon/assets/app_app_search.tsx
+++ b/src/components/icon/assets/app_app_search.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppAppSearch = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppAppSearch;
diff --git a/src/components/icon/assets/app_auditbeat.tsx b/src/components/icon/assets/app_auditbeat.tsx
index ec79469304d..a4b76f07f20 100644
--- a/src/components/icon/assets/app_auditbeat.tsx
+++ b/src/components/icon/assets/app_auditbeat.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppAuditbeat = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppAuditbeat;
diff --git a/src/components/icon/assets/app_canvas.tsx b/src/components/icon/assets/app_canvas.tsx
index fc28f36c6cd..8fbd4c943bb 100644
--- a/src/components/icon/assets/app_canvas.tsx
+++ b/src/components/icon/assets/app_canvas.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppCanvas = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppCanvas;
diff --git a/src/components/icon/assets/app_cases.tsx b/src/components/icon/assets/app_cases.tsx
index 63c1ee4c395..6e8c85690f2 100644
--- a/src/components/icon/assets/app_cases.tsx
+++ b/src/components/icon/assets/app_cases.tsx
@@ -9,38 +9,37 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppCases = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppCases;
diff --git a/src/components/icon/assets/app_code.tsx b/src/components/icon/assets/app_code.tsx
index f56b9a682a3..0b31d8af5df 100644
--- a/src/components/icon/assets/app_code.tsx
+++ b/src/components/icon/assets/app_code.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppCode = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppCode;
diff --git a/src/components/icon/assets/app_console.tsx b/src/components/icon/assets/app_console.tsx
index 72700f43ebf..18c27843014 100644
--- a/src/components/icon/assets/app_console.tsx
+++ b/src/components/icon/assets/app_console.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppConsole = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppConsole;
diff --git a/src/components/icon/assets/app_cross_cluster_replication.tsx b/src/components/icon/assets/app_cross_cluster_replication.tsx
index 952d4544a88..f2baaaedd8c 100644
--- a/src/components/icon/assets/app_cross_cluster_replication.tsx
+++ b/src/components/icon/assets/app_cross_cluster_replication.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppCrossClusterReplication = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppCrossClusterReplication;
diff --git a/src/components/icon/assets/app_dashboard.tsx b/src/components/icon/assets/app_dashboard.tsx
index f2626f8579d..a2dc8fdcdae 100644
--- a/src/components/icon/assets/app_dashboard.tsx
+++ b/src/components/icon/assets/app_dashboard.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppDashboard = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppDashboard;
diff --git a/src/components/icon/assets/app_devtools.tsx b/src/components/icon/assets/app_devtools.tsx
index de16b3a0f83..ca221d5868d 100644
--- a/src/components/icon/assets/app_devtools.tsx
+++ b/src/components/icon/assets/app_devtools.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppDevtools = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppDevtools;
diff --git a/src/components/icon/assets/app_discover.tsx b/src/components/icon/assets/app_discover.tsx
index 043fa6dbe43..fe9ef1ecd41 100644
--- a/src/components/icon/assets/app_discover.tsx
+++ b/src/components/icon/assets/app_discover.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppDiscover = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppDiscover;
diff --git a/src/components/icon/assets/app_ems.tsx b/src/components/icon/assets/app_ems.tsx
index 59fe9e6e560..822cfe0f858 100644
--- a/src/components/icon/assets/app_ems.tsx
+++ b/src/components/icon/assets/app_ems.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppEms = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppEms;
diff --git a/src/components/icon/assets/app_filebeat.tsx b/src/components/icon/assets/app_filebeat.tsx
index da6179857a8..5b293a48b7c 100644
--- a/src/components/icon/assets/app_filebeat.tsx
+++ b/src/components/icon/assets/app_filebeat.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppFilebeat = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppFilebeat;
diff --git a/src/components/icon/assets/app_fleet.tsx b/src/components/icon/assets/app_fleet.tsx
index afaa1c9431e..669406aa82b 100644
--- a/src/components/icon/assets/app_fleet.tsx
+++ b/src/components/icon/assets/app_fleet.tsx
@@ -9,41 +9,40 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppFleet = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppFleet;
diff --git a/src/components/icon/assets/app_gis.tsx b/src/components/icon/assets/app_gis.tsx
index d9a777664bc..90f06c1ae27 100644
--- a/src/components/icon/assets/app_gis.tsx
+++ b/src/components/icon/assets/app_gis.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppGis = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppGis;
diff --git a/src/components/icon/assets/app_graph.tsx b/src/components/icon/assets/app_graph.tsx
index e5ee029da9b..66ef5a0c744 100644
--- a/src/components/icon/assets/app_graph.tsx
+++ b/src/components/icon/assets/app_graph.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppGraph = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppGraph;
diff --git a/src/components/icon/assets/app_grok.tsx b/src/components/icon/assets/app_grok.tsx
index ef25904bfb1..db0a0c5c784 100644
--- a/src/components/icon/assets/app_grok.tsx
+++ b/src/components/icon/assets/app_grok.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppGrok = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppGrok;
diff --git a/src/components/icon/assets/app_heartbeat.tsx b/src/components/icon/assets/app_heartbeat.tsx
index 5485549bec1..cd9297a784c 100644
--- a/src/components/icon/assets/app_heartbeat.tsx
+++ b/src/components/icon/assets/app_heartbeat.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppHeartbeat = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppHeartbeat;
diff --git a/src/components/icon/assets/app_index_management.tsx b/src/components/icon/assets/app_index_management.tsx
index e0d918ed52e..8b2acb6c92d 100644
--- a/src/components/icon/assets/app_index_management.tsx
+++ b/src/components/icon/assets/app_index_management.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppIndexManagement = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppIndexManagement;
diff --git a/src/components/icon/assets/app_index_pattern.tsx b/src/components/icon/assets/app_index_pattern.tsx
index a68ff4bc2b3..70de61e778f 100644
--- a/src/components/icon/assets/app_index_pattern.tsx
+++ b/src/components/icon/assets/app_index_pattern.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppIndexPattern = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppIndexPattern;
diff --git a/src/components/icon/assets/app_index_rollup.tsx b/src/components/icon/assets/app_index_rollup.tsx
index 6b1d535d28e..ec5ed46a063 100644
--- a/src/components/icon/assets/app_index_rollup.tsx
+++ b/src/components/icon/assets/app_index_rollup.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppIndexRollup = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppIndexRollup;
diff --git a/src/components/icon/assets/app_lens.tsx b/src/components/icon/assets/app_lens.tsx
index fdc6de589c7..bf6a2cc8458 100644
--- a/src/components/icon/assets/app_lens.tsx
+++ b/src/components/icon/assets/app_lens.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppLens = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppLens;
diff --git a/src/components/icon/assets/app_logs.tsx b/src/components/icon/assets/app_logs.tsx
index ccf6c81ff99..b82a5b19de2 100644
--- a/src/components/icon/assets/app_logs.tsx
+++ b/src/components/icon/assets/app_logs.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppLogs = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppLogs;
diff --git a/src/components/icon/assets/app_management.tsx b/src/components/icon/assets/app_management.tsx
index 79691edb2b8..6e2fb81e593 100644
--- a/src/components/icon/assets/app_management.tsx
+++ b/src/components/icon/assets/app_management.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppManagement = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppManagement;
diff --git a/src/components/icon/assets/app_metricbeat.tsx b/src/components/icon/assets/app_metricbeat.tsx
index e662da2e5f9..dade369d4ba 100644
--- a/src/components/icon/assets/app_metricbeat.tsx
+++ b/src/components/icon/assets/app_metricbeat.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppMetricbeat = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppMetricbeat;
diff --git a/src/components/icon/assets/app_metrics.tsx b/src/components/icon/assets/app_metrics.tsx
index 41a512ec0d9..d3674b4f16e 100644
--- a/src/components/icon/assets/app_metrics.tsx
+++ b/src/components/icon/assets/app_metrics.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppMetrics = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppMetrics;
diff --git a/src/components/icon/assets/app_ml.tsx b/src/components/icon/assets/app_ml.tsx
index 9d9a7789294..a3a5beddf28 100644
--- a/src/components/icon/assets/app_ml.tsx
+++ b/src/components/icon/assets/app_ml.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppMl = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppMl;
diff --git a/src/components/icon/assets/app_monitoring.tsx b/src/components/icon/assets/app_monitoring.tsx
index ff9c572a5b6..67d94c2062f 100644
--- a/src/components/icon/assets/app_monitoring.tsx
+++ b/src/components/icon/assets/app_monitoring.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppMonitoring = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppMonitoring;
diff --git a/src/components/icon/assets/app_notebook.tsx b/src/components/icon/assets/app_notebook.tsx
index a3304316f32..6a938aa4e86 100644
--- a/src/components/icon/assets/app_notebook.tsx
+++ b/src/components/icon/assets/app_notebook.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppNotebook = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppNotebook;
diff --git a/src/components/icon/assets/app_packetbeat.tsx b/src/components/icon/assets/app_packetbeat.tsx
index 18d8efcc2b0..83ce89c0912 100644
--- a/src/components/icon/assets/app_packetbeat.tsx
+++ b/src/components/icon/assets/app_packetbeat.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppPacketbeat = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppPacketbeat;
diff --git a/src/components/icon/assets/app_pipeline.tsx b/src/components/icon/assets/app_pipeline.tsx
index 24a2bc9f28c..c5e0225764f 100644
--- a/src/components/icon/assets/app_pipeline.tsx
+++ b/src/components/icon/assets/app_pipeline.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppPipeline = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppPipeline;
diff --git a/src/components/icon/assets/app_recently_viewed.tsx b/src/components/icon/assets/app_recently_viewed.tsx
index 0368e1b903d..2589ddc1873 100644
--- a/src/components/icon/assets/app_recently_viewed.tsx
+++ b/src/components/icon/assets/app_recently_viewed.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppRecentlyViewed = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppRecentlyViewed;
diff --git a/src/components/icon/assets/app_reporting.tsx b/src/components/icon/assets/app_reporting.tsx
index 206d0b83218..70a183e5390 100644
--- a/src/components/icon/assets/app_reporting.tsx
+++ b/src/components/icon/assets/app_reporting.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppReporting = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppReporting;
diff --git a/src/components/icon/assets/app_saved_objects.tsx b/src/components/icon/assets/app_saved_objects.tsx
index adff2f0dc58..7b2571ffea9 100644
--- a/src/components/icon/assets/app_saved_objects.tsx
+++ b/src/components/icon/assets/app_saved_objects.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppSavedObjects = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppSavedObjects;
diff --git a/src/components/icon/assets/app_search_profiler.tsx b/src/components/icon/assets/app_search_profiler.tsx
index 7a70f46c9f8..d18348049bd 100644
--- a/src/components/icon/assets/app_search_profiler.tsx
+++ b/src/components/icon/assets/app_search_profiler.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppSearchProfiler = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppSearchProfiler;
diff --git a/src/components/icon/assets/app_security.tsx b/src/components/icon/assets/app_security.tsx
index e8cbc4bef8c..0c56cb463b9 100644
--- a/src/components/icon/assets/app_security.tsx
+++ b/src/components/icon/assets/app_security.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppSecurity = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppSecurity;
diff --git a/src/components/icon/assets/app_security_analytics.tsx b/src/components/icon/assets/app_security_analytics.tsx
index fae1c281389..10635ec07dc 100644
--- a/src/components/icon/assets/app_security_analytics.tsx
+++ b/src/components/icon/assets/app_security_analytics.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppSecurityAnalytics = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppSecurityAnalytics;
diff --git a/src/components/icon/assets/app_spaces.tsx b/src/components/icon/assets/app_spaces.tsx
index dd3cad164e9..95600563616 100644
--- a/src/components/icon/assets/app_spaces.tsx
+++ b/src/components/icon/assets/app_spaces.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppSpaces = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppSpaces;
diff --git a/src/components/icon/assets/app_sql.tsx b/src/components/icon/assets/app_sql.tsx
index 91dbfd10b96..f87c596d41c 100644
--- a/src/components/icon/assets/app_sql.tsx
+++ b/src/components/icon/assets/app_sql.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppSql = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppSql;
diff --git a/src/components/icon/assets/app_timelion.tsx b/src/components/icon/assets/app_timelion.tsx
index 04ed9170315..32bcbd102be 100644
--- a/src/components/icon/assets/app_timelion.tsx
+++ b/src/components/icon/assets/app_timelion.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppTimelion = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppTimelion;
diff --git a/src/components/icon/assets/app_upgrade_assistant.tsx b/src/components/icon/assets/app_upgrade_assistant.tsx
index 999953d4dc4..ee82fe83da5 100644
--- a/src/components/icon/assets/app_upgrade_assistant.tsx
+++ b/src/components/icon/assets/app_upgrade_assistant.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppUpgradeAssistant = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppUpgradeAssistant;
diff --git a/src/components/icon/assets/app_uptime.tsx b/src/components/icon/assets/app_uptime.tsx
index f14c3570d7e..eb2f1c54139 100644
--- a/src/components/icon/assets/app_uptime.tsx
+++ b/src/components/icon/assets/app_uptime.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppUptime = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppUptime;
diff --git a/src/components/icon/assets/app_users_roles.tsx b/src/components/icon/assets/app_users_roles.tsx
index ed92782be19..17bec66fe51 100644
--- a/src/components/icon/assets/app_users_roles.tsx
+++ b/src/components/icon/assets/app_users_roles.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppUsersRoles = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppUsersRoles;
diff --git a/src/components/icon/assets/app_visualize.tsx b/src/components/icon/assets/app_visualize.tsx
index 110558b76cc..50b8b11a626 100644
--- a/src/components/icon/assets/app_visualize.tsx
+++ b/src/components/icon/assets/app_visualize.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppVisualize = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppVisualize;
diff --git a/src/components/icon/assets/app_vulnerability_management.tsx b/src/components/icon/assets/app_vulnerability_management.tsx
index a7996133341..2710a23c170 100644
--- a/src/components/icon/assets/app_vulnerability_management.tsx
+++ b/src/components/icon/assets/app_vulnerability_management.tsx
@@ -9,6 +9,7 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
@@ -17,21 +18,21 @@ const EuiIconAppVulnerabilityManagement = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
export const icon = EuiIconAppVulnerabilityManagement;
diff --git a/src/components/icon/assets/app_watches.tsx b/src/components/icon/assets/app_watches.tsx
index 5bead1488ce..00069911ea6 100644
--- a/src/components/icon/assets/app_watches.tsx
+++ b/src/components/icon/assets/app_watches.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppWatches = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppWatches;
diff --git a/src/components/icon/assets/app_workplace_search.tsx b/src/components/icon/assets/app_workplace_search.tsx
index 02253fb0a62..06332ca7c1f 100644
--- a/src/components/icon/assets/app_workplace_search.tsx
+++ b/src/components/icon/assets/app_workplace_search.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAppWorkplaceSearch = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAppWorkplaceSearch;
diff --git a/src/components/icon/assets/apps.tsx b/src/components/icon/assets/apps.tsx
index e9d65977f1c..cf1d1a9374f 100644
--- a/src/components/icon/assets/apps.tsx
+++ b/src/components/icon/assets/apps.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconApps = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconApps;
diff --git a/src/components/icon/assets/arrowEnd.tsx b/src/components/icon/assets/arrowEnd.tsx
index 3f7be6539b7..51e57cbea2e 100644
--- a/src/components/icon/assets/arrowEnd.tsx
+++ b/src/components/icon/assets/arrowEnd.tsx
@@ -9,32 +9,31 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconArrowEnd = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconArrowEnd;
diff --git a/src/components/icon/assets/arrowStart.tsx b/src/components/icon/assets/arrowStart.tsx
index 82178603b7f..e83d3b88563 100644
--- a/src/components/icon/assets/arrowStart.tsx
+++ b/src/components/icon/assets/arrowStart.tsx
@@ -9,32 +9,31 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconArrowStart = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconArrowStart;
diff --git a/src/components/icon/assets/arrow_down.tsx b/src/components/icon/assets/arrow_down.tsx
index 87f244926dd..d0fbc45d250 100644
--- a/src/components/icon/assets/arrow_down.tsx
+++ b/src/components/icon/assets/arrow_down.tsx
@@ -9,32 +9,31 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconArrowDown = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconArrowDown;
diff --git a/src/components/icon/assets/arrow_left.tsx b/src/components/icon/assets/arrow_left.tsx
index 4bc490a5f3e..c8bb809440e 100644
--- a/src/components/icon/assets/arrow_left.tsx
+++ b/src/components/icon/assets/arrow_left.tsx
@@ -9,32 +9,31 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconArrowLeft = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconArrowLeft;
diff --git a/src/components/icon/assets/arrow_right.tsx b/src/components/icon/assets/arrow_right.tsx
index 05b3617c867..dd1fbbb53f0 100644
--- a/src/components/icon/assets/arrow_right.tsx
+++ b/src/components/icon/assets/arrow_right.tsx
@@ -9,32 +9,31 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconArrowRight = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconArrowRight;
diff --git a/src/components/icon/assets/arrow_up.tsx b/src/components/icon/assets/arrow_up.tsx
index 5d4235963cc..9c96ddaf21a 100644
--- a/src/components/icon/assets/arrow_up.tsx
+++ b/src/components/icon/assets/arrow_up.tsx
@@ -9,32 +9,31 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconArrowUp = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconArrowUp;
diff --git a/src/components/icon/assets/article.tsx b/src/components/icon/assets/article.tsx
index 6fe679ecd64..cf13aa49aae 100644
--- a/src/components/icon/assets/article.tsx
+++ b/src/components/icon/assets/article.tsx
@@ -9,33 +9,32 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconArticle = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconArticle;
diff --git a/src/components/icon/assets/asterisk.tsx b/src/components/icon/assets/asterisk.tsx
index 01a49f1a7b9..74f6317ee88 100644
--- a/src/components/icon/assets/asterisk.tsx
+++ b/src/components/icon/assets/asterisk.tsx
@@ -9,27 +9,26 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconAsterisk = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconAsterisk;
diff --git a/src/components/icon/assets/beaker.tsx b/src/components/icon/assets/beaker.tsx
index 355fe0ae68b..470c20c7357 100644
--- a/src/components/icon/assets/beaker.tsx
+++ b/src/components/icon/assets/beaker.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconBeaker = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconBeaker;
diff --git a/src/components/icon/assets/bell.tsx b/src/components/icon/assets/bell.tsx
index 2cd52dd1837..658e6508cc4 100644
--- a/src/components/icon/assets/bell.tsx
+++ b/src/components/icon/assets/bell.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconBell = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconBell;
diff --git a/src/components/icon/assets/bellSlash.tsx b/src/components/icon/assets/bellSlash.tsx
index 4eb7810a0c8..1a7e0f38735 100644
--- a/src/components/icon/assets/bellSlash.tsx
+++ b/src/components/icon/assets/bellSlash.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconBellSlash = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconBellSlash;
diff --git a/src/components/icon/assets/beta.tsx b/src/components/icon/assets/beta.tsx
index 32a71051c54..e7c639bac0e 100644
--- a/src/components/icon/assets/beta.tsx
+++ b/src/components/icon/assets/beta.tsx
@@ -9,27 +9,26 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconBeta = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconBeta;
diff --git a/src/components/icon/assets/bolt.tsx b/src/components/icon/assets/bolt.tsx
index 5259d9402c7..07b364ae8cb 100644
--- a/src/components/icon/assets/bolt.tsx
+++ b/src/components/icon/assets/bolt.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconBolt = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconBolt;
diff --git a/src/components/icon/assets/boxes_horizontal.tsx b/src/components/icon/assets/boxes_horizontal.tsx
index bc1e2290a9d..915cf7eb2c1 100644
--- a/src/components/icon/assets/boxes_horizontal.tsx
+++ b/src/components/icon/assets/boxes_horizontal.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconBoxesHorizontal = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconBoxesHorizontal;
diff --git a/src/components/icon/assets/boxes_vertical.tsx b/src/components/icon/assets/boxes_vertical.tsx
index 6ab9944f3b3..a11ae78f452 100644
--- a/src/components/icon/assets/boxes_vertical.tsx
+++ b/src/components/icon/assets/boxes_vertical.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconBoxesVertical = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconBoxesVertical;
diff --git a/src/components/icon/assets/branch.tsx b/src/components/icon/assets/branch.tsx
index 16c700a34cf..2f4c721b776 100644
--- a/src/components/icon/assets/branch.tsx
+++ b/src/components/icon/assets/branch.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconBranch = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconBranch;
diff --git a/src/components/icon/assets/branchUser.tsx b/src/components/icon/assets/branchUser.tsx
index 7e65c980a63..3f90d5a6880 100644
--- a/src/components/icon/assets/branchUser.tsx
+++ b/src/components/icon/assets/branchUser.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconBranchUser = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconBranchUser;
diff --git a/src/components/icon/assets/broom.tsx b/src/components/icon/assets/broom.tsx
index e6f69147c04..a72e4666845 100644
--- a/src/components/icon/assets/broom.tsx
+++ b/src/components/icon/assets/broom.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconBroom = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconBroom;
diff --git a/src/components/icon/assets/brush.tsx b/src/components/icon/assets/brush.tsx
index c5d137f7d23..6684caff68a 100644
--- a/src/components/icon/assets/brush.tsx
+++ b/src/components/icon/assets/brush.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconBrush = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconBrush;
diff --git a/src/components/icon/assets/bug.tsx b/src/components/icon/assets/bug.tsx
index 7b7ce2afeab..a45e51fdbe7 100644
--- a/src/components/icon/assets/bug.tsx
+++ b/src/components/icon/assets/bug.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconBug = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconBug;
diff --git a/src/components/icon/assets/bullseye.tsx b/src/components/icon/assets/bullseye.tsx
index 304cfe2ac05..60718f86a38 100644
--- a/src/components/icon/assets/bullseye.tsx
+++ b/src/components/icon/assets/bullseye.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconBullseye = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconBullseye;
diff --git a/src/components/icon/assets/calendar.tsx b/src/components/icon/assets/calendar.tsx
index 14caa504788..9115db7be88 100644
--- a/src/components/icon/assets/calendar.tsx
+++ b/src/components/icon/assets/calendar.tsx
@@ -9,30 +9,29 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconCalendar = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconCalendar;
diff --git a/src/components/icon/assets/check.tsx b/src/components/icon/assets/check.tsx
index b7d2e991db2..93b0a320221 100644
--- a/src/components/icon/assets/check.tsx
+++ b/src/components/icon/assets/check.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconCheck = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconCheck;
diff --git a/src/components/icon/assets/checkInCircleFilled.tsx b/src/components/icon/assets/checkInCircleFilled.tsx
index e2fcd233074..8ee91dbbd84 100644
--- a/src/components/icon/assets/checkInCircleFilled.tsx
+++ b/src/components/icon/assets/checkInCircleFilled.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconCheckInCircleFilled = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconCheckInCircleFilled;
diff --git a/src/components/icon/assets/cheer.tsx b/src/components/icon/assets/cheer.tsx
index fc893261968..c6c3cb9b97b 100644
--- a/src/components/icon/assets/cheer.tsx
+++ b/src/components/icon/assets/cheer.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconCheer = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconCheer;
diff --git a/src/components/icon/assets/clock.tsx b/src/components/icon/assets/clock.tsx
index 53293797a07..aeae537fc7b 100644
--- a/src/components/icon/assets/clock.tsx
+++ b/src/components/icon/assets/clock.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconClock = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconClock;
diff --git a/src/components/icon/assets/cloudDrizzle.tsx b/src/components/icon/assets/cloudDrizzle.tsx
index 4ee8fdcf6f2..1844d0e3b6c 100644
--- a/src/components/icon/assets/cloudDrizzle.tsx
+++ b/src/components/icon/assets/cloudDrizzle.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconCloudDrizzle = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconCloudDrizzle;
diff --git a/src/components/icon/assets/cloudStormy.tsx b/src/components/icon/assets/cloudStormy.tsx
index b77f174400d..2ae4038366e 100644
--- a/src/components/icon/assets/cloudStormy.tsx
+++ b/src/components/icon/assets/cloudStormy.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconCloudStormy = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconCloudStormy;
diff --git a/src/components/icon/assets/cloudSunny.tsx b/src/components/icon/assets/cloudSunny.tsx
index 17638cdc4c8..cd235d06f81 100644
--- a/src/components/icon/assets/cloudSunny.tsx
+++ b/src/components/icon/assets/cloudSunny.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconCloudSunny = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconCloudSunny;
diff --git a/src/components/icon/assets/cluster.tsx b/src/components/icon/assets/cluster.tsx
index 01604f88574..19a8a27926e 100644
--- a/src/components/icon/assets/cluster.tsx
+++ b/src/components/icon/assets/cluster.tsx
@@ -9,32 +9,31 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconCluster = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconCluster;
diff --git a/src/components/icon/assets/color.tsx b/src/components/icon/assets/color.tsx
index 1e87e9c8e9d..6ccffbc06d6 100644
--- a/src/components/icon/assets/color.tsx
+++ b/src/components/icon/assets/color.tsx
@@ -9,27 +9,26 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconColor = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconColor;
diff --git a/src/components/icon/assets/compute.tsx b/src/components/icon/assets/compute.tsx
index 149eb5eeaf3..45a9f1d8156 100644
--- a/src/components/icon/assets/compute.tsx
+++ b/src/components/icon/assets/compute.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconCompute = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconCompute;
diff --git a/src/components/icon/assets/console.tsx b/src/components/icon/assets/console.tsx
index f3ae0e2a854..fbd117d7948 100644
--- a/src/components/icon/assets/console.tsx
+++ b/src/components/icon/assets/console.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconConsole = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconConsole;
diff --git a/src/components/icon/assets/container.tsx b/src/components/icon/assets/container.tsx
index 513ad36e2ed..ee6feb27f1a 100644
--- a/src/components/icon/assets/container.tsx
+++ b/src/components/icon/assets/container.tsx
@@ -9,19 +9,19 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconContainer = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconContainer;
diff --git a/src/components/icon/assets/continuityAbove.tsx b/src/components/icon/assets/continuityAbove.tsx
index 6a81b7a7658..394415e2ed2 100644
--- a/src/components/icon/assets/continuityAbove.tsx
+++ b/src/components/icon/assets/continuityAbove.tsx
@@ -9,27 +9,26 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconContinuityAbove = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconContinuityAbove;
diff --git a/src/components/icon/assets/continuityAboveBelow.tsx b/src/components/icon/assets/continuityAboveBelow.tsx
index 771f603ece2..4bdcedb6afe 100644
--- a/src/components/icon/assets/continuityAboveBelow.tsx
+++ b/src/components/icon/assets/continuityAboveBelow.tsx
@@ -9,27 +9,26 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconContinuityAboveBelow = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconContinuityAboveBelow;
diff --git a/src/components/icon/assets/continuityBelow.tsx b/src/components/icon/assets/continuityBelow.tsx
index 1be60d3d67e..82429b3d954 100644
--- a/src/components/icon/assets/continuityBelow.tsx
+++ b/src/components/icon/assets/continuityBelow.tsx
@@ -9,27 +9,26 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconContinuityBelow = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconContinuityBelow;
diff --git a/src/components/icon/assets/continuityWithin.tsx b/src/components/icon/assets/continuityWithin.tsx
index a303a031323..ffffc8c21d7 100644
--- a/src/components/icon/assets/continuityWithin.tsx
+++ b/src/components/icon/assets/continuityWithin.tsx
@@ -9,27 +9,26 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconContinuityWithin = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconContinuityWithin;
diff --git a/src/components/icon/assets/controls_horizontal.tsx b/src/components/icon/assets/controls_horizontal.tsx
index 5c5f35fd658..07499e6003d 100644
--- a/src/components/icon/assets/controls_horizontal.tsx
+++ b/src/components/icon/assets/controls_horizontal.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconControlsHorizontal = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconControlsHorizontal;
diff --git a/src/components/icon/assets/controls_vertical.tsx b/src/components/icon/assets/controls_vertical.tsx
index e5817293853..f916a4f4c56 100644
--- a/src/components/icon/assets/controls_vertical.tsx
+++ b/src/components/icon/assets/controls_vertical.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconControlsVertical = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconControlsVertical;
diff --git a/src/components/icon/assets/copy.tsx b/src/components/icon/assets/copy.tsx
index d8f1645c77a..7cd4267cb91 100644
--- a/src/components/icon/assets/copy.tsx
+++ b/src/components/icon/assets/copy.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconCopy = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconCopy;
diff --git a/src/components/icon/assets/copy_clipboard.tsx b/src/components/icon/assets/copy_clipboard.tsx
index c4273b971b1..0d148a9d5af 100644
--- a/src/components/icon/assets/copy_clipboard.tsx
+++ b/src/components/icon/assets/copy_clipboard.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconCopyClipboard = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconCopyClipboard;
diff --git a/src/components/icon/assets/cross.tsx b/src/components/icon/assets/cross.tsx
index b67354683d7..f60049b76f9 100644
--- a/src/components/icon/assets/cross.tsx
+++ b/src/components/icon/assets/cross.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconCross = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconCross;
diff --git a/src/components/icon/assets/crosshairs.tsx b/src/components/icon/assets/crosshairs.tsx
index 8d43d7ccf10..2420ebc24d7 100644
--- a/src/components/icon/assets/crosshairs.tsx
+++ b/src/components/icon/assets/crosshairs.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconCrosshairs = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconCrosshairs;
diff --git a/src/components/icon/assets/currency.tsx b/src/components/icon/assets/currency.tsx
index 3099a0e3488..ab0c722d9ab 100644
--- a/src/components/icon/assets/currency.tsx
+++ b/src/components/icon/assets/currency.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconCurrency = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconCurrency;
diff --git a/src/components/icon/assets/cut.tsx b/src/components/icon/assets/cut.tsx
index c94b0fe4377..f6a0226e9ee 100644
--- a/src/components/icon/assets/cut.tsx
+++ b/src/components/icon/assets/cut.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconCut = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconCut;
diff --git a/src/components/icon/assets/database.tsx b/src/components/icon/assets/database.tsx
index 23cd80457e4..8e75ed560bc 100644
--- a/src/components/icon/assets/database.tsx
+++ b/src/components/icon/assets/database.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconDatabase = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconDatabase;
diff --git a/src/components/icon/assets/desktop.tsx b/src/components/icon/assets/desktop.tsx
index 20192ead699..5195d14524c 100644
--- a/src/components/icon/assets/desktop.tsx
+++ b/src/components/icon/assets/desktop.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconDesktop = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconDesktop;
diff --git a/src/components/icon/assets/discuss.tsx b/src/components/icon/assets/discuss.tsx
index 1d97c91b651..2fa7f23b92e 100644
--- a/src/components/icon/assets/discuss.tsx
+++ b/src/components/icon/assets/discuss.tsx
@@ -9,29 +9,28 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconDiscuss = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconDiscuss;
diff --git a/src/components/icon/assets/document.tsx b/src/components/icon/assets/document.tsx
index a469cb9ad27..2143abf567d 100644
--- a/src/components/icon/assets/document.tsx
+++ b/src/components/icon/assets/document.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconDocument = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconDocument;
diff --git a/src/components/icon/assets/documentEdit.tsx b/src/components/icon/assets/documentEdit.tsx
index a7e4bd17fb1..9ce400756f7 100644
--- a/src/components/icon/assets/documentEdit.tsx
+++ b/src/components/icon/assets/documentEdit.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconDocumentEdit = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconDocumentEdit;
diff --git a/src/components/icon/assets/documentation.tsx b/src/components/icon/assets/documentation.tsx
index 01bc4285543..b6d0b603f3d 100644
--- a/src/components/icon/assets/documentation.tsx
+++ b/src/components/icon/assets/documentation.tsx
@@ -9,29 +9,28 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconDocumentation = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconDocumentation;
diff --git a/src/components/icon/assets/documents.tsx b/src/components/icon/assets/documents.tsx
index df3d8c242ba..f59fa9fcd6c 100644
--- a/src/components/icon/assets/documents.tsx
+++ b/src/components/icon/assets/documents.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconDocuments = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconDocuments;
diff --git a/src/components/icon/assets/dot.tsx b/src/components/icon/assets/dot.tsx
index 00faf53d6ed..59618dfda16 100644
--- a/src/components/icon/assets/dot.tsx
+++ b/src/components/icon/assets/dot.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconDot = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconDot;
diff --git a/src/components/icon/assets/dotInCircle.tsx b/src/components/icon/assets/dotInCircle.tsx
index f4798f0141a..771e01bc2ed 100644
--- a/src/components/icon/assets/dotInCircle.tsx
+++ b/src/components/icon/assets/dotInCircle.tsx
@@ -9,33 +9,32 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconDotInCircle = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconDotInCircle;
diff --git a/src/components/icon/assets/doubleArrowLeft.tsx b/src/components/icon/assets/doubleArrowLeft.tsx
index 035c041251e..4da4d0cc603 100644
--- a/src/components/icon/assets/doubleArrowLeft.tsx
+++ b/src/components/icon/assets/doubleArrowLeft.tsx
@@ -9,37 +9,36 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconDoubleArrowLeft = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconDoubleArrowLeft;
diff --git a/src/components/icon/assets/doubleArrowRight.tsx b/src/components/icon/assets/doubleArrowRight.tsx
index bb711011b73..5818a2410ed 100644
--- a/src/components/icon/assets/doubleArrowRight.tsx
+++ b/src/components/icon/assets/doubleArrowRight.tsx
@@ -9,37 +9,36 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconDoubleArrowRight = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconDoubleArrowRight;
diff --git a/src/components/icon/assets/download.tsx b/src/components/icon/assets/download.tsx
index f3850f53ec5..78a553634f8 100644
--- a/src/components/icon/assets/download.tsx
+++ b/src/components/icon/assets/download.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconDownload = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconDownload;
diff --git a/src/components/icon/assets/editorDistributeHorizontal.tsx b/src/components/icon/assets/editorDistributeHorizontal.tsx
index 881a78deb4f..ce505b85306 100644
--- a/src/components/icon/assets/editorDistributeHorizontal.tsx
+++ b/src/components/icon/assets/editorDistributeHorizontal.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconEditorDistributeHorizontal = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconEditorDistributeHorizontal;
diff --git a/src/components/icon/assets/editorDistributeVertical.tsx b/src/components/icon/assets/editorDistributeVertical.tsx
index 2b689ea15ff..c2af22837c2 100644
--- a/src/components/icon/assets/editorDistributeVertical.tsx
+++ b/src/components/icon/assets/editorDistributeVertical.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconEditorDistributeVertical = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconEditorDistributeVertical;
diff --git a/src/components/icon/assets/editorItemAlignBottom.tsx b/src/components/icon/assets/editorItemAlignBottom.tsx
index 6c51d6bede3..843b24ae104 100644
--- a/src/components/icon/assets/editorItemAlignBottom.tsx
+++ b/src/components/icon/assets/editorItemAlignBottom.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconEditorItemAlignBottom = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconEditorItemAlignBottom;
diff --git a/src/components/icon/assets/editorItemAlignCenter.tsx b/src/components/icon/assets/editorItemAlignCenter.tsx
index b054dc06d38..fac2f701f88 100644
--- a/src/components/icon/assets/editorItemAlignCenter.tsx
+++ b/src/components/icon/assets/editorItemAlignCenter.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconEditorItemAlignCenter = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconEditorItemAlignCenter;
diff --git a/src/components/icon/assets/editorItemAlignLeft.tsx b/src/components/icon/assets/editorItemAlignLeft.tsx
index e154c0675fd..1ae9bc35364 100644
--- a/src/components/icon/assets/editorItemAlignLeft.tsx
+++ b/src/components/icon/assets/editorItemAlignLeft.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconEditorItemAlignLeft = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconEditorItemAlignLeft;
diff --git a/src/components/icon/assets/editorItemAlignMiddle.tsx b/src/components/icon/assets/editorItemAlignMiddle.tsx
index be410174027..f7544eb6bc1 100644
--- a/src/components/icon/assets/editorItemAlignMiddle.tsx
+++ b/src/components/icon/assets/editorItemAlignMiddle.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconEditorItemAlignMiddle = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (
);
-
export const icon = EuiIconEditorItemAlignMiddle;
diff --git a/src/components/icon/assets/editorItemAlignRight.tsx b/src/components/icon/assets/editorItemAlignRight.tsx
index 08f14b10776..ca796b75d00 100644
--- a/src/components/icon/assets/editorItemAlignRight.tsx
+++ b/src/components/icon/assets/editorItemAlignRight.tsx
@@ -9,16 +9,16 @@
// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js
import * as React from 'react';
+import type { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
-
const EuiIconEditorItemAlignRight = ({
title,
titleId,
...props
-}: React.SVGProps & SVGRProps) => (
+}: SVGProps & SVGRProps) => (