diff --git a/package.json b/package.json index bd0cc426cd..8ea8c61b3d 100644 --- a/package.json +++ b/package.json @@ -134,8 +134,8 @@ "@elastic/charts": "^30.2.0", "@elastic/datemath": "^5.0.3", "@elastic/eslint-config-kibana": "^0.15.0", - "@svgr/core": "5.4.0", - "@svgr/plugin-svgo": "^4.0.3", + "@svgr/core": "^6.5.1", + "@svgr/plugin-svgo": "^6.5.1", "@types/classnames": "^2.2.10", "@types/enzyme": "^3.10.5", "@types/jest": "^24.0.6", diff --git a/scripts/compile-icons.js b/scripts/compile-icons.js index 5736ec88fa..dec3fe2517 100644 --- a/scripts/compile-icons.js +++ b/scripts/compile-icons.js @@ -10,7 +10,7 @@ */ const glob = require('glob'); -const svgr = require('@svgr/core').default; +const { transform } = require('@svgr/core'); const path = require('path'); const fs = require('fs'); const license = require('../.eslintrc.js').rules[ @@ -29,38 +29,42 @@ function pascalCase(x) { const iconFiles = glob.sync('**/*.svg', { cwd: iconsDir, realpath: true }); -iconFiles.forEach(async filePath => { - const svgSource = fs.readFileSync(filePath); +iconFiles.forEach(async (filePath) => { + const svgSourceBuffer = fs.readFileSync(filePath); + const svgSource = svgSourceBuffer.toString(); try { - const viewBoxPosition = svgSource.toString().indexOf('viewBox'); + const viewBoxPosition = svgSource.indexOf('viewBox'); if (viewBoxPosition === -1) { throw new Error(`${filePath} is missing a 'viewBox' attribute`); } - const jsxSource = await svgr( + const jsxSource = await transform( svgSource, { plugins: ['@svgr/plugin-svgo', '@svgr/plugin-jsx'], svgoConfig: { plugins: [ - { cleanupIDs: false }, - { prefixIds: false }, - { removeViewBox: false }, + { + name: 'preset-default', + params: { + overrides: { + cleanupIDs: false, + prefixIds: false, + removeViewBox: false, + }, + }, + }, ], }, svgProps: { xmlns: 'http://www.w3.org/2000/svg', }, titleProp: true, - template: ( - { template }, - opts, - { imports, componentName, props, jsx } - ) => template.ast` -${imports} -const ${componentName} = (${props}) => ${jsx} -export const icon = ${componentName}; + template: ({ imports, componentName, props, jsx }, { tpl }) => tpl` + ${imports} + const ${componentName} = (${props}) => ${jsx} + export const icon = ${componentName}; `, }, { diff --git a/src/components/icon/__snapshots__/icon.test.tsx.snap b/src/components/icon/__snapshots__/icon.test.tsx.snap index 2e223a33ab..4238846d1c 100644 --- a/src/components/icon/__snapshots__/icon.test.tsx.snap +++ b/src/components/icon/__snapshots__/icon.test.tsx.snap @@ -13,7 +13,7 @@ exports[`OuiIcon is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -31,7 +31,7 @@ exports[`OuiIcon props color #885522 is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -49,7 +49,7 @@ exports[`OuiIcon props color #fde is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -66,7 +66,7 @@ exports[`OuiIcon props color accent is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -83,7 +83,7 @@ exports[`OuiIcon props color danger is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -100,7 +100,7 @@ exports[`OuiIcon props color default is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -117,7 +117,7 @@ exports[`OuiIcon props color ghost is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -135,7 +135,7 @@ exports[`OuiIcon props color hsla(270, 60%, 70%, 0.9) is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -152,7 +152,7 @@ exports[`OuiIcon props color inherit is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -169,7 +169,7 @@ exports[`OuiIcon props color primary is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -187,7 +187,7 @@ exports[`OuiIcon props color rgb(100, 150, 200) is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -204,7 +204,7 @@ exports[`OuiIcon props color secondary is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -221,7 +221,7 @@ exports[`OuiIcon props color subdued is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -238,7 +238,7 @@ exports[`OuiIcon props color success is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -255,7 +255,7 @@ exports[`OuiIcon props color text is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -272,7 +272,7 @@ exports[`OuiIcon props color warning is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -292,7 +292,7 @@ exports[`OuiIcon props other props are passed through to the icon 1`] = ` Search `; @@ -309,7 +309,7 @@ exports[`OuiIcon props size \${size} is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -326,7 +326,7 @@ exports[`OuiIcon props size \${size} is rendered 2`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -343,7 +343,7 @@ exports[`OuiIcon props size \${size} is rendered 3`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -360,7 +360,7 @@ exports[`OuiIcon props size \${size} is rendered 4`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -377,7 +377,7 @@ exports[`OuiIcon props size \${size} is rendered 5`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -394,7 +394,7 @@ exports[`OuiIcon props size \${size} is rendered 6`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -412,7 +412,7 @@ exports[`OuiIcon props tabIndex renders focusable="false" when -1 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -429,7 +429,7 @@ exports[`OuiIcon props tabIndex renders focusable="false" when not provided 1`] xmlns="http://www.w3.org/2000/svg" > `; @@ -447,7 +447,7 @@ exports[`OuiIcon props tabIndex renders focusable="true" when 0 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -469,7 +469,7 @@ exports[`OuiIcon props title and titleId are passed and generate an aria-labelle Search icon `; @@ -486,7 +486,7 @@ exports[`OuiIcon props type accessibility is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -503,7 +503,7 @@ exports[`OuiIcon props type addDataApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -559,7 +559,7 @@ exports[`OuiIcon props type aggregate is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -577,7 +577,7 @@ exports[`OuiIcon props type alert is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -595,7 +595,7 @@ exports[`OuiIcon props type analyzeEvent is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -613,7 +613,7 @@ exports[`OuiIcon props type annotation is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -634,7 +634,7 @@ exports[`OuiIcon props type apmApp is rendered 1`] = ` /> `; @@ -651,7 +651,7 @@ exports[`OuiIcon props type apmTrace is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -668,12 +668,12 @@ exports[`OuiIcon props type appSearchApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -691,7 +691,7 @@ exports[`OuiIcon props type apps is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -708,7 +708,7 @@ exports[`OuiIcon props type arrowDown is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -726,7 +726,7 @@ exports[`OuiIcon props type arrowLeft is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -744,7 +744,7 @@ exports[`OuiIcon props type arrowRight is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -762,7 +762,7 @@ exports[`OuiIcon props type arrowUp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -780,7 +780,7 @@ exports[`OuiIcon props type asterisk is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -818,7 +818,7 @@ exports[`OuiIcon props type beaker is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -835,7 +835,7 @@ exports[`OuiIcon props type bell is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -853,7 +853,7 @@ exports[`OuiIcon props type bellSlash is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -870,7 +870,7 @@ exports[`OuiIcon props type bolt is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -887,7 +887,7 @@ exports[`OuiIcon props type boxesHorizontal is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -904,7 +904,7 @@ exports[`OuiIcon props type boxesVertical is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -921,7 +921,7 @@ exports[`OuiIcon props type branch is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -938,7 +938,7 @@ exports[`OuiIcon props type broom is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -955,7 +955,7 @@ exports[`OuiIcon props type brush is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -972,7 +972,7 @@ exports[`OuiIcon props type bug is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -989,7 +989,7 @@ exports[`OuiIcon props type bullseye is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1006,7 +1006,7 @@ exports[`OuiIcon props type calendar is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -1028,7 +1028,7 @@ exports[`OuiIcon props type canvasApp is rendered 1`] = ` d="M7 17h2v7H7zM12 14h2v10h-2zM17 16h2v8h-2zM22 14h3v2h-3zM22 18h3v2h-3zM22 22h3v2h-3z" /> `; @@ -1045,7 +1045,7 @@ exports[`OuiIcon props type check is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -1063,7 +1063,7 @@ exports[`OuiIcon props type checkInCircleFilled is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -1081,7 +1081,7 @@ exports[`OuiIcon props type cheer is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1098,11 +1098,11 @@ exports[`OuiIcon props type classificationJob is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1119,7 +1119,7 @@ exports[`OuiIcon props type clock is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -1137,7 +1137,7 @@ exports[`OuiIcon props type cloudDrizzle is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1154,7 +1154,7 @@ exports[`OuiIcon props type cloudStormy is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1171,7 +1171,7 @@ exports[`OuiIcon props type cloudSunny is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1188,11 +1188,11 @@ exports[`OuiIcon props type codeApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1209,7 +1209,7 @@ exports[`OuiIcon props type color is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1226,7 +1226,7 @@ exports[`OuiIcon props type compute is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1267,14 +1267,14 @@ exports[`OuiIcon props type consoleApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1291,7 +1291,7 @@ exports[`OuiIcon props type continuityAbove is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1308,7 +1308,7 @@ exports[`OuiIcon props type continuityAboveBelow is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1325,7 +1325,7 @@ exports[`OuiIcon props type continuityBelow is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1342,7 +1342,7 @@ exports[`OuiIcon props type continuityWithin is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1359,7 +1359,7 @@ exports[`OuiIcon props type controlsHorizontal is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -1377,7 +1377,7 @@ exports[`OuiIcon props type controlsVertical is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -1395,10 +1395,10 @@ exports[`OuiIcon props type copy is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1415,10 +1415,10 @@ exports[`OuiIcon props type copyClipboard is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1457,10 +1457,10 @@ exports[`OuiIcon props type createMultiMetricJob is rendered 1`] = ` > `; @@ -1477,11 +1477,11 @@ exports[`OuiIcon props type createPopulationJob is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1498,7 +1498,7 @@ exports[`OuiIcon props type createSingleMetricJob is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1540,7 +1540,7 @@ exports[`OuiIcon props type crossClusterReplicationApp is rendered 1`] = ` /> `; @@ -1557,7 +1557,7 @@ exports[`OuiIcon props type crossInACircleFilled is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1574,7 +1574,7 @@ exports[`OuiIcon props type crosshairs is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1591,7 +1591,7 @@ exports[`OuiIcon props type currency is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1608,7 +1608,7 @@ exports[`OuiIcon props type cut is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -1626,18 +1626,18 @@ exports[`OuiIcon props type dashboardApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1654,11 +1654,11 @@ exports[`OuiIcon props type dataVisualizer is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1675,7 +1675,7 @@ exports[`OuiIcon props type database is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1692,7 +1692,7 @@ exports[`OuiIcon props type devToolsApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1734,7 +1734,7 @@ exports[`OuiIcon props type document is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1751,7 +1751,7 @@ exports[`OuiIcon props type documentEdit is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1768,13 +1768,13 @@ exports[`OuiIcon props type documentation is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1791,7 +1791,7 @@ exports[`OuiIcon props type documents is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1827,10 +1827,10 @@ exports[`OuiIcon props type download is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1847,7 +1847,7 @@ exports[`OuiIcon props type editorAlignCenter is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1864,7 +1864,7 @@ exports[`OuiIcon props type editorAlignLeft is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1881,7 +1881,7 @@ exports[`OuiIcon props type editorAlignRight is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1898,7 +1898,7 @@ exports[`OuiIcon props type editorBold is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1915,7 +1915,7 @@ exports[`OuiIcon props type editorCodeBlock is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1932,7 +1932,7 @@ exports[`OuiIcon props type editorComment is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1949,7 +1949,7 @@ exports[`OuiIcon props type editorDistributeHorizontal is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1966,7 +1966,7 @@ exports[`OuiIcon props type editorDistributeVertical is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1983,7 +1983,7 @@ exports[`OuiIcon props type editorHeading is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2000,7 +2000,7 @@ exports[`OuiIcon props type editorItalic is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2017,7 +2017,7 @@ exports[`OuiIcon props type editorItemAlignBottom is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2034,7 +2034,7 @@ exports[`OuiIcon props type editorItemAlignCenter is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2051,7 +2051,7 @@ exports[`OuiIcon props type editorItemAlignLeft is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2068,7 +2068,7 @@ exports[`OuiIcon props type editorItemAlignMiddle is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2085,7 +2085,7 @@ exports[`OuiIcon props type editorItemAlignRight is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2102,7 +2102,7 @@ exports[`OuiIcon props type editorItemAlignTop is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2119,7 +2119,7 @@ exports[`OuiIcon props type editorLink is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2136,7 +2136,7 @@ exports[`OuiIcon props type editorOrderedList is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2153,7 +2153,7 @@ exports[`OuiIcon props type editorPositionBottomLeft is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2170,7 +2170,7 @@ exports[`OuiIcon props type editorPositionBottomRight is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2187,7 +2187,7 @@ exports[`OuiIcon props type editorPositionTopLeft is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2204,7 +2204,7 @@ exports[`OuiIcon props type editorPositionTopRight is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2221,7 +2221,7 @@ exports[`OuiIcon props type editorRedo is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2238,7 +2238,7 @@ exports[`OuiIcon props type editorStrike is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2255,7 +2255,7 @@ exports[`OuiIcon props type editorTable is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2272,7 +2272,7 @@ exports[`OuiIcon props type editorUnderline is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2289,7 +2289,7 @@ exports[`OuiIcon props type editorUndo is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2306,7 +2306,7 @@ exports[`OuiIcon props type editorUnorderedList is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2323,7 +2323,7 @@ exports[`OuiIcon props type email is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -2358,7 +2358,7 @@ exports[`OuiIcon props type emsApp is rendered 1`] = ` d="M3 22h3v2H1V1h23v5h-2V3H3z" /> `; @@ -2375,10 +2375,10 @@ exports[`OuiIcon props type eql is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2395,10 +2395,10 @@ exports[`OuiIcon props type eraser is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2415,7 +2415,7 @@ exports[`OuiIcon props type exit is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -2433,7 +2433,7 @@ exports[`OuiIcon props type expand is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -2451,7 +2451,7 @@ exports[`OuiIcon props type expandMini is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -2469,7 +2469,7 @@ exports[`OuiIcon props type exportAction is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2486,7 +2486,7 @@ exports[`OuiIcon props type eye is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2503,7 +2503,7 @@ exports[`OuiIcon props type eyeClosed is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2520,7 +2520,7 @@ exports[`OuiIcon props type faceHappy is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2537,7 +2537,7 @@ exports[`OuiIcon props type faceNeutral is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -2555,7 +2555,7 @@ exports[`OuiIcon props type faceSad is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2576,7 +2576,7 @@ exports[`OuiIcon props type filebeatApp is rendered 1`] = ` d="M8 18h16v2H8zM8 13h9v2H8zM8 23h16v2H8z" /> `; @@ -2593,7 +2593,7 @@ exports[`OuiIcon props type filter is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -2611,7 +2611,7 @@ exports[`OuiIcon props type flag is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2626,7 +2626,7 @@ exports[`OuiIcon props type fold is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2643,7 +2643,7 @@ exports[`OuiIcon props type folderCheck is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -2661,7 +2661,7 @@ exports[`OuiIcon props type folderClosed is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2678,7 +2678,7 @@ exports[`OuiIcon props type folderExclamation is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -2696,7 +2696,7 @@ exports[`OuiIcon props type folderOpen is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2715,7 +2715,7 @@ exports[`OuiIcon props type frameNext is rendered 1`] = ` > `; @@ -2734,7 +2734,7 @@ exports[`OuiIcon props type framePrevious is rendered 1`] = ` > `; @@ -2751,7 +2751,7 @@ exports[`OuiIcon props type fullScreen is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -2769,7 +2769,7 @@ exports[`OuiIcon props type fullScreenExit is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2803,7 +2803,7 @@ exports[`OuiIcon props type gear is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2821,10 +2821,10 @@ exports[`OuiIcon props type gisApp is rendered 1`] = ` > `; @@ -2841,7 +2841,7 @@ exports[`OuiIcon props type glasses is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2858,7 +2858,7 @@ exports[`OuiIcon props type globe is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2875,7 +2875,7 @@ exports[`OuiIcon props type grab is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -2893,7 +2893,7 @@ exports[`OuiIcon props type grabHorizontal is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -2912,10 +2912,10 @@ exports[`OuiIcon props type graphApp is rendered 1`] = ` > `; @@ -2932,7 +2932,7 @@ exports[`OuiIcon props type grid is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2949,11 +2949,11 @@ exports[`OuiIcon props type grokApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2970,7 +2970,7 @@ exports[`OuiIcon props type heart is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2988,10 +2988,10 @@ exports[`OuiIcon props type heartbeatApp is rendered 1`] = ` > `; @@ -3008,7 +3008,7 @@ exports[`OuiIcon props type heatmap is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3025,7 +3025,7 @@ exports[`OuiIcon props type help is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -3043,7 +3043,7 @@ exports[`OuiIcon props type home is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3060,7 +3060,7 @@ exports[`OuiIcon props type iInCircle is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -3078,7 +3078,7 @@ exports[`OuiIcon props type image is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3095,7 +3095,7 @@ exports[`OuiIcon props type importAction is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3112,7 +3112,7 @@ exports[`OuiIcon props type indexClose is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3129,7 +3129,7 @@ exports[`OuiIcon props type indexEdit is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3146,7 +3146,7 @@ exports[`OuiIcon props type indexFlush is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -3168,10 +3168,10 @@ exports[`OuiIcon props type indexManagementApp is rendered 1`] = ` /> `; @@ -3188,7 +3188,7 @@ exports[`OuiIcon props type indexMapping is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3205,7 +3205,7 @@ exports[`OuiIcon props type indexOpen is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3222,11 +3222,11 @@ exports[`OuiIcon props type indexPatternApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3243,17 +3243,17 @@ exports[`OuiIcon props type indexRollupApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3273,7 +3273,7 @@ exports[`OuiIcon props type indexRuntime is rendered 1`] = ` d="M12 2H2v11h6v1H1V1h12v6.839l-1-.707V2z" /> `; @@ -3290,13 +3290,13 @@ exports[`OuiIcon props type indexSettings is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3336,7 +3336,7 @@ exports[`OuiIcon props type inspect is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3353,10 +3353,10 @@ exports[`OuiIcon props type invert is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3373,7 +3373,7 @@ exports[`OuiIcon props type ip is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3390,7 +3390,7 @@ exports[`OuiIcon props type keyboardShortcut is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3407,7 +3407,7 @@ exports[`OuiIcon props type kqlField is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3424,7 +3424,7 @@ exports[`OuiIcon props type kqlFunction is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3441,7 +3441,7 @@ exports[`OuiIcon props type kqlOperand is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3458,7 +3458,7 @@ exports[`OuiIcon props type kqlSelector is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3475,7 +3475,7 @@ exports[`OuiIcon props type kqlValue is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3492,13 +3492,13 @@ exports[`OuiIcon props type layers is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3516,10 +3516,10 @@ exports[`OuiIcon props type lensApp is rendered 1`] = ` > `; @@ -3536,7 +3536,7 @@ exports[`OuiIcon props type link is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3553,7 +3553,7 @@ exports[`OuiIcon props type list is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3570,7 +3570,7 @@ exports[`OuiIcon props type listAdd is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3587,7 +3587,7 @@ exports[`OuiIcon props type lock is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3604,7 +3604,7 @@ exports[`OuiIcon props type lockOpen is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3626,16 +3626,16 @@ exports[`OuiIcon props type logoAWS is rendered 1`] = ` > @@ -3657,14 +3657,14 @@ exports[`OuiIcon props type logoAWSMono is rendered 1`] = ` fill-rule="evenodd" > @@ -3689,7 +3689,7 @@ exports[`OuiIcon props type logoAerospike is rendered 1`] = ` fill="#C4373A" /> @@ -3877,37 +3877,37 @@ exports[`OuiIcon props type logoApache is rendered 1`] = ` fill="none" > @@ -3927,15 +3927,15 @@ exports[`OuiIcon props type logoAppSearch is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -3953,7 +3953,7 @@ exports[`OuiIcon props type logoAzure is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -3971,7 +3971,7 @@ exports[`OuiIcon props type logoAzureMono is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3992,12 +3992,12 @@ exports[`OuiIcon props type logoBeats is rendered 1`] = ` fill="#0080D5" /> `; @@ -4046,7 +4046,7 @@ exports[`OuiIcon props type logoCeph is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -4069,14 +4069,14 @@ exports[`OuiIcon props type logoCloud is rendered 1`] = ` > @@ -4096,14 +4096,14 @@ exports[`OuiIcon props type logoCloudEnterprise is rendered 1`] = ` > @@ -4122,14 +4122,14 @@ exports[`OuiIcon props type logoCode is rendered 1`] = ` > @@ -4147,7 +4147,7 @@ exports[`OuiIcon props type logoCodesandbox is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -4164,7 +4164,7 @@ exports[`OuiIcon props type logoCouchbase is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -4210,11 +4210,11 @@ exports[`OuiIcon props type logoDropwizard is rendered 1`] = ` fill="url(#paint1_linear)" /> @@ -4333,7 +4333,7 @@ exports[`OuiIcon props type logoElasticStack is rendered 1`] = ` fill-rule="evenodd" > @@ -4369,14 +4369,14 @@ exports[`OuiIcon props type logoElasticsearch is rendered 1`] = ` > @@ -4396,20 +4396,20 @@ exports[`OuiIcon props type logoEnterpriseSearch is rendered 1`] = ` > @@ -4433,7 +4433,7 @@ exports[`OuiIcon 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" /> @@ -4448,6 +4448,7 @@ exports[`OuiIcon props type logoGCP is rendered 1`] = ` role="img" viewBox="0 0 32 32" width="32" + xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" > @@ -4461,22 +4462,22 @@ exports[`OuiIcon props type logoGCP is rendered 1`] = ` fill-rule="evenodd" > @@ -4493,13 +4494,13 @@ exports[`OuiIcon props type logoGCP is rendered 1`] = ` /> @@ -4522,7 +4523,7 @@ exports[`OuiIcon 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" /> `; @@ -4539,7 +4540,7 @@ exports[`OuiIcon props type logoGithub is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -4559,31 +4560,31 @@ exports[`OuiIcon props type logoGmail is rendered 1`] = ` fill="none" > @@ -4603,75 +4604,75 @@ exports[`OuiIcon props type logoGolang is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -4746,6 +4747,7 @@ exports[`OuiIcon props type logoGoogleG is rendered 1`] = ` role="img" viewBox="0 0 32 32" width="32" + xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" > @@ -4758,7 +4760,7 @@ exports[`OuiIcon props type logoGoogleG is rendered 1`] = ` id="c" /> @@ -4925,7 +4927,7 @@ exports[`OuiIcon props type logoHAproxy is rendered 1`] = ` id="clip0" > @@ -5058,31 +5060,31 @@ exports[`OuiIcon props type logoIBM is rendered 1`] = ` fill-rule="evenodd" > @@ -5102,7 +5104,7 @@ exports[`OuiIcon props type logoIBMMono is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -5120,7 +5122,7 @@ exports[`OuiIcon props type logoKafka is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -5146,10 +5148,10 @@ exports[`OuiIcon props type logoKibana is rendered 1`] = ` /> @@ -5168,7 +5170,7 @@ exports[`OuiIcon props type logoKubernetes is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -5186,7 +5188,7 @@ exports[`OuiIcon props type logoLogging is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -5238,15 +5240,15 @@ exports[`OuiIcon props type logoMaps is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -5335,28 +5337,28 @@ exports[`OuiIcon props type logoMemcached is rendered 1`] = ` fill="none" > @@ -5380,15 +5382,15 @@ exports[`OuiIcon props type logoMetrics is rendered 1`] = ` fill-rule="evenodd" > @@ -5410,11 +5412,11 @@ exports[`OuiIcon props type logoMongodb is rendered 1`] = ` fill="none" > @@ -5452,10 +5454,10 @@ exports[`OuiIcon props type logoMySQL is rendered 1`] = ` fill="#00546B" > @@ -5477,11 +5479,11 @@ exports[`OuiIcon props type logoNginx is rendered 1`] = ` fill-rule="evenodd" > @@ -5501,7 +5503,7 @@ exports[`OuiIcon props type logoObservability is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -5528,15 +5530,15 @@ exports[`OuiIcon props type logoOpenSearch is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -5601,6 +5603,7 @@ exports[`OuiIcon props type logoPhp is rendered 1`] = ` role="img" viewBox="0 0 32 32" width="32" + xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" > @@ -5699,27 +5702,27 @@ exports[`OuiIcon props type logoPhp is rendered 1`] = ` mask="url(#logo_php-g)" > @@ -5742,19 +5745,19 @@ exports[`OuiIcon props type logoPostgres is rendered 1`] = ` fill="none" > @@ -5773,7 +5776,7 @@ exports[`OuiIcon props type logoPrometheus is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -5791,7 +5794,7 @@ exports[`OuiIcon props type logoRabbitmq is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -5837,7 +5840,7 @@ exports[`OuiIcon props type logoRedis is rendered 1`] = ` fill="#D82C20" /> @@ -5871,16 +5874,16 @@ exports[`OuiIcon props type logoSecurity is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -5905,12 +5908,12 @@ exports[`OuiIcon props type logoSiteSearch is rendered 1`] = ` fill="#FA744E" /> @@ -5931,27 +5934,27 @@ exports[`OuiIcon props type logoSketch is rendered 1`] = ` fill="none" > @@ -5973,19 +5976,19 @@ exports[`OuiIcon props type logoSlack is rendered 1`] = ` fill="none" > @@ -6004,16 +6007,16 @@ exports[`OuiIcon props type logoUptime is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6033,15 +6036,15 @@ exports[`OuiIcon props type logoWebhook is rendered 1`] = ` fill="none" > @@ -6060,7 +6063,7 @@ exports[`OuiIcon props type logoWindows is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -6078,16 +6081,16 @@ exports[`OuiIcon props type logoWorkplaceSearch is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6104,11 +6107,11 @@ exports[`OuiIcon props type logsApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6125,7 +6128,7 @@ exports[`OuiIcon props type logstashFilter is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6142,7 +6145,7 @@ exports[`OuiIcon props type logstashIf is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6159,7 +6162,7 @@ exports[`OuiIcon props type logstashInput is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6176,7 +6179,7 @@ exports[`OuiIcon props type logstashOutput is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6193,7 +6196,7 @@ exports[`OuiIcon props type logstashQueue is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6211,10 +6214,10 @@ exports[`OuiIcon props type machineLearningApp is rendered 1`] = ` > `; @@ -6231,7 +6234,7 @@ exports[`OuiIcon props type magnet is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6248,7 +6251,7 @@ exports[`OuiIcon props type magnifyWithMinus is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6265,7 +6268,7 @@ exports[`OuiIcon props type magnifyWithPlus is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6283,10 +6286,10 @@ exports[`OuiIcon props type managementApp is rendered 1`] = ` > `; @@ -6303,7 +6306,7 @@ exports[`OuiIcon props type mapMarker is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6323,7 +6326,7 @@ exports[`OuiIcon 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" /> `; @@ -6341,7 +6344,7 @@ exports[`OuiIcon props type menu is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6358,7 +6361,7 @@ exports[`OuiIcon props type menuDown is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6375,7 +6378,7 @@ exports[`OuiIcon props type menuLeft is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6392,7 +6395,7 @@ exports[`OuiIcon props type menuRight is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6409,7 +6412,7 @@ exports[`OuiIcon props type menuUp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6426,7 +6429,7 @@ exports[`OuiIcon props type merge is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6443,14 +6446,14 @@ exports[`OuiIcon props type metricbeatApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6467,11 +6470,11 @@ exports[`OuiIcon props type metricsApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6488,7 +6491,7 @@ exports[`OuiIcon props type minimize is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6526,7 +6529,7 @@ exports[`OuiIcon props type minusInCircle is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -6544,7 +6547,7 @@ exports[`OuiIcon props type minusInCircleFilled is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -6562,11 +6565,11 @@ exports[`OuiIcon props type mobile is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -6584,11 +6587,11 @@ exports[`OuiIcon props type monitoringApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6605,7 +6608,7 @@ exports[`OuiIcon props type moon is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6622,7 +6625,7 @@ exports[`OuiIcon props type nested is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6639,7 +6642,7 @@ exports[`OuiIcon props type node is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6656,7 +6659,7 @@ exports[`OuiIcon props type notebookApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6715,7 +6718,7 @@ exports[`OuiIcon props type online is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6736,7 +6739,7 @@ exports[`OuiIcon props type outlierDetectionJob is rendered 1`] = ` /> `; @@ -6753,7 +6756,7 @@ exports[`OuiIcon props type package is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6771,10 +6774,10 @@ exports[`OuiIcon props type packetbeatApp is rendered 1`] = ` > `; @@ -6791,7 +6794,7 @@ exports[`OuiIcon props type pageSelect is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -6809,7 +6812,7 @@ exports[`OuiIcon props type pagesSelect is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -6827,7 +6830,7 @@ exports[`OuiIcon props type paperClip is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6844,7 +6847,7 @@ exports[`OuiIcon props type partial is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6861,7 +6864,7 @@ exports[`OuiIcon props type pause is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -6879,7 +6882,7 @@ exports[`OuiIcon props type pencil is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6921,7 +6924,7 @@ exports[`OuiIcon props type pin is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -6939,7 +6942,7 @@ exports[`OuiIcon props type pinFilled is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6956,7 +6959,7 @@ exports[`OuiIcon props type pipelineApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6995,7 +6998,7 @@ exports[`OuiIcon props type playFilled is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7012,7 +7015,7 @@ exports[`OuiIcon props type plus is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7029,7 +7032,7 @@ exports[`OuiIcon props type plusInCircle is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7047,7 +7050,7 @@ exports[`OuiIcon props type plusInCircleFilled is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7064,7 +7067,7 @@ exports[`OuiIcon props type popout is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7081,10 +7084,10 @@ exports[`OuiIcon props type push is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7101,7 +7104,7 @@ exports[`OuiIcon props type questionInCircle is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7118,7 +7121,7 @@ exports[`OuiIcon props type quote is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7135,11 +7138,11 @@ exports[`OuiIcon props type recentlyViewedApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7156,7 +7159,7 @@ exports[`OuiIcon props type refresh is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7173,7 +7176,7 @@ exports[`OuiIcon props type regressionJob is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7212,10 +7215,10 @@ exports[`OuiIcon props type reportingApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7253,7 +7256,7 @@ exports[`OuiIcon props type save is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7271,10 +7274,10 @@ exports[`OuiIcon props type savedObjectsApp is rendered 1`] = ` > `; @@ -7291,7 +7294,7 @@ exports[`OuiIcon props type scale is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7309,7 +7312,7 @@ exports[`OuiIcon props type search is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7340,7 +7343,7 @@ exports[`OuiIcon props type searchProfilerApp is rendered 1`] = ` d="M15.81 16H19v2h-3.19zM7 12h9v2H7z" /> `; @@ -7381,11 +7384,11 @@ exports[`OuiIcon props type securityApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7402,7 +7405,7 @@ exports[`OuiIcon props type securitySignal is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7420,7 +7423,7 @@ exports[`OuiIcon props type securitySignalDetected is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7438,7 +7441,7 @@ exports[`OuiIcon props type securitySignalResolved is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7456,7 +7459,7 @@ exports[`OuiIcon props type shard is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7473,7 +7476,7 @@ exports[`OuiIcon props type share is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7490,7 +7493,7 @@ exports[`OuiIcon props type snowflake is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7508,7 +7511,7 @@ exports[`OuiIcon props type sortDown is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7525,7 +7528,7 @@ exports[`OuiIcon props type sortLeft is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7543,7 +7546,7 @@ exports[`OuiIcon props type sortRight is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7560,7 +7563,7 @@ exports[`OuiIcon props type sortUp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7577,7 +7580,7 @@ exports[`OuiIcon props type sortable is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7623,7 +7626,7 @@ exports[`OuiIcon props type sqlApp is rendered 1`] = ` d="M18 6h9v2h-9zM5 6h9v2H5zM5 12h9v2H5zM18 12h9v2h-9zM5 18h9v2H5zM18 18h9v2h-9zM18 24h9v2h-9zM5 24h9v2H5z" /> `; @@ -7640,7 +7643,7 @@ exports[`OuiIcon props type starEmpty is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7658,7 +7661,7 @@ exports[`OuiIcon props type starEmptySpace is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7676,7 +7679,7 @@ exports[`OuiIcon props type starFilled is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7694,7 +7697,7 @@ exports[`OuiIcon props type starFilledSpace is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7712,7 +7715,7 @@ exports[`OuiIcon props type starMinusEmpty is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7730,7 +7733,7 @@ exports[`OuiIcon props type starMinusFilled is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7748,7 +7751,7 @@ exports[`OuiIcon props type starPlusEmpty is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7766,7 +7769,7 @@ exports[`OuiIcon props type starPlusFilled is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7784,7 +7787,7 @@ exports[`OuiIcon props type stats is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7802,7 +7805,7 @@ exports[`OuiIcon props type stop is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7842,7 +7845,7 @@ exports[`OuiIcon props type stopSlash is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7864,7 +7867,7 @@ exports[`OuiIcon props type storage is rendered 1`] = ` transform="translate(0 2)" > @@ -7916,7 +7919,7 @@ exports[`OuiIcon props type submodule is rendered 1`] = ` > `; @@ -7964,7 +7967,7 @@ exports[`OuiIcon props type symlink is rendered 1`] = ` > `; @@ -7981,7 +7984,7 @@ exports[`OuiIcon props type tableDensityCompact is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7998,7 +8001,7 @@ exports[`OuiIcon props type tableDensityExpanded is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8015,7 +8018,7 @@ exports[`OuiIcon props type tableDensityNormal is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8049,7 +8052,7 @@ exports[`OuiIcon props type tag is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8066,7 +8069,7 @@ exports[`OuiIcon props type tear is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8083,10 +8086,10 @@ exports[`OuiIcon props type temperature is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8103,7 +8106,7 @@ exports[`OuiIcon props type timeline is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8121,7 +8124,7 @@ exports[`OuiIcon props type timelionApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8161,7 +8164,7 @@ exports[`OuiIcon props type tokenAlias is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8179,7 +8182,7 @@ exports[`OuiIcon props type tokenAnnotation is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8197,7 +8200,7 @@ exports[`OuiIcon props type tokenArray is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8215,7 +8218,7 @@ exports[`OuiIcon props type tokenBinary is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8233,7 +8236,7 @@ exports[`OuiIcon props type tokenBoolean is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8251,7 +8254,7 @@ exports[`OuiIcon props type tokenClass is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8270,11 +8273,11 @@ exports[`OuiIcon props type tokenCompletionSuggester is rendered 1`] = ` > `; @@ -8291,7 +8294,7 @@ exports[`OuiIcon props type tokenConstant is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8309,7 +8312,7 @@ exports[`OuiIcon props type tokenDate is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8327,7 +8330,7 @@ exports[`OuiIcon props type tokenDenseVector is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8344,7 +8347,7 @@ exports[`OuiIcon props type tokenElement is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8380,7 +8383,7 @@ exports[`OuiIcon props type tokenEnumMember is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8398,7 +8401,7 @@ exports[`OuiIcon props type tokenEvent is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8416,7 +8419,7 @@ exports[`OuiIcon props type tokenException is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8451,7 +8454,7 @@ exports[`OuiIcon props type tokenFile is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8468,7 +8471,7 @@ exports[`OuiIcon props type tokenFlattened is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8485,7 +8488,7 @@ exports[`OuiIcon props type tokenFunction is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8503,7 +8506,7 @@ exports[`OuiIcon props type tokenGeo is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8538,7 +8541,7 @@ exports[`OuiIcon props type tokenIP is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8556,7 +8559,7 @@ exports[`OuiIcon props type tokenInterface is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8575,7 +8578,7 @@ exports[`OuiIcon props type tokenJoin is rendered 1`] = ` > @@ -8593,7 +8596,7 @@ exports[`OuiIcon props type tokenKey is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8611,11 +8614,11 @@ exports[`OuiIcon props type tokenKeyword is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8633,7 +8636,7 @@ exports[`OuiIcon props type tokenMethod is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8651,10 +8654,10 @@ exports[`OuiIcon props type tokenModule is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8671,7 +8674,7 @@ exports[`OuiIcon props type tokenNamespace is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8691,10 +8694,10 @@ exports[`OuiIcon props type tokenNested is rendered 1`] = ` fill-rule="evenodd" > @@ -8712,7 +8715,7 @@ exports[`OuiIcon props type tokenNull is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8729,7 +8732,7 @@ exports[`OuiIcon props type tokenNumber is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8746,7 +8749,7 @@ exports[`OuiIcon props type tokenObject is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8764,7 +8767,7 @@ exports[`OuiIcon props type tokenOperator is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8782,7 +8785,7 @@ exports[`OuiIcon props type tokenPackage is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8800,7 +8803,7 @@ exports[`OuiIcon props type tokenParameter is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8819,7 +8822,7 @@ exports[`OuiIcon props type tokenPercolator is rendered 1`] = ` > @@ -8837,7 +8840,7 @@ exports[`OuiIcon props type tokenProperty is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8858,7 +8861,7 @@ exports[`OuiIcon props type tokenRange is rendered 1`] = ` fill-rule="evenodd" > @@ -8876,7 +8879,7 @@ exports[`OuiIcon props type tokenRankFeature is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8893,7 +8896,7 @@ exports[`OuiIcon props type tokenRankFeatures is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8910,7 +8913,7 @@ exports[`OuiIcon props type tokenRepo is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8928,11 +8931,11 @@ exports[`OuiIcon props type tokenSearchType is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8950,7 +8953,7 @@ exports[`OuiIcon props type tokenShape is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8968,7 +8971,7 @@ exports[`OuiIcon props type tokenString is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8985,7 +8988,7 @@ exports[`OuiIcon props type tokenStruct is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9003,7 +9006,7 @@ exports[`OuiIcon props type tokenSymbol is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9020,7 +9023,7 @@ exports[`OuiIcon props type tokenText is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9037,7 +9040,7 @@ exports[`OuiIcon props type tokenTokenCount is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9054,7 +9057,7 @@ exports[`OuiIcon props type tokenVariable is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9072,7 +9075,7 @@ exports[`OuiIcon props type training is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9089,7 +9092,7 @@ exports[`OuiIcon props type trash is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9104,7 +9107,7 @@ exports[`OuiIcon props type unfold is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9122,10 +9125,10 @@ exports[`OuiIcon props type unlink is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9143,10 +9146,10 @@ exports[`OuiIcon props type upgradeAssistantApp is rendered 1`] = ` > `; @@ -9164,10 +9167,10 @@ exports[`OuiIcon props type uptimeApp is rendered 1`] = ` > `; @@ -9187,10 +9190,10 @@ exports[`OuiIcon props type user is rendered 1`] = ` fill-rule="evenodd" > @@ -9208,11 +9211,11 @@ exports[`OuiIcon props type users is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9230,11 +9233,11 @@ exports[`OuiIcon props type usersRolesApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9251,7 +9254,7 @@ exports[`OuiIcon props type vector is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9268,7 +9271,7 @@ exports[`OuiIcon props type videoPlayer is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9285,7 +9288,7 @@ exports[`OuiIcon props type visArea is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9302,7 +9305,7 @@ exports[`OuiIcon props type visAreaStacked is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9319,7 +9322,7 @@ exports[`OuiIcon props type visBarHorizontal is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9336,7 +9339,7 @@ exports[`OuiIcon props type visBarHorizontalStacked is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9353,7 +9356,7 @@ exports[`OuiIcon props type visBarVertical is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9370,7 +9373,7 @@ exports[`OuiIcon props type visBarVerticalStacked is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9387,7 +9390,7 @@ exports[`OuiIcon props type visGauge is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9404,7 +9407,7 @@ exports[`OuiIcon props type visGoal is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9421,7 +9424,7 @@ exports[`OuiIcon props type visLine is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9438,7 +9441,7 @@ exports[`OuiIcon props type visMapCoordinate is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9455,7 +9458,7 @@ exports[`OuiIcon props type visMapRegion is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9472,7 +9475,7 @@ exports[`OuiIcon props type visMetric is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9489,7 +9492,7 @@ exports[`OuiIcon props type visPie is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9506,7 +9509,7 @@ exports[`OuiIcon props type visTable is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9523,7 +9526,7 @@ exports[`OuiIcon props type visTagCloud is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9540,7 +9543,7 @@ exports[`OuiIcon props type visText is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9557,7 +9560,7 @@ exports[`OuiIcon props type visTimelion is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9574,7 +9577,7 @@ exports[`OuiIcon props type visVega is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9591,7 +9594,7 @@ exports[`OuiIcon props type visVisualBuilder is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9609,13 +9612,13 @@ exports[`OuiIcon props type visualizeApp is rendered 1`] = ` > `; @@ -9632,17 +9635,17 @@ exports[`OuiIcon props type watchesApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9662,7 +9665,7 @@ exports[`OuiIcon props type wordWrap is rendered 1`] = ` d="M2 3h12v1H2V3zm0 8h6v1H2v-1z" /> `; @@ -9679,7 +9682,7 @@ exports[`OuiIcon props type wordWrapDisabled is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9696,12 +9699,12 @@ exports[`OuiIcon props type workplaceSearchApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9719,7 +9722,7 @@ exports[`OuiIcon props type wrench is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; diff --git a/src/components/icon/assets/accessibility.js b/src/components/icon/assets/accessibility.js index 186f49d751..506a39f674 100644 --- a/src/components/icon/assets/accessibility.js +++ b/src/components/icon/assets/accessibility.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconAccessibility = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAccessibility; diff --git a/src/components/icon/assets/aggregate.js b/src/components/icon/assets/aggregate.js index a3b15c3635..97bf6cd66b 100644 --- a/src/components/icon/assets/aggregate.js +++ b/src/components/icon/assets/aggregate.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconAggregate = ({ title, titleId, ...props }) => ( ( {title ? {title} : null} ); - export const icon = OuiIconAggregate; diff --git a/src/components/icon/assets/alert.js b/src/components/icon/assets/alert.js index 99e200e8d6..8b3466ad19 100644 --- a/src/components/icon/assets/alert.js +++ b/src/components/icon/assets/alert.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconAlert = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconAlert; diff --git a/src/components/icon/assets/analyze_event.js b/src/components/icon/assets/analyze_event.js index fe8d35dc5f..47456c833c 100644 --- a/src/components/icon/assets/analyze_event.js +++ b/src/components/icon/assets/analyze_event.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconAnalyzeEvent = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconAnalyzeEvent; diff --git a/src/components/icon/assets/annotation.js b/src/components/icon/assets/annotation.js index da9bf64e74..9e26ebda6b 100644 --- a/src/components/icon/assets/annotation.js +++ b/src/components/icon/assets/annotation.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconAnnotation = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAnnotation; diff --git a/src/components/icon/assets/apm_trace.js b/src/components/icon/assets/apm_trace.js index ed835c6e62..9cddeb6644 100644 --- a/src/components/icon/assets/apm_trace.js +++ b/src/components/icon/assets/apm_trace.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconApmTrace = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconApmTrace; diff --git a/src/components/icon/assets/app_add_data.js b/src/components/icon/assets/app_add_data.js index 302e725ba5..1d00a5e006 100644 --- a/src/components/icon/assets/app_add_data.js +++ b/src/components/icon/assets/app_add_data.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppAddData = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppAddData; diff --git a/src/components/icon/assets/app_advanced_settings.js b/src/components/icon/assets/app_advanced_settings.js index 5d1fe9389f..2ac90a338c 100644 --- a/src/components/icon/assets/app_advanced_settings.js +++ b/src/components/icon/assets/app_advanced_settings.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconAppAdvancedSettings = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -24,18 +23,17 @@ const OuiIconAppAdvancedSettings = ({ title, titleId, ...props }) => ( className="ouiIcon__fillSecondary" d="M2.909 26.182h1.939v4.848H2.909z" /> - + - + - + ); - export const icon = OuiIconAppAdvancedSettings; diff --git a/src/components/icon/assets/app_apm.js b/src/components/icon/assets/app_apm.js index 9e50cb7998..3e96e62ce6 100644 --- a/src/components/icon/assets/app_apm.js +++ b/src/components/icon/assets/app_apm.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppApm = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconAppApm; diff --git a/src/components/icon/assets/app_app_search.js b/src/components/icon/assets/app_app_search.js index 948bdaef1a..41bd7fef5c 100644 --- a/src/components/icon/assets/app_app_search.js +++ b/src/components/icon/assets/app_app_search.js @@ -10,26 +10,24 @@ */ import * as React from 'react'; - const OuiIconAppAppSearch = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconAppAppSearch; diff --git a/src/components/icon/assets/app_auditbeat.js b/src/components/icon/assets/app_auditbeat.js index b2e6fd28d1..c1062f90d9 100644 --- a/src/components/icon/assets/app_auditbeat.js +++ b/src/components/icon/assets/app_auditbeat.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconAppAuditbeat = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -24,5 +23,4 @@ const OuiIconAppAuditbeat = ({ title, titleId, ...props }) => ( ); - export const icon = OuiIconAppAuditbeat; diff --git a/src/components/icon/assets/app_canvas.js b/src/components/icon/assets/app_canvas.js index 71334057ab..d9df3ec5bb 100644 --- a/src/components/icon/assets/app_canvas.js +++ b/src/components/icon/assets/app_canvas.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconAppCanvas = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -24,8 +23,7 @@ const OuiIconAppCanvas = ({ title, titleId, ...props }) => ( className="ouiIcon__fillSecondary" d="M7 17h2v7H7zM12 14h2v10h-2zM17 16h2v8h-2zM22 14h3v2h-3zM22 18h3v2h-3zM22 22h3v2h-3z" /> - + ); - export const icon = OuiIconAppCanvas; diff --git a/src/components/icon/assets/app_code.js b/src/components/icon/assets/app_code.js index 6c0842a272..0775567c82 100644 --- a/src/components/icon/assets/app_code.js +++ b/src/components/icon/assets/app_code.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppCode = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppCode; diff --git a/src/components/icon/assets/app_console.js b/src/components/icon/assets/app_console.js index 6db0c95c14..175b84b7de 100644 --- a/src/components/icon/assets/app_console.js +++ b/src/components/icon/assets/app_console.js @@ -10,23 +10,21 @@ */ import * as React from 'react'; - const OuiIconAppConsole = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + - + ); - export const icon = OuiIconAppConsole; diff --git a/src/components/icon/assets/app_cross_cluster_replication.js b/src/components/icon/assets/app_cross_cluster_replication.js index 4de567bbe4..70f57cc229 100644 --- a/src/components/icon/assets/app_cross_cluster_replication.js +++ b/src/components/icon/assets/app_cross_cluster_replication.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppCrossClusterReplication = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconAppCrossClusterReplication; diff --git a/src/components/icon/assets/app_dashboard.js b/src/components/icon/assets/app_dashboard.js index 2a3eb22d60..6c41781b7e 100644 --- a/src/components/icon/assets/app_dashboard.js +++ b/src/components/icon/assets/app_dashboard.js @@ -10,27 +10,25 @@ */ import * as React from 'react'; - const OuiIconAppDashboard = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + - + ); - export const icon = OuiIconAppDashboard; diff --git a/src/components/icon/assets/app_devtools.js b/src/components/icon/assets/app_devtools.js index 2f069cfb2b..8edee99532 100644 --- a/src/components/icon/assets/app_devtools.js +++ b/src/components/icon/assets/app_devtools.js @@ -10,19 +10,17 @@ */ import * as React from 'react'; - const OuiIconAppDevtools = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppDevtools; diff --git a/src/components/icon/assets/app_discover.js b/src/components/icon/assets/app_discover.js index ba7c6d014d..6d0c9b8f58 100644 --- a/src/components/icon/assets/app_discover.js +++ b/src/components/icon/assets/app_discover.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppDiscover = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppDiscover; diff --git a/src/components/icon/assets/app_ems.js b/src/components/icon/assets/app_ems.js index a796130326..88a7d83d55 100644 --- a/src/components/icon/assets/app_ems.js +++ b/src/components/icon/assets/app_ems.js @@ -10,19 +10,17 @@ */ import * as React from 'react'; - const OuiIconAppEms = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppEms; diff --git a/src/components/icon/assets/app_filebeat.js b/src/components/icon/assets/app_filebeat.js index c1b0d63df6..12c5d23fb4 100644 --- a/src/components/icon/assets/app_filebeat.js +++ b/src/components/icon/assets/app_filebeat.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconAppFilebeat = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -24,8 +23,7 @@ const OuiIconAppFilebeat = ({ title, titleId, ...props }) => ( className="ouiIcon__fillSecondary" d="M8 18h16v2H8zM8 13h9v2H8zM8 23h16v2H8z" /> - + ); - export const icon = OuiIconAppFilebeat; diff --git a/src/components/icon/assets/app_gis.js b/src/components/icon/assets/app_gis.js index 8de3eb3840..96b83e1197 100644 --- a/src/components/icon/assets/app_gis.js +++ b/src/components/icon/assets/app_gis.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppGis = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppGis; diff --git a/src/components/icon/assets/app_graph.js b/src/components/icon/assets/app_graph.js index 6f3b792323..645b20374a 100644 --- a/src/components/icon/assets/app_graph.js +++ b/src/components/icon/assets/app_graph.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppGraph = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppGraph; diff --git a/src/components/icon/assets/app_grok.js b/src/components/icon/assets/app_grok.js index c991de986c..def7c5ad65 100644 --- a/src/components/icon/assets/app_grok.js +++ b/src/components/icon/assets/app_grok.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppGrok = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppGrok; diff --git a/src/components/icon/assets/app_heartbeat.js b/src/components/icon/assets/app_heartbeat.js index d9145b7a3f..2947421e14 100644 --- a/src/components/icon/assets/app_heartbeat.js +++ b/src/components/icon/assets/app_heartbeat.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppHeartbeat = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppHeartbeat; diff --git a/src/components/icon/assets/app_index_management.js b/src/components/icon/assets/app_index_management.js index 288092aeeb..c28102483a 100644 --- a/src/components/icon/assets/app_index_management.js +++ b/src/components/icon/assets/app_index_management.js @@ -10,23 +10,21 @@ */ import * as React from 'react'; - const OuiIconAppIndexManagement = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppIndexManagement; diff --git a/src/components/icon/assets/app_index_pattern.js b/src/components/icon/assets/app_index_pattern.js index 243a6187c2..4967c40cfc 100644 --- a/src/components/icon/assets/app_index_pattern.js +++ b/src/components/icon/assets/app_index_pattern.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppIndexPattern = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppIndexPattern; diff --git a/src/components/icon/assets/app_index_rollup.js b/src/components/icon/assets/app_index_rollup.js index f62ab53441..9c02236de8 100644 --- a/src/components/icon/assets/app_index_rollup.js +++ b/src/components/icon/assets/app_index_rollup.js @@ -10,24 +10,22 @@ */ import * as React from 'react'; - const OuiIconAppIndexRollup = ({ title, titleId, ...props }) => ( {title ? {title} : null} - - + + - + ); - export const icon = OuiIconAppIndexRollup; diff --git a/src/components/icon/assets/app_lens.js b/src/components/icon/assets/app_lens.js index 075350679b..55c8b341eb 100644 --- a/src/components/icon/assets/app_lens.js +++ b/src/components/icon/assets/app_lens.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppLens = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppLens; diff --git a/src/components/icon/assets/app_logs.js b/src/components/icon/assets/app_logs.js index 25b9cf330d..6bca7bed3a 100644 --- a/src/components/icon/assets/app_logs.js +++ b/src/components/icon/assets/app_logs.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppLogs = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppLogs; diff --git a/src/components/icon/assets/app_management.js b/src/components/icon/assets/app_management.js index ef882444e7..58363b00bb 100644 --- a/src/components/icon/assets/app_management.js +++ b/src/components/icon/assets/app_management.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppManagement = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppManagement; diff --git a/src/components/icon/assets/app_metricbeat.js b/src/components/icon/assets/app_metricbeat.js index a2cef1eacc..8435886382 100644 --- a/src/components/icon/assets/app_metricbeat.js +++ b/src/components/icon/assets/app_metricbeat.js @@ -10,23 +10,21 @@ */ import * as React from 'react'; - const OuiIconAppMetricbeat = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + - + ); - export const icon = OuiIconAppMetricbeat; diff --git a/src/components/icon/assets/app_metrics.js b/src/components/icon/assets/app_metrics.js index 49d0e0caf1..98bc7ae792 100644 --- a/src/components/icon/assets/app_metrics.js +++ b/src/components/icon/assets/app_metrics.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppMetrics = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppMetrics; diff --git a/src/components/icon/assets/app_ml.js b/src/components/icon/assets/app_ml.js index 38d319787a..c2181a4151 100644 --- a/src/components/icon/assets/app_ml.js +++ b/src/components/icon/assets/app_ml.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppMl = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppMl; diff --git a/src/components/icon/assets/app_monitoring.js b/src/components/icon/assets/app_monitoring.js index 49c9bd4ffd..9200e76411 100644 --- a/src/components/icon/assets/app_monitoring.js +++ b/src/components/icon/assets/app_monitoring.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppMonitoring = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppMonitoring; diff --git a/src/components/icon/assets/app_notebook.js b/src/components/icon/assets/app_notebook.js index 87a30e2035..dc646f3b04 100644 --- a/src/components/icon/assets/app_notebook.js +++ b/src/components/icon/assets/app_notebook.js @@ -10,20 +10,18 @@ */ import * as React from 'react'; - const OuiIconAppNotebook = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppNotebook; diff --git a/src/components/icon/assets/app_packetbeat.js b/src/components/icon/assets/app_packetbeat.js index f0b69666bf..83c80de3b4 100644 --- a/src/components/icon/assets/app_packetbeat.js +++ b/src/components/icon/assets/app_packetbeat.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppPacketbeat = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppPacketbeat; diff --git a/src/components/icon/assets/app_pipeline.js b/src/components/icon/assets/app_pipeline.js index 7358b61121..bce8a5fef8 100644 --- a/src/components/icon/assets/app_pipeline.js +++ b/src/components/icon/assets/app_pipeline.js @@ -10,19 +10,17 @@ */ import * as React from 'react'; - const OuiIconAppPipeline = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppPipeline; diff --git a/src/components/icon/assets/app_recently_viewed.js b/src/components/icon/assets/app_recently_viewed.js index a2515301b5..31053e1dd2 100644 --- a/src/components/icon/assets/app_recently_viewed.js +++ b/src/components/icon/assets/app_recently_viewed.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppRecentlyViewed = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppRecentlyViewed; diff --git a/src/components/icon/assets/app_reporting.js b/src/components/icon/assets/app_reporting.js index 9f81b36096..4d931f9324 100644 --- a/src/components/icon/assets/app_reporting.js +++ b/src/components/icon/assets/app_reporting.js @@ -10,23 +10,21 @@ */ import * as React from 'react'; - const OuiIconAppReporting = ({ title, titleId, ...props }) => ( {title ? {title} : null} - - + + ); - export const icon = OuiIconAppReporting; diff --git a/src/components/icon/assets/app_saved_objects.js b/src/components/icon/assets/app_saved_objects.js index f356880834..5275c1594f 100644 --- a/src/components/icon/assets/app_saved_objects.js +++ b/src/components/icon/assets/app_saved_objects.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppSavedObjects = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppSavedObjects; diff --git a/src/components/icon/assets/app_search_profiler.js b/src/components/icon/assets/app_search_profiler.js index ca8be762dd..c588a1c032 100644 --- a/src/components/icon/assets/app_search_profiler.js +++ b/src/components/icon/assets/app_search_profiler.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconAppSearchProfiler = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -24,8 +23,7 @@ const OuiIconAppSearchProfiler = ({ title, titleId, ...props }) => ( - + ); - export const icon = OuiIconAppSearchProfiler; diff --git a/src/components/icon/assets/app_security.js b/src/components/icon/assets/app_security.js index a665977836..5dd9ce15a0 100644 --- a/src/components/icon/assets/app_security.js +++ b/src/components/icon/assets/app_security.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppSecurity = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppSecurity; diff --git a/src/components/icon/assets/app_security_analytics.js b/src/components/icon/assets/app_security_analytics.js index 2322b52639..a7af677208 100644 --- a/src/components/icon/assets/app_security_analytics.js +++ b/src/components/icon/assets/app_security_analytics.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconAppSecurityAnalytics = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -28,5 +27,4 @@ const OuiIconAppSecurityAnalytics = ({ title, titleId, ...props }) => ( ); - export const icon = OuiIconAppSecurityAnalytics; diff --git a/src/components/icon/assets/app_spaces.js b/src/components/icon/assets/app_spaces.js index 4bcce06c10..7390d75bee 100644 --- a/src/components/icon/assets/app_spaces.js +++ b/src/components/icon/assets/app_spaces.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconAppSpaces = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -28,5 +27,4 @@ const OuiIconAppSpaces = ({ title, titleId, ...props }) => ( ); - export const icon = OuiIconAppSpaces; diff --git a/src/components/icon/assets/app_sql.js b/src/components/icon/assets/app_sql.js index 3c19a1598d..a5f880d620 100644 --- a/src/components/icon/assets/app_sql.js +++ b/src/components/icon/assets/app_sql.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconAppSql = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -24,8 +23,7 @@ const OuiIconAppSql = ({ title, titleId, ...props }) => ( className="ouiIcon__fillSecondary" d="M18 6h9v2h-9zM5 6h9v2H5zM5 12h9v2H5zM18 12h9v2h-9zM5 18h9v2H5zM18 18h9v2h-9zM18 24h9v2h-9zM5 24h9v2H5z" /> - + ); - export const icon = OuiIconAppSql; diff --git a/src/components/icon/assets/app_timelion.js b/src/components/icon/assets/app_timelion.js index 3a1eb70b04..4c503fcc47 100644 --- a/src/components/icon/assets/app_timelion.js +++ b/src/components/icon/assets/app_timelion.js @@ -10,19 +10,17 @@ */ import * as React from 'react'; - const OuiIconAppTimelion = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppTimelion; diff --git a/src/components/icon/assets/app_upgrade_assistant.js b/src/components/icon/assets/app_upgrade_assistant.js index 18c8dc12d5..8b5606404c 100644 --- a/src/components/icon/assets/app_upgrade_assistant.js +++ b/src/components/icon/assets/app_upgrade_assistant.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppUpgradeAssistant = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppUpgradeAssistant; diff --git a/src/components/icon/assets/app_uptime.js b/src/components/icon/assets/app_uptime.js index 003262fe13..7d5467793c 100644 --- a/src/components/icon/assets/app_uptime.js +++ b/src/components/icon/assets/app_uptime.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppUptime = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppUptime; diff --git a/src/components/icon/assets/app_users_roles.js b/src/components/icon/assets/app_users_roles.js index b146d766ed..2eefc8cb1e 100644 --- a/src/components/icon/assets/app_users_roles.js +++ b/src/components/icon/assets/app_users_roles.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconAppUsersRoles = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppUsersRoles; diff --git a/src/components/icon/assets/app_visualize.js b/src/components/icon/assets/app_visualize.js index 55f8b4cce2..cc578dc980 100644 --- a/src/components/icon/assets/app_visualize.js +++ b/src/components/icon/assets/app_visualize.js @@ -10,23 +10,21 @@ */ import * as React from 'react'; - const OuiIconAppVisualize = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconAppVisualize; diff --git a/src/components/icon/assets/app_watches.js b/src/components/icon/assets/app_watches.js index 92cc5a4e14..b309edb618 100644 --- a/src/components/icon/assets/app_watches.js +++ b/src/components/icon/assets/app_watches.js @@ -10,24 +10,22 @@ */ import * as React from 'react'; - const OuiIconAppWatches = ({ title, titleId, ...props }) => ( {title ? {title} : null} - - - + + + ); - export const icon = OuiIconAppWatches; diff --git a/src/components/icon/assets/app_workplace_search.js b/src/components/icon/assets/app_workplace_search.js index 18c568d578..c01e184477 100644 --- a/src/components/icon/assets/app_workplace_search.js +++ b/src/components/icon/assets/app_workplace_search.js @@ -10,26 +10,24 @@ */ import * as React from 'react'; - const OuiIconAppWorkplaceSearch = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconAppWorkplaceSearch; diff --git a/src/components/icon/assets/apps.js b/src/components/icon/assets/apps.js index d6f48c4b87..3ab303d736 100644 --- a/src/components/icon/assets/apps.js +++ b/src/components/icon/assets/apps.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconApps = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconApps; diff --git a/src/components/icon/assets/arrow_down.js b/src/components/icon/assets/arrow_down.js index 27de4856dc..ecfe1ba802 100644 --- a/src/components/icon/assets/arrow_down.js +++ b/src/components/icon/assets/arrow_down.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconArrowDown = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconArrowDown; diff --git a/src/components/icon/assets/arrow_left.js b/src/components/icon/assets/arrow_left.js index bdbbfbc62b..29994f007f 100644 --- a/src/components/icon/assets/arrow_left.js +++ b/src/components/icon/assets/arrow_left.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconArrowLeft = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconArrowLeft; diff --git a/src/components/icon/assets/arrow_right.js b/src/components/icon/assets/arrow_right.js index 80456525b3..8e822576dc 100644 --- a/src/components/icon/assets/arrow_right.js +++ b/src/components/icon/assets/arrow_right.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconArrowRight = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconArrowRight; diff --git a/src/components/icon/assets/arrow_up.js b/src/components/icon/assets/arrow_up.js index 19c38039a9..134bf9757c 100644 --- a/src/components/icon/assets/arrow_up.js +++ b/src/components/icon/assets/arrow_up.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconArrowUp = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconArrowUp; diff --git a/src/components/icon/assets/asterisk.js b/src/components/icon/assets/asterisk.js index 29cbe6ad0a..3347af61fd 100644 --- a/src/components/icon/assets/asterisk.js +++ b/src/components/icon/assets/asterisk.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconAsterisk = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - + ); - export const icon = OuiIconAsterisk; diff --git a/src/components/icon/assets/beaker.js b/src/components/icon/assets/beaker.js index b6b952775b..a7dcc50f01 100644 --- a/src/components/icon/assets/beaker.js +++ b/src/components/icon/assets/beaker.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconBeaker = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconBeaker; diff --git a/src/components/icon/assets/bell.js b/src/components/icon/assets/bell.js index 4f20301693..3c5e4a3406 100644 --- a/src/components/icon/assets/bell.js +++ b/src/components/icon/assets/bell.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconBell = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconBell; diff --git a/src/components/icon/assets/bellSlash.js b/src/components/icon/assets/bellSlash.js index 020ebda483..2956427eb9 100644 --- a/src/components/icon/assets/bellSlash.js +++ b/src/components/icon/assets/bellSlash.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconBellSlash = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconBellSlash; diff --git a/src/components/icon/assets/bolt.js b/src/components/icon/assets/bolt.js index 84c6760b47..1a81282c53 100644 --- a/src/components/icon/assets/bolt.js +++ b/src/components/icon/assets/bolt.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconBolt = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconBolt; diff --git a/src/components/icon/assets/boxes_horizontal.js b/src/components/icon/assets/boxes_horizontal.js index 234f7a5bbe..ef40cd3073 100644 --- a/src/components/icon/assets/boxes_horizontal.js +++ b/src/components/icon/assets/boxes_horizontal.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconBoxesHorizontal = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconBoxesHorizontal; diff --git a/src/components/icon/assets/boxes_vertical.js b/src/components/icon/assets/boxes_vertical.js index ae73749364..a1ef676cb7 100644 --- a/src/components/icon/assets/boxes_vertical.js +++ b/src/components/icon/assets/boxes_vertical.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconBoxesVertical = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconBoxesVertical; diff --git a/src/components/icon/assets/branch.js b/src/components/icon/assets/branch.js index bf25009068..b0f0a3730c 100644 --- a/src/components/icon/assets/branch.js +++ b/src/components/icon/assets/branch.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconBranch = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconBranch; diff --git a/src/components/icon/assets/broom.js b/src/components/icon/assets/broom.js index 040ec0d936..5db839c450 100644 --- a/src/components/icon/assets/broom.js +++ b/src/components/icon/assets/broom.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconBroom = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconBroom; diff --git a/src/components/icon/assets/brush.js b/src/components/icon/assets/brush.js index 4acc1d7b70..7601fc0114 100644 --- a/src/components/icon/assets/brush.js +++ b/src/components/icon/assets/brush.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconBrush = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconBrush; diff --git a/src/components/icon/assets/bug.js b/src/components/icon/assets/bug.js index 652f570b5f..819037085e 100644 --- a/src/components/icon/assets/bug.js +++ b/src/components/icon/assets/bug.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconBug = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconBug; diff --git a/src/components/icon/assets/bullseye.js b/src/components/icon/assets/bullseye.js index 52c406e4a4..759585f124 100644 --- a/src/components/icon/assets/bullseye.js +++ b/src/components/icon/assets/bullseye.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconBullseye = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconBullseye; diff --git a/src/components/icon/assets/calendar.js b/src/components/icon/assets/calendar.js index 6e69aac664..853d61808d 100644 --- a/src/components/icon/assets/calendar.js +++ b/src/components/icon/assets/calendar.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconCalendar = ({ title, titleId, ...props }) => ( ( {...props}> {title ? {title} : null} ); - export const icon = OuiIconCalendar; diff --git a/src/components/icon/assets/check.js b/src/components/icon/assets/check.js index 1ce371769d..11f5314e8b 100644 --- a/src/components/icon/assets/check.js +++ b/src/components/icon/assets/check.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconCheck = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconCheck; diff --git a/src/components/icon/assets/checkInCircleFilled.js b/src/components/icon/assets/checkInCircleFilled.js index 0681ec999b..5a2c6fe2b9 100644 --- a/src/components/icon/assets/checkInCircleFilled.js +++ b/src/components/icon/assets/checkInCircleFilled.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconCheckInCircleFilled = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconCheckInCircleFilled; diff --git a/src/components/icon/assets/cheer.js b/src/components/icon/assets/cheer.js index a9add019f7..aa304e0435 100644 --- a/src/components/icon/assets/cheer.js +++ b/src/components/icon/assets/cheer.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconCheer = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconCheer; diff --git a/src/components/icon/assets/clock.js b/src/components/icon/assets/clock.js index 47ebf476f6..e38a2f0cc5 100644 --- a/src/components/icon/assets/clock.js +++ b/src/components/icon/assets/clock.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconClock = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconClock; diff --git a/src/components/icon/assets/cloudDrizzle.js b/src/components/icon/assets/cloudDrizzle.js index 6048d1bafb..746e5012d9 100644 --- a/src/components/icon/assets/cloudDrizzle.js +++ b/src/components/icon/assets/cloudDrizzle.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconCloudDrizzle = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconCloudDrizzle; diff --git a/src/components/icon/assets/cloudStormy.js b/src/components/icon/assets/cloudStormy.js index 265bca16f6..b7c69c91b7 100644 --- a/src/components/icon/assets/cloudStormy.js +++ b/src/components/icon/assets/cloudStormy.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconCloudStormy = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconCloudStormy; diff --git a/src/components/icon/assets/cloudSunny.js b/src/components/icon/assets/cloudSunny.js index 370d97d982..ec78802350 100644 --- a/src/components/icon/assets/cloudSunny.js +++ b/src/components/icon/assets/cloudSunny.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconCloudSunny = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconCloudSunny; diff --git a/src/components/icon/assets/color.js b/src/components/icon/assets/color.js index f20caed2ad..1821b0a5ff 100644 --- a/src/components/icon/assets/color.js +++ b/src/components/icon/assets/color.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconColor = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - + ); - export const icon = OuiIconColor; diff --git a/src/components/icon/assets/compute.js b/src/components/icon/assets/compute.js index d68b8f3fd6..34af9a22c2 100644 --- a/src/components/icon/assets/compute.js +++ b/src/components/icon/assets/compute.js @@ -10,19 +10,17 @@ */ import * as React from 'react'; - const OuiIconCompute = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconCompute; diff --git a/src/components/icon/assets/console.js b/src/components/icon/assets/console.js index 67eeb57267..e649b0520a 100644 --- a/src/components/icon/assets/console.js +++ b/src/components/icon/assets/console.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconConsole = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconConsole; diff --git a/src/components/icon/assets/continuityAbove.js b/src/components/icon/assets/continuityAbove.js index 5140379763..d4a034440d 100644 --- a/src/components/icon/assets/continuityAbove.js +++ b/src/components/icon/assets/continuityAbove.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconContinuityAbove = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - + ); - export const icon = OuiIconContinuityAbove; diff --git a/src/components/icon/assets/continuityAboveBelow.js b/src/components/icon/assets/continuityAboveBelow.js index 12921c58bb..813af55bf6 100644 --- a/src/components/icon/assets/continuityAboveBelow.js +++ b/src/components/icon/assets/continuityAboveBelow.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconContinuityAboveBelow = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - + ); - export const icon = OuiIconContinuityAboveBelow; diff --git a/src/components/icon/assets/continuityBelow.js b/src/components/icon/assets/continuityBelow.js index f238e17333..38a55e4d78 100644 --- a/src/components/icon/assets/continuityBelow.js +++ b/src/components/icon/assets/continuityBelow.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconContinuityBelow = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - + ); - export const icon = OuiIconContinuityBelow; diff --git a/src/components/icon/assets/continuityWithin.js b/src/components/icon/assets/continuityWithin.js index dccd522e5b..476ab7ce25 100644 --- a/src/components/icon/assets/continuityWithin.js +++ b/src/components/icon/assets/continuityWithin.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconContinuityWithin = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - + ); - export const icon = OuiIconContinuityWithin; diff --git a/src/components/icon/assets/controls_horizontal.js b/src/components/icon/assets/controls_horizontal.js index c9e8c08e4f..fbe7a5ba1f 100644 --- a/src/components/icon/assets/controls_horizontal.js +++ b/src/components/icon/assets/controls_horizontal.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconControlsHorizontal = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconControlsHorizontal; diff --git a/src/components/icon/assets/controls_vertical.js b/src/components/icon/assets/controls_vertical.js index d5ab03d1a0..7a84b458dd 100644 --- a/src/components/icon/assets/controls_vertical.js +++ b/src/components/icon/assets/controls_vertical.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconControlsVertical = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconControlsVertical; diff --git a/src/components/icon/assets/copy.js b/src/components/icon/assets/copy.js index e0acac6d24..7e46a7de36 100644 --- a/src/components/icon/assets/copy.js +++ b/src/components/icon/assets/copy.js @@ -10,19 +10,17 @@ */ import * as React from 'react'; - const OuiIconCopy = ({ title, titleId, ...props }) => ( {title ? {title} : null} - - + + ); - export const icon = OuiIconCopy; diff --git a/src/components/icon/assets/copy_clipboard.js b/src/components/icon/assets/copy_clipboard.js index ae29fdc1ac..cd3f948fcf 100644 --- a/src/components/icon/assets/copy_clipboard.js +++ b/src/components/icon/assets/copy_clipboard.js @@ -10,19 +10,17 @@ */ import * as React from 'react'; - const OuiIconCopyClipboard = ({ title, titleId, ...props }) => ( {title ? {title} : null} - - + + ); - export const icon = OuiIconCopyClipboard; diff --git a/src/components/icon/assets/cross.js b/src/components/icon/assets/cross.js index 1c9cc45a70..5175754419 100644 --- a/src/components/icon/assets/cross.js +++ b/src/components/icon/assets/cross.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconCross = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconCross; diff --git a/src/components/icon/assets/crossInACircleFilled.js b/src/components/icon/assets/crossInACircleFilled.js index bdfcd5619b..2e7927bb01 100644 --- a/src/components/icon/assets/crossInACircleFilled.js +++ b/src/components/icon/assets/crossInACircleFilled.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconCrossInACircleFilled = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconCrossInACircleFilled; diff --git a/src/components/icon/assets/crosshairs.js b/src/components/icon/assets/crosshairs.js index cd7f6bbf71..63003594e8 100644 --- a/src/components/icon/assets/crosshairs.js +++ b/src/components/icon/assets/crosshairs.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconCrosshairs = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconCrosshairs; diff --git a/src/components/icon/assets/currency.js b/src/components/icon/assets/currency.js index b7d40f07e0..190019e560 100644 --- a/src/components/icon/assets/currency.js +++ b/src/components/icon/assets/currency.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconCurrency = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconCurrency; diff --git a/src/components/icon/assets/cut.js b/src/components/icon/assets/cut.js index 84dd1ef2fa..1077ddcc82 100644 --- a/src/components/icon/assets/cut.js +++ b/src/components/icon/assets/cut.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconCut = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconCut; diff --git a/src/components/icon/assets/database.js b/src/components/icon/assets/database.js index 86cb471ac3..234f3fe95a 100644 --- a/src/components/icon/assets/database.js +++ b/src/components/icon/assets/database.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconDatabase = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconDatabase; diff --git a/src/components/icon/assets/document.js b/src/components/icon/assets/document.js index bfb4b96fc5..798ec925d8 100644 --- a/src/components/icon/assets/document.js +++ b/src/components/icon/assets/document.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconDocument = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconDocument; diff --git a/src/components/icon/assets/documentEdit.js b/src/components/icon/assets/documentEdit.js index aca9b2b7ce..74d74fa972 100644 --- a/src/components/icon/assets/documentEdit.js +++ b/src/components/icon/assets/documentEdit.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconDocumentEdit = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconDocumentEdit; diff --git a/src/components/icon/assets/documentation.js b/src/components/icon/assets/documentation.js index 8af0127916..66a8f7c6a5 100644 --- a/src/components/icon/assets/documentation.js +++ b/src/components/icon/assets/documentation.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconDocumentation = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - - - + + + ); - export const icon = OuiIconDocumentation; diff --git a/src/components/icon/assets/documents.js b/src/components/icon/assets/documents.js index 1014da549e..783e03cc45 100644 --- a/src/components/icon/assets/documents.js +++ b/src/components/icon/assets/documents.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconDocuments = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconDocuments; diff --git a/src/components/icon/assets/dot.js b/src/components/icon/assets/dot.js index 4983eae2de..b00ded7b44 100644 --- a/src/components/icon/assets/dot.js +++ b/src/components/icon/assets/dot.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconDot = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconDot; diff --git a/src/components/icon/assets/download.js b/src/components/icon/assets/download.js index 8c8f6630de..00f540f6a1 100644 --- a/src/components/icon/assets/download.js +++ b/src/components/icon/assets/download.js @@ -10,19 +10,17 @@ */ import * as React from 'react'; - const OuiIconDownload = ({ title, titleId, ...props }) => ( {title ? {title} : null} - - + + ); - export const icon = OuiIconDownload; diff --git a/src/components/icon/assets/editorDistributeHorizontal.js b/src/components/icon/assets/editorDistributeHorizontal.js index 5317dfb702..e597c39f10 100644 --- a/src/components/icon/assets/editorDistributeHorizontal.js +++ b/src/components/icon/assets/editorDistributeHorizontal.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorDistributeHorizontal = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorDistributeHorizontal; diff --git a/src/components/icon/assets/editorDistributeVertical.js b/src/components/icon/assets/editorDistributeVertical.js index d39287f2eb..9bc728ba2e 100644 --- a/src/components/icon/assets/editorDistributeVertical.js +++ b/src/components/icon/assets/editorDistributeVertical.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorDistributeVertical = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorDistributeVertical; diff --git a/src/components/icon/assets/editorItemAlignBottom.js b/src/components/icon/assets/editorItemAlignBottom.js index 924104447a..35b0c08e4f 100644 --- a/src/components/icon/assets/editorItemAlignBottom.js +++ b/src/components/icon/assets/editorItemAlignBottom.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorItemAlignBottom = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorItemAlignBottom; diff --git a/src/components/icon/assets/editorItemAlignCenter.js b/src/components/icon/assets/editorItemAlignCenter.js index 989f1f9129..6e39f9cba8 100644 --- a/src/components/icon/assets/editorItemAlignCenter.js +++ b/src/components/icon/assets/editorItemAlignCenter.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorItemAlignCenter = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorItemAlignCenter; diff --git a/src/components/icon/assets/editorItemAlignLeft.js b/src/components/icon/assets/editorItemAlignLeft.js index 2ab035fbd3..aaf509ba23 100644 --- a/src/components/icon/assets/editorItemAlignLeft.js +++ b/src/components/icon/assets/editorItemAlignLeft.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorItemAlignLeft = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorItemAlignLeft; diff --git a/src/components/icon/assets/editorItemAlignMiddle.js b/src/components/icon/assets/editorItemAlignMiddle.js index 9c8a3de6ec..93852e7573 100644 --- a/src/components/icon/assets/editorItemAlignMiddle.js +++ b/src/components/icon/assets/editorItemAlignMiddle.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorItemAlignMiddle = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorItemAlignMiddle; diff --git a/src/components/icon/assets/editorItemAlignRight.js b/src/components/icon/assets/editorItemAlignRight.js index 96fb412a43..5110a6818f 100644 --- a/src/components/icon/assets/editorItemAlignRight.js +++ b/src/components/icon/assets/editorItemAlignRight.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorItemAlignRight = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorItemAlignRight; diff --git a/src/components/icon/assets/editorItemAlignTop.js b/src/components/icon/assets/editorItemAlignTop.js index b7f9f24bda..afdd894a8e 100644 --- a/src/components/icon/assets/editorItemAlignTop.js +++ b/src/components/icon/assets/editorItemAlignTop.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorItemAlignTop = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorItemAlignTop; diff --git a/src/components/icon/assets/editorPositionBottomLeft.js b/src/components/icon/assets/editorPositionBottomLeft.js index de3c6d7b3c..882a668c0c 100644 --- a/src/components/icon/assets/editorPositionBottomLeft.js +++ b/src/components/icon/assets/editorPositionBottomLeft.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorPositionBottomLeft = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorPositionBottomLeft; diff --git a/src/components/icon/assets/editorPositionBottomRight.js b/src/components/icon/assets/editorPositionBottomRight.js index 3804b60f3c..bf45540c66 100644 --- a/src/components/icon/assets/editorPositionBottomRight.js +++ b/src/components/icon/assets/editorPositionBottomRight.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorPositionBottomRight = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorPositionBottomRight; diff --git a/src/components/icon/assets/editorPositionTopLeft.js b/src/components/icon/assets/editorPositionTopLeft.js index b9b344f20e..477fabc7dc 100644 --- a/src/components/icon/assets/editorPositionTopLeft.js +++ b/src/components/icon/assets/editorPositionTopLeft.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorPositionTopLeft = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorPositionTopLeft; diff --git a/src/components/icon/assets/editorPositionTopRight.js b/src/components/icon/assets/editorPositionTopRight.js index 216ee80e15..dd5429ca48 100644 --- a/src/components/icon/assets/editorPositionTopRight.js +++ b/src/components/icon/assets/editorPositionTopRight.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorPositionTopRight = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorPositionTopRight; diff --git a/src/components/icon/assets/editor_align_center.js b/src/components/icon/assets/editor_align_center.js index bf052a1731..28e111b2f8 100644 --- a/src/components/icon/assets/editor_align_center.js +++ b/src/components/icon/assets/editor_align_center.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorAlignCenter = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorAlignCenter; diff --git a/src/components/icon/assets/editor_align_left.js b/src/components/icon/assets/editor_align_left.js index 41f559ef24..b22c7a0690 100644 --- a/src/components/icon/assets/editor_align_left.js +++ b/src/components/icon/assets/editor_align_left.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorAlignLeft = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorAlignLeft; diff --git a/src/components/icon/assets/editor_align_right.js b/src/components/icon/assets/editor_align_right.js index 191eb574c8..1b386bdc50 100644 --- a/src/components/icon/assets/editor_align_right.js +++ b/src/components/icon/assets/editor_align_right.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorAlignRight = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorAlignRight; diff --git a/src/components/icon/assets/editor_bold.js b/src/components/icon/assets/editor_bold.js index 5bee80e22b..d6a8c23baf 100644 --- a/src/components/icon/assets/editor_bold.js +++ b/src/components/icon/assets/editor_bold.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorBold = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorBold; diff --git a/src/components/icon/assets/editor_code_block.js b/src/components/icon/assets/editor_code_block.js index 47827d5a08..6a5d078bf5 100644 --- a/src/components/icon/assets/editor_code_block.js +++ b/src/components/icon/assets/editor_code_block.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorCodeBlock = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorCodeBlock; diff --git a/src/components/icon/assets/editor_comment.js b/src/components/icon/assets/editor_comment.js index b17fb829c6..ae3485b073 100644 --- a/src/components/icon/assets/editor_comment.js +++ b/src/components/icon/assets/editor_comment.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorComment = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorComment; diff --git a/src/components/icon/assets/editor_heading.js b/src/components/icon/assets/editor_heading.js index 80d12f9ffe..8895c38cd6 100644 --- a/src/components/icon/assets/editor_heading.js +++ b/src/components/icon/assets/editor_heading.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorHeading = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorHeading; diff --git a/src/components/icon/assets/editor_italic.js b/src/components/icon/assets/editor_italic.js index d325ee9a81..585c268651 100644 --- a/src/components/icon/assets/editor_italic.js +++ b/src/components/icon/assets/editor_italic.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorItalic = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorItalic; diff --git a/src/components/icon/assets/editor_link.js b/src/components/icon/assets/editor_link.js index 0f8fce78ed..aebdefedfa 100644 --- a/src/components/icon/assets/editor_link.js +++ b/src/components/icon/assets/editor_link.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorLink = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorLink; diff --git a/src/components/icon/assets/editor_ordered_list.js b/src/components/icon/assets/editor_ordered_list.js index 7f356c39f5..98f9ed78ae 100644 --- a/src/components/icon/assets/editor_ordered_list.js +++ b/src/components/icon/assets/editor_ordered_list.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorOrderedList = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorOrderedList; diff --git a/src/components/icon/assets/editor_redo.js b/src/components/icon/assets/editor_redo.js index c9ef9b774c..050b1c4a3c 100644 --- a/src/components/icon/assets/editor_redo.js +++ b/src/components/icon/assets/editor_redo.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorRedo = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorRedo; diff --git a/src/components/icon/assets/editor_strike.js b/src/components/icon/assets/editor_strike.js index 3fcdc02ac1..6d16073e68 100644 --- a/src/components/icon/assets/editor_strike.js +++ b/src/components/icon/assets/editor_strike.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorStrike = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorStrike; diff --git a/src/components/icon/assets/editor_table.js b/src/components/icon/assets/editor_table.js index 208422f89c..89dff1543a 100644 --- a/src/components/icon/assets/editor_table.js +++ b/src/components/icon/assets/editor_table.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorTable = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorTable; diff --git a/src/components/icon/assets/editor_underline.js b/src/components/icon/assets/editor_underline.js index a68970d1ee..c0b9f2f2fb 100644 --- a/src/components/icon/assets/editor_underline.js +++ b/src/components/icon/assets/editor_underline.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorUnderline = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorUnderline; diff --git a/src/components/icon/assets/editor_undo.js b/src/components/icon/assets/editor_undo.js index 2e15572bd3..84bc4376ed 100644 --- a/src/components/icon/assets/editor_undo.js +++ b/src/components/icon/assets/editor_undo.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorUndo = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorUndo; diff --git a/src/components/icon/assets/editor_unordered_list.js b/src/components/icon/assets/editor_unordered_list.js index cf7e890803..b07faf4fcc 100644 --- a/src/components/icon/assets/editor_unordered_list.js +++ b/src/components/icon/assets/editor_unordered_list.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEditorUnorderedList = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEditorUnorderedList; diff --git a/src/components/icon/assets/email.js b/src/components/icon/assets/email.js index a8359e0f1b..21a3ca89d7 100644 --- a/src/components/icon/assets/email.js +++ b/src/components/icon/assets/email.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconEmail = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconEmail; diff --git a/src/components/icon/assets/empty.js b/src/components/icon/assets/empty.js index e9d17eb2f9..23611b38bc 100644 --- a/src/components/icon/assets/empty.js +++ b/src/components/icon/assets/empty.js @@ -10,16 +10,14 @@ */ import * as React from 'react'; - const OuiIconEmpty = ({ title, titleId, ...props }) => ( ); - export const icon = OuiIconEmpty; diff --git a/src/components/icon/assets/eql.js b/src/components/icon/assets/eql.js index e5b85de658..2c2ef568c2 100644 --- a/src/components/icon/assets/eql.js +++ b/src/components/icon/assets/eql.js @@ -10,19 +10,17 @@ */ import * as React from 'react'; - const OuiIconEql = ({ title, titleId, ...props }) => ( {title ? {title} : null} - - + + ); - export const icon = OuiIconEql; diff --git a/src/components/icon/assets/eraser.js b/src/components/icon/assets/eraser.js index a294c822c0..e6c77dbd5b 100644 --- a/src/components/icon/assets/eraser.js +++ b/src/components/icon/assets/eraser.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconEraser = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - - + + ); - export const icon = OuiIconEraser; diff --git a/src/components/icon/assets/exit.js b/src/components/icon/assets/exit.js index 7f8bd0d81b..baec0447c6 100644 --- a/src/components/icon/assets/exit.js +++ b/src/components/icon/assets/exit.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconExit = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconExit; diff --git a/src/components/icon/assets/expand.js b/src/components/icon/assets/expand.js index 89a3dd855b..82dddf602b 100644 --- a/src/components/icon/assets/expand.js +++ b/src/components/icon/assets/expand.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconExpand = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconExpand; diff --git a/src/components/icon/assets/expandMini.js b/src/components/icon/assets/expandMini.js index 547d65cfce..10fe69697a 100644 --- a/src/components/icon/assets/expandMini.js +++ b/src/components/icon/assets/expandMini.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconExpandMini = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconExpandMini; diff --git a/src/components/icon/assets/export.js b/src/components/icon/assets/export.js index 8657fa0ae5..0f5ff1132d 100644 --- a/src/components/icon/assets/export.js +++ b/src/components/icon/assets/export.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconExport = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconExport; diff --git a/src/components/icon/assets/eye.js b/src/components/icon/assets/eye.js index 2e4ec06bba..c3de0b37cd 100644 --- a/src/components/icon/assets/eye.js +++ b/src/components/icon/assets/eye.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEye = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEye; diff --git a/src/components/icon/assets/eye_closed.js b/src/components/icon/assets/eye_closed.js index 3063afec89..9b1ea1b4fa 100644 --- a/src/components/icon/assets/eye_closed.js +++ b/src/components/icon/assets/eye_closed.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconEyeClosed = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconEyeClosed; diff --git a/src/components/icon/assets/faceNeutral.js b/src/components/icon/assets/faceNeutral.js index 33b89580eb..9fbbad1417 100644 --- a/src/components/icon/assets/faceNeutral.js +++ b/src/components/icon/assets/faceNeutral.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconFaceNeutral = ({ title, titleId, ...props }) => ( ( {...props}> {title ? {title} : null} ); - export const icon = OuiIconFaceNeutral; diff --git a/src/components/icon/assets/face_happy.js b/src/components/icon/assets/face_happy.js index 6bb57f38ae..00d8872ed1 100644 --- a/src/components/icon/assets/face_happy.js +++ b/src/components/icon/assets/face_happy.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconFaceHappy = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconFaceHappy; diff --git a/src/components/icon/assets/face_neutral.js b/src/components/icon/assets/face_neutral.js index 6e76b5d10b..f08a0918a5 100644 --- a/src/components/icon/assets/face_neutral.js +++ b/src/components/icon/assets/face_neutral.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconFaceNeutral = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -25,11 +24,10 @@ const OuiIconFaceNeutral = ({ title, titleId, ...props }) => ( - + ); - export const icon = OuiIconFaceNeutral; diff --git a/src/components/icon/assets/face_sad.js b/src/components/icon/assets/face_sad.js index 50d05c6381..09c3dd4de5 100644 --- a/src/components/icon/assets/face_sad.js +++ b/src/components/icon/assets/face_sad.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconFaceSad = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconFaceSad; diff --git a/src/components/icon/assets/filter.js b/src/components/icon/assets/filter.js index 1fffb2056a..1b8bc8df76 100644 --- a/src/components/icon/assets/filter.js +++ b/src/components/icon/assets/filter.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconFilter = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconFilter; diff --git a/src/components/icon/assets/flag.js b/src/components/icon/assets/flag.js index acfb3cb18d..55171ecb15 100644 --- a/src/components/icon/assets/flag.js +++ b/src/components/icon/assets/flag.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconFlag = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconFlag; diff --git a/src/components/icon/assets/fold.js b/src/components/icon/assets/fold.js index 8908e62768..f841d3d513 100644 --- a/src/components/icon/assets/fold.js +++ b/src/components/icon/assets/fold.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconFold = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - + ); - export const icon = OuiIconFold; diff --git a/src/components/icon/assets/folder_check.js b/src/components/icon/assets/folder_check.js index 18557e10fb..6eada0e6cd 100644 --- a/src/components/icon/assets/folder_check.js +++ b/src/components/icon/assets/folder_check.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconFolderCheck = ({ title, titleId, ...props }) => ( ( {title ? {title} : null} ); - export const icon = OuiIconFolderCheck; diff --git a/src/components/icon/assets/folder_closed.js b/src/components/icon/assets/folder_closed.js index 508f7c976f..1bc5428ab6 100644 --- a/src/components/icon/assets/folder_closed.js +++ b/src/components/icon/assets/folder_closed.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconFolderClosed = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - + ); - export const icon = OuiIconFolderClosed; diff --git a/src/components/icon/assets/folder_exclamation.js b/src/components/icon/assets/folder_exclamation.js index 52dc758258..b1f29a32b4 100644 --- a/src/components/icon/assets/folder_exclamation.js +++ b/src/components/icon/assets/folder_exclamation.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconFolderExclamation = ({ title, titleId, ...props }) => ( ( {title ? {title} : null} ); - export const icon = OuiIconFolderExclamation; diff --git a/src/components/icon/assets/folder_open.js b/src/components/icon/assets/folder_open.js index 615d4ffb73..4a04922865 100644 --- a/src/components/icon/assets/folder_open.js +++ b/src/components/icon/assets/folder_open.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconFolderOpen = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - + ); - export const icon = OuiIconFolderOpen; diff --git a/src/components/icon/assets/frameNext.js b/src/components/icon/assets/frameNext.js index 6b71bd987f..faf8f2b5de 100644 --- a/src/components/icon/assets/frameNext.js +++ b/src/components/icon/assets/frameNext.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconFrameNext = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconFrameNext; diff --git a/src/components/icon/assets/framePrevious.js b/src/components/icon/assets/framePrevious.js index 51e2df6bbb..8dc7ae2b6d 100644 --- a/src/components/icon/assets/framePrevious.js +++ b/src/components/icon/assets/framePrevious.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconFramePrevious = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconFramePrevious; diff --git a/src/components/icon/assets/fullScreenExit.js b/src/components/icon/assets/fullScreenExit.js index 864abb67fc..b12c5dd060 100644 --- a/src/components/icon/assets/fullScreenExit.js +++ b/src/components/icon/assets/fullScreenExit.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconFullScreenExit = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - + ); - export const icon = OuiIconFullScreenExit; diff --git a/src/components/icon/assets/full_screen.js b/src/components/icon/assets/full_screen.js index bf275d7e79..151548e594 100644 --- a/src/components/icon/assets/full_screen.js +++ b/src/components/icon/assets/full_screen.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconFullScreen = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconFullScreen; diff --git a/src/components/icon/assets/function.js b/src/components/icon/assets/function.js index b8802bb1a8..c9eb2f4102 100644 --- a/src/components/icon/assets/function.js +++ b/src/components/icon/assets/function.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconFunction = ({ title, titleId, ...props }) => ( ( ); - export const icon = OuiIconFunction; diff --git a/src/components/icon/assets/gear.js b/src/components/icon/assets/gear.js index 9994db361c..ddac275acf 100644 --- a/src/components/icon/assets/gear.js +++ b/src/components/icon/assets/gear.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconGear = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconGear; diff --git a/src/components/icon/assets/glasses.js b/src/components/icon/assets/glasses.js index 6eddd35d27..733ab88cd4 100644 --- a/src/components/icon/assets/glasses.js +++ b/src/components/icon/assets/glasses.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconGlasses = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconGlasses; diff --git a/src/components/icon/assets/globe.js b/src/components/icon/assets/globe.js index 2b14a04631..ef2bcec168 100644 --- a/src/components/icon/assets/globe.js +++ b/src/components/icon/assets/globe.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconGlobe = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconGlobe; diff --git a/src/components/icon/assets/grab.js b/src/components/icon/assets/grab.js index d29db1ff86..6543b2a160 100644 --- a/src/components/icon/assets/grab.js +++ b/src/components/icon/assets/grab.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconGrab = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconGrab; diff --git a/src/components/icon/assets/grab_horizontal.js b/src/components/icon/assets/grab_horizontal.js index a802bd8fc6..ec84214ac6 100644 --- a/src/components/icon/assets/grab_horizontal.js +++ b/src/components/icon/assets/grab_horizontal.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconGrabHorizontal = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconGrabHorizontal; diff --git a/src/components/icon/assets/grid.js b/src/components/icon/assets/grid.js index cb7a86c59b..fc3842a338 100644 --- a/src/components/icon/assets/grid.js +++ b/src/components/icon/assets/grid.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconGrid = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconGrid; diff --git a/src/components/icon/assets/heart.js b/src/components/icon/assets/heart.js index 22999097ea..024d65f0ec 100644 --- a/src/components/icon/assets/heart.js +++ b/src/components/icon/assets/heart.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconHeart = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconHeart; diff --git a/src/components/icon/assets/heatmap.js b/src/components/icon/assets/heatmap.js index b068c6e738..b0c11484ea 100644 --- a/src/components/icon/assets/heatmap.js +++ b/src/components/icon/assets/heatmap.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconHeatmap = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconHeatmap; diff --git a/src/components/icon/assets/help.js b/src/components/icon/assets/help.js index 89a47b6fe9..258c860b43 100644 --- a/src/components/icon/assets/help.js +++ b/src/components/icon/assets/help.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconHelp = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconHelp; diff --git a/src/components/icon/assets/home.js b/src/components/icon/assets/home.js index 68f9ebde6f..cecc8f738d 100644 --- a/src/components/icon/assets/home.js +++ b/src/components/icon/assets/home.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconHome = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconHome; diff --git a/src/components/icon/assets/iInCircle.js b/src/components/icon/assets/iInCircle.js index 06cc66e210..ddceaf46b4 100644 --- a/src/components/icon/assets/iInCircle.js +++ b/src/components/icon/assets/iInCircle.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconIInCircle = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconIInCircle; diff --git a/src/components/icon/assets/image.js b/src/components/icon/assets/image.js index eac91c784e..01d9a5853f 100644 --- a/src/components/icon/assets/image.js +++ b/src/components/icon/assets/image.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconImage = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconImage; diff --git a/src/components/icon/assets/import.js b/src/components/icon/assets/import.js index 8ac31f3daa..e4a8f44344 100644 --- a/src/components/icon/assets/import.js +++ b/src/components/icon/assets/import.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconImport = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconImport; diff --git a/src/components/icon/assets/index_close.js b/src/components/icon/assets/index_close.js index 0c3106acd3..5baa01f2c1 100644 --- a/src/components/icon/assets/index_close.js +++ b/src/components/icon/assets/index_close.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconIndexClose = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconIndexClose; diff --git a/src/components/icon/assets/index_edit.js b/src/components/icon/assets/index_edit.js index f33b79001f..a59fddd066 100644 --- a/src/components/icon/assets/index_edit.js +++ b/src/components/icon/assets/index_edit.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconIndexEdit = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconIndexEdit; diff --git a/src/components/icon/assets/index_flush.js b/src/components/icon/assets/index_flush.js index 485a63ebcb..2a4740d7d1 100644 --- a/src/components/icon/assets/index_flush.js +++ b/src/components/icon/assets/index_flush.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconIndexFlush = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconIndexFlush; diff --git a/src/components/icon/assets/index_mapping.js b/src/components/icon/assets/index_mapping.js index 45b4dbc8ed..d4c80f480e 100644 --- a/src/components/icon/assets/index_mapping.js +++ b/src/components/icon/assets/index_mapping.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconIndexMapping = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconIndexMapping; diff --git a/src/components/icon/assets/index_open.js b/src/components/icon/assets/index_open.js index aa2bd91e01..1cf05b1e89 100644 --- a/src/components/icon/assets/index_open.js +++ b/src/components/icon/assets/index_open.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconIndexOpen = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconIndexOpen; diff --git a/src/components/icon/assets/index_runtime.js b/src/components/icon/assets/index_runtime.js index 6887ae690a..594cb06d82 100644 --- a/src/components/icon/assets/index_runtime.js +++ b/src/components/icon/assets/index_runtime.js @@ -10,19 +10,17 @@ */ import * as React from 'react'; - const OuiIconIndexRuntime = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconIndexRuntime; diff --git a/src/components/icon/assets/index_settings.js b/src/components/icon/assets/index_settings.js index 5c3e7d1967..12c9a60284 100644 --- a/src/components/icon/assets/index_settings.js +++ b/src/components/icon/assets/index_settings.js @@ -10,20 +10,18 @@ */ import * as React from 'react'; - const OuiIconIndexSettings = ({ title, titleId, ...props }) => ( {title ? {title} : null} - - - + + + ); - export const icon = OuiIconIndexSettings; diff --git a/src/components/icon/assets/inputOutput.js b/src/components/icon/assets/inputOutput.js index 17b4e1786a..ed39b10bec 100644 --- a/src/components/icon/assets/inputOutput.js +++ b/src/components/icon/assets/inputOutput.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconInputOutput = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -25,5 +24,4 @@ const OuiIconInputOutput = ({ title, titleId, ...props }) => ( ); - export const icon = OuiIconInputOutput; diff --git a/src/components/icon/assets/inspect.js b/src/components/icon/assets/inspect.js index b09a95af66..0477a57b8f 100644 --- a/src/components/icon/assets/inspect.js +++ b/src/components/icon/assets/inspect.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconInspect = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconInspect; diff --git a/src/components/icon/assets/invert.js b/src/components/icon/assets/invert.js index c27055b9ee..e882f8adb8 100644 --- a/src/components/icon/assets/invert.js +++ b/src/components/icon/assets/invert.js @@ -10,19 +10,17 @@ */ import * as React from 'react'; - const OuiIconInvert = ({ title, titleId, ...props }) => ( {title ? {title} : null} - - + + ); - export const icon = OuiIconInvert; diff --git a/src/components/icon/assets/ip.js b/src/components/icon/assets/ip.js index 256e813796..fc08af4e3e 100644 --- a/src/components/icon/assets/ip.js +++ b/src/components/icon/assets/ip.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconIp = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconIp; diff --git a/src/components/icon/assets/keyboard_shortcut.js b/src/components/icon/assets/keyboard_shortcut.js index 6255c37af9..0536353261 100644 --- a/src/components/icon/assets/keyboard_shortcut.js +++ b/src/components/icon/assets/keyboard_shortcut.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconKeyboardShortcut = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconKeyboardShortcut; diff --git a/src/components/icon/assets/kql_field.js b/src/components/icon/assets/kql_field.js index f2ffa95b0b..d1cbf60683 100644 --- a/src/components/icon/assets/kql_field.js +++ b/src/components/icon/assets/kql_field.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconKqlField = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconKqlField; diff --git a/src/components/icon/assets/kql_function.js b/src/components/icon/assets/kql_function.js index 1dee064f6e..a4994cc3c4 100644 --- a/src/components/icon/assets/kql_function.js +++ b/src/components/icon/assets/kql_function.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconKqlFunction = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconKqlFunction; diff --git a/src/components/icon/assets/kql_operand.js b/src/components/icon/assets/kql_operand.js index 851f084297..75496696a4 100644 --- a/src/components/icon/assets/kql_operand.js +++ b/src/components/icon/assets/kql_operand.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconKqlOperand = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconKqlOperand; diff --git a/src/components/icon/assets/kql_selector.js b/src/components/icon/assets/kql_selector.js index 215a0f039b..e87a518c75 100644 --- a/src/components/icon/assets/kql_selector.js +++ b/src/components/icon/assets/kql_selector.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconKqlSelector = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconKqlSelector; diff --git a/src/components/icon/assets/kql_value.js b/src/components/icon/assets/kql_value.js index fb2fcff08c..47c7cdd3fe 100644 --- a/src/components/icon/assets/kql_value.js +++ b/src/components/icon/assets/kql_value.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconKqlValue = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconKqlValue; diff --git a/src/components/icon/assets/layers.js b/src/components/icon/assets/layers.js index 2c2fbbe4c3..c0a610d02c 100644 --- a/src/components/icon/assets/layers.js +++ b/src/components/icon/assets/layers.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconLayers = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - - - + + + ); - export const icon = OuiIconLayers; diff --git a/src/components/icon/assets/link.js b/src/components/icon/assets/link.js index 74e0254814..0b07fa3748 100644 --- a/src/components/icon/assets/link.js +++ b/src/components/icon/assets/link.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconLink = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconLink; diff --git a/src/components/icon/assets/list.js b/src/components/icon/assets/list.js index ffc67d134d..3db5a03d6c 100644 --- a/src/components/icon/assets/list.js +++ b/src/components/icon/assets/list.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconList = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconList; diff --git a/src/components/icon/assets/list_add.js b/src/components/icon/assets/list_add.js index 206f3085a8..c5d078b405 100644 --- a/src/components/icon/assets/list_add.js +++ b/src/components/icon/assets/list_add.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconListAdd = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconListAdd; diff --git a/src/components/icon/assets/lock.js b/src/components/icon/assets/lock.js index b90874ebf0..99413baa0d 100644 --- a/src/components/icon/assets/lock.js +++ b/src/components/icon/assets/lock.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconLock = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconLock; diff --git a/src/components/icon/assets/lockOpen.js b/src/components/icon/assets/lockOpen.js index e67e5c29fd..33c8436357 100644 --- a/src/components/icon/assets/lockOpen.js +++ b/src/components/icon/assets/lockOpen.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconLockOpen = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconLockOpen; diff --git a/src/components/icon/assets/logo_aerospike.js b/src/components/icon/assets/logo_aerospike.js index ecf552b0c4..a9782771fd 100644 --- a/src/components/icon/assets/logo_aerospike.js +++ b/src/components/icon/assets/logo_aerospike.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconLogoAerospike = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -24,10 +23,9 @@ const OuiIconLogoAerospike = ({ title, titleId, ...props }) => ( ); - export const icon = OuiIconLogoAerospike; diff --git a/src/components/icon/assets/logo_apache.js b/src/components/icon/assets/logo_apache.js index 0c6a8778b6..b48034ec3a 100644 --- a/src/components/icon/assets/logo_apache.js +++ b/src/components/icon/assets/logo_apache.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconLogoApache = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -101,41 +100,40 @@ const OuiIconLogoApache = ({ title, titleId, ...props }) => ( ); - export const icon = OuiIconLogoApache; diff --git a/src/components/icon/assets/logo_app_search.js b/src/components/icon/assets/logo_app_search.js index 7e3a20c507..ff1ad9de23 100644 --- a/src/components/icon/assets/logo_app_search.js +++ b/src/components/icon/assets/logo_app_search.js @@ -10,29 +10,27 @@ */ import * as React from 'react'; - const OuiIconLogoAppSearch = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconLogoAppSearch; diff --git a/src/components/icon/assets/logo_aws.js b/src/components/icon/assets/logo_aws.js index 4644429aa5..edc000dc23 100644 --- a/src/components/icon/assets/logo_aws.js +++ b/src/components/icon/assets/logo_aws.js @@ -10,27 +10,25 @@ */ import * as React from 'react'; - const OuiIconLogoAws = ({ title, titleId, ...props }) => ( {title ? {title} : null} - - + + ); - export const icon = OuiIconLogoAws; diff --git a/src/components/icon/assets/logo_aws_mono.js b/src/components/icon/assets/logo_aws_mono.js index a7d19b3e82..117b7debc9 100644 --- a/src/components/icon/assets/logo_aws_mono.js +++ b/src/components/icon/assets/logo_aws_mono.js @@ -10,25 +10,23 @@ */ import * as React from 'react'; - const OuiIconLogoAwsMono = ({ title, titleId, ...props }) => ( {title ? {title} : null} - - + + ); - export const icon = OuiIconLogoAwsMono; diff --git a/src/components/icon/assets/logo_azure.js b/src/components/icon/assets/logo_azure.js index 22f002bd5b..9e6c8703e2 100644 --- a/src/components/icon/assets/logo_azure.js +++ b/src/components/icon/assets/logo_azure.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconLogoAzure = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconLogoAzure; diff --git a/src/components/icon/assets/logo_azure_mono.js b/src/components/icon/assets/logo_azure_mono.js index f191a84071..cc371db721 100644 --- a/src/components/icon/assets/logo_azure_mono.js +++ b/src/components/icon/assets/logo_azure_mono.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconLogoAzureMono = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconLogoAzureMono; diff --git a/src/components/icon/assets/logo_beats.js b/src/components/icon/assets/logo_beats.js index 04a77e65a4..daf6c5f244 100644 --- a/src/components/icon/assets/logo_beats.js +++ b/src/components/icon/assets/logo_beats.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconLogoBeats = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -26,13 +25,12 @@ const OuiIconLogoBeats = ({ title, titleId, ...props }) => ( /> ); - export const icon = OuiIconLogoBeats; diff --git a/src/components/icon/assets/logo_business_analytics.js b/src/components/icon/assets/logo_business_analytics.js index 805cf63a6f..e5de246ba6 100644 --- a/src/components/icon/assets/logo_business_analytics.js +++ b/src/components/icon/assets/logo_business_analytics.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconLogoBusinessAnalytics = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -36,5 +35,4 @@ const OuiIconLogoBusinessAnalytics = ({ title, titleId, ...props }) => ( ); - export const icon = OuiIconLogoBusinessAnalytics; diff --git a/src/components/icon/assets/logo_ceph.js b/src/components/icon/assets/logo_ceph.js index fb3f07d79c..5231447350 100644 --- a/src/components/icon/assets/logo_ceph.js +++ b/src/components/icon/assets/logo_ceph.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconLogoCeph = ({ title, titleId, ...props }) => ( ( {...props}> {title ? {title} : null} ); - export const icon = OuiIconLogoCeph; diff --git a/src/components/icon/assets/logo_cloud.js b/src/components/icon/assets/logo_cloud.js index 6234c5290a..d305e81ebc 100644 --- a/src/components/icon/assets/logo_cloud.js +++ b/src/components/icon/assets/logo_cloud.js @@ -10,31 +10,29 @@ */ import * as React from 'react'; - const OuiIconLogoCloud = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconLogoCloud; diff --git a/src/components/icon/assets/logo_cloud_ece.js b/src/components/icon/assets/logo_cloud_ece.js index a90d9fb7db..2b0b76d572 100644 --- a/src/components/icon/assets/logo_cloud_ece.js +++ b/src/components/icon/assets/logo_cloud_ece.js @@ -10,29 +10,27 @@ */ import * as React from 'react'; - const OuiIconLogoCloudEce = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconLogoCloudEce; diff --git a/src/components/icon/assets/logo_code.js b/src/components/icon/assets/logo_code.js index 182cda24f6..ec15d4ef86 100644 --- a/src/components/icon/assets/logo_code.js +++ b/src/components/icon/assets/logo_code.js @@ -10,26 +10,24 @@ */ import * as React from 'react'; - const OuiIconLogoCode = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconLogoCode; diff --git a/src/components/icon/assets/logo_codesandbox.js b/src/components/icon/assets/logo_codesandbox.js index cc8f641091..37705f454d 100644 --- a/src/components/icon/assets/logo_codesandbox.js +++ b/src/components/icon/assets/logo_codesandbox.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconLogoCodesandbox = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconLogoCodesandbox; diff --git a/src/components/icon/assets/logo_couchbase.js b/src/components/icon/assets/logo_couchbase.js index 27309ff3ac..65422a7d8f 100644 --- a/src/components/icon/assets/logo_couchbase.js +++ b/src/components/icon/assets/logo_couchbase.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconLogoCouchbase = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconLogoCouchbase; diff --git a/src/components/icon/assets/logo_docker.js b/src/components/icon/assets/logo_docker.js index d4b2bb5522..4b4e4631f7 100644 --- a/src/components/icon/assets/logo_docker.js +++ b/src/components/icon/assets/logo_docker.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconLogoDocker = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -27,5 +26,4 @@ const OuiIconLogoDocker = ({ title, titleId, ...props }) => ( /> ); - export const icon = OuiIconLogoDocker; diff --git a/src/components/icon/assets/logo_dropwizard.js b/src/components/icon/assets/logo_dropwizard.js index b7b51caaeb..4d292c1628 100644 --- a/src/components/icon/assets/logo_dropwizard.js +++ b/src/components/icon/assets/logo_dropwizard.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconLogoDropwizard = ({ title, titleId, ...props }) => ( ( fill="url(#paint1_linear)" /> ( ); - export const icon = OuiIconLogoDropwizard; diff --git a/src/components/icon/assets/logo_elastic.js b/src/components/icon/assets/logo_elastic.js index cf4f666722..b17a24a74a 100644 --- a/src/components/icon/assets/logo_elastic.js +++ b/src/components/icon/assets/logo_elastic.js @@ -10,46 +10,44 @@ */ import * as React from 'react'; - const OuiIconLogoElastic = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconLogoElastic; diff --git a/src/components/icon/assets/logo_elastic_stack.js b/src/components/icon/assets/logo_elastic_stack.js index a56b3f110b..2a32e9a7b4 100644 --- a/src/components/icon/assets/logo_elastic_stack.js +++ b/src/components/icon/assets/logo_elastic_stack.js @@ -10,26 +10,24 @@ */ import * as React from 'react'; - const OuiIconLogoElasticStack = ({ title, titleId, ...props }) => ( {title ? {title} : null} - - + + ); - export const icon = OuiIconLogoElasticStack; diff --git a/src/components/icon/assets/logo_elasticsearch.js b/src/components/icon/assets/logo_elasticsearch.js index 736f8d60f4..ebb95603dd 100644 --- a/src/components/icon/assets/logo_elasticsearch.js +++ b/src/components/icon/assets/logo_elasticsearch.js @@ -10,31 +10,29 @@ */ import * as React from 'react'; - const OuiIconLogoElasticsearch = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconLogoElasticsearch; diff --git a/src/components/icon/assets/logo_enterprise_search.js b/src/components/icon/assets/logo_enterprise_search.js index f9a26bec2c..b0120704ff 100644 --- a/src/components/icon/assets/logo_enterprise_search.js +++ b/src/components/icon/assets/logo_enterprise_search.js @@ -10,35 +10,33 @@ */ import * as React from 'react'; - const OuiIconLogoEnterpriseSearch = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconLogoEnterpriseSearch; diff --git a/src/components/icon/assets/logo_etcd.js b/src/components/icon/assets/logo_etcd.js index 1d4553be16..a04d0316ab 100644 --- a/src/components/icon/assets/logo_etcd.js +++ b/src/components/icon/assets/logo_etcd.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconLogoEtcd = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconLogoEtcd; diff --git a/src/components/icon/assets/logo_gcp.js b/src/components/icon/assets/logo_gcp.js index 2bf59270c9..c37b12255b 100644 --- a/src/components/icon/assets/logo_gcp.js +++ b/src/components/icon/assets/logo_gcp.js @@ -10,13 +10,13 @@ */ import * as React from 'react'; - const OuiIconLogoGcp = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -27,21 +27,21 @@ const OuiIconLogoGcp = ({ title, titleId, ...props }) => ( @@ -50,17 +50,16 @@ const OuiIconLogoGcp = ({ title, titleId, ...props }) => ( ); - export const icon = OuiIconLogoGcp; diff --git a/src/components/icon/assets/logo_gcp_mono.js b/src/components/icon/assets/logo_gcp_mono.js index 93d08febb4..4cdf8e470b 100644 --- a/src/components/icon/assets/logo_gcp_mono.js +++ b/src/components/icon/assets/logo_gcp_mono.js @@ -10,19 +10,17 @@ */ import * as React from 'react'; - const OuiIconLogoGcpMono = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconLogoGcpMono; diff --git a/src/components/icon/assets/logo_github.js b/src/components/icon/assets/logo_github.js index a45aa4b7ea..906b59db49 100644 --- a/src/components/icon/assets/logo_github.js +++ b/src/components/icon/assets/logo_github.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconLogoGithub = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconLogoGithub; diff --git a/src/components/icon/assets/logo_gmail.js b/src/components/icon/assets/logo_gmail.js index 04b1e2168c..7dbd2de133 100644 --- a/src/components/icon/assets/logo_gmail.js +++ b/src/components/icon/assets/logo_gmail.js @@ -10,47 +10,45 @@ */ import * as React from 'react'; - const OuiIconLogoGmail = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconLogoGmail; diff --git a/src/components/icon/assets/logo_golang.js b/src/components/icon/assets/logo_golang.js index 35f1402815..2e2df52723 100644 --- a/src/components/icon/assets/logo_golang.js +++ b/src/components/icon/assets/logo_golang.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconLogoGolang = ({ title, titleId, ...props }) => ( ( {...props}> {title ? {title} : null} - + - + ( fill="#74CDDD" /> ); - export const icon = OuiIconLogoGolang; diff --git a/src/components/icon/assets/logo_google_g.js b/src/components/icon/assets/logo_google_g.js index 20617975c2..a727f6fcaa 100644 --- a/src/components/icon/assets/logo_google_g.js +++ b/src/components/icon/assets/logo_google_g.js @@ -10,13 +10,13 @@ */ import * as React from 'react'; - const OuiIconLogoGoogleG = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -31,7 +31,7 @@ const OuiIconLogoGoogleG = ({ title, titleId, ...props }) => ( /> ( ); - export const icon = OuiIconLogoGoogleG; diff --git a/src/components/icon/assets/logo_haproxy.js b/src/components/icon/assets/logo_haproxy.js index 1b4e748734..af6c327bac 100644 --- a/src/components/icon/assets/logo_haproxy.js +++ b/src/components/icon/assets/logo_haproxy.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconLogoHaproxy = ({ title, titleId, ...props }) => ( ( {title ? {title} : null} - + ); - export const icon = OuiIconLogoHaproxy; diff --git a/src/components/icon/assets/logo_ibm.js b/src/components/icon/assets/logo_ibm.js index 95fb403236..24dc581d28 100644 --- a/src/components/icon/assets/logo_ibm.js +++ b/src/components/icon/assets/logo_ibm.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconLogoIbm = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -75,35 +74,34 @@ const OuiIconLogoIbm = ({ title, titleId, ...props }) => ( ); - export const icon = OuiIconLogoIbm; diff --git a/src/components/icon/assets/logo_ibm_mono.js b/src/components/icon/assets/logo_ibm_mono.js index eea53cda84..386831b948 100644 --- a/src/components/icon/assets/logo_ibm_mono.js +++ b/src/components/icon/assets/logo_ibm_mono.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconLogoIbmMono = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconLogoIbmMono; diff --git a/src/components/icon/assets/logo_kafka.js b/src/components/icon/assets/logo_kafka.js index 0984105fd5..9eee9eb1ed 100644 --- a/src/components/icon/assets/logo_kafka.js +++ b/src/components/icon/assets/logo_kafka.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconLogoKafka = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconLogoKafka; diff --git a/src/components/icon/assets/logo_kibana.js b/src/components/icon/assets/logo_kibana.js index fa91240a4d..eba097e9d3 100644 --- a/src/components/icon/assets/logo_kibana.js +++ b/src/components/icon/assets/logo_kibana.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconLogoKibana = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -24,14 +23,13 @@ const OuiIconLogoKibana = ({ title, titleId, ...props }) => ( ); - export const icon = OuiIconLogoKibana; diff --git a/src/components/icon/assets/logo_kubernetes.js b/src/components/icon/assets/logo_kubernetes.js index df7dc41e28..5bcb19c5bf 100644 --- a/src/components/icon/assets/logo_kubernetes.js +++ b/src/components/icon/assets/logo_kubernetes.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconLogoKubernetes = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconLogoKubernetes; diff --git a/src/components/icon/assets/logo_logging.js b/src/components/icon/assets/logo_logging.js index 34306a73dd..b815b707cb 100644 --- a/src/components/icon/assets/logo_logging.js +++ b/src/components/icon/assets/logo_logging.js @@ -10,17 +10,16 @@ */ import * as React from 'react'; - const OuiIconLogoLogging = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ( /> ); - export const icon = OuiIconLogoLogging; diff --git a/src/components/icon/assets/logo_logstash.js b/src/components/icon/assets/logo_logstash.js index 9185c2d38e..520fb96b9d 100644 --- a/src/components/icon/assets/logo_logstash.js +++ b/src/components/icon/assets/logo_logstash.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconLogoLogstash = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -24,9 +23,8 @@ const OuiIconLogoLogstash = ({ title, titleId, ...props }) => ( ); - export const icon = OuiIconLogoLogstash; diff --git a/src/components/icon/assets/logo_maps.js b/src/components/icon/assets/logo_maps.js index 409ebfa19c..26f6c31136 100644 --- a/src/components/icon/assets/logo_maps.js +++ b/src/components/icon/assets/logo_maps.js @@ -10,29 +10,27 @@ */ import * as React from 'react'; - const OuiIconLogoMaps = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconLogoMaps; diff --git a/src/components/icon/assets/logo_memcached.js b/src/components/icon/assets/logo_memcached.js index f909dba8db..d807bac6f6 100644 --- a/src/components/icon/assets/logo_memcached.js +++ b/src/components/icon/assets/logo_memcached.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconLogoMemcached = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -58,32 +57,31 @@ const OuiIconLogoMemcached = ({ title, titleId, ...props }) => ( ); - export const icon = OuiIconLogoMemcached; diff --git a/src/components/icon/assets/logo_metrics.js b/src/components/icon/assets/logo_metrics.js index d1d9df33d9..f2e6451924 100644 --- a/src/components/icon/assets/logo_metrics.js +++ b/src/components/icon/assets/logo_metrics.js @@ -10,31 +10,29 @@ */ import * as React from 'react'; - const OuiIconLogoMetrics = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconLogoMetrics; diff --git a/src/components/icon/assets/logo_mongodb.js b/src/components/icon/assets/logo_mongodb.js index 0e3f40effc..63aa8f0d0b 100644 --- a/src/components/icon/assets/logo_mongodb.js +++ b/src/components/icon/assets/logo_mongodb.js @@ -10,24 +10,23 @@ */ import * as React from 'react'; - const OuiIconLogoMongodb = ({ title, titleId, ...props }) => ( {title ? {title} : null} ( /> ); - export const icon = OuiIconLogoMongodb; diff --git a/src/components/icon/assets/logo_mysql.js b/src/components/icon/assets/logo_mysql.js index 4070c34775..20e521f84c 100644 --- a/src/components/icon/assets/logo_mysql.js +++ b/src/components/icon/assets/logo_mysql.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconLogoMysql = ({ title, titleId, ...props }) => ( {title ? {title} : null} - - + + ); - export const icon = OuiIconLogoMysql; diff --git a/src/components/icon/assets/logo_nginx.js b/src/components/icon/assets/logo_nginx.js index b5b64d1502..58561f3d44 100644 --- a/src/components/icon/assets/logo_nginx.js +++ b/src/components/icon/assets/logo_nginx.js @@ -10,25 +10,23 @@ */ import * as React from 'react'; - const OuiIconLogoNginx = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconLogoNginx; diff --git a/src/components/icon/assets/logo_observability.js b/src/components/icon/assets/logo_observability.js index 8ab099fc81..66caec1369 100644 --- a/src/components/icon/assets/logo_observability.js +++ b/src/components/icon/assets/logo_observability.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconLogoObservability = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - + ); - export const icon = OuiIconLogoObservability; diff --git a/src/components/icon/assets/logo_opensearch.js b/src/components/icon/assets/logo_opensearch.js index 4b9992b2c7..ce95927f98 100644 --- a/src/components/icon/assets/logo_opensearch.js +++ b/src/components/icon/assets/logo_opensearch.js @@ -10,30 +10,28 @@ */ import * as React from 'react'; - const OuiIconLogoOpensearch = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconLogoOpensearch; diff --git a/src/components/icon/assets/logo_osquery.js b/src/components/icon/assets/logo_osquery.js index f23014c7e3..a2d985570a 100644 --- a/src/components/icon/assets/logo_osquery.js +++ b/src/components/icon/assets/logo_osquery.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconLogoOsquery = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -44,5 +43,4 @@ const OuiIconLogoOsquery = ({ title, titleId, ...props }) => ( ); - export const icon = OuiIconLogoOsquery; diff --git a/src/components/icon/assets/logo_php.js b/src/components/icon/assets/logo_php.js index 323639ee9b..76b6a34e81 100644 --- a/src/components/icon/assets/logo_php.js +++ b/src/components/icon/assets/logo_php.js @@ -10,13 +10,13 @@ */ import * as React from 'react'; - const OuiIconLogoPhp = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -66,31 +66,30 @@ const OuiIconLogoPhp = ({ title, titleId, ...props }) => ( ); - export const icon = OuiIconLogoPhp; diff --git a/src/components/icon/assets/logo_postgres.js b/src/components/icon/assets/logo_postgres.js index ea6e3fab72..e7e5cae539 100644 --- a/src/components/icon/assets/logo_postgres.js +++ b/src/components/icon/assets/logo_postgres.js @@ -10,35 +10,33 @@ */ import * as React from 'react'; - const OuiIconLogoPostgres = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconLogoPostgres; diff --git a/src/components/icon/assets/logo_prometheus.js b/src/components/icon/assets/logo_prometheus.js index bc3809393e..dd9c2463fa 100644 --- a/src/components/icon/assets/logo_prometheus.js +++ b/src/components/icon/assets/logo_prometheus.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconLogoPrometheus = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconLogoPrometheus; diff --git a/src/components/icon/assets/logo_rabbitmq.js b/src/components/icon/assets/logo_rabbitmq.js index ad81a22dec..3de46a6c1f 100644 --- a/src/components/icon/assets/logo_rabbitmq.js +++ b/src/components/icon/assets/logo_rabbitmq.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconLogoRabbitmq = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconLogoRabbitmq; diff --git a/src/components/icon/assets/logo_redis.js b/src/components/icon/assets/logo_redis.js index 73557a158b..16395c7801 100644 --- a/src/components/icon/assets/logo_redis.js +++ b/src/components/icon/assets/logo_redis.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconLogoRedis = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -47,13 +46,12 @@ const OuiIconLogoRedis = ({ title, titleId, ...props }) => ( /> - - + + ); - export const icon = OuiIconLogoRedis; diff --git a/src/components/icon/assets/logo_security.js b/src/components/icon/assets/logo_security.js index 874ef99737..ec73729d67 100644 --- a/src/components/icon/assets/logo_security.js +++ b/src/components/icon/assets/logo_security.js @@ -10,29 +10,27 @@ */ import * as React from 'react'; - const OuiIconLogoSecurity = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconLogoSecurity; diff --git a/src/components/icon/assets/logo_site_search.js b/src/components/icon/assets/logo_site_search.js index e9ca1d0cf1..0ff1209227 100644 --- a/src/components/icon/assets/logo_site_search.js +++ b/src/components/icon/assets/logo_site_search.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconLogoSiteSearch = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -27,14 +26,13 @@ const OuiIconLogoSiteSearch = ({ title, titleId, ...props }) => ( /> ); - export const icon = OuiIconLogoSiteSearch; diff --git a/src/components/icon/assets/logo_sketch.js b/src/components/icon/assets/logo_sketch.js index f5f6500985..e120d83704 100644 --- a/src/components/icon/assets/logo_sketch.js +++ b/src/components/icon/assets/logo_sketch.js @@ -10,34 +10,32 @@ */ import * as React from 'react'; - const OuiIconLogoSketch = ({ title, titleId, ...props }) => ( {title ? {title} : null} - - - + + + ); - export const icon = OuiIconLogoSketch; diff --git a/src/components/icon/assets/logo_slack.js b/src/components/icon/assets/logo_slack.js index b1646d20de..f639b5273c 100644 --- a/src/components/icon/assets/logo_slack.js +++ b/src/components/icon/assets/logo_slack.js @@ -10,35 +10,33 @@ */ import * as React from 'react'; - const OuiIconLogoSlack = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconLogoSlack; diff --git a/src/components/icon/assets/logo_uptime.js b/src/components/icon/assets/logo_uptime.js index 978f506625..81960499aa 100644 --- a/src/components/icon/assets/logo_uptime.js +++ b/src/components/icon/assets/logo_uptime.js @@ -10,29 +10,27 @@ */ import * as React from 'react'; - const OuiIconLogoUptime = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconLogoUptime; diff --git a/src/components/icon/assets/logo_webhook.js b/src/components/icon/assets/logo_webhook.js index 1b28e5b140..466bce3ea4 100644 --- a/src/components/icon/assets/logo_webhook.js +++ b/src/components/icon/assets/logo_webhook.js @@ -10,31 +10,29 @@ */ import * as React from 'react'; - const OuiIconLogoWebhook = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconLogoWebhook; diff --git a/src/components/icon/assets/logo_windows.js b/src/components/icon/assets/logo_windows.js index 437148afe1..9ef69adcca 100644 --- a/src/components/icon/assets/logo_windows.js +++ b/src/components/icon/assets/logo_windows.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconLogoWindows = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconLogoWindows; diff --git a/src/components/icon/assets/logo_workplace_search.js b/src/components/icon/assets/logo_workplace_search.js index eda0f8aa9e..46ec30d095 100644 --- a/src/components/icon/assets/logo_workplace_search.js +++ b/src/components/icon/assets/logo_workplace_search.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconLogoWorkplaceSearch = ({ title, titleId, ...props }) => ( ( {...props}> {title ? {title} : null} ); - export const icon = OuiIconLogoWorkplaceSearch; diff --git a/src/components/icon/assets/logstash_filter.js b/src/components/icon/assets/logstash_filter.js index d5201905a7..0d3c3cbea3 100644 --- a/src/components/icon/assets/logstash_filter.js +++ b/src/components/icon/assets/logstash_filter.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconLogstashFilter = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconLogstashFilter; diff --git a/src/components/icon/assets/logstash_if.js b/src/components/icon/assets/logstash_if.js index 562ef9c6dc..b23effb212 100644 --- a/src/components/icon/assets/logstash_if.js +++ b/src/components/icon/assets/logstash_if.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconLogstashIf = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconLogstashIf; diff --git a/src/components/icon/assets/logstash_input.js b/src/components/icon/assets/logstash_input.js index d12b40dccd..bd70abca48 100644 --- a/src/components/icon/assets/logstash_input.js +++ b/src/components/icon/assets/logstash_input.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconLogstashInput = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconLogstashInput; diff --git a/src/components/icon/assets/logstash_output.js b/src/components/icon/assets/logstash_output.js index cd53b81e9d..2b135a187f 100644 --- a/src/components/icon/assets/logstash_output.js +++ b/src/components/icon/assets/logstash_output.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconLogstashOutput = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconLogstashOutput; diff --git a/src/components/icon/assets/logstash_queue.js b/src/components/icon/assets/logstash_queue.js index 0403b53838..8dd1c43953 100644 --- a/src/components/icon/assets/logstash_queue.js +++ b/src/components/icon/assets/logstash_queue.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconLogstashQueue = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconLogstashQueue; diff --git a/src/components/icon/assets/magnet.js b/src/components/icon/assets/magnet.js index f00d1abd82..a4a2c45bff 100644 --- a/src/components/icon/assets/magnet.js +++ b/src/components/icon/assets/magnet.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconMagnet = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconMagnet; diff --git a/src/components/icon/assets/magnifyWithMinus.js b/src/components/icon/assets/magnifyWithMinus.js index 36c802a38a..889db40dc8 100644 --- a/src/components/icon/assets/magnifyWithMinus.js +++ b/src/components/icon/assets/magnifyWithMinus.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconMagnifyWithMinus = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconMagnifyWithMinus; diff --git a/src/components/icon/assets/magnifyWithPlus.js b/src/components/icon/assets/magnifyWithPlus.js index 858b1a7e6c..156f759619 100644 --- a/src/components/icon/assets/magnifyWithPlus.js +++ b/src/components/icon/assets/magnifyWithPlus.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconMagnifyWithPlus = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconMagnifyWithPlus; diff --git a/src/components/icon/assets/map_marker.js b/src/components/icon/assets/map_marker.js index 03c5066c23..39d3879658 100644 --- a/src/components/icon/assets/map_marker.js +++ b/src/components/icon/assets/map_marker.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconMapMarker = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconMapMarker; diff --git a/src/components/icon/assets/memory.js b/src/components/icon/assets/memory.js index d91c1c69d1..bd1dacd6c3 100644 --- a/src/components/icon/assets/memory.js +++ b/src/components/icon/assets/memory.js @@ -10,19 +10,17 @@ */ import * as React from 'react'; - const OuiIconMemory = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconMemory; diff --git a/src/components/icon/assets/menu.js b/src/components/icon/assets/menu.js index 62fb477fdf..627f5ebaec 100644 --- a/src/components/icon/assets/menu.js +++ b/src/components/icon/assets/menu.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconMenu = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - + ); - export const icon = OuiIconMenu; diff --git a/src/components/icon/assets/menuDown.js b/src/components/icon/assets/menuDown.js index 8e7db8e188..a5b97d4259 100644 --- a/src/components/icon/assets/menuDown.js +++ b/src/components/icon/assets/menuDown.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconMenuDown = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconMenuDown; diff --git a/src/components/icon/assets/menuLeft.js b/src/components/icon/assets/menuLeft.js index 14d4b0aa36..43c5c42f16 100644 --- a/src/components/icon/assets/menuLeft.js +++ b/src/components/icon/assets/menuLeft.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconMenuLeft = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconMenuLeft; diff --git a/src/components/icon/assets/menuRight.js b/src/components/icon/assets/menuRight.js index e47c51e13c..b94394cd99 100644 --- a/src/components/icon/assets/menuRight.js +++ b/src/components/icon/assets/menuRight.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconMenuRight = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconMenuRight; diff --git a/src/components/icon/assets/menuUp.js b/src/components/icon/assets/menuUp.js index 4c4eb699d9..9be1793076 100644 --- a/src/components/icon/assets/menuUp.js +++ b/src/components/icon/assets/menuUp.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconMenuUp = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconMenuUp; diff --git a/src/components/icon/assets/merge.js b/src/components/icon/assets/merge.js index d64771bbbf..88d583f333 100644 --- a/src/components/icon/assets/merge.js +++ b/src/components/icon/assets/merge.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconMerge = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconMerge; diff --git a/src/components/icon/assets/minimize.js b/src/components/icon/assets/minimize.js index d9f67ffa71..607aa78fd1 100644 --- a/src/components/icon/assets/minimize.js +++ b/src/components/icon/assets/minimize.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconMinimize = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconMinimize; diff --git a/src/components/icon/assets/minus.js b/src/components/icon/assets/minus.js index 59f05f12a9..2f366f20f6 100644 --- a/src/components/icon/assets/minus.js +++ b/src/components/icon/assets/minus.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconMinus = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconMinus; diff --git a/src/components/icon/assets/minus_in_circle.js b/src/components/icon/assets/minus_in_circle.js index 52e4f286b5..85fe12751f 100644 --- a/src/components/icon/assets/minus_in_circle.js +++ b/src/components/icon/assets/minus_in_circle.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconMinusInCircle = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconMinusInCircle; diff --git a/src/components/icon/assets/minus_in_circle_filled.js b/src/components/icon/assets/minus_in_circle_filled.js index 4197530f2a..86e8435ddc 100644 --- a/src/components/icon/assets/minus_in_circle_filled.js +++ b/src/components/icon/assets/minus_in_circle_filled.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconMinusInCircleFilled = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconMinusInCircleFilled; diff --git a/src/components/icon/assets/ml_classification_job.js b/src/components/icon/assets/ml_classification_job.js index 6848c96355..3e6fd72093 100644 --- a/src/components/icon/assets/ml_classification_job.js +++ b/src/components/icon/assets/ml_classification_job.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconMlClassificationJob = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconMlClassificationJob; diff --git a/src/components/icon/assets/ml_create_advanced_job.js b/src/components/icon/assets/ml_create_advanced_job.js index 0be7156954..035acd9939 100644 --- a/src/components/icon/assets/ml_create_advanced_job.js +++ b/src/components/icon/assets/ml_create_advanced_job.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconMlCreateAdvancedJob = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -27,5 +26,4 @@ const OuiIconMlCreateAdvancedJob = ({ title, titleId, ...props }) => ( /> ); - export const icon = OuiIconMlCreateAdvancedJob; diff --git a/src/components/icon/assets/ml_create_multi_metric_job.js b/src/components/icon/assets/ml_create_multi_metric_job.js index b62e8657ca..66e3512e2b 100644 --- a/src/components/icon/assets/ml_create_multi_metric_job.js +++ b/src/components/icon/assets/ml_create_multi_metric_job.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconMlCreateMultiMetricJob = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconMlCreateMultiMetricJob; diff --git a/src/components/icon/assets/ml_create_population_job.js b/src/components/icon/assets/ml_create_population_job.js index a726ed8924..1cb643d815 100644 --- a/src/components/icon/assets/ml_create_population_job.js +++ b/src/components/icon/assets/ml_create_population_job.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconMlCreatePopulationJob = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconMlCreatePopulationJob; diff --git a/src/components/icon/assets/ml_create_single_metric_job.js b/src/components/icon/assets/ml_create_single_metric_job.js index 341bff3ebc..47c9569768 100644 --- a/src/components/icon/assets/ml_create_single_metric_job.js +++ b/src/components/icon/assets/ml_create_single_metric_job.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconMlCreateSingleMetricJob = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconMlCreateSingleMetricJob; diff --git a/src/components/icon/assets/ml_data_visualizer.js b/src/components/icon/assets/ml_data_visualizer.js index ba8b621a4d..0932f1135e 100644 --- a/src/components/icon/assets/ml_data_visualizer.js +++ b/src/components/icon/assets/ml_data_visualizer.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconMlDataVisualizer = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconMlDataVisualizer; diff --git a/src/components/icon/assets/ml_outlier_detection_job.js b/src/components/icon/assets/ml_outlier_detection_job.js index c988611458..42e0e06388 100644 --- a/src/components/icon/assets/ml_outlier_detection_job.js +++ b/src/components/icon/assets/ml_outlier_detection_job.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconMlOutlierDetectionJob = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconMlOutlierDetectionJob; diff --git a/src/components/icon/assets/ml_regression_job.js b/src/components/icon/assets/ml_regression_job.js index ffd56ffe0d..76d66591ab 100644 --- a/src/components/icon/assets/ml_regression_job.js +++ b/src/components/icon/assets/ml_regression_job.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconMlRegressionJob = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconMlRegressionJob; diff --git a/src/components/icon/assets/mobile.js b/src/components/icon/assets/mobile.js index 302890bbf4..91b9b3a1b7 100644 --- a/src/components/icon/assets/mobile.js +++ b/src/components/icon/assets/mobile.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconMobile = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - + ); - export const icon = OuiIconMobile; diff --git a/src/components/icon/assets/moon.js b/src/components/icon/assets/moon.js index 5a8cf8ef2d..154e355212 100644 --- a/src/components/icon/assets/moon.js +++ b/src/components/icon/assets/moon.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconMoon = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconMoon; diff --git a/src/components/icon/assets/nested.js b/src/components/icon/assets/nested.js index f0cf192b14..fd0cdc5b33 100644 --- a/src/components/icon/assets/nested.js +++ b/src/components/icon/assets/nested.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconNested = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconNested; diff --git a/src/components/icon/assets/node.js b/src/components/icon/assets/node.js index eed1be7f03..296365b455 100644 --- a/src/components/icon/assets/node.js +++ b/src/components/icon/assets/node.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconNode = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconNode; diff --git a/src/components/icon/assets/number.js b/src/components/icon/assets/number.js index 3141713909..e85259e5c5 100644 --- a/src/components/icon/assets/number.js +++ b/src/components/icon/assets/number.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconNumber = ({ title, titleId, ...props }) => ( ( /> ); - export const icon = OuiIconNumber; diff --git a/src/components/icon/assets/offline.js b/src/components/icon/assets/offline.js index 03c663c1f3..3b263bbee0 100644 --- a/src/components/icon/assets/offline.js +++ b/src/components/icon/assets/offline.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconOffline = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconOffline; diff --git a/src/components/icon/assets/online.js b/src/components/icon/assets/online.js index a3e899985d..0500fae66a 100644 --- a/src/components/icon/assets/online.js +++ b/src/components/icon/assets/online.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconOnline = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconOnline; diff --git a/src/components/icon/assets/package.js b/src/components/icon/assets/package.js index d74d16633c..f78b843740 100644 --- a/src/components/icon/assets/package.js +++ b/src/components/icon/assets/package.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconPackage = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconPackage; diff --git a/src/components/icon/assets/pageSelect.js b/src/components/icon/assets/pageSelect.js index cf63806ae0..324b5e7f5e 100644 --- a/src/components/icon/assets/pageSelect.js +++ b/src/components/icon/assets/pageSelect.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconPageSelect = ({ title, titleId, ...props }) => ( ( {title ? {title} : null} ); - export const icon = OuiIconPageSelect; diff --git a/src/components/icon/assets/pagesSelect.js b/src/components/icon/assets/pagesSelect.js index 411fb8b4c0..51d18342f2 100644 --- a/src/components/icon/assets/pagesSelect.js +++ b/src/components/icon/assets/pagesSelect.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconPagesSelect = ({ title, titleId, ...props }) => ( ( {title ? {title} : null} ); - export const icon = OuiIconPagesSelect; diff --git a/src/components/icon/assets/paint.js b/src/components/icon/assets/paint.js index 1ec8350954..5738f4404c 100644 --- a/src/components/icon/assets/paint.js +++ b/src/components/icon/assets/paint.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconPaint = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconPaint; diff --git a/src/components/icon/assets/paper_clip.js b/src/components/icon/assets/paper_clip.js index 5ad8b0f461..87965f8f91 100644 --- a/src/components/icon/assets/paper_clip.js +++ b/src/components/icon/assets/paper_clip.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconPaperClip = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - + ); - export const icon = OuiIconPaperClip; diff --git a/src/components/icon/assets/partial.js b/src/components/icon/assets/partial.js index 4a458190b9..d48d72d9e2 100644 --- a/src/components/icon/assets/partial.js +++ b/src/components/icon/assets/partial.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconPartial = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconPartial; diff --git a/src/components/icon/assets/pause.js b/src/components/icon/assets/pause.js index cf15892a1e..e24dbac74d 100644 --- a/src/components/icon/assets/pause.js +++ b/src/components/icon/assets/pause.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconPause = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconPause; diff --git a/src/components/icon/assets/pencil.js b/src/components/icon/assets/pencil.js index a4874a1a9c..f12d40a472 100644 --- a/src/components/icon/assets/pencil.js +++ b/src/components/icon/assets/pencil.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconPencil = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconPencil; diff --git a/src/components/icon/assets/percent.js b/src/components/icon/assets/percent.js index 0615292280..785623398b 100644 --- a/src/components/icon/assets/percent.js +++ b/src/components/icon/assets/percent.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconPercent = ({ title, titleId, ...props }) => ( ( /> ); - export const icon = OuiIconPercent; diff --git a/src/components/icon/assets/pin.js b/src/components/icon/assets/pin.js index c431f836c2..c15389f62d 100644 --- a/src/components/icon/assets/pin.js +++ b/src/components/icon/assets/pin.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconPin = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconPin; diff --git a/src/components/icon/assets/pin_filled.js b/src/components/icon/assets/pin_filled.js index 76a6944eca..9eb86d9461 100644 --- a/src/components/icon/assets/pin_filled.js +++ b/src/components/icon/assets/pin_filled.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconPinFilled = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconPinFilled; diff --git a/src/components/icon/assets/play.js b/src/components/icon/assets/play.js index 6a36be8b0d..74b02bc0ea 100644 --- a/src/components/icon/assets/play.js +++ b/src/components/icon/assets/play.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconPlay = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconPlay; diff --git a/src/components/icon/assets/playFilled.js b/src/components/icon/assets/playFilled.js index 5bce4ee6c7..5bfcce8a00 100644 --- a/src/components/icon/assets/playFilled.js +++ b/src/components/icon/assets/playFilled.js @@ -10,19 +10,17 @@ */ import * as React from 'react'; - const OuiIconPlayFilled = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconPlayFilled; diff --git a/src/components/icon/assets/plus.js b/src/components/icon/assets/plus.js index 594848cab4..3fa2138a45 100644 --- a/src/components/icon/assets/plus.js +++ b/src/components/icon/assets/plus.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconPlus = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconPlus; diff --git a/src/components/icon/assets/plus_in_circle.js b/src/components/icon/assets/plus_in_circle.js index 03f616c5d8..7228fd52f8 100644 --- a/src/components/icon/assets/plus_in_circle.js +++ b/src/components/icon/assets/plus_in_circle.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconPlusInCircle = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconPlusInCircle; diff --git a/src/components/icon/assets/plus_in_circle_filled.js b/src/components/icon/assets/plus_in_circle_filled.js index 49ed65b807..d03b06ff6a 100644 --- a/src/components/icon/assets/plus_in_circle_filled.js +++ b/src/components/icon/assets/plus_in_circle_filled.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconPlusInCircleFilled = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconPlusInCircleFilled; diff --git a/src/components/icon/assets/popout.js b/src/components/icon/assets/popout.js index 8f69b3d3c2..48c4ced21f 100644 --- a/src/components/icon/assets/popout.js +++ b/src/components/icon/assets/popout.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconPopout = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconPopout; diff --git a/src/components/icon/assets/push.js b/src/components/icon/assets/push.js index 2e09e8ad4d..1b73e57e12 100644 --- a/src/components/icon/assets/push.js +++ b/src/components/icon/assets/push.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconPush = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - - + + ); - export const icon = OuiIconPush; diff --git a/src/components/icon/assets/question_in_circle.js b/src/components/icon/assets/question_in_circle.js index 2dfe7b281f..2268b19b94 100644 --- a/src/components/icon/assets/question_in_circle.js +++ b/src/components/icon/assets/question_in_circle.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconQuestionInCircle = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconQuestionInCircle; diff --git a/src/components/icon/assets/quote.js b/src/components/icon/assets/quote.js index 2ee94383e0..39f6a0148c 100644 --- a/src/components/icon/assets/quote.js +++ b/src/components/icon/assets/quote.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconQuote = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - + ); - export const icon = OuiIconQuote; diff --git a/src/components/icon/assets/refresh.js b/src/components/icon/assets/refresh.js index 0fe67b90ba..e07499f1c9 100644 --- a/src/components/icon/assets/refresh.js +++ b/src/components/icon/assets/refresh.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconRefresh = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconRefresh; diff --git a/src/components/icon/assets/reporter.js b/src/components/icon/assets/reporter.js index 7cd6e48f54..816d31b1b3 100644 --- a/src/components/icon/assets/reporter.js +++ b/src/components/icon/assets/reporter.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconReporter = ({ title, titleId, ...props }) => ( ( {title ? {title} : null} ); - export const icon = OuiIconReporter; diff --git a/src/components/icon/assets/return_key.js b/src/components/icon/assets/return_key.js index a5c78a4e27..d2a2ee7ca1 100644 --- a/src/components/icon/assets/return_key.js +++ b/src/components/icon/assets/return_key.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconReturnKey = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconReturnKey; diff --git a/src/components/icon/assets/save.js b/src/components/icon/assets/save.js index ed22f5fbd3..0d0e3b825d 100644 --- a/src/components/icon/assets/save.js +++ b/src/components/icon/assets/save.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconSave = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconSave; diff --git a/src/components/icon/assets/scale.js b/src/components/icon/assets/scale.js index edda105fba..991e787030 100644 --- a/src/components/icon/assets/scale.js +++ b/src/components/icon/assets/scale.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconScale = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconScale; diff --git a/src/components/icon/assets/search.js b/src/components/icon/assets/search.js index ce0bebdd78..a7b4403d8c 100644 --- a/src/components/icon/assets/search.js +++ b/src/components/icon/assets/search.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconSearch = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconSearch; diff --git a/src/components/icon/assets/securitySignal.js b/src/components/icon/assets/securitySignal.js index f47138e40b..520151df81 100644 --- a/src/components/icon/assets/securitySignal.js +++ b/src/components/icon/assets/securitySignal.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconSecuritySignal = ({ title, titleId, ...props }) => ( ( {title ? {title} : null} ); - export const icon = OuiIconSecuritySignal; diff --git a/src/components/icon/assets/securitySignalDetected.js b/src/components/icon/assets/securitySignalDetected.js index 39c3bf068e..0e8dda34a6 100644 --- a/src/components/icon/assets/securitySignalDetected.js +++ b/src/components/icon/assets/securitySignalDetected.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconSecuritySignalDetected = ({ title, titleId, ...props }) => ( ( {title ? {title} : null} ); - export const icon = OuiIconSecuritySignalDetected; diff --git a/src/components/icon/assets/securitySignalResolved.js b/src/components/icon/assets/securitySignalResolved.js index 6a506075e6..cddd52c7db 100644 --- a/src/components/icon/assets/securitySignalResolved.js +++ b/src/components/icon/assets/securitySignalResolved.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconSecuritySignalResolved = ({ title, titleId, ...props }) => ( ( {title ? {title} : null} ); - export const icon = OuiIconSecuritySignalResolved; diff --git a/src/components/icon/assets/shard.js b/src/components/icon/assets/shard.js index 2aa66a6d4b..bfbab4cd32 100644 --- a/src/components/icon/assets/shard.js +++ b/src/components/icon/assets/shard.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconShard = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconShard; diff --git a/src/components/icon/assets/share.js b/src/components/icon/assets/share.js index 827e5b8188..372bb16a17 100644 --- a/src/components/icon/assets/share.js +++ b/src/components/icon/assets/share.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconShare = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconShare; diff --git a/src/components/icon/assets/snowflake.js b/src/components/icon/assets/snowflake.js index aa1034d381..d301a81639 100644 --- a/src/components/icon/assets/snowflake.js +++ b/src/components/icon/assets/snowflake.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconSnowflake = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconSnowflake; diff --git a/src/components/icon/assets/sortLeft.js b/src/components/icon/assets/sortLeft.js index 3c6552fa95..9fe751280f 100644 --- a/src/components/icon/assets/sortLeft.js +++ b/src/components/icon/assets/sortLeft.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconSortLeft = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconSortLeft; diff --git a/src/components/icon/assets/sortRight.js b/src/components/icon/assets/sortRight.js index 0663e7101b..b0d29563c5 100644 --- a/src/components/icon/assets/sortRight.js +++ b/src/components/icon/assets/sortRight.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconSortRight = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconSortRight; diff --git a/src/components/icon/assets/sort_down.js b/src/components/icon/assets/sort_down.js index 7d5ee38864..ac86ad7f98 100644 --- a/src/components/icon/assets/sort_down.js +++ b/src/components/icon/assets/sort_down.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconSortDown = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconSortDown; diff --git a/src/components/icon/assets/sort_up.js b/src/components/icon/assets/sort_up.js index 488c99f77f..97ddf4ce2d 100644 --- a/src/components/icon/assets/sort_up.js +++ b/src/components/icon/assets/sort_up.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconSortUp = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconSortUp; diff --git a/src/components/icon/assets/sortable.js b/src/components/icon/assets/sortable.js index 61eebba17d..f1a94ae854 100644 --- a/src/components/icon/assets/sortable.js +++ b/src/components/icon/assets/sortable.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconSortable = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconSortable; diff --git a/src/components/icon/assets/starPlusEmpty.js b/src/components/icon/assets/starPlusEmpty.js index e5a2612192..7c2123e494 100644 --- a/src/components/icon/assets/starPlusEmpty.js +++ b/src/components/icon/assets/starPlusEmpty.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconStarPlusEmpty = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconStarPlusEmpty; diff --git a/src/components/icon/assets/starPlusFilled.js b/src/components/icon/assets/starPlusFilled.js index 357e6f7a47..59d4707eff 100644 --- a/src/components/icon/assets/starPlusFilled.js +++ b/src/components/icon/assets/starPlusFilled.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconStarPlusFilled = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconStarPlusFilled; diff --git a/src/components/icon/assets/star_empty.js b/src/components/icon/assets/star_empty.js index 2a790baf64..2bccacb7a1 100644 --- a/src/components/icon/assets/star_empty.js +++ b/src/components/icon/assets/star_empty.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconStarEmpty = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconStarEmpty; diff --git a/src/components/icon/assets/star_empty_space.js b/src/components/icon/assets/star_empty_space.js index 680f2e1e4e..c0fb704e16 100644 --- a/src/components/icon/assets/star_empty_space.js +++ b/src/components/icon/assets/star_empty_space.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconStarEmptySpace = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconStarEmptySpace; diff --git a/src/components/icon/assets/star_filled.js b/src/components/icon/assets/star_filled.js index 67d29ef37f..e9a5b6dd94 100644 --- a/src/components/icon/assets/star_filled.js +++ b/src/components/icon/assets/star_filled.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconStarFilled = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconStarFilled; diff --git a/src/components/icon/assets/star_filled_space.js b/src/components/icon/assets/star_filled_space.js index 30c2d5637f..d01b110906 100644 --- a/src/components/icon/assets/star_filled_space.js +++ b/src/components/icon/assets/star_filled_space.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconStarFilledSpace = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconStarFilledSpace; diff --git a/src/components/icon/assets/star_minus_empty.js b/src/components/icon/assets/star_minus_empty.js index 35ce9d9788..5ef71c72f1 100644 --- a/src/components/icon/assets/star_minus_empty.js +++ b/src/components/icon/assets/star_minus_empty.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconStarMinusEmpty = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconStarMinusEmpty; diff --git a/src/components/icon/assets/star_minus_filled.js b/src/components/icon/assets/star_minus_filled.js index c88faac0e3..2f2a428489 100644 --- a/src/components/icon/assets/star_minus_filled.js +++ b/src/components/icon/assets/star_minus_filled.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconStarMinusFilled = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconStarMinusFilled; diff --git a/src/components/icon/assets/stats.js b/src/components/icon/assets/stats.js index 2b07c94a85..58b45c1f7e 100644 --- a/src/components/icon/assets/stats.js +++ b/src/components/icon/assets/stats.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconStats = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconStats; diff --git a/src/components/icon/assets/stop.js b/src/components/icon/assets/stop.js index ca992199af..b173738754 100644 --- a/src/components/icon/assets/stop.js +++ b/src/components/icon/assets/stop.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconStop = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconStop; diff --git a/src/components/icon/assets/stop_filled.js b/src/components/icon/assets/stop_filled.js index a00714e82a..d29d926211 100644 --- a/src/components/icon/assets/stop_filled.js +++ b/src/components/icon/assets/stop_filled.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconStopFilled = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconStopFilled; diff --git a/src/components/icon/assets/stop_slash.js b/src/components/icon/assets/stop_slash.js index 8d6a8d2a8e..6bdaab4767 100644 --- a/src/components/icon/assets/stop_slash.js +++ b/src/components/icon/assets/stop_slash.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconStopSlash = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconStopSlash; diff --git a/src/components/icon/assets/storage.js b/src/components/icon/assets/storage.js index 90f0a4adb5..a7d7c4446c 100644 --- a/src/components/icon/assets/storage.js +++ b/src/components/icon/assets/storage.js @@ -10,20 +10,19 @@ */ import * as React from 'react'; - const OuiIconStorage = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -31,5 +30,4 @@ const OuiIconStorage = ({ title, titleId, ...props }) => ( ); - export const icon = OuiIconStorage; diff --git a/src/components/icon/assets/string.js b/src/components/icon/assets/string.js index 2d598540d3..92ac8449c3 100644 --- a/src/components/icon/assets/string.js +++ b/src/components/icon/assets/string.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconString = ({ title, titleId, ...props }) => ( ( {title ? {title} : null} ); - export const icon = OuiIconString; diff --git a/src/components/icon/assets/submodule.js b/src/components/icon/assets/submodule.js index f7a39d8e1d..98e93794a9 100644 --- a/src/components/icon/assets/submodule.js +++ b/src/components/icon/assets/submodule.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconSubmodule = ({ title, titleId, ...props }) => ( ( {title ? {title} : null} ); - export const icon = OuiIconSubmodule; diff --git a/src/components/icon/assets/swatch_input.js b/src/components/icon/assets/swatch_input.js index 4358d92a0c..ee88551454 100644 --- a/src/components/icon/assets/swatch_input.js +++ b/src/components/icon/assets/swatch_input.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconSwatchInput = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -31,5 +30,4 @@ const OuiIconSwatchInput = ({ title, titleId, ...props }) => ( /> ); - export const icon = OuiIconSwatchInput; diff --git a/src/components/icon/assets/symlink.js b/src/components/icon/assets/symlink.js index d3d1bd54f1..ed31f6f7d7 100644 --- a/src/components/icon/assets/symlink.js +++ b/src/components/icon/assets/symlink.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconSymlink = ({ title, titleId, ...props }) => ( ( {title ? {title} : null} ); - export const icon = OuiIconSymlink; diff --git a/src/components/icon/assets/tableOfContents.js b/src/components/icon/assets/tableOfContents.js index 1f9a0c9da4..27e24a3e64 100644 --- a/src/components/icon/assets/tableOfContents.js +++ b/src/components/icon/assets/tableOfContents.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconTableOfContents = ({ title, titleId, ...props }) => ( ( ); - export const icon = OuiIconTableOfContents; diff --git a/src/components/icon/assets/table_density_compact.js b/src/components/icon/assets/table_density_compact.js index d041985abc..e7ce73648c 100644 --- a/src/components/icon/assets/table_density_compact.js +++ b/src/components/icon/assets/table_density_compact.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconTableDensityCompact = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconTableDensityCompact; diff --git a/src/components/icon/assets/table_density_expanded.js b/src/components/icon/assets/table_density_expanded.js index 6a759e2445..f0621b1d96 100644 --- a/src/components/icon/assets/table_density_expanded.js +++ b/src/components/icon/assets/table_density_expanded.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconTableDensityExpanded = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconTableDensityExpanded; diff --git a/src/components/icon/assets/table_density_normal.js b/src/components/icon/assets/table_density_normal.js index d3e3bbf69b..c75b0e0b56 100644 --- a/src/components/icon/assets/table_density_normal.js +++ b/src/components/icon/assets/table_density_normal.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconTableDensityNormal = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconTableDensityNormal; diff --git a/src/components/icon/assets/tag.js b/src/components/icon/assets/tag.js index 16c2b19637..4c118a57c0 100644 --- a/src/components/icon/assets/tag.js +++ b/src/components/icon/assets/tag.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconTag = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconTag; diff --git a/src/components/icon/assets/tear.js b/src/components/icon/assets/tear.js index 0ac91b5ed5..664439fd3b 100644 --- a/src/components/icon/assets/tear.js +++ b/src/components/icon/assets/tear.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconTear = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconTear; diff --git a/src/components/icon/assets/temperature.js b/src/components/icon/assets/temperature.js index 6e97bdceb5..8fe575737d 100644 --- a/src/components/icon/assets/temperature.js +++ b/src/components/icon/assets/temperature.js @@ -10,19 +10,17 @@ */ import * as React from 'react'; - const OuiIconTemperature = ({ title, titleId, ...props }) => ( {title ? {title} : null} - - + + ); - export const icon = OuiIconTemperature; diff --git a/src/components/icon/assets/timeline.js b/src/components/icon/assets/timeline.js index a6fdacdd43..bfafd7c4c9 100644 --- a/src/components/icon/assets/timeline.js +++ b/src/components/icon/assets/timeline.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconTimeline = ({ title, titleId, ...props }) => ( ( {title ? {title} : null} ); - export const icon = OuiIconTimeline; diff --git a/src/components/icon/assets/timeslider.js b/src/components/icon/assets/timeslider.js index 0b0afe59ed..4be7a59eb7 100644 --- a/src/components/icon/assets/timeslider.js +++ b/src/components/icon/assets/timeslider.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconTimeslider = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTimeslider; diff --git a/src/components/icon/assets/tokens/tokenAlias.js b/src/components/icon/assets/tokens/tokenAlias.js index 5b82fb888f..071f7d1390 100644 --- a/src/components/icon/assets/tokens/tokenAlias.js +++ b/src/components/icon/assets/tokens/tokenAlias.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenAlias = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenAlias; diff --git a/src/components/icon/assets/tokens/tokenAnnotation.js b/src/components/icon/assets/tokens/tokenAnnotation.js index 5f653c0f54..e313884c34 100644 --- a/src/components/icon/assets/tokens/tokenAnnotation.js +++ b/src/components/icon/assets/tokens/tokenAnnotation.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenAnnotation = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenAnnotation; diff --git a/src/components/icon/assets/tokens/tokenArray.js b/src/components/icon/assets/tokens/tokenArray.js index cbfb5e9d39..a0e98a6a6f 100644 --- a/src/components/icon/assets/tokens/tokenArray.js +++ b/src/components/icon/assets/tokens/tokenArray.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenArray = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenArray; diff --git a/src/components/icon/assets/tokens/tokenBinary.js b/src/components/icon/assets/tokens/tokenBinary.js index d3e19c8bad..0dc4e532fe 100644 --- a/src/components/icon/assets/tokens/tokenBinary.js +++ b/src/components/icon/assets/tokens/tokenBinary.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconTokenBinary = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconTokenBinary; diff --git a/src/components/icon/assets/tokens/tokenBoolean.js b/src/components/icon/assets/tokens/tokenBoolean.js index fe65549e04..1b61dab42b 100644 --- a/src/components/icon/assets/tokens/tokenBoolean.js +++ b/src/components/icon/assets/tokens/tokenBoolean.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenBoolean = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenBoolean; diff --git a/src/components/icon/assets/tokens/tokenClass.js b/src/components/icon/assets/tokens/tokenClass.js index 780cdd8d38..efc2bb3985 100644 --- a/src/components/icon/assets/tokens/tokenClass.js +++ b/src/components/icon/assets/tokens/tokenClass.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenClass = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenClass; diff --git a/src/components/icon/assets/tokens/tokenCompletionSuggester.js b/src/components/icon/assets/tokens/tokenCompletionSuggester.js index 6dd0fe6243..44a1c9dd4c 100644 --- a/src/components/icon/assets/tokens/tokenCompletionSuggester.js +++ b/src/components/icon/assets/tokens/tokenCompletionSuggester.js @@ -10,23 +10,21 @@ */ import * as React from 'react'; - const OuiIconTokenCompletionSuggester = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconTokenCompletionSuggester; diff --git a/src/components/icon/assets/tokens/tokenConstant.js b/src/components/icon/assets/tokens/tokenConstant.js index 24320c83a5..a6c93e4873 100644 --- a/src/components/icon/assets/tokens/tokenConstant.js +++ b/src/components/icon/assets/tokens/tokenConstant.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenConstant = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenConstant; diff --git a/src/components/icon/assets/tokens/tokenDate.js b/src/components/icon/assets/tokens/tokenDate.js index a5cae19e8f..a425ceb715 100644 --- a/src/components/icon/assets/tokens/tokenDate.js +++ b/src/components/icon/assets/tokens/tokenDate.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenDate = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenDate; diff --git a/src/components/icon/assets/tokens/tokenDenseVector.js b/src/components/icon/assets/tokens/tokenDenseVector.js index 6fc5419379..9a6538b9aa 100644 --- a/src/components/icon/assets/tokens/tokenDenseVector.js +++ b/src/components/icon/assets/tokens/tokenDenseVector.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconTokenDenseVector = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconTokenDenseVector; diff --git a/src/components/icon/assets/tokens/tokenElement.js b/src/components/icon/assets/tokens/tokenElement.js index ade575f73e..8a497b6762 100644 --- a/src/components/icon/assets/tokens/tokenElement.js +++ b/src/components/icon/assets/tokens/tokenElement.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenElement = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenElement; diff --git a/src/components/icon/assets/tokens/tokenEnum.js b/src/components/icon/assets/tokens/tokenEnum.js index a70f192f5f..03c613ab5e 100644 --- a/src/components/icon/assets/tokens/tokenEnum.js +++ b/src/components/icon/assets/tokens/tokenEnum.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconTokenEnum = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -26,5 +25,4 @@ const OuiIconTokenEnum = ({ title, titleId, ...props }) => ( /> ); - export const icon = OuiIconTokenEnum; diff --git a/src/components/icon/assets/tokens/tokenEnumMember.js b/src/components/icon/assets/tokens/tokenEnumMember.js index 15b1eeed19..5affb16fe8 100644 --- a/src/components/icon/assets/tokens/tokenEnumMember.js +++ b/src/components/icon/assets/tokens/tokenEnumMember.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenEnumMember = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenEnumMember; diff --git a/src/components/icon/assets/tokens/tokenEvent.js b/src/components/icon/assets/tokens/tokenEvent.js index 9c9e587ee1..a911f00a39 100644 --- a/src/components/icon/assets/tokens/tokenEvent.js +++ b/src/components/icon/assets/tokens/tokenEvent.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenEvent = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenEvent; diff --git a/src/components/icon/assets/tokens/tokenException.js b/src/components/icon/assets/tokens/tokenException.js index c3b79bac4a..980de3f8ed 100644 --- a/src/components/icon/assets/tokens/tokenException.js +++ b/src/components/icon/assets/tokens/tokenException.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconTokenException = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconTokenException; diff --git a/src/components/icon/assets/tokens/tokenField.js b/src/components/icon/assets/tokens/tokenField.js index 3a38eb878c..8347f526c0 100644 --- a/src/components/icon/assets/tokens/tokenField.js +++ b/src/components/icon/assets/tokens/tokenField.js @@ -10,13 +10,12 @@ */ import * as React from 'react'; - const OuiIconTokenField = ({ title, titleId, ...props }) => ( {title ? {title} : null} @@ -26,5 +25,4 @@ const OuiIconTokenField = ({ title, titleId, ...props }) => ( /> ); - export const icon = OuiIconTokenField; diff --git a/src/components/icon/assets/tokens/tokenFile.js b/src/components/icon/assets/tokens/tokenFile.js index 9f9ef321c7..7a5c293915 100644 --- a/src/components/icon/assets/tokens/tokenFile.js +++ b/src/components/icon/assets/tokens/tokenFile.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconTokenFile = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconTokenFile; diff --git a/src/components/icon/assets/tokens/tokenFlattened.js b/src/components/icon/assets/tokens/tokenFlattened.js index 7bffd84e49..eb0647c223 100644 --- a/src/components/icon/assets/tokens/tokenFlattened.js +++ b/src/components/icon/assets/tokens/tokenFlattened.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconTokenFlattened = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconTokenFlattened; diff --git a/src/components/icon/assets/tokens/tokenFunction.js b/src/components/icon/assets/tokens/tokenFunction.js index 9cf8d32ae6..0a7139daa8 100644 --- a/src/components/icon/assets/tokens/tokenFunction.js +++ b/src/components/icon/assets/tokens/tokenFunction.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenFunction = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenFunction; diff --git a/src/components/icon/assets/tokens/tokenGeo.js b/src/components/icon/assets/tokens/tokenGeo.js index 6b730b0700..6fdd8d2a43 100644 --- a/src/components/icon/assets/tokens/tokenGeo.js +++ b/src/components/icon/assets/tokens/tokenGeo.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenGeo = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenGeo; diff --git a/src/components/icon/assets/tokens/tokenHistogram.js b/src/components/icon/assets/tokens/tokenHistogram.js index c36c6b06e9..037b60c2ef 100644 --- a/src/components/icon/assets/tokens/tokenHistogram.js +++ b/src/components/icon/assets/tokens/tokenHistogram.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconTokenHistogram = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenHistogram; diff --git a/src/components/icon/assets/tokens/tokenIP.js b/src/components/icon/assets/tokens/tokenIP.js index 9669aaecf7..b46c86d1e5 100644 --- a/src/components/icon/assets/tokens/tokenIP.js +++ b/src/components/icon/assets/tokens/tokenIP.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenIP = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenIP; diff --git a/src/components/icon/assets/tokens/tokenInterface.js b/src/components/icon/assets/tokens/tokenInterface.js index eb485e4a64..7e00c7cafb 100644 --- a/src/components/icon/assets/tokens/tokenInterface.js +++ b/src/components/icon/assets/tokens/tokenInterface.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenInterface = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenInterface; diff --git a/src/components/icon/assets/tokens/tokenJoin.js b/src/components/icon/assets/tokens/tokenJoin.js index e19befd1f2..897fb50d30 100644 --- a/src/components/icon/assets/tokens/tokenJoin.js +++ b/src/components/icon/assets/tokens/tokenJoin.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconTokenJoin = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenJoin; diff --git a/src/components/icon/assets/tokens/tokenKey.js b/src/components/icon/assets/tokens/tokenKey.js index ad70e0ff60..dfaeef004e 100644 --- a/src/components/icon/assets/tokens/tokenKey.js +++ b/src/components/icon/assets/tokens/tokenKey.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenKey = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenKey; diff --git a/src/components/icon/assets/tokens/tokenKeyword.js b/src/components/icon/assets/tokens/tokenKeyword.js index f119a97622..83d13bfea4 100644 --- a/src/components/icon/assets/tokens/tokenKeyword.js +++ b/src/components/icon/assets/tokens/tokenKeyword.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconTokenKeyword = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - + ); - export const icon = OuiIconTokenKeyword; diff --git a/src/components/icon/assets/tokens/tokenMethod.js b/src/components/icon/assets/tokens/tokenMethod.js index 9e6fcc2d54..fe5022d602 100644 --- a/src/components/icon/assets/tokens/tokenMethod.js +++ b/src/components/icon/assets/tokens/tokenMethod.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenMethod = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenMethod; diff --git a/src/components/icon/assets/tokens/tokenModule.js b/src/components/icon/assets/tokens/tokenModule.js index 6842af6752..5fd83713dc 100644 --- a/src/components/icon/assets/tokens/tokenModule.js +++ b/src/components/icon/assets/tokens/tokenModule.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconTokenModule = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - - + + ); - export const icon = OuiIconTokenModule; diff --git a/src/components/icon/assets/tokens/tokenNamespace.js b/src/components/icon/assets/tokens/tokenNamespace.js index 5557456ae8..ae294355f9 100644 --- a/src/components/icon/assets/tokens/tokenNamespace.js +++ b/src/components/icon/assets/tokens/tokenNamespace.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconTokenNamespace = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - + ); - export const icon = OuiIconTokenNamespace; diff --git a/src/components/icon/assets/tokens/tokenNested.js b/src/components/icon/assets/tokens/tokenNested.js index bdd7f2de15..2dda5c18b8 100644 --- a/src/components/icon/assets/tokens/tokenNested.js +++ b/src/components/icon/assets/tokens/tokenNested.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenNested = ({ title, titleId, ...props }) => ( {title ? {title} : null} - - + + ); - export const icon = OuiIconTokenNested; diff --git a/src/components/icon/assets/tokens/tokenNull.js b/src/components/icon/assets/tokens/tokenNull.js index befae1c84a..d0440b212f 100644 --- a/src/components/icon/assets/tokens/tokenNull.js +++ b/src/components/icon/assets/tokens/tokenNull.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconTokenNull = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconTokenNull; diff --git a/src/components/icon/assets/tokens/tokenNumber.js b/src/components/icon/assets/tokens/tokenNumber.js index d719126a74..313196fa3a 100644 --- a/src/components/icon/assets/tokens/tokenNumber.js +++ b/src/components/icon/assets/tokens/tokenNumber.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconTokenNumber = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconTokenNumber; diff --git a/src/components/icon/assets/tokens/tokenObject.js b/src/components/icon/assets/tokens/tokenObject.js index 6be70098b0..e2bf96e7d4 100644 --- a/src/components/icon/assets/tokens/tokenObject.js +++ b/src/components/icon/assets/tokens/tokenObject.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenObject = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenObject; diff --git a/src/components/icon/assets/tokens/tokenOperator.js b/src/components/icon/assets/tokens/tokenOperator.js index 5cd0e14c77..be5eb8bedb 100644 --- a/src/components/icon/assets/tokens/tokenOperator.js +++ b/src/components/icon/assets/tokens/tokenOperator.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenOperator = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenOperator; diff --git a/src/components/icon/assets/tokens/tokenPackage.js b/src/components/icon/assets/tokens/tokenPackage.js index ebb8300758..15147a49b1 100644 --- a/src/components/icon/assets/tokens/tokenPackage.js +++ b/src/components/icon/assets/tokens/tokenPackage.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenPackage = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenPackage; diff --git a/src/components/icon/assets/tokens/tokenParameter.js b/src/components/icon/assets/tokens/tokenParameter.js index 8e65321a66..77c0d4affb 100644 --- a/src/components/icon/assets/tokens/tokenParameter.js +++ b/src/components/icon/assets/tokens/tokenParameter.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenParameter = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenParameter; diff --git a/src/components/icon/assets/tokens/tokenPercolator.js b/src/components/icon/assets/tokens/tokenPercolator.js index 20f8637476..b6760571d3 100644 --- a/src/components/icon/assets/tokens/tokenPercolator.js +++ b/src/components/icon/assets/tokens/tokenPercolator.js @@ -10,22 +10,20 @@ */ import * as React from 'react'; - const OuiIconTokenPercolator = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenPercolator; diff --git a/src/components/icon/assets/tokens/tokenProperty.js b/src/components/icon/assets/tokens/tokenProperty.js index 9e81a02e16..6c00d1befc 100644 --- a/src/components/icon/assets/tokens/tokenProperty.js +++ b/src/components/icon/assets/tokens/tokenProperty.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenProperty = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenProperty; diff --git a/src/components/icon/assets/tokens/tokenRange.js b/src/components/icon/assets/tokens/tokenRange.js index a8dad93d71..7ae0583a3c 100644 --- a/src/components/icon/assets/tokens/tokenRange.js +++ b/src/components/icon/assets/tokens/tokenRange.js @@ -10,20 +10,18 @@ */ import * as React from 'react'; - const OuiIconTokenRange = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconTokenRange; diff --git a/src/components/icon/assets/tokens/tokenRankFeature.js b/src/components/icon/assets/tokens/tokenRankFeature.js index 9f311a3ebe..deb7835d15 100644 --- a/src/components/icon/assets/tokens/tokenRankFeature.js +++ b/src/components/icon/assets/tokens/tokenRankFeature.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconTokenRankFeature = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconTokenRankFeature; diff --git a/src/components/icon/assets/tokens/tokenRankFeatures.js b/src/components/icon/assets/tokens/tokenRankFeatures.js index 6bb299fbc4..a9e07fa4c9 100644 --- a/src/components/icon/assets/tokens/tokenRankFeatures.js +++ b/src/components/icon/assets/tokens/tokenRankFeatures.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconTokenRankFeatures = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconTokenRankFeatures; diff --git a/src/components/icon/assets/tokens/tokenRepo.js b/src/components/icon/assets/tokens/tokenRepo.js index be1dddeadb..95ef244ed7 100644 --- a/src/components/icon/assets/tokens/tokenRepo.js +++ b/src/components/icon/assets/tokens/tokenRepo.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenRepo = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenRepo; diff --git a/src/components/icon/assets/tokens/tokenSearchType.js b/src/components/icon/assets/tokens/tokenSearchType.js index b8af942efe..ae6448c5f1 100644 --- a/src/components/icon/assets/tokens/tokenSearchType.js +++ b/src/components/icon/assets/tokens/tokenSearchType.js @@ -10,23 +10,21 @@ */ import * as React from 'react'; - const OuiIconTokenSearchType = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconTokenSearchType; diff --git a/src/components/icon/assets/tokens/tokenShape.js b/src/components/icon/assets/tokens/tokenShape.js index efd8fb5854..45db5c14a3 100644 --- a/src/components/icon/assets/tokens/tokenShape.js +++ b/src/components/icon/assets/tokens/tokenShape.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenShape = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenShape; diff --git a/src/components/icon/assets/tokens/tokenString.js b/src/components/icon/assets/tokens/tokenString.js index 69fcc42ac7..5e279b907f 100644 --- a/src/components/icon/assets/tokens/tokenString.js +++ b/src/components/icon/assets/tokens/tokenString.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconTokenString = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconTokenString; diff --git a/src/components/icon/assets/tokens/tokenStruct.js b/src/components/icon/assets/tokens/tokenStruct.js index 3aa1f253eb..2824e35bc2 100644 --- a/src/components/icon/assets/tokens/tokenStruct.js +++ b/src/components/icon/assets/tokens/tokenStruct.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenStruct = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenStruct; diff --git a/src/components/icon/assets/tokens/tokenSymbol.js b/src/components/icon/assets/tokens/tokenSymbol.js index be0f689dd9..e652ede86e 100644 --- a/src/components/icon/assets/tokens/tokenSymbol.js +++ b/src/components/icon/assets/tokens/tokenSymbol.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconTokenSymbol = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconTokenSymbol; diff --git a/src/components/icon/assets/tokens/tokenText.js b/src/components/icon/assets/tokens/tokenText.js index efec7aded5..a1cef37cfa 100644 --- a/src/components/icon/assets/tokens/tokenText.js +++ b/src/components/icon/assets/tokens/tokenText.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconTokenText = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - + ); - export const icon = OuiIconTokenText; diff --git a/src/components/icon/assets/tokens/tokenTokenCount.js b/src/components/icon/assets/tokens/tokenTokenCount.js index 516f48bd84..c8389b5372 100644 --- a/src/components/icon/assets/tokens/tokenTokenCount.js +++ b/src/components/icon/assets/tokens/tokenTokenCount.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconTokenTokenCount = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconTokenTokenCount; diff --git a/src/components/icon/assets/tokens/tokenVariable.js b/src/components/icon/assets/tokens/tokenVariable.js index a933668bcc..0cddbde225 100644 --- a/src/components/icon/assets/tokens/tokenVariable.js +++ b/src/components/icon/assets/tokens/tokenVariable.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconTokenVariable = ({ title, titleId, ...props }) => ( {title ? {title} : null} ); - export const icon = OuiIconTokenVariable; diff --git a/src/components/icon/assets/training.js b/src/components/icon/assets/training.js index 206d618473..4a71d28994 100644 --- a/src/components/icon/assets/training.js +++ b/src/components/icon/assets/training.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconTraining = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconTraining; diff --git a/src/components/icon/assets/trash.js b/src/components/icon/assets/trash.js index 8d7475011e..3482b5deea 100644 --- a/src/components/icon/assets/trash.js +++ b/src/components/icon/assets/trash.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconTrash = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconTrash; diff --git a/src/components/icon/assets/unfold.js b/src/components/icon/assets/unfold.js index a6518b796f..1d59bbb6aa 100644 --- a/src/components/icon/assets/unfold.js +++ b/src/components/icon/assets/unfold.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconUnfold = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - + ); - export const icon = OuiIconUnfold; diff --git a/src/components/icon/assets/unlink.js b/src/components/icon/assets/unlink.js index 249d6a82d0..2d010dfcc2 100644 --- a/src/components/icon/assets/unlink.js +++ b/src/components/icon/assets/unlink.js @@ -10,20 +10,18 @@ */ import * as React from 'react'; - const OuiIconUnlink = ({ title, titleId, ...props }) => ( {title ? {title} : null} - - + + ); - export const icon = OuiIconUnlink; diff --git a/src/components/icon/assets/user.js b/src/components/icon/assets/user.js index 228d26987f..901c4def39 100644 --- a/src/components/icon/assets/user.js +++ b/src/components/icon/assets/user.js @@ -10,21 +10,19 @@ */ import * as React from 'react'; - const OuiIconUser = ({ title, titleId, ...props }) => ( {title ? {title} : null} - - + + ); - export const icon = OuiIconUser; diff --git a/src/components/icon/assets/users.js b/src/components/icon/assets/users.js index de0fd180fd..56845fa7ee 100644 --- a/src/components/icon/assets/users.js +++ b/src/components/icon/assets/users.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconUsers = ({ title, titleId, ...props }) => ( ( {title ? {title} : null} ); - export const icon = OuiIconUsers; diff --git a/src/components/icon/assets/vector.js b/src/components/icon/assets/vector.js index 353db0c313..e2847ea06e 100644 --- a/src/components/icon/assets/vector.js +++ b/src/components/icon/assets/vector.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconVector = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconVector; diff --git a/src/components/icon/assets/videoPlayer.js b/src/components/icon/assets/videoPlayer.js index 8d802e70ef..ededf30815 100644 --- a/src/components/icon/assets/videoPlayer.js +++ b/src/components/icon/assets/videoPlayer.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconVideoPlayer = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconVideoPlayer; diff --git a/src/components/icon/assets/vis_area.js b/src/components/icon/assets/vis_area.js index d1c56629ca..f5298dd1da 100644 --- a/src/components/icon/assets/vis_area.js +++ b/src/components/icon/assets/vis_area.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconVisArea = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconVisArea; diff --git a/src/components/icon/assets/vis_area_stacked.js b/src/components/icon/assets/vis_area_stacked.js index fcc8a67045..5d200e45e5 100644 --- a/src/components/icon/assets/vis_area_stacked.js +++ b/src/components/icon/assets/vis_area_stacked.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconVisAreaStacked = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconVisAreaStacked; diff --git a/src/components/icon/assets/vis_bar_horizontal.js b/src/components/icon/assets/vis_bar_horizontal.js index 555d5c2059..a765d69bcc 100644 --- a/src/components/icon/assets/vis_bar_horizontal.js +++ b/src/components/icon/assets/vis_bar_horizontal.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconVisBarHorizontal = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconVisBarHorizontal; diff --git a/src/components/icon/assets/vis_bar_horizontal_stacked.js b/src/components/icon/assets/vis_bar_horizontal_stacked.js index 44cac19fe0..590d4dbbe7 100644 --- a/src/components/icon/assets/vis_bar_horizontal_stacked.js +++ b/src/components/icon/assets/vis_bar_horizontal_stacked.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconVisBarHorizontalStacked = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconVisBarHorizontalStacked; diff --git a/src/components/icon/assets/vis_bar_vertical.js b/src/components/icon/assets/vis_bar_vertical.js index f85bf00d8d..addd36ce85 100644 --- a/src/components/icon/assets/vis_bar_vertical.js +++ b/src/components/icon/assets/vis_bar_vertical.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconVisBarVertical = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconVisBarVertical; diff --git a/src/components/icon/assets/vis_bar_vertical_stacked.js b/src/components/icon/assets/vis_bar_vertical_stacked.js index 4acf4eb019..8b9d613cfb 100644 --- a/src/components/icon/assets/vis_bar_vertical_stacked.js +++ b/src/components/icon/assets/vis_bar_vertical_stacked.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconVisBarVerticalStacked = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconVisBarVerticalStacked; diff --git a/src/components/icon/assets/vis_gauge.js b/src/components/icon/assets/vis_gauge.js index aeabfdf6ce..d6b995259b 100644 --- a/src/components/icon/assets/vis_gauge.js +++ b/src/components/icon/assets/vis_gauge.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconVisGauge = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconVisGauge; diff --git a/src/components/icon/assets/vis_goal.js b/src/components/icon/assets/vis_goal.js index b7d738c5c0..74f2348a10 100644 --- a/src/components/icon/assets/vis_goal.js +++ b/src/components/icon/assets/vis_goal.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconVisGoal = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconVisGoal; diff --git a/src/components/icon/assets/vis_line.js b/src/components/icon/assets/vis_line.js index ee86b7a4ea..67dd106c8d 100644 --- a/src/components/icon/assets/vis_line.js +++ b/src/components/icon/assets/vis_line.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconVisLine = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconVisLine; diff --git a/src/components/icon/assets/vis_map_coordinate.js b/src/components/icon/assets/vis_map_coordinate.js index 48f60a9357..9f12545ce4 100644 --- a/src/components/icon/assets/vis_map_coordinate.js +++ b/src/components/icon/assets/vis_map_coordinate.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconVisMapCoordinate = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconVisMapCoordinate; diff --git a/src/components/icon/assets/vis_map_region.js b/src/components/icon/assets/vis_map_region.js index 7f29feed17..d930a092a8 100644 --- a/src/components/icon/assets/vis_map_region.js +++ b/src/components/icon/assets/vis_map_region.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconVisMapRegion = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconVisMapRegion; diff --git a/src/components/icon/assets/vis_metric.js b/src/components/icon/assets/vis_metric.js index 073d8f4a6b..336abf5021 100644 --- a/src/components/icon/assets/vis_metric.js +++ b/src/components/icon/assets/vis_metric.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconVisMetric = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconVisMetric; diff --git a/src/components/icon/assets/vis_pie.js b/src/components/icon/assets/vis_pie.js index a9f5a0f72d..b60d7c3e47 100644 --- a/src/components/icon/assets/vis_pie.js +++ b/src/components/icon/assets/vis_pie.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconVisPie = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconVisPie; diff --git a/src/components/icon/assets/vis_table.js b/src/components/icon/assets/vis_table.js index 9f1e75212d..4f2820f6a9 100644 --- a/src/components/icon/assets/vis_table.js +++ b/src/components/icon/assets/vis_table.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconVisTable = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconVisTable; diff --git a/src/components/icon/assets/vis_tag_cloud.js b/src/components/icon/assets/vis_tag_cloud.js index 68dd73c95e..adb933444e 100644 --- a/src/components/icon/assets/vis_tag_cloud.js +++ b/src/components/icon/assets/vis_tag_cloud.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconVisTagCloud = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconVisTagCloud; diff --git a/src/components/icon/assets/vis_text.js b/src/components/icon/assets/vis_text.js index df9eeb9e8d..b6ab48e808 100644 --- a/src/components/icon/assets/vis_text.js +++ b/src/components/icon/assets/vis_text.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconVisText = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconVisText; diff --git a/src/components/icon/assets/vis_timelion.js b/src/components/icon/assets/vis_timelion.js index 17ccaa5a8c..79b90028aa 100644 --- a/src/components/icon/assets/vis_timelion.js +++ b/src/components/icon/assets/vis_timelion.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconVisTimelion = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconVisTimelion; diff --git a/src/components/icon/assets/vis_vega.js b/src/components/icon/assets/vis_vega.js index 0941d406a8..e68b28c163 100644 --- a/src/components/icon/assets/vis_vega.js +++ b/src/components/icon/assets/vis_vega.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconVisVega = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconVisVega; diff --git a/src/components/icon/assets/vis_visual_builder.js b/src/components/icon/assets/vis_visual_builder.js index 94943badc5..abcbd283b1 100644 --- a/src/components/icon/assets/vis_visual_builder.js +++ b/src/components/icon/assets/vis_visual_builder.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconVisVisualBuilder = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconVisVisualBuilder; diff --git a/src/components/icon/assets/wordWrap.js b/src/components/icon/assets/wordWrap.js index 4722baaf5e..94ef9c4aa1 100644 --- a/src/components/icon/assets/wordWrap.js +++ b/src/components/icon/assets/wordWrap.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconWordWrap = ({ title, titleId, ...props }) => ( ( {...props}> {title ? {title} : null} - + ); - export const icon = OuiIconWordWrap; diff --git a/src/components/icon/assets/wordWrapDisabled.js b/src/components/icon/assets/wordWrapDisabled.js index 75b693d1e1..23cb5cd7e7 100644 --- a/src/components/icon/assets/wordWrapDisabled.js +++ b/src/components/icon/assets/wordWrapDisabled.js @@ -10,7 +10,6 @@ */ import * as React from 'react'; - const OuiIconWordWrapDisabled = ({ title, titleId, ...props }) => ( ( aria-labelledby={titleId} {...props}> {title ? {title} : null} - + ); - export const icon = OuiIconWordWrapDisabled; diff --git a/src/components/icon/assets/wrench.js b/src/components/icon/assets/wrench.js index 5470956775..df9366cd54 100644 --- a/src/components/icon/assets/wrench.js +++ b/src/components/icon/assets/wrench.js @@ -10,18 +10,16 @@ */ import * as React from 'react'; - const OuiIconWrench = ({ title, titleId, ...props }) => ( {title ? {title} : null} - + ); - export const icon = OuiIconWrench; diff --git a/yarn.lock b/yarn.lock index 02f9315583..59b235c4cd 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,6 +2,14 @@ # yarn lockfile v1 +"@ampproject/remapping@^2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" + integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== + dependencies: + "@jridgewell/gen-mapping" "^0.1.0" + "@jridgewell/trace-mapping" "^0.3.9" + "@axe-core/puppeteer@^4.1.1": version "4.1.1" resolved "https://registry.yarnpkg.com/@axe-core/puppeteer/-/puppeteer-4.1.1.tgz#e9dd2f2f13b717c057ff68c5943dec8d4ddd8acf" @@ -46,6 +54,13 @@ dependencies: "@babel/highlight" "^7.18.6" +"@babel/code-frame@^7.21.4": + version "7.21.4" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.21.4.tgz#d0fa9e4413aca81f2b23b9442797bda1826edb39" + integrity sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g== + dependencies: + "@babel/highlight" "^7.18.6" + "@babel/compat-data@^7.10.4", "@babel/compat-data@^7.11.0": version "7.11.0" resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.11.0.tgz#e9f73efe09af1355b723a7f39b11bad637d7c99c" @@ -55,7 +70,12 @@ invariant "^2.2.4" semver "^5.5.0" -"@babel/core@^7.1.0", "@babel/core@^7.11.4", "@babel/core@^7.7.0", "@babel/core@^7.7.5": +"@babel/compat-data@^7.21.4": + version "7.21.4" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.21.4.tgz#457ffe647c480dff59c2be092fc3acf71195c87f" + integrity sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g== + +"@babel/core@^7.1.0", "@babel/core@^7.11.4", "@babel/core@^7.7.0": version "7.11.4" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.4.tgz#4301dfdfafa01eeb97f1896c5501a3f0655d4229" integrity sha512-5deljj5HlqRXN+5oJTY7Zs37iH3z3b++KjiKtIsJy1NrjOOVSEaJHEetLBhyu0aQOSNNZ/0IuEAan9GzRuDXHg== @@ -77,6 +97,27 @@ semver "^5.4.1" source-map "^0.5.0" +"@babel/core@^7.19.6": + version "7.21.4" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.21.4.tgz#c6dc73242507b8e2a27fd13a9c1814f9fa34a659" + integrity sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.21.4" + "@babel/generator" "^7.21.4" + "@babel/helper-compilation-targets" "^7.21.4" + "@babel/helper-module-transforms" "^7.21.2" + "@babel/helpers" "^7.21.0" + "@babel/parser" "^7.21.4" + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.21.4" + "@babel/types" "^7.21.4" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.2" + semver "^6.3.0" + "@babel/generator@^7.11.4", "@babel/generator@^7.12.10", "@babel/generator@^7.4.0", "@babel/generator@^7.7.0": version "7.12.10" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.10.tgz#2b188fc329fb8e4f762181703beffc0fe6df3460" @@ -95,6 +136,16 @@ "@jridgewell/gen-mapping" "^0.3.2" jsesc "^2.5.1" +"@babel/generator@^7.21.4": + version "7.21.4" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.4.tgz#64a94b7448989f421f919d5239ef553b37bb26bc" + integrity sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA== + dependencies: + "@babel/types" "^7.21.4" + "@jridgewell/gen-mapping" "^0.3.2" + "@jridgewell/trace-mapping" "^0.3.17" + jsesc "^2.5.1" + "@babel/helper-annotate-as-pure@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz#5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3" @@ -138,6 +189,17 @@ levenary "^1.1.1" semver "^5.5.0" +"@babel/helper-compilation-targets@^7.21.4": + version "7.21.4" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.4.tgz#770cd1ce0889097ceacb99418ee6934ef0572656" + integrity sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg== + dependencies: + "@babel/compat-data" "^7.21.4" + "@babel/helper-validator-option" "^7.21.0" + browserslist "^4.21.3" + lru-cache "^5.1.1" + semver "^6.3.0" + "@babel/helper-create-class-features-plugin@^7.10.4", "@babel/helper-create-class-features-plugin@^7.12.1": version "7.12.1" resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz#3c45998f431edd4a9214c5f1d3ad1448a6137f6e" @@ -196,6 +258,14 @@ "@babel/template" "^7.18.6" "@babel/types" "^7.18.9" +"@babel/helper-function-name@^7.21.0": + version "7.21.0" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz#d552829b10ea9f120969304023cd0645fa00b1b4" + integrity sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg== + dependencies: + "@babel/template" "^7.20.7" + "@babel/types" "^7.21.0" + "@babel/helper-get-function-arity@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2" @@ -231,6 +301,13 @@ dependencies: "@babel/types" "^7.10.4" +"@babel/helper-module-imports@^7.18.6": + version "7.21.4" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz#ac88b2f76093637489e718a90cec6cf8a9b029af" + integrity sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg== + dependencies: + "@babel/types" "^7.21.4" + "@babel/helper-module-transforms@^7.10.4", "@babel/helper-module-transforms@^7.10.5", "@babel/helper-module-transforms@^7.11.0": version "7.11.0" resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz#b16f250229e47211abdd84b34b64737c2ab2d359" @@ -244,6 +321,20 @@ "@babel/types" "^7.11.0" lodash "^4.17.19" +"@babel/helper-module-transforms@^7.21.2": + version "7.21.2" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz#160caafa4978ac8c00ac66636cb0fa37b024e2d2" + integrity sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ== + dependencies: + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-module-imports" "^7.18.6" + "@babel/helper-simple-access" "^7.20.2" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/helper-validator-identifier" "^7.19.1" + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.21.2" + "@babel/types" "^7.21.2" + "@babel/helper-optimise-call-expression@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673" @@ -291,6 +382,13 @@ "@babel/template" "^7.10.4" "@babel/types" "^7.10.4" +"@babel/helper-simple-access@^7.20.2": + version "7.20.2" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9" + integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA== + dependencies: + "@babel/types" "^7.20.2" + "@babel/helper-skip-transparent-expression-wrappers@^7.11.0": version "7.11.0" resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.11.0.tgz#eec162f112c2f58d3af0af125e3bb57665146729" @@ -317,6 +415,11 @@ resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz#181f22d28ebe1b3857fa575f5c290b1aaf659b56" integrity sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw== +"@babel/helper-string-parser@^7.19.4": + version "7.19.4" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63" + integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw== + "@babel/helper-validator-identifier@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" @@ -327,6 +430,16 @@ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz#9c97e30d31b2b8c72a1d08984f2ca9b574d7a076" integrity sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g== +"@babel/helper-validator-identifier@^7.19.1": + version "7.19.1" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" + integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== + +"@babel/helper-validator-option@^7.21.0": + version "7.21.0" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz#8224c7e13ace4bafdc4004da2cf064ef42673180" + integrity sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ== + "@babel/helper-wrap-function@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.10.4.tgz#8a6f701eab0ff39f765b5a1cfef409990e624b87" @@ -346,6 +459,15 @@ "@babel/traverse" "^7.10.4" "@babel/types" "^7.10.4" +"@babel/helpers@^7.21.0": + version "7.21.0" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.21.0.tgz#9dd184fb5599862037917cdc9eecb84577dc4e7e" + integrity sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA== + dependencies: + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.21.0" + "@babel/types" "^7.21.0" + "@babel/highlight@^7.0.0", "@babel/highlight@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" @@ -374,6 +496,11 @@ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.11.tgz#68bb07ab3d380affa9a3f96728df07969645d2d9" integrity sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ== +"@babel/parser@^7.20.7", "@babel/parser@^7.21.4": + version "7.21.4" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.4.tgz#94003fdfc520bbe2875d4ae557b43ddb6d880f17" + integrity sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw== + "@babel/plugin-proposal-async-generator-functions@^7.10.4": version "7.10.5" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.5.tgz#3491cabf2f7c179ab820606cec27fed15e0e8558" @@ -1053,6 +1180,15 @@ "@babel/parser" "^7.18.10" "@babel/types" "^7.18.10" +"@babel/template@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8" + integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw== + dependencies: + "@babel/code-frame" "^7.18.6" + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" + "@babel/traverse@^7.1.0", "@babel/traverse@^7.4.3": version "7.18.11" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.11.tgz#3d51f2afbd83ecf9912bcbb5c4d94e3d2ddaa16f" @@ -1084,7 +1220,23 @@ globals "^11.1.0" lodash "^4.17.19" -"@babel/types@^7.0.0", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.12.10", "@babel/types@^7.12.5", "@babel/types@^7.12.7", "@babel/types@^7.3.0", "@babel/types@^7.4.4", "@babel/types@^7.7.0", "@babel/types@^7.7.1", "@babel/types@^7.9.5": +"@babel/traverse@^7.21.0", "@babel/traverse@^7.21.2", "@babel/traverse@^7.21.4": + version "7.21.4" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.4.tgz#a836aca7b116634e97a6ed99976236b3282c9d36" + integrity sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q== + dependencies: + "@babel/code-frame" "^7.21.4" + "@babel/generator" "^7.21.4" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-function-name" "^7.21.0" + "@babel/helper-hoist-variables" "^7.18.6" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/parser" "^7.21.4" + "@babel/types" "^7.21.4" + debug "^4.1.0" + globals "^11.1.0" + +"@babel/types@^7.0.0", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.12.10", "@babel/types@^7.12.5", "@babel/types@^7.12.7", "@babel/types@^7.3.0", "@babel/types@^7.4.4", "@babel/types@^7.7.0", "@babel/types@^7.7.1": version "7.12.10" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.10.tgz#7965e4a7260b26f09c56bcfcb0498af1f6d9b260" integrity sha512-sf6wboJV5mGyip2hIpDSKsr80RszPinEFjsHTalMxZAZkoQ2/2yQzxlcFN52SJqsyPfLtPmenL4g2KB3KJXPDw== @@ -1102,6 +1254,15 @@ "@babel/helper-validator-identifier" "^7.18.6" to-fast-properties "^2.0.0" +"@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.2", "@babel/types@^7.21.4": + version "7.21.4" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.4.tgz#2d5d6bb7908699b3b416409ffd3b5daa25b030d4" + integrity sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA== + dependencies: + "@babel/helper-string-parser" "^7.19.4" + "@babel/helper-validator-identifier" "^7.19.1" + to-fast-properties "^2.0.0" + "@cnakazawa/watch@^1.0.3": version "1.0.4" resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a" @@ -1361,6 +1522,14 @@ "@types/istanbul-reports" "^1.1.1" "@types/yargs" "^13.0.0" +"@jridgewell/gen-mapping@^0.1.0": + version "0.1.1" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996" + integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== + dependencies: + "@jridgewell/set-array" "^1.0.0" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": version "0.3.2" resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9" @@ -1370,12 +1539,12 @@ "@jridgewell/sourcemap-codec" "^1.4.10" "@jridgewell/trace-mapping" "^0.3.9" -"@jridgewell/resolve-uri@^3.0.3": +"@jridgewell/resolve-uri@3.1.0", "@jridgewell/resolve-uri@^3.0.3": version "3.1.0" resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== -"@jridgewell/set-array@^1.0.1": +"@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1": version "1.1.2" resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== @@ -1388,11 +1557,19 @@ "@jridgewell/gen-mapping" "^0.3.0" "@jridgewell/trace-mapping" "^0.3.9" -"@jridgewell/sourcemap-codec@^1.4.10": +"@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10": version "1.4.14" resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== +"@jridgewell/trace-mapping@^0.3.17": + version "0.3.17" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985" + integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g== + dependencies: + "@jridgewell/resolve-uri" "3.1.0" + "@jridgewell/sourcemap-codec" "1.4.14" + "@jridgewell/trace-mapping@^0.3.9": version "0.3.14" resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz#b231a081d8f66796e475ad588a1ef473112701ed" @@ -1814,94 +1991,97 @@ resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz#3c7c9c46e678feefe7a2e5bb609d3dbd665ffb3f" integrity sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw== -"@svgr/babel-plugin-add-jsx-attribute@^5.4.0": - version "5.4.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz#81ef61947bb268eb9d50523446f9c638fb355906" - integrity sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg== +"@svgr/babel-plugin-add-jsx-attribute@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.5.1.tgz#74a5d648bd0347bda99d82409d87b8ca80b9a1ba" + integrity sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ== -"@svgr/babel-plugin-remove-jsx-attribute@^5.4.0": - version "5.4.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz#6b2c770c95c874654fd5e1d5ef475b78a0a962ef" - integrity sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg== - -"@svgr/babel-plugin-remove-jsx-empty-expression@^5.0.1": - version "5.0.1" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz#25621a8915ed7ad70da6cea3d0a6dbc2ea933efd" - integrity sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA== - -"@svgr/babel-plugin-replace-jsx-attribute-value@^5.0.1": - version "5.0.1" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz#0b221fc57f9fcd10e91fe219e2cd0dd03145a897" - integrity sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ== - -"@svgr/babel-plugin-svg-dynamic-title@^5.4.0": - version "5.4.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz#139b546dd0c3186b6e5db4fefc26cb0baea729d7" - integrity sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg== - -"@svgr/babel-plugin-svg-em-dimensions@^5.4.0": - version "5.4.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz#6543f69526632a133ce5cabab965deeaea2234a0" - integrity sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw== - -"@svgr/babel-plugin-transform-react-native-svg@^5.4.0": - version "5.4.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz#00bf9a7a73f1cad3948cdab1f8dfb774750f8c80" - integrity sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q== - -"@svgr/babel-plugin-transform-svg-component@^5.4.0": - version "5.4.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.4.0.tgz#a2212b4d018e6075a058bb7e220a66959ef7a03c" - integrity sha512-zLl4Fl3NvKxxjWNkqEcpdSOpQ3LGVH2BNFQ6vjaK6sFo2IrSznrhURIPI0HAphKiiIwNYjAfE0TNoQDSZv0U9A== +"@svgr/babel-plugin-remove-jsx-attribute@*": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-7.0.0.tgz#91da77a009dc38e8d30da45d9b62ef8736f2d90a" + integrity sha512-iiZaIvb3H/c7d3TH2HBeK91uI2rMhZNwnsIrvd7ZwGLkFw6mmunOCoVnjdYua662MqGFxlN9xTq4fv9hgR4VXQ== -"@svgr/babel-preset@^5.4.0": - version "5.4.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-5.4.0.tgz#da21854643e1c4ad2279239baa7d5a8b128c1f15" - integrity sha512-Gyx7cCxua04DBtyILTYdQxeO/pwfTBev6+eXTbVbxe4HTGhOUW6yo7PSbG2p6eJMl44j6XSequ0ZDP7bl0nu9A== - dependencies: - "@svgr/babel-plugin-add-jsx-attribute" "^5.4.0" - "@svgr/babel-plugin-remove-jsx-attribute" "^5.4.0" - "@svgr/babel-plugin-remove-jsx-empty-expression" "^5.0.1" - "@svgr/babel-plugin-replace-jsx-attribute-value" "^5.0.1" - "@svgr/babel-plugin-svg-dynamic-title" "^5.4.0" - "@svgr/babel-plugin-svg-em-dimensions" "^5.4.0" - "@svgr/babel-plugin-transform-react-native-svg" "^5.4.0" - "@svgr/babel-plugin-transform-svg-component" "^5.4.0" - -"@svgr/core@5.4.0": - version "5.4.0" - resolved "https://registry.yarnpkg.com/@svgr/core/-/core-5.4.0.tgz#655378ee43679eb94fee3d4e1976e38252dff8e7" - integrity sha512-hWGm1DCCvd4IEn7VgDUHYiC597lUYhFau2lwJBYpQWDirYLkX4OsXu9IslPgJ9UpP7wsw3n2Ffv9sW7SXJVfqQ== - dependencies: - "@svgr/plugin-jsx" "^5.4.0" - camelcase "^6.0.0" - cosmiconfig "^6.0.0" +"@svgr/babel-plugin-remove-jsx-empty-expression@*": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-7.0.0.tgz#5154ff1213509e36ab315974c8c2fd48dafb827b" + integrity sha512-sQQmyo+qegBx8DfFc04PFmIO1FP1MHI1/QEpzcIcclo5OAISsOJPW76ZIs0bDyO/DBSJEa/tDa1W26pVtt0FRw== + +"@svgr/babel-plugin-replace-jsx-attribute-value@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.5.1.tgz#fb9d22ea26d2bc5e0a44b763d4c46d5d3f596c60" + integrity sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg== + +"@svgr/babel-plugin-svg-dynamic-title@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.5.1.tgz#01b2024a2b53ffaa5efceaa0bf3e1d5a4c520ce4" + integrity sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw== + +"@svgr/babel-plugin-svg-em-dimensions@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.5.1.tgz#dd3fa9f5b24eb4f93bcf121c3d40ff5facecb217" + integrity sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA== + +"@svgr/babel-plugin-transform-react-native-svg@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.5.1.tgz#1d8e945a03df65b601551097d8f5e34351d3d305" + integrity sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg== + +"@svgr/babel-plugin-transform-svg-component@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.5.1.tgz#48620b9e590e25ff95a80f811544218d27f8a250" + integrity sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ== + +"@svgr/babel-preset@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-6.5.1.tgz#b90de7979c8843c5c580c7e2ec71f024b49eb828" + integrity sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw== + dependencies: + "@svgr/babel-plugin-add-jsx-attribute" "^6.5.1" + "@svgr/babel-plugin-remove-jsx-attribute" "*" + "@svgr/babel-plugin-remove-jsx-empty-expression" "*" + "@svgr/babel-plugin-replace-jsx-attribute-value" "^6.5.1" + "@svgr/babel-plugin-svg-dynamic-title" "^6.5.1" + "@svgr/babel-plugin-svg-em-dimensions" "^6.5.1" + "@svgr/babel-plugin-transform-react-native-svg" "^6.5.1" + "@svgr/babel-plugin-transform-svg-component" "^6.5.1" + +"@svgr/core@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/core/-/core-6.5.1.tgz#d3e8aa9dbe3fbd747f9ee4282c1c77a27410488a" + integrity sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw== + dependencies: + "@babel/core" "^7.19.6" + "@svgr/babel-preset" "^6.5.1" + "@svgr/plugin-jsx" "^6.5.1" + camelcase "^6.2.0" + cosmiconfig "^7.0.1" -"@svgr/hast-util-to-babel-ast@^5.4.0": - version "5.4.0" - resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.4.0.tgz#bb5d002e428f510aa5b53ec0a02377a95b367715" - integrity sha512-+U0TZZpPsP2V1WvVhqAOSTk+N+CjYHdZx+x9UBa1eeeZDXwH8pt0CrQf2+SvRl/h2CAPRFkm+Ey96+jKP8Bsgg== +"@svgr/hast-util-to-babel-ast@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.5.1.tgz#81800bd09b5bcdb968bf6ee7c863d2288fdb80d2" + integrity sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw== dependencies: - "@babel/types" "^7.9.5" + "@babel/types" "^7.20.0" + entities "^4.4.0" -"@svgr/plugin-jsx@^5.4.0": - version "5.4.0" - resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-5.4.0.tgz#ab47504c55615833c6db70fca2d7e489f509787c" - integrity sha512-SGzO4JZQ2HvGRKDzRga9YFSqOqaNrgLlQVaGvpZ2Iht2gwRp/tq+18Pvv9kS9ZqOMYgyix2LLxZMY1LOe9NPqw== +"@svgr/plugin-jsx@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-6.5.1.tgz#0e30d1878e771ca753c94e69581c7971542a7072" + integrity sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw== dependencies: - "@babel/core" "^7.7.5" - "@svgr/babel-preset" "^5.4.0" - "@svgr/hast-util-to-babel-ast" "^5.4.0" - svg-parser "^2.0.2" + "@babel/core" "^7.19.6" + "@svgr/babel-preset" "^6.5.1" + "@svgr/hast-util-to-babel-ast" "^6.5.1" + svg-parser "^2.0.4" -"@svgr/plugin-svgo@^4.0.3": - version "4.2.0" - resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-4.2.0.tgz#2a594a2d3312955e75fd87dc77ae51f377c809f3" - integrity sha512-zUEKgkT172YzHh3mb2B2q92xCnOAMVjRx+o0waZ1U50XqKLrVQ/8dDqTAtnmapdLsGurv8PSwenjLCUpj6hcvw== +"@svgr/plugin-svgo@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-6.5.1.tgz#0f91910e988fc0b842f88e0960c2862e022abe84" + integrity sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ== dependencies: - cosmiconfig "^5.2.0" - merge-deep "^3.0.2" - svgo "^1.2.1" + cosmiconfig "^7.0.1" + deepmerge "^4.2.2" + svgo "^2.8.0" "@szmarczak/http-timer@^4.0.5": version "4.0.6" @@ -1915,6 +2095,11 @@ resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== +"@trysound/sax@0.2.0": + version "0.2.0" + resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad" + integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== + "@types/anymatch@*": version "1.3.1" resolved "https://registry.yarnpkg.com/@types/anymatch/-/anymatch-1.3.1.tgz#336badc1beecb9dacc38bea2cf32adf627a8421a" @@ -3673,6 +3858,16 @@ browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.8.3: node-releases "^2.0.6" update-browserslist-db "^1.0.5" +browserslist@^4.21.3: + version "4.21.5" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.5.tgz#75c5dae60063ee641f977e00edd3cfb2fb7af6a7" + integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w== + dependencies: + caniuse-lite "^1.0.30001449" + electron-to-chromium "^1.4.284" + node-releases "^2.0.8" + update-browserslist-db "^1.0.10" + bser@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" @@ -3958,6 +4153,11 @@ caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001370: resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001457.tgz" integrity sha512-SDIV6bgE1aVbK6XyxdURbUE89zY7+k1BBBaOwYwkNCglXlel/E7mELiHC64HQ+W0xSKlqWhV9Wh7iHxUjMs4fA== +caniuse-lite@^1.0.30001449: + version "1.0.30001473" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001473.tgz#3859898b3cab65fc8905bb923df36ad35058153c" + integrity sha512-ewDad7+D2vlyy+E4UJuVfiBsU69IL+8oVmTuZnH5Q6CIUbxNfI50uVpRHbUPDD6SUaN2o0Lh4DhTrvLG/Tn1yg== + capture-exit@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" @@ -4297,17 +4497,6 @@ clone-buffer@^1.0.0: resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58" integrity sha1-4+JbIHrE5wGvch4staFnksrD3Fg= -clone-deep@^0.2.4: - version "0.2.4" - resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-0.2.4.tgz#4e73dd09e9fb971cc38670c5dced9c1896481cc6" - integrity sha1-TnPdCen7lxzDhnDF3O2cGJZIHMY= - dependencies: - for-own "^0.1.3" - is-plain-object "^2.0.1" - kind-of "^3.0.2" - lazy-cache "^1.0.3" - shallow-clone "^0.1.2" - clone-regexp@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/clone-regexp/-/clone-regexp-1.0.0.tgz#eae0a2413f55c0942f818c229fefce845d7f3b1c" @@ -4538,6 +4727,11 @@ commander@^4.0.1, commander@^4.1.1: resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== +commander@^7.2.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" + integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== + commander@~2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/commander/-/commander-2.1.0.tgz#d121bbae860d9992a3d517ba96f56588e47c6781" @@ -4738,7 +4932,7 @@ core-util-is@1.0.2, core-util-is@~1.0.0: resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= -cosmiconfig@^5.0.0, cosmiconfig@^5.2.0: +cosmiconfig@^5.0.0: version "5.2.0" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.0.tgz#45038e4d28a7fe787203aede9c25bca4a08b12c8" integrity sha512-nxt+Nfc3JAqf4WIWd0jXLjTJZmsPLrA9DDc4nRw2KFJQJK7DNooqSXrNI7tzLG50CF8axczly5UV929tBmh/7g== @@ -4770,6 +4964,17 @@ cosmiconfig@^7.0.0: path-type "^4.0.0" yaml "^1.10.0" +cosmiconfig@^7.0.1: + version "7.1.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" + integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.2.1" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.10.0" + create-ecdh@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" @@ -4961,6 +5166,14 @@ css-tree@1.0.0-alpha.33: mdn-data "2.0.4" source-map "^0.5.3" +css-tree@^1.1.2, css-tree@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d" + integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== + dependencies: + mdn-data "2.0.14" + source-map "^0.6.1" + css-what@^3.2.1, css-what@^4.0.0, css-what@^6.0.1, css-what@^6.1.0: version "6.1.0" resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" @@ -5046,6 +5259,13 @@ csso@^3.5.1: dependencies: css-tree "1.0.0-alpha.29" +csso@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529" + integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== + dependencies: + css-tree "^1.1.2" + csso@~2.3.1: version "2.3.2" resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85" @@ -5730,6 +5950,11 @@ electron-to-chromium@^1.4.202: resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.208.tgz#ecb5b47c8cc212a43172ffc5ce50178a638a5d74" integrity sha512-diMr4t69FigAGUk2KovP0bygEtN/9AkqEVkzjEp0cu+zFFbZMVvwACpTTfuj1mAmFR5kNoSW8wGKDFWIvmThiQ== +electron-to-chromium@^1.4.284: + version "1.4.347" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.347.tgz#4b72564912c3456c6704d4250918aa6a105d5dc3" + integrity sha512-LNi3+/9nV0vT6Bz1OsSoZ/w7IgNuWdefZ7mjKNjZxyRlI/ag6uMXxsxAy5Etvuixq3Q26exw2fc4bNYvYQqXSw== + elliptic@^6.0.0: version "6.5.4" resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" @@ -5831,6 +6056,11 @@ entities@^2.0.0: resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== +entities@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-4.4.0.tgz#97bdaba170339446495e653cfd2db78962900174" + integrity sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA== + entities@~2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/entities/-/entities-2.1.0.tgz#992d3129cf7df6870b96c57858c249a120f8b8b5" @@ -6975,23 +7205,11 @@ for-each@^0.3.3: dependencies: is-callable "^1.1.3" -for-in@^0.1.3: - version "0.1.8" - resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1" - integrity sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE= - -for-in@^1.0.1, for-in@^1.0.2: +for-in@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= -for-own@^0.1.3: - version "0.1.5" - resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" - integrity sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4= - dependencies: - for-in "^1.0.1" - foreachasync@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/foreachasync/-/foreachasync-3.0.0.tgz#5502987dc8714be3392097f32e0071c9dee07cf6" @@ -7263,6 +7481,11 @@ gensync@^1.0.0-beta.1: resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269" integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg== +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + get-caller-file@^2.0.1, get-caller-file@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" @@ -8615,7 +8838,7 @@ is-boolean-object@^1.1.0: call-bind "^1.0.2" has-tostringtag "^1.0.0" -is-buffer@^1.0.2, is-buffer@^1.1.4, is-buffer@^1.1.5: +is-buffer@^1.1.4, is-buffer@^1.1.5: version "1.1.6" resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== @@ -8892,7 +9115,7 @@ is-plain-obj@^2.0.0: resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== -is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: +is-plain-object@^2.0.3, is-plain-object@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== @@ -9669,6 +9892,11 @@ json5@^2.1.2: resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.2.tgz#64471c5bdcc564c18f7c1d4df2e2297f2457c5ab" integrity sha512-46Tk9JiOL2z7ytNQWFLpj99RZkVgeHf87yGQKsIkaPz1qSH9UczKH1rO7K3wgRselo0tYMUNfecYpm/p1vC7tQ== +json5@^2.2.2: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + jsonfile@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-3.0.1.tgz#a5ecc6f65f53f662c4415c7675a0331d0992ec66" @@ -9742,13 +9970,6 @@ killable@^1.0.1: resolved "https://registry.yarnpkg.com/killable/-/killable-1.0.1.tgz#4c8ce441187a061c7474fb87ca08e2a638194892" integrity sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg== -kind-of@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-2.0.1.tgz#018ec7a4ce7e3a86cb9141be519d24c8faa981b5" - integrity sha1-AY7HpM5+OobLkUG+UZ0kyPqpgbU= - dependencies: - is-buffer "^1.0.2" - kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: version "3.2.2" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" @@ -9824,12 +10045,7 @@ lazy-ass@1.6.0: resolved "https://registry.yarnpkg.com/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" integrity sha1-eZllXoZGwX8In90YfRUNMyTVRRM= -lazy-cache@^0.2.3: - version "0.2.7" - resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-0.2.7.tgz#7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65" - integrity sha1-f+3fLctu23fRHvHRF6tf/fCrG2U= - -lazy-cache@^1.0.3, lazy-cache@^1.0.4: +lazy-cache@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" integrity sha1-odePw6UEdMuAhF07O24dpJpEbo4= @@ -10288,6 +10504,11 @@ mdast-util-to-hast@^10.0.0: unist-util-position "^3.0.0" unist-util-visit "^2.0.0" +mdn-data@2.0.14: + version "2.0.14" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" + integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== + mdn-data@2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b" @@ -10403,15 +10624,6 @@ meow@^5.0.0, meow@^9.0.0: type-fest "^0.18.0" yargs-parser "^20.2.3" -merge-deep@^3.0.2: - version "3.0.3" - resolved "https://registry.yarnpkg.com/merge-deep/-/merge-deep-3.0.3.tgz#1a2b2ae926da8b2ae93a0ac15d90cd1922766003" - integrity sha512-qtmzAS6t6grwEkNrunqTBdn0qKwFgNWvlxUbAV8es9M7Ot1EbyApytCnvE0jALPa46ZpKDUo527kKiaWplmlFA== - dependencies: - arr-union "^3.1.0" - clone-deep "^0.2.4" - kind-of "^3.0.2" - merge-descriptors@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" @@ -10704,14 +10916,6 @@ mixin-deep@^1.2.0: for-in "^1.0.2" is-extendable "^1.0.1" -mixin-object@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/mixin-object/-/mixin-object-2.0.1.tgz#4fb949441dab182540f1fe035ba60e1947a5e57e" - integrity sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4= - dependencies: - for-in "^0.1.3" - is-extendable "^0.1.1" - mkdirp-classic@^0.5.2: version "0.5.3" resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" @@ -11000,6 +11204,11 @@ node-releases@^2.0.6: resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503" integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg== +node-releases@^2.0.8: + version "2.0.10" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.10.tgz#c311ebae3b6a148c89b1813fd7c4d3c024ef537f" + integrity sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w== + node-sass@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-8.0.0.tgz#c80d52148db0ce88610bcf1e1d112027393c13e1" @@ -13543,7 +13752,7 @@ request-promise-native@^1.0.5: stealthy-require "^1.1.1" tough-cookie "^2.3.3" -request@^2.87.0, request@^2.88.0: +request@^2.87.0: version "2.88.0" resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg== @@ -14202,16 +14411,6 @@ sha.js@^2.4.0, sha.js@^2.4.8: inherits "^2.0.1" safe-buffer "^5.0.1" -shallow-clone@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-0.1.2.tgz#5909e874ba77106d73ac414cfec1ffca87d97060" - integrity sha1-WQnodLp3EG1zrEFM/sH/yofZcGA= - dependencies: - is-extendable "^0.1.1" - kind-of "^2.0.1" - lazy-cache "^0.2.3" - mixin-object "^2.0.1" - shebang-command@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" @@ -14969,10 +15168,10 @@ supports-color@^7.0.0, supports-color@^7.1.0: dependencies: has-flag "^4.0.0" -svg-parser@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.3.tgz#a38f2e4e5442986f7ecb554c11f1411cfcf8c2b9" - integrity sha512-fnCWiifNhK8i2Z7b9R5tbNahpxrRdAaQbnoxKlT2KrSCj9Kq/yBSgulCRgBJRhy1dPnSY5slg5ehPUnzpEcHlg== +svg-parser@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5" + integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ== svgo@^0.7.2: version "0.7.2" @@ -14987,7 +15186,7 @@ svgo@^0.7.2: sax "~1.2.1" whet.extend "~0.9.9" -svgo@^1.0.0, svgo@^1.2.1: +svgo@^1.0.0: version "1.3.0" resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.0.tgz#bae51ba95ded9a33a36b7c46ce9c359ae9154313" integrity sha512-MLfUA6O+qauLDbym+mMZgtXCGRfIxyQoeH6IKVcFslyODEe/ElJNwr0FohQ3xG4C6HK6bk3KYPPXwHVJk3V5NQ== @@ -15006,6 +15205,19 @@ svgo@^1.0.0, svgo@^1.2.1: unquote "~1.1.1" util.promisify "~1.0.0" +svgo@^2.8.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.8.0.tgz#4ff80cce6710dc2795f0c7c74101e6764cfccd24" + integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg== + dependencies: + "@trysound/sax" "0.2.0" + commander "^7.2.0" + css-select "^4.1.3" + css-tree "^1.1.3" + csso "^4.2.0" + picocolors "^1.0.0" + stable "^0.1.8" + symbol-observable@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" @@ -15768,6 +15980,14 @@ upath@^1.1.1: resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== +update-browserslist-db@^1.0.10: + version "1.0.10" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3" + integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + update-browserslist-db@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.5.tgz#be06a5eedd62f107b7c19eb5bcefb194411abf38"