From e04e9d9f461e4e7891c2f03f68ab8074795ccfbc Mon Sep 17 00:00:00 2001 From: Constance Chen Date: Wed, 14 Jun 2023 11:06:23 -0700 Subject: [PATCH 1/5] Upgrade `@svgr` plugins to latest & update script accordingly - see https://react-svgr.com/docs/migrate/ for high level of export + API changes - see https://github.com/svg/svgo#default-preset for svgo config changes --- package.json | 5 +- scripts/compile-icons.js | 29 ++- yarn.lock | 509 ++++++++++++++++++++++----------------- 3 files changed, 308 insertions(+), 235 deletions(-) diff --git a/package.json b/package.json index c019aec4a3c..7bfed35044b 100644 --- a/package.json +++ b/package.json @@ -135,8 +135,9 @@ "@storybook/react": "^7.0.17", "@storybook/react-webpack5": "^7.0.17", "@storybook/testing-library": "^0.0.14-next.2", - "@svgr/core": "5.5.0", - "@svgr/plugin-svgo": "^4.0.3", + "@svgr/core": "8.0.0", + "@svgr/plugin-jsx": "^8.0.1", + "@svgr/plugin-svgo": "^8.0.1", "@testing-library/dom": "^8.12.0", "@testing-library/jest-dom": "^5.16.3", "@testing-library/react": "^12.1.5", diff --git a/scripts/compile-icons.js b/scripts/compile-icons.js index faf7ca56e3c..47ef62a1ccb 100644 --- a/scripts/compile-icons.js +++ b/scripts/compile-icons.js @@ -1,10 +1,9 @@ const glob = require('glob'); -const svgr = require('@svgr/core').default; +const svgr = require('@svgr/core').transform; const path = require('path'); const fs = require('fs'); -const license = require('../.eslintrc.js').rules[ - 'local/require-license-header' -][1].license; +const license = + require('../.eslintrc.js').rules['local/require-license-header'][1].license; const rootDir = path.resolve(__dirname, '..'); const srcDir = path.resolve(rootDir, 'src'); @@ -37,10 +36,15 @@ iconFiles.forEach((filePath) => { plugins: ['@svgr/plugin-svgo', '@svgr/plugin-jsx'], svgoConfig: { plugins: [ - { cleanupIDs: true }, - { prefixIds: false }, - { removeViewBox: false }, - { removeUselessStrokeAndFill: false }, + { + name: 'preset-default', + params: { + overrides: { + removeViewBox: false, + removeUselessStrokeAndFill: false, + }, + }, + }, ], }, svgProps: { @@ -49,12 +53,11 @@ iconFiles.forEach((filePath) => { titleProp: true, typescript: true, template: ( - { template }, - opts, - { imports, interfaces, componentName, props, jsx } + { imports, interfaces, componentName, props, jsx }, + { tpl } ) => hasIds - ? template.ast` + ? tpl` ${imports} import { htmlIdGenerator } from '../../../services'; ${interfaces} @@ -66,7 +69,7 @@ const ${componentName} = (${props}) => { }; export const icon = ${componentName}; ` - : template.ast` + : tpl` ${imports} ${interfaces} const ${componentName} = (${props}) => ${jsx} diff --git a/yarn.lock b/yarn.lock index 47c77e33fe3..078ac9b018f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -54,12 +54,33 @@ dependencies: "@babel/highlight" "^7.22.5" -"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.5", "@babel/compat-data@^7.21.5": - version "7.21.9" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.21.9.tgz#10a2e7fda4e51742c907938ac3b7229426515514" - integrity sha512-FUGed8kfhyWvbYug/Un/VPJD41rDIgoVVcR+FuzhzOYyRz5uED+Gd3SLZml0Uw2l2aHFb7ZgdW5mGA3G2cCCnQ== +"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.5", "@babel/compat-data@^7.21.5", "@babel/compat-data@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.5.tgz#b1f6c86a02d85d2dd3368a2b67c09add8cd0c255" + integrity sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA== -"@babel/core@^7.1.0", "@babel/core@^7.11.6", "@babel/core@^7.12.10", "@babel/core@^7.12.3", "@babel/core@^7.13.16", "@babel/core@^7.13.8", "@babel/core@^7.20.2", "@babel/core@^7.21.8", "@babel/core@^7.7.5", "@babel/core@~7.21.0": +"@babel/core@^7.1.0", "@babel/core@^7.11.6", "@babel/core@^7.12.10", "@babel/core@^7.12.3", "@babel/core@^7.13.16", "@babel/core@^7.13.8", "@babel/core@^7.20.2", "@babel/core@^7.21.3", "@babel/core@^7.21.8", "@babel/core@^7.7.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.5.tgz#d67d9747ecf26ee7ecd3ebae1ee22225fe902a89" + integrity sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.22.5" + "@babel/generator" "^7.22.5" + "@babel/helper-compilation-targets" "^7.22.5" + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helpers" "^7.22.5" + "@babel/parser" "^7.22.5" + "@babel/template" "^7.22.5" + "@babel/traverse" "^7.22.5" + "@babel/types" "^7.22.5" + 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/core@~7.21.0": version "7.21.8" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.21.8.tgz#2a8c7f0f53d60100ba4c32470ba0281c92aa9aa4" integrity sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ== @@ -80,7 +101,17 @@ json5 "^2.2.2" semver "^6.3.0" -"@babel/generator@^7.12.11", "@babel/generator@^7.13.0", "@babel/generator@^7.21.5", "@babel/generator@^7.4.0", "@babel/generator@~7.21.1": +"@babel/generator@^7.12.11", "@babel/generator@^7.13.0", "@babel/generator@^7.21.5", "@babel/generator@^7.22.5", "@babel/generator@^7.4.0": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.5.tgz#1e7bf768688acfb05cf30b2369ef855e82d984f7" + integrity sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA== + dependencies: + "@babel/types" "^7.22.5" + "@jridgewell/gen-mapping" "^0.3.2" + "@jridgewell/trace-mapping" "^0.3.17" + jsesc "^2.5.1" + +"@babel/generator@~7.21.1": version "7.21.9" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.9.tgz#3a1b706e07d836e204aee0650e8ee878d3aaa241" integrity sha512-F3fZga2uv09wFdEjEQIJxXALXfz0+JaOb7SabvVMmjHxeVTuGW8wgE8Vp1Hd7O+zMTYtcfEISGRzPkeiaPPsvg== @@ -105,13 +136,13 @@ "@babel/helper-explode-assignable-expression" "^7.18.6" "@babel/types" "^7.18.9" -"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz#631e6cc784c7b660417421349aac304c94115366" - integrity sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w== +"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.21.5", "@babel/helper-compilation-targets@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz#fc7319fc54c5e2fa14b2909cf3c5fd3046813e02" + integrity sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw== dependencies: - "@babel/compat-data" "^7.21.5" - "@babel/helper-validator-option" "^7.21.0" + "@babel/compat-data" "^7.22.5" + "@babel/helper-validator-option" "^7.22.5" browserslist "^4.21.3" lru-cache "^5.1.1" semver "^6.3.0" @@ -150,10 +181,10 @@ resolve "^1.14.2" semver "^6.1.2" -"@babel/helper-environment-visitor@^7.18.9", "@babel/helper-environment-visitor@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz#c769afefd41d171836f7cb63e295bedf689d48ba" - integrity sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ== +"@babel/helper-environment-visitor@^7.18.9", "@babel/helper-environment-visitor@^7.21.5", "@babel/helper-environment-visitor@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz#f06dd41b7c1f44e1f8da6c4055b41ab3a09a7e98" + integrity sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q== "@babel/helper-explode-assignable-expression@^7.18.6": version "7.18.6" @@ -162,20 +193,20 @@ dependencies: "@babel/types" "^7.18.6" -"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0", "@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== +"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0", "@babel/helper-function-name@^7.21.0", "@babel/helper-function-name@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be" + integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ== dependencies: - "@babel/template" "^7.20.7" - "@babel/types" "^7.21.0" + "@babel/template" "^7.22.5" + "@babel/types" "^7.22.5" -"@babel/helper-hoist-variables@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" - integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== +"@babel/helper-hoist-variables@^7.18.6", "@babel/helper-hoist-variables@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" + integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== dependencies: - "@babel/types" "^7.18.6" + "@babel/types" "^7.22.5" "@babel/helper-member-expression-to-functions@^7.20.7", "@babel/helper-member-expression-to-functions@^7.21.0": version "7.21.0" @@ -184,26 +215,26 @@ dependencies: "@babel/types" "^7.21.0" -"@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.18.6", "@babel/helper-module-imports@^7.21.4": - 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== +"@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.18.6", "@babel/helper-module-imports@^7.21.4", "@babel/helper-module-imports@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c" + integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg== dependencies: - "@babel/types" "^7.21.4" + "@babel/types" "^7.22.5" -"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.20.11", "@babel/helper-module-transforms@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz#d937c82e9af68d31ab49039136a222b17ac0b420" - integrity sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw== +"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.20.11", "@babel/helper-module-transforms@^7.21.5", "@babel/helper-module-transforms@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz#0f65daa0716961b6e96b164034e737f60a80d2ef" + integrity sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw== dependencies: - "@babel/helper-environment-visitor" "^7.21.5" - "@babel/helper-module-imports" "^7.21.4" - "@babel/helper-simple-access" "^7.21.5" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/helper-validator-identifier" "^7.19.1" - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.5" - "@babel/types" "^7.21.5" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-module-imports" "^7.22.5" + "@babel/helper-simple-access" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.5" + "@babel/template" "^7.22.5" + "@babel/traverse" "^7.22.5" + "@babel/types" "^7.22.5" "@babel/helper-optimise-call-expression@^7.18.6": version "7.18.6" @@ -239,12 +270,12 @@ "@babel/traverse" "^7.20.7" "@babel/types" "^7.20.7" -"@babel/helper-simple-access@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz#d697a7971a5c39eac32c7e63c0921c06c8a249ee" - integrity sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg== +"@babel/helper-simple-access@^7.21.5", "@babel/helper-simple-access@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" + integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== dependencies: - "@babel/types" "^7.21.5" + "@babel/types" "^7.22.5" "@babel/helper-skip-transparent-expression-wrappers@^7.20.0": version "7.20.0" @@ -253,12 +284,12 @@ dependencies: "@babel/types" "^7.20.0" -"@babel/helper-split-export-declaration@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" - integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== +"@babel/helper-split-export-declaration@^7.18.6", "@babel/helper-split-export-declaration@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz#88cf11050edb95ed08d596f7a044462189127a08" + integrity sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ== dependencies: - "@babel/types" "^7.18.6" + "@babel/types" "^7.22.5" "@babel/helper-string-parser@^7.21.5", "@babel/helper-string-parser@^7.22.5": version "7.22.5" @@ -270,10 +301,10 @@ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193" integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ== -"@babel/helper-validator-option@^7.18.6", "@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-validator-option@^7.18.6", "@babel/helper-validator-option@^7.21.0", "@babel/helper-validator-option@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz#de52000a15a177413c8234fa3a8af4ee8102d0ac" + integrity sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw== "@babel/helper-wrap-function@^7.18.9": version "7.20.5" @@ -285,14 +316,14 @@ "@babel/traverse" "^7.20.5" "@babel/types" "^7.20.5" -"@babel/helpers@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.21.5.tgz#5bac66e084d7a4d2d9696bdf0175a93f7fb63c08" - integrity sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA== +"@babel/helpers@^7.21.5", "@babel/helpers@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.5.tgz#74bb4373eb390d1ceed74a15ef97767e63120820" + integrity sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q== dependencies: - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.5" - "@babel/types" "^7.21.5" + "@babel/template" "^7.22.5" + "@babel/traverse" "^7.22.5" + "@babel/types" "^7.22.5" "@babel/highlight@^7.0.0", "@babel/highlight@^7.22.5": version "7.22.5" @@ -1069,7 +1100,7 @@ dependencies: regenerator-runtime "^0.13.11" -"@babel/template@^7.12.13", "@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.21.9", "@babel/template@^7.4.0": +"@babel/template@^7.12.13", "@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.21.9", "@babel/template@^7.22.5", "@babel/template@^7.4.0": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.5.tgz#0c8c4d944509875849bd0344ff0050756eefc6ec" integrity sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw== @@ -1078,7 +1109,23 @@ "@babel/parser" "^7.22.5" "@babel/types" "^7.22.5" -"@babel/traverse@^7.1.0", "@babel/traverse@^7.1.6", "@babel/traverse@^7.13.0", "@babel/traverse@^7.20.5", "@babel/traverse@^7.20.7", "@babel/traverse@^7.21.5", "@babel/traverse@^7.4.3", "@babel/traverse@~7.21.2": +"@babel/traverse@^7.1.0", "@babel/traverse@^7.1.6", "@babel/traverse@^7.13.0", "@babel/traverse@^7.20.5", "@babel/traverse@^7.20.7", "@babel/traverse@^7.21.5", "@babel/traverse@^7.22.5", "@babel/traverse@^7.4.3": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.5.tgz#44bd276690db6f4940fdb84e1cb4abd2f729ccd1" + integrity sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ== + dependencies: + "@babel/code-frame" "^7.22.5" + "@babel/generator" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.5" + "@babel/parser" "^7.22.5" + "@babel/types" "^7.22.5" + debug "^4.1.0" + globals "^11.1.0" + +"@babel/traverse@~7.21.2": version "7.21.5" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.5.tgz#ad22361d352a5154b498299d523cf72998a4b133" integrity sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw== @@ -1094,7 +1141,7 @@ debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.12.6", "@babel/types@^7.13.0", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.2.0", "@babel/types@^7.20.0", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.4", "@babel/types@^7.21.5", "@babel/types@^7.22.5", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.4.4": +"@babel/types@^7.0.0", "@babel/types@^7.13.0", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.2.0", "@babel/types@^7.20.0", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.3", "@babel/types@^7.21.5", "@babel/types@^7.22.5", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.4.4": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.5.tgz#cd93eeaab025880a3a47ec881f4b096a5b786fbe" integrity sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA== @@ -3076,94 +3123,97 @@ "@types/express" "^4.7.0" file-system-cache "^2.0.0" -"@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@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-8.0.0.tgz#4001f5d5dd87fa13303e36ee106e3ff3a7eb8b22" + integrity sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g== -"@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-attribute@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz#69177f7937233caca3a1afb051906698f2f59186" + integrity sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA== -"@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-remove-jsx-empty-expression@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz#c2c48104cfd7dcd557f373b70a56e9e3bdae1d44" + integrity sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA== -"@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-replace-jsx-attribute-value@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-8.0.0.tgz#8fbb6b2e91fa26ac5d4aa25c6b6e4f20f9c0ae27" + integrity sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ== -"@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-dynamic-title@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-8.0.0.tgz#1d5ba1d281363fc0f2f29a60d6d936f9bbc657b0" + integrity sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og== -"@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-svg-em-dimensions@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-8.0.0.tgz#35e08df300ea8b1d41cb8f62309c241b0369e501" + integrity sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g== -"@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-react-native-svg@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-8.0.0.tgz#023cd0895b98521f566060d6bb92100b9fee3775" + integrity sha512-UKrY3860AQICgH7g+6h2zkoxeVEPLYwX/uAjmqo4PIq2FIHppwhIqZstIyTz0ZtlwreKR41O3W3BzsBBiJV2Aw== -"@svgr/babel-plugin-transform-svg-component@^5.5.0": - version "5.5.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz#583a5e2a193e214da2f3afeb0b9e8d3250126b4a" - integrity sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ== +"@svgr/babel-plugin-transform-svg-component@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-8.0.0.tgz#013b4bfca88779711f0ed2739f3f7efcefcf4f7e" + integrity sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw== -"@svgr/babel-preset@^5.5.0": - version "5.5.0" - resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-5.5.0.tgz#8af54f3e0a8add7b1e2b0fcd5a882c55393df327" - integrity sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig== - 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.5.0" - -"@svgr/core@5.5.0": - version "5.5.0" - resolved "https://registry.yarnpkg.com/@svgr/core/-/core-5.5.0.tgz#82e826b8715d71083120fe8f2492ec7d7874a579" - integrity sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ== +"@svgr/babel-preset@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-8.0.0.tgz#6d78100b3b6daf11c940b82d5bd8c3164b9c6ad9" + integrity sha512-KLcjiZychInVrhs86OvcYPLTFu9L5XV2vj0XAaE1HwE3J3jLmIzRY8ttdeAg/iFyp8nhavJpafpDZTt+1LIpkQ== + dependencies: + "@svgr/babel-plugin-add-jsx-attribute" "8.0.0" + "@svgr/babel-plugin-remove-jsx-attribute" "8.0.0" + "@svgr/babel-plugin-remove-jsx-empty-expression" "8.0.0" + "@svgr/babel-plugin-replace-jsx-attribute-value" "8.0.0" + "@svgr/babel-plugin-svg-dynamic-title" "8.0.0" + "@svgr/babel-plugin-svg-em-dimensions" "8.0.0" + "@svgr/babel-plugin-transform-react-native-svg" "8.0.0" + "@svgr/babel-plugin-transform-svg-component" "8.0.0" + +"@svgr/core@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/core/-/core-8.0.0.tgz#e96829cdb0473345d5671568282ee0736e86ef12" + integrity sha512-aJKtc+Pie/rFYsVH/unSkDaZGvEeylNv/s2cP+ta9/rYWxRVvoV/S4Qw65Kmrtah4CBK5PM6ISH9qUH7IJQCng== dependencies: - "@svgr/plugin-jsx" "^5.5.0" + "@babel/core" "^7.21.3" + "@svgr/babel-preset" "8.0.0" camelcase "^6.2.0" - cosmiconfig "^7.0.0" + cosmiconfig "^8.1.3" + snake-case "^3.0.4" -"@svgr/hast-util-to-babel-ast@^5.5.0": - version "5.5.0" - resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz#5ee52a9c2533f73e63f8f22b779f93cd432a5461" - integrity sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ== +"@svgr/hast-util-to-babel-ast@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-8.0.0.tgz#6952fd9ce0f470e1aded293b792a2705faf4ffd4" + integrity sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q== dependencies: - "@babel/types" "^7.12.6" + "@babel/types" "^7.21.3" + entities "^4.4.0" -"@svgr/plugin-jsx@^5.5.0": - version "5.5.0" - resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz#1aa8cd798a1db7173ac043466d7b52236b369000" - integrity sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA== +"@svgr/plugin-jsx@^8.0.1": + version "8.0.1" + resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-8.0.1.tgz#b9495e06062cc0cac0e035751b69471ee328236b" + integrity sha512-bfCFb+4ZsM3UuKP2t7KmDwn6YV8qVn9HIQJmau6xeQb/iV65Rpi7NBNBWA2hcCd4GKoCqG8hpaaDk5FDR0eH+g== dependencies: - "@babel/core" "^7.12.3" - "@svgr/babel-preset" "^5.5.0" - "@svgr/hast-util-to-babel-ast" "^5.5.0" - svg-parser "^2.0.2" + "@babel/core" "^7.21.3" + "@svgr/babel-preset" "8.0.0" + "@svgr/hast-util-to-babel-ast" "8.0.0" + 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@^8.0.1": + version "8.0.1" + resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-8.0.1.tgz#df0199313fdc88c3d7cd8e0dff16695e9718548c" + integrity sha512-29OJ1QmJgnohQHDAgAuY2h21xWD6TZiXji+hnx+W635RiXTAlHTbjrZDktfqzkN0bOeQEtNe+xgq73/XeWFfSg== dependencies: - cosmiconfig "^5.2.0" - merge-deep "^3.0.2" - svgo "^1.2.1" + cosmiconfig "^8.1.3" + deepmerge "^4.3.1" + svgo "^3.0.2" "@szmarczak/http-timer@^1.1.2": version "1.1.2" @@ -6372,17 +6422,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-deep@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" @@ -6876,7 +6915,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== @@ -6919,7 +6958,7 @@ cosmiconfig@^7.0.1: path-type "^4.0.0" yaml "^1.10.0" -cosmiconfig@^8.2.0: +cosmiconfig@^8.1.3, cosmiconfig@^8.2.0: version "8.2.0" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.2.0.tgz#f7d17c56a590856cd1e7cee98734dca272b0d8fd" integrity sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ== @@ -7054,6 +7093,17 @@ css-select@^4.1.3: domutils "^2.8.0" nth-check "^2.0.1" +css-select@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.1.0.tgz#b8ebd6554c3637ccc76688804ad3f6a6fdaea8a6" + integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg== + dependencies: + boolbase "^1.0.0" + css-what "^6.1.0" + domhandler "^5.0.2" + domutils "^3.0.1" + nth-check "^2.0.1" + css-select@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" @@ -7088,7 +7138,7 @@ css-tree@^1.1.2, css-tree@^1.1.3: mdn-data "2.0.14" source-map "^0.6.1" -css-tree@^2.3.1: +css-tree@^2.2.1, css-tree@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-2.3.1.tgz#10264ce1e5442e8572fc82fbe490644ff54b5c20" integrity sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw== @@ -7096,6 +7146,14 @@ css-tree@^2.3.1: mdn-data "2.0.30" source-map-js "^1.0.1" +css-tree@~2.2.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-2.2.1.tgz#36115d382d60afd271e377f9c5f67d02bd48c032" + integrity sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA== + dependencies: + mdn-data "2.0.28" + source-map-js "^1.0.1" + css-what@2.1: version "2.1.3" resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" @@ -7106,7 +7164,7 @@ css-what@^3.2.1: resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.3.0.tgz#10fec696a9ece2e591ac772d759aacabac38cd39" integrity sha512-pv9JPyatiPaQ6pf4OvD/dbfm0o5LviWmwxNWzblYf/1u9QZd0ihV+PMwy5jdQWQ3349kZmKEx9WXuSka2dM4cg== -css-what@^6.0.1: +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" integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== @@ -7212,6 +7270,13 @@ csso@^4.2.0: dependencies: css-tree "^1.1.2" +csso@^5.0.5: + version "5.0.5" + resolved "https://registry.yarnpkg.com/csso/-/csso-5.0.5.tgz#f9b7fe6cc6ac0b7d90781bb16d5e9874303e2ca6" + integrity sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ== + dependencies: + css-tree "~2.2.0" + cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": version "0.3.8" resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" @@ -7596,10 +7661,10 @@ deep-is@^0.1.3, deep-is@~0.1.3: resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= -deepmerge@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" - integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== +deepmerge@^4.2.2, deepmerge@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" + integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== default-browser-id@3.0.0: version "3.0.0" @@ -7889,12 +7954,21 @@ dom-serializer@^1.0.1: domhandler "^4.2.0" entities "^2.0.0" +dom-serializer@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" + integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== + dependencies: + domelementtype "^2.3.0" + domhandler "^5.0.2" + entities "^4.2.0" + domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: version "1.3.1" resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== -domelementtype@^2.0.1, domelementtype@^2.2.0: +domelementtype@^2.0.1, domelementtype@^2.2.0, domelementtype@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== @@ -7920,6 +7994,13 @@ domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.1: dependencies: domelementtype "^2.2.0" +domhandler@^5.0.2, domhandler@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" + integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== + dependencies: + domelementtype "^2.3.0" + domutils@1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" @@ -7945,6 +8026,15 @@ domutils@^2.5.2, domutils@^2.8.0: domelementtype "^2.2.0" domhandler "^4.2.0" +domutils@^3.0.1: + version "3.1.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e" + integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA== + dependencies: + dom-serializer "^2.0.0" + domelementtype "^2.3.0" + domhandler "^5.0.3" + dot-case@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" @@ -8196,6 +8286,11 @@ entities@^2.0.0: resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== +entities@^4.2.0, entities@^4.4.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" + integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== + env-paths@^2.2.0: version "2.2.1" resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" @@ -9514,23 +9609,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" @@ -11358,7 +11441,7 @@ is-boolean-object@^1.0.1, 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== @@ -11675,7 +11758,7 @@ is-plain-object@5.0.0, is-plain-object@^5.0.0: resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== -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== @@ -12790,13 +12873,6 @@ keyv@^4.0.0: dependencies: json-buffer "3.0.1" -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" @@ -12872,12 +12948,7 @@ lazy-ass@1.6.0, 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= @@ -13432,6 +13503,11 @@ mdn-data@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.28: + version "2.0.28" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.28.tgz#5ec48e7bef120654539069e1ae4ddc81ca490eba" + integrity sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g== + mdn-data@2.0.30: version "2.0.30" resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.30.tgz#ce4df6f80af6cfbe218ecd5c552ba13c4dfa08cc" @@ -13608,15 +13684,6 @@ meow@^9.0.0: type-fest "^0.18.0" yargs-parser "^20.2.3" -merge-deep@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/merge-deep/-/merge-deep-3.0.2.tgz#f39fa100a4f1bd34ff29f7d2bf4508fbb8d83ad2" - integrity sha512-T7qC8kg4Zoti1cFd8Cr0M+qaZfOwjlPDEdZIIPPB2JZctjaPM4fX+i7HOId69tAti2fvO6X5ldfYUONDODsrkA== - 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" @@ -13929,14 +13996,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" @@ -17802,16 +17861,6 @@ setprototypeof@1.2.0: resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== -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" - shallow-clone@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" @@ -17959,6 +18008,14 @@ smart-buffer@^4.2.0: resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== +snake-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c" + integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + snapdragon-node@^2.0.1: version "2.1.1" resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" @@ -18803,17 +18860,17 @@ supports-preserve-symlinks-flag@^1.0.0: resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== -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== svg-tags@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764" integrity sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q= -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== @@ -18845,6 +18902,18 @@ svgo@^2.8.0: picocolors "^1.0.0" stable "^0.1.8" +svgo@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.0.2.tgz#5e99eeea42c68ee0dc46aa16da093838c262fe0a" + integrity sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ== + dependencies: + "@trysound/sax" "0.2.0" + commander "^7.2.0" + css-select "^5.1.0" + css-tree "^2.2.1" + csso "^5.0.5" + picocolors "^1.0.0" + symbol-tree@^3.2.2: version "3.2.4" resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" From cd09361a6f00032d86be759035dfdef0d88baaf1 Mon Sep 17 00:00:00 2001 From: Constance Chen Date: Wed, 14 Jun 2023 11:06:40 -0700 Subject: [PATCH 2/5] Run `yarn compile-icons` --- src/components/icon/assets/accessibility.tsx | 7 +- src/components/icon/assets/aggregate.tsx | 9 +-- src/components/icon/assets/analyzeEvent.tsx | 11 ++- src/components/icon/assets/annotation.tsx | 7 +- src/components/icon/assets/apm_trace.tsx | 7 +- src/components/icon/assets/app_add_data.tsx | 9 +-- .../icon/assets/app_advanced_settings.tsx | 17 ++--- src/components/icon/assets/app_agent.tsx | 11 ++- src/components/icon/assets/app_apm.tsx | 7 +- src/components/icon/assets/app_app_search.tsx | 9 +-- src/components/icon/assets/app_auditbeat.tsx | 7 +- src/components/icon/assets/app_canvas.tsx | 9 +-- src/components/icon/assets/app_cases.tsx | 17 ++--- src/components/icon/assets/app_code.tsx | 9 +-- src/components/icon/assets/app_console.tsx | 11 ++- .../assets/app_cross_cluster_replication.tsx | 7 +- src/components/icon/assets/app_dashboard.tsx | 13 ++-- src/components/icon/assets/app_devtools.tsx | 9 +-- src/components/icon/assets/app_discover.tsx | 9 +-- src/components/icon/assets/app_ems.tsx | 9 +-- src/components/icon/assets/app_filebeat.tsx | 9 +-- src/components/icon/assets/app_fleet.tsx | 17 ++--- src/components/icon/assets/app_gis.tsx | 9 +-- src/components/icon/assets/app_graph.tsx | 9 +-- src/components/icon/assets/app_grok.tsx | 9 +-- src/components/icon/assets/app_heartbeat.tsx | 9 +-- .../icon/assets/app_index_management.tsx | 9 +-- .../icon/assets/app_index_pattern.tsx | 9 +-- .../icon/assets/app_index_rollup.tsx | 13 ++-- src/components/icon/assets/app_lens.tsx | 9 +-- src/components/icon/assets/app_logs.tsx | 9 +-- src/components/icon/assets/app_management.tsx | 9 +-- src/components/icon/assets/app_metricbeat.tsx | 11 ++- src/components/icon/assets/app_metrics.tsx | 9 +-- src/components/icon/assets/app_ml.tsx | 9 +-- src/components/icon/assets/app_monitoring.tsx | 9 +-- src/components/icon/assets/app_notebook.tsx | 9 +-- src/components/icon/assets/app_packetbeat.tsx | 9 +-- src/components/icon/assets/app_pipeline.tsx | 9 +-- .../icon/assets/app_recently_viewed.tsx | 9 +-- src/components/icon/assets/app_reporting.tsx | 11 ++- .../icon/assets/app_saved_objects.tsx | 9 +-- .../icon/assets/app_search_profiler.tsx | 11 ++- src/components/icon/assets/app_security.tsx | 9 +-- .../icon/assets/app_security_analytics.tsx | 7 +- src/components/icon/assets/app_spaces.tsx | 9 +-- src/components/icon/assets/app_sql.tsx | 9 +-- src/components/icon/assets/app_timelion.tsx | 9 +-- .../icon/assets/app_upgrade_assistant.tsx | 9 +-- src/components/icon/assets/app_uptime.tsx | 9 +-- .../icon/assets/app_users_roles.tsx | 9 +-- src/components/icon/assets/app_visualize.tsx | 9 +-- .../assets/app_vulnerability_management.tsx | 9 ++- src/components/icon/assets/app_watches.tsx | 13 ++-- .../icon/assets/app_workplace_search.tsx | 9 +-- src/components/icon/assets/apps.tsx | 7 +- src/components/icon/assets/arrowEnd.tsx | 11 ++- src/components/icon/assets/arrowStart.tsx | 11 ++- src/components/icon/assets/arrow_down.tsx | 11 ++- src/components/icon/assets/arrow_left.tsx | 11 ++- src/components/icon/assets/arrow_right.tsx | 11 ++- src/components/icon/assets/arrow_up.tsx | 11 ++- src/components/icon/assets/article.tsx | 13 ++-- src/components/icon/assets/asterisk.tsx | 9 +-- src/components/icon/assets/beaker.tsx | 7 +- src/components/icon/assets/bell.tsx | 7 +- src/components/icon/assets/bellSlash.tsx | 7 +- src/components/icon/assets/beta.tsx | 9 +-- src/components/icon/assets/bolt.tsx | 7 +- .../icon/assets/boxes_horizontal.tsx | 7 +- src/components/icon/assets/boxes_vertical.tsx | 7 +- src/components/icon/assets/branch.tsx | 7 +- src/components/icon/assets/branchUser.tsx | 9 +-- src/components/icon/assets/broom.tsx | 7 +- src/components/icon/assets/brush.tsx | 7 +- src/components/icon/assets/bug.tsx | 7 +- src/components/icon/assets/bullseye.tsx | 7 +- src/components/icon/assets/calendar.tsx | 9 +-- src/components/icon/assets/check.tsx | 7 +- .../icon/assets/checkInCircleFilled.tsx | 7 +- src/components/icon/assets/cheer.tsx | 7 +- src/components/icon/assets/clock.tsx | 7 +- src/components/icon/assets/cloudDrizzle.tsx | 7 +- src/components/icon/assets/cloudStormy.tsx | 7 +- src/components/icon/assets/cloudSunny.tsx | 7 +- src/components/icon/assets/cluster.tsx | 11 ++- src/components/icon/assets/color.tsx | 9 +-- src/components/icon/assets/compute.tsx | 7 +- src/components/icon/assets/console.tsx | 7 +- src/components/icon/assets/container.tsx | 9 +-- .../icon/assets/continuityAbove.tsx | 9 +-- .../icon/assets/continuityAboveBelow.tsx | 9 +-- .../icon/assets/continuityBelow.tsx | 9 +-- .../icon/assets/continuityWithin.tsx | 9 +-- .../icon/assets/controls_horizontal.tsx | 7 +- .../icon/assets/controls_vertical.tsx | 7 +- src/components/icon/assets/copy.tsx | 9 +-- src/components/icon/assets/copy_clipboard.tsx | 9 +-- src/components/icon/assets/cross.tsx | 7 +- src/components/icon/assets/crosshairs.tsx | 7 +- src/components/icon/assets/currency.tsx | 7 +- src/components/icon/assets/cut.tsx | 7 +- src/components/icon/assets/database.tsx | 7 +- src/components/icon/assets/desktop.tsx | 9 +-- src/components/icon/assets/discuss.tsx | 13 ++-- src/components/icon/assets/document.tsx | 7 +- src/components/icon/assets/documentEdit.tsx | 7 +- src/components/icon/assets/documentation.tsx | 13 ++-- src/components/icon/assets/documents.tsx | 7 +- src/components/icon/assets/dot.tsx | 5 +- src/components/icon/assets/dotInCircle.tsx | 13 ++-- .../icon/assets/doubleArrowLeft.tsx | 13 ++-- .../icon/assets/doubleArrowRight.tsx | 13 ++-- src/components/icon/assets/download.tsx | 9 +-- .../assets/editorDistributeHorizontal.tsx | 7 +- .../icon/assets/editorDistributeVertical.tsx | 7 +- .../icon/assets/editorItemAlignBottom.tsx | 7 +- .../icon/assets/editorItemAlignCenter.tsx | 7 +- .../icon/assets/editorItemAlignLeft.tsx | 7 +- .../icon/assets/editorItemAlignMiddle.tsx | 7 +- .../icon/assets/editorItemAlignRight.tsx | 7 +- .../icon/assets/editorItemAlignTop.tsx | 7 +- .../icon/assets/editorPositionBottomLeft.tsx | 7 +- .../icon/assets/editorPositionBottomRight.tsx | 7 +- .../icon/assets/editorPositionTopLeft.tsx | 7 +- .../icon/assets/editorPositionTopRight.tsx | 7 +- .../icon/assets/editor_align_center.tsx | 7 +- .../icon/assets/editor_align_left.tsx | 7 +- .../icon/assets/editor_align_right.tsx | 7 +- src/components/icon/assets/editor_bold.tsx | 7 +- .../icon/assets/editor_checklist.tsx | 7 +- .../icon/assets/editor_code_block.tsx | 7 +- src/components/icon/assets/editor_comment.tsx | 7 +- src/components/icon/assets/editor_heading.tsx | 7 +- src/components/icon/assets/editor_italic.tsx | 7 +- src/components/icon/assets/editor_link.tsx | 7 +- .../icon/assets/editor_ordered_list.tsx | 7 +- src/components/icon/assets/editor_redo.tsx | 7 +- src/components/icon/assets/editor_strike.tsx | 7 +- src/components/icon/assets/editor_table.tsx | 7 +- .../icon/assets/editor_underline.tsx | 7 +- src/components/icon/assets/editor_undo.tsx | 7 +- .../icon/assets/editor_unordered_list.tsx | 7 +- src/components/icon/assets/email.tsx | 7 +- src/components/icon/assets/empty.tsx | 5 +- src/components/icon/assets/eql.tsx | 9 +-- src/components/icon/assets/eraser.tsx | 11 ++- src/components/icon/assets/error.tsx | 7 +- src/components/icon/assets/exit.tsx | 7 +- src/components/icon/assets/expand.tsx | 7 +- src/components/icon/assets/expandMini.tsx | 7 +- src/components/icon/assets/export.tsx | 7 +- src/components/icon/assets/eye.tsx | 7 +- src/components/icon/assets/eye_closed.tsx | 7 +- src/components/icon/assets/face_happy.tsx | 7 +- src/components/icon/assets/face_neutral.tsx | 9 +-- src/components/icon/assets/face_sad.tsx | 7 +- src/components/icon/assets/filter.tsx | 7 +- src/components/icon/assets/filterExclude.tsx | 11 ++- src/components/icon/assets/filterIgnore.tsx | 7 +- src/components/icon/assets/filterInCircle.tsx | 7 +- src/components/icon/assets/filterInclude.tsx | 7 +- src/components/icon/assets/flag.tsx | 7 +- src/components/icon/assets/fold.tsx | 9 +-- src/components/icon/assets/folder_check.tsx | 9 +-- src/components/icon/assets/folder_closed.tsx | 9 +-- .../icon/assets/folder_exclamation.tsx | 9 +-- src/components/icon/assets/folder_open.tsx | 9 +-- src/components/icon/assets/frameNext.tsx | 7 +- src/components/icon/assets/framePrevious.tsx | 7 +- src/components/icon/assets/fullScreenExit.tsx | 9 +-- src/components/icon/assets/full_screen.tsx | 7 +- src/components/icon/assets/function.tsx | 7 +- src/components/icon/assets/gear.tsx | 7 +- src/components/icon/assets/glasses.tsx | 7 +- src/components/icon/assets/globe.tsx | 7 +- src/components/icon/assets/grab.tsx | 7 +- .../icon/assets/grab_horizontal.tsx | 7 +- src/components/icon/assets/grid.tsx | 7 +- src/components/icon/assets/heart.tsx | 7 +- src/components/icon/assets/heatmap.tsx | 7 +- src/components/icon/assets/help.tsx | 7 +- src/components/icon/assets/home.tsx | 7 +- src/components/icon/assets/iInCircle.tsx | 7 +- src/components/icon/assets/image.tsx | 7 +- src/components/icon/assets/import.tsx | 7 +- src/components/icon/assets/indexTemporary.tsx | 9 +-- src/components/icon/assets/index_close.tsx | 7 +- src/components/icon/assets/index_edit.tsx | 7 +- src/components/icon/assets/index_flush.tsx | 7 +- src/components/icon/assets/index_mapping.tsx | 7 +- src/components/icon/assets/index_open.tsx | 7 +- src/components/icon/assets/index_runtime.tsx | 7 +- src/components/icon/assets/index_settings.tsx | 11 ++- src/components/icon/assets/infinity.tsx | 7 +- src/components/icon/assets/inputOutput.tsx | 5 +- src/components/icon/assets/inspect.tsx | 7 +- src/components/icon/assets/invert.tsx | 9 +-- src/components/icon/assets/ip.tsx | 7 +- src/components/icon/assets/keyboard.tsx | 7 +- src/components/icon/assets/kql_field.tsx | 7 +- src/components/icon/assets/kql_function.tsx | 7 +- src/components/icon/assets/kql_operand.tsx | 7 +- src/components/icon/assets/kql_selector.tsx | 7 +- src/components/icon/assets/kql_value.tsx | 7 +- src/components/icon/assets/kubernetesNode.tsx | 11 ++- src/components/icon/assets/kubernetesPod.tsx | 11 ++- src/components/icon/assets/launch.tsx | 13 ++-- src/components/icon/assets/layers.tsx | 13 ++-- src/components/icon/assets/lettering.tsx | 7 +- src/components/icon/assets/lineDashed.tsx | 7 +- src/components/icon/assets/lineDotted.tsx | 7 +- src/components/icon/assets/lineSolid.tsx | 7 +- src/components/icon/assets/link.tsx | 7 +- src/components/icon/assets/list.tsx | 7 +- src/components/icon/assets/list_add.tsx | 7 +- src/components/icon/assets/lock.tsx | 7 +- src/components/icon/assets/lockOpen.tsx | 7 +- src/components/icon/assets/logo_aerospike.tsx | 7 +- src/components/icon/assets/logo_apache.tsx | 19 +++-- .../icon/assets/logo_app_search.tsx | 11 ++- src/components/icon/assets/logo_aws.tsx | 11 ++- src/components/icon/assets/logo_aws_mono.tsx | 11 ++- src/components/icon/assets/logo_azure.tsx | 7 +- .../icon/assets/logo_azure_mono.tsx | 7 +- src/components/icon/assets/logo_beats.tsx | 9 +-- .../icon/assets/logo_business_analytics.tsx | 7 +- src/components/icon/assets/logo_ceph.tsx | 11 ++- src/components/icon/assets/logo_cloud.tsx | 11 ++- src/components/icon/assets/logo_cloud_ece.tsx | 11 ++- src/components/icon/assets/logo_code.tsx | 11 ++- .../icon/assets/logo_codesandbox.tsx | 7 +- src/components/icon/assets/logo_couchbase.tsx | 7 +- src/components/icon/assets/logo_docker.tsx | 9 +-- .../icon/assets/logo_dropwizard.tsx | 23 +++--- src/components/icon/assets/logo_elastic.tsx | 25 +++---- .../icon/assets/logo_elastic_stack.tsx | 11 ++- .../icon/assets/logo_elasticsearch.tsx | 11 ++- .../icon/assets/logo_enterprise_search.tsx | 13 ++-- src/components/icon/assets/logo_etcd.tsx | 7 +- src/components/icon/assets/logo_gcp.tsx | 17 ++--- src/components/icon/assets/logo_gcp_mono.tsx | 7 +- src/components/icon/assets/logo_github.tsx | 7 +- src/components/icon/assets/logo_gmail.tsx | 19 +++-- src/components/icon/assets/logo_golang.tsx | 75 +++++++++---------- src/components/icon/assets/logo_google_g.tsx | 17 ++--- src/components/icon/assets/logo_haproxy.tsx | 49 ++++++------ src/components/icon/assets/logo_ibm.tsx | 17 ++--- src/components/icon/assets/logo_ibm_mono.tsx | 7 +- src/components/icon/assets/logo_kafka.tsx | 7 +- src/components/icon/assets/logo_kibana.tsx | 9 +-- .../icon/assets/logo_kubernetes.tsx | 9 +-- src/components/icon/assets/logo_logging.tsx | 9 +-- src/components/icon/assets/logo_logstash.tsx | 7 +- src/components/icon/assets/logo_maps.tsx | 11 ++- src/components/icon/assets/logo_memcached.tsx | 25 +++---- src/components/icon/assets/logo_metrics.tsx | 11 ++- src/components/icon/assets/logo_mongodb.tsx | 13 ++-- src/components/icon/assets/logo_mysql.tsx | 9 +-- src/components/icon/assets/logo_nginx.tsx | 9 +-- .../icon/assets/logo_observability.tsx | 13 ++-- src/components/icon/assets/logo_osquery.tsx | 5 +- src/components/icon/assets/logo_php.tsx | 23 +++--- src/components/icon/assets/logo_postgres.tsx | 13 ++-- .../icon/assets/logo_prometheus.tsx | 7 +- src/components/icon/assets/logo_rabbitmq.tsx | 7 +- src/components/icon/assets/logo_redis.tsx | 29 ++++--- src/components/icon/assets/logo_security.tsx | 11 ++- .../icon/assets/logo_site_search.tsx | 9 +-- src/components/icon/assets/logo_sketch.tsx | 17 ++--- src/components/icon/assets/logo_slack.tsx | 13 ++-- src/components/icon/assets/logo_uptime.tsx | 11 ++- .../assets/logo_vulnerability_management.tsx | 32 ++++---- src/components/icon/assets/logo_webhook.tsx | 11 ++- src/components/icon/assets/logo_windows.tsx | 7 +- .../icon/assets/logo_workplace_search.tsx | 13 ++-- .../icon/assets/logstash_filter.tsx | 7 +- src/components/icon/assets/logstash_if.tsx | 7 +- src/components/icon/assets/logstash_input.tsx | 7 +- .../icon/assets/logstash_output.tsx | 7 +- src/components/icon/assets/logstash_queue.tsx | 7 +- src/components/icon/assets/magnet.tsx | 7 +- .../icon/assets/magnifyWithExclamation.tsx | 7 +- .../icon/assets/magnifyWithMinus.tsx | 7 +- .../icon/assets/magnifyWithPlus.tsx | 7 +- src/components/icon/assets/map_marker.tsx | 7 +- src/components/icon/assets/memory.tsx | 7 +- src/components/icon/assets/menu.tsx | 11 ++- src/components/icon/assets/menuDown.tsx | 7 +- src/components/icon/assets/menuLeft.tsx | 7 +- src/components/icon/assets/menuRight.tsx | 7 +- src/components/icon/assets/menuUp.tsx | 7 +- src/components/icon/assets/merge.tsx | 7 +- src/components/icon/assets/minimize.tsx | 7 +- src/components/icon/assets/minus.tsx | 5 +- .../icon/assets/minus_in_circle.tsx | 7 +- .../icon/assets/minus_in_circle_filled.tsx | 7 +- .../icon/assets/ml_classification_job.tsx | 9 +-- .../icon/assets/ml_create_advanced_job.tsx | 7 +- .../assets/ml_create_multi_metric_job.tsx | 9 +-- .../icon/assets/ml_create_population_job.tsx | 9 +-- .../assets/ml_create_single_metric_job.tsx | 9 +-- .../icon/assets/ml_data_visualizer.tsx | 9 +-- .../icon/assets/ml_outlier_detection_job.tsx | 7 +- .../icon/assets/ml_regression_job.tsx | 9 +-- src/components/icon/assets/mobile.tsx | 11 ++- src/components/icon/assets/moon.tsx | 7 +- src/components/icon/assets/namespace.tsx | 11 ++- src/components/icon/assets/nested.tsx | 7 +- src/components/icon/assets/node.tsx | 7 +- src/components/icon/assets/number.tsx | 9 +-- src/components/icon/assets/offline.tsx | 7 +- src/components/icon/assets/online.tsx | 7 +- src/components/icon/assets/package.tsx | 7 +- src/components/icon/assets/pageSelect.tsx | 9 +-- src/components/icon/assets/pagesSelect.tsx | 9 +-- src/components/icon/assets/paint.tsx | 7 +- src/components/icon/assets/paper_clip.tsx | 9 +-- src/components/icon/assets/partial.tsx | 7 +- src/components/icon/assets/pause.tsx | 7 +- src/components/icon/assets/payment.tsx | 7 +- src/components/icon/assets/pencil.tsx | 7 +- src/components/icon/assets/percent.tsx | 7 +- src/components/icon/assets/pin.tsx | 7 +- src/components/icon/assets/pin_filled.tsx | 7 +- src/components/icon/assets/pivot.tsx | 7 +- src/components/icon/assets/play.tsx | 7 +- src/components/icon/assets/playFilled.tsx | 7 +- src/components/icon/assets/plus.tsx | 7 +- src/components/icon/assets/plus_in_circle.tsx | 7 +- .../icon/assets/plus_in_circle_filled.tsx | 7 +- src/components/icon/assets/popout.tsx | 7 +- src/components/icon/assets/push.tsx | 11 ++- .../icon/assets/question_in_circle.tsx | 7 +- src/components/icon/assets/quote.tsx | 9 +-- src/components/icon/assets/refresh.tsx | 7 +- src/components/icon/assets/reporter.tsx | 9 +-- src/components/icon/assets/return_key.tsx | 7 +- src/components/icon/assets/save.tsx | 7 +- src/components/icon/assets/scale.tsx | 7 +- src/components/icon/assets/search.tsx | 7 +- src/components/icon/assets/securitySignal.tsx | 9 +-- .../icon/assets/securitySignalDetected.tsx | 9 +-- .../icon/assets/securitySignalResolved.tsx | 9 +-- src/components/icon/assets/sessionViewer.tsx | 7 +- src/components/icon/assets/shard.tsx | 7 +- src/components/icon/assets/share.tsx | 7 +- src/components/icon/assets/snowflake.tsx | 7 +- src/components/icon/assets/sortAscending.tsx | 7 +- src/components/icon/assets/sortDescending.tsx | 7 +- src/components/icon/assets/sortLeft.tsx | 7 +- src/components/icon/assets/sortRight.tsx | 7 +- src/components/icon/assets/sort_down.tsx | 7 +- src/components/icon/assets/sort_up.tsx | 7 +- src/components/icon/assets/sortable.tsx | 7 +- src/components/icon/assets/spaces.tsx | 9 +-- src/components/icon/assets/starPlusEmpty.tsx | 7 +- src/components/icon/assets/starPlusFilled.tsx | 7 +- src/components/icon/assets/star_empty.tsx | 7 +- .../icon/assets/star_empty_space.tsx | 7 +- src/components/icon/assets/star_filled.tsx | 7 +- .../icon/assets/star_filled_space.tsx | 7 +- .../icon/assets/star_minus_empty.tsx | 7 +- .../icon/assets/star_minus_filled.tsx | 7 +- src/components/icon/assets/stats.tsx | 7 +- src/components/icon/assets/stop.tsx | 7 +- src/components/icon/assets/stop_filled.tsx | 7 +- src/components/icon/assets/stop_slash.tsx | 7 +- src/components/icon/assets/storage.tsx | 7 +- src/components/icon/assets/string.tsx | 9 +-- src/components/icon/assets/submodule.tsx | 11 ++- src/components/icon/assets/sun.tsx | 9 +-- src/components/icon/assets/swatch_input.tsx | 13 ++-- src/components/icon/assets/symlink.tsx | 11 ++- .../icon/assets/tableOfContents.tsx | 7 +- .../icon/assets/table_density_compact.tsx | 7 +- .../icon/assets/table_density_expanded.tsx | 7 +- .../icon/assets/table_density_normal.tsx | 7 +- src/components/icon/assets/tag.tsx | 7 +- src/components/icon/assets/tear.tsx | 7 +- src/components/icon/assets/temperature.tsx | 9 +-- src/components/icon/assets/timeRefresh.tsx | 13 ++-- src/components/icon/assets/timeline.tsx | 9 +-- .../icon/assets/timelineWithArrow.tsx | 7 +- src/components/icon/assets/timeslider.tsx | 7 +- src/components/icon/assets/tokenAlias.tsx | 7 +- .../icon/assets/tokenAnnotation.tsx | 7 +- src/components/icon/assets/tokenArray.tsx | 7 +- src/components/icon/assets/tokenBinary.tsx | 7 +- src/components/icon/assets/tokenBoolean.tsx | 7 +- src/components/icon/assets/tokenClass.tsx | 7 +- .../icon/assets/tokenCompletionSuggester.tsx | 9 +-- src/components/icon/assets/tokenConstant.tsx | 7 +- src/components/icon/assets/tokenDate.tsx | 7 +- .../icon/assets/tokenDenseVector.tsx | 7 +- src/components/icon/assets/tokenElement.tsx | 7 +- src/components/icon/assets/tokenEnum.tsx | 5 +- .../icon/assets/tokenEnumMember.tsx | 7 +- src/components/icon/assets/tokenEvent.tsx | 7 +- src/components/icon/assets/tokenException.tsx | 7 +- src/components/icon/assets/tokenField.tsx | 5 +- src/components/icon/assets/tokenFile.tsx | 7 +- src/components/icon/assets/tokenFlattened.tsx | 7 +- src/components/icon/assets/tokenFunction.tsx | 7 +- src/components/icon/assets/tokenGeo.tsx | 7 +- src/components/icon/assets/tokenHistogram.tsx | 5 +- src/components/icon/assets/tokenIP.tsx | 7 +- src/components/icon/assets/tokenInterface.tsx | 7 +- src/components/icon/assets/tokenJoin.tsx | 7 +- src/components/icon/assets/tokenKey.tsx | 7 +- src/components/icon/assets/tokenKeyword.tsx | 5 +- src/components/icon/assets/tokenMethod.tsx | 7 +- .../icon/assets/tokenMetricCounter.tsx | 7 +- .../icon/assets/tokenMetricGauge.tsx | 7 +- src/components/icon/assets/tokenModule.tsx | 11 ++- src/components/icon/assets/tokenNamespace.tsx | 9 +-- src/components/icon/assets/tokenNested.tsx | 9 +-- src/components/icon/assets/tokenNull.tsx | 7 +- src/components/icon/assets/tokenNumber.tsx | 7 +- src/components/icon/assets/tokenObject.tsx | 7 +- src/components/icon/assets/tokenOperator.tsx | 7 +- src/components/icon/assets/tokenPackage.tsx | 7 +- src/components/icon/assets/tokenParameter.tsx | 7 +- .../icon/assets/tokenPercolator.tsx | 7 +- src/components/icon/assets/tokenProperty.tsx | 7 +- src/components/icon/assets/tokenRange.tsx | 7 +- .../icon/assets/tokenRankFeature.tsx | 7 +- .../icon/assets/tokenRankFeatures.tsx | 7 +- src/components/icon/assets/tokenRepo.tsx | 7 +- .../icon/assets/tokenSearchType.tsx | 9 +-- src/components/icon/assets/tokenShape.tsx | 7 +- src/components/icon/assets/tokenString.tsx | 7 +- src/components/icon/assets/tokenStruct.tsx | 7 +- src/components/icon/assets/tokenSymbol.tsx | 7 +- src/components/icon/assets/tokenTag.tsx | 11 ++- src/components/icon/assets/tokenText.tsx | 9 +-- .../icon/assets/tokenTokenCount.tsx | 7 +- src/components/icon/assets/tokenVariable.tsx | 7 +- src/components/icon/assets/training.tsx | 7 +- src/components/icon/assets/trash.tsx | 7 +- src/components/icon/assets/unfold.tsx | 9 +-- src/components/icon/assets/unlink.tsx | 9 +-- src/components/icon/assets/user.tsx | 9 +-- src/components/icon/assets/userAvatar.tsx | 9 +-- src/components/icon/assets/users.tsx | 11 ++- src/components/icon/assets/vector.tsx | 7 +- src/components/icon/assets/videoPlayer.tsx | 7 +- src/components/icon/assets/vis_area.tsx | 7 +- .../icon/assets/vis_area_stacked.tsx | 7 +- .../icon/assets/vis_bar_horizontal.tsx | 7 +- .../assets/vis_bar_horizontal_stacked.tsx | 7 +- .../icon/assets/vis_bar_vertical.tsx | 7 +- .../icon/assets/vis_bar_vertical_stacked.tsx | 7 +- src/components/icon/assets/vis_gauge.tsx | 7 +- src/components/icon/assets/vis_goal.tsx | 7 +- src/components/icon/assets/vis_line.tsx | 7 +- .../icon/assets/vis_map_coordinate.tsx | 7 +- src/components/icon/assets/vis_map_region.tsx | 7 +- src/components/icon/assets/vis_metric.tsx | 7 +- src/components/icon/assets/vis_pie.tsx | 7 +- src/components/icon/assets/vis_table.tsx | 7 +- src/components/icon/assets/vis_tag_cloud.tsx | 7 +- src/components/icon/assets/vis_text.tsx | 7 +- src/components/icon/assets/vis_timelion.tsx | 7 +- src/components/icon/assets/vis_vega.tsx | 7 +- .../icon/assets/vis_visual_builder.tsx | 7 +- src/components/icon/assets/warning.tsx | 9 +-- src/components/icon/assets/wordWrap.tsx | 9 +-- .../icon/assets/wordWrapDisabled.tsx | 9 +-- src/components/icon/assets/wrench.tsx | 7 +- 470 files changed, 1795 insertions(+), 2274 deletions(-) diff --git a/src/components/icon/assets/accessibility.tsx b/src/components/icon/assets/accessibility.tsx index 81caea2ac48..a8b0356f211 100644 --- a/src/components/icon/assets/accessibility.tsx +++ b/src/components/icon/assets/accessibility.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAccessibility = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAccessibility; diff --git a/src/components/icon/assets/aggregate.tsx b/src/components/icon/assets/aggregate.tsx index 4c94ae6c509..3607f2297ee 100644 --- a/src/components/icon/assets/aggregate.tsx +++ b/src/components/icon/assets/aggregate.tsx @@ -9,30 +9,29 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAggregate = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconAggregate; diff --git a/src/components/icon/assets/analyzeEvent.tsx b/src/components/icon/assets/analyzeEvent.tsx index 19110dedac4..f1215a9a06e 100644 --- a/src/components/icon/assets/analyzeEvent.tsx +++ b/src/components/icon/assets/analyzeEvent.tsx @@ -9,32 +9,31 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAnalyzeEvent = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconAnalyzeEvent; diff --git a/src/components/icon/assets/annotation.tsx b/src/components/icon/assets/annotation.tsx index d750fe96b88..601806b6da1 100644 --- a/src/components/icon/assets/annotation.tsx +++ b/src/components/icon/assets/annotation.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAnnotation = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAnnotation; diff --git a/src/components/icon/assets/apm_trace.tsx b/src/components/icon/assets/apm_trace.tsx index 15720a726c4..81570f1c472 100644 --- a/src/components/icon/assets/apm_trace.tsx +++ b/src/components/icon/assets/apm_trace.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconApmTrace = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconApmTrace; diff --git a/src/components/icon/assets/app_add_data.tsx b/src/components/icon/assets/app_add_data.tsx index b8df1b8e735..f864505746d 100644 --- a/src/components/icon/assets/app_add_data.tsx +++ b/src/components/icon/assets/app_add_data.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppAddData = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppAddData; diff --git a/src/components/icon/assets/app_advanced_settings.tsx b/src/components/icon/assets/app_advanced_settings.tsx index 5f6c50b4f3d..f74ff4a9cf7 100644 --- a/src/components/icon/assets/app_advanced_settings.tsx +++ b/src/components/icon/assets/app_advanced_settings.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppAdvancedSettings = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + - + - + ); - export const icon = EuiIconAppAdvancedSettings; diff --git a/src/components/icon/assets/app_agent.tsx b/src/components/icon/assets/app_agent.tsx index 65e4037cbf4..08ddb74e2b6 100644 --- a/src/components/icon/assets/app_agent.tsx +++ b/src/components/icon/assets/app_agent.tsx @@ -9,31 +9,30 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppAgent = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppAgent; diff --git a/src/components/icon/assets/app_apm.tsx b/src/components/icon/assets/app_apm.tsx index 636dbd2c4d7..60d4c25bdaa 100644 --- a/src/components/icon/assets/app_apm.tsx +++ b/src/components/icon/assets/app_apm.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppApm = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconAppApm; diff --git a/src/components/icon/assets/app_app_search.tsx b/src/components/icon/assets/app_app_search.tsx index 76e0fc5fcbf..28c26f3ec6c 100644 --- a/src/components/icon/assets/app_app_search.tsx +++ b/src/components/icon/assets/app_app_search.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppAppSearch = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconAppAppSearch; diff --git a/src/components/icon/assets/app_auditbeat.tsx b/src/components/icon/assets/app_auditbeat.tsx index ec79469304d..a4b76f07f20 100644 --- a/src/components/icon/assets/app_auditbeat.tsx +++ b/src/components/icon/assets/app_auditbeat.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppAuditbeat = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppAuditbeat; diff --git a/src/components/icon/assets/app_canvas.tsx b/src/components/icon/assets/app_canvas.tsx index fc28f36c6cd..8fbd4c943bb 100644 --- a/src/components/icon/assets/app_canvas.tsx +++ b/src/components/icon/assets/app_canvas.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppCanvas = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppCanvas; diff --git a/src/components/icon/assets/app_cases.tsx b/src/components/icon/assets/app_cases.tsx index 63c1ee4c395..6e8c85690f2 100644 --- a/src/components/icon/assets/app_cases.tsx +++ b/src/components/icon/assets/app_cases.tsx @@ -9,38 +9,37 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppCases = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppCases; diff --git a/src/components/icon/assets/app_code.tsx b/src/components/icon/assets/app_code.tsx index f56b9a682a3..0b31d8af5df 100644 --- a/src/components/icon/assets/app_code.tsx +++ b/src/components/icon/assets/app_code.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppCode = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppCode; diff --git a/src/components/icon/assets/app_console.tsx b/src/components/icon/assets/app_console.tsx index 72700f43ebf..18c27843014 100644 --- a/src/components/icon/assets/app_console.tsx +++ b/src/components/icon/assets/app_console.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppConsole = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + - + ); - export const icon = EuiIconAppConsole; diff --git a/src/components/icon/assets/app_cross_cluster_replication.tsx b/src/components/icon/assets/app_cross_cluster_replication.tsx index 952d4544a88..f2baaaedd8c 100644 --- a/src/components/icon/assets/app_cross_cluster_replication.tsx +++ b/src/components/icon/assets/app_cross_cluster_replication.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppCrossClusterReplication = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconAppCrossClusterReplication; diff --git a/src/components/icon/assets/app_dashboard.tsx b/src/components/icon/assets/app_dashboard.tsx index f2626f8579d..a2dc8fdcdae 100644 --- a/src/components/icon/assets/app_dashboard.tsx +++ b/src/components/icon/assets/app_dashboard.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppDashboard = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + - + ); - export const icon = EuiIconAppDashboard; diff --git a/src/components/icon/assets/app_devtools.tsx b/src/components/icon/assets/app_devtools.tsx index de16b3a0f83..ca221d5868d 100644 --- a/src/components/icon/assets/app_devtools.tsx +++ b/src/components/icon/assets/app_devtools.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppDevtools = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + ); - export const icon = EuiIconAppDevtools; diff --git a/src/components/icon/assets/app_discover.tsx b/src/components/icon/assets/app_discover.tsx index 043fa6dbe43..fe9ef1ecd41 100644 --- a/src/components/icon/assets/app_discover.tsx +++ b/src/components/icon/assets/app_discover.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppDiscover = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppDiscover; diff --git a/src/components/icon/assets/app_ems.tsx b/src/components/icon/assets/app_ems.tsx index 59fe9e6e560..822cfe0f858 100644 --- a/src/components/icon/assets/app_ems.tsx +++ b/src/components/icon/assets/app_ems.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppEms = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + ); - export const icon = EuiIconAppEms; diff --git a/src/components/icon/assets/app_filebeat.tsx b/src/components/icon/assets/app_filebeat.tsx index da6179857a8..5b293a48b7c 100644 --- a/src/components/icon/assets/app_filebeat.tsx +++ b/src/components/icon/assets/app_filebeat.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppFilebeat = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppFilebeat; diff --git a/src/components/icon/assets/app_fleet.tsx b/src/components/icon/assets/app_fleet.tsx index afaa1c9431e..669406aa82b 100644 --- a/src/components/icon/assets/app_fleet.tsx +++ b/src/components/icon/assets/app_fleet.tsx @@ -9,41 +9,40 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppFleet = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppFleet; diff --git a/src/components/icon/assets/app_gis.tsx b/src/components/icon/assets/app_gis.tsx index d9a777664bc..90f06c1ae27 100644 --- a/src/components/icon/assets/app_gis.tsx +++ b/src/components/icon/assets/app_gis.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppGis = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppGis; diff --git a/src/components/icon/assets/app_graph.tsx b/src/components/icon/assets/app_graph.tsx index e5ee029da9b..66ef5a0c744 100644 --- a/src/components/icon/assets/app_graph.tsx +++ b/src/components/icon/assets/app_graph.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppGraph = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppGraph; diff --git a/src/components/icon/assets/app_grok.tsx b/src/components/icon/assets/app_grok.tsx index ef25904bfb1..db0a0c5c784 100644 --- a/src/components/icon/assets/app_grok.tsx +++ b/src/components/icon/assets/app_grok.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppGrok = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppGrok; diff --git a/src/components/icon/assets/app_heartbeat.tsx b/src/components/icon/assets/app_heartbeat.tsx index 5485549bec1..cd9297a784c 100644 --- a/src/components/icon/assets/app_heartbeat.tsx +++ b/src/components/icon/assets/app_heartbeat.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppHeartbeat = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppHeartbeat; diff --git a/src/components/icon/assets/app_index_management.tsx b/src/components/icon/assets/app_index_management.tsx index e0d918ed52e..8b2acb6c92d 100644 --- a/src/components/icon/assets/app_index_management.tsx +++ b/src/components/icon/assets/app_index_management.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppIndexManagement = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} - + ); - export const icon = EuiIconAppIndexManagement; diff --git a/src/components/icon/assets/app_index_pattern.tsx b/src/components/icon/assets/app_index_pattern.tsx index a68ff4bc2b3..70de61e778f 100644 --- a/src/components/icon/assets/app_index_pattern.tsx +++ b/src/components/icon/assets/app_index_pattern.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppIndexPattern = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppIndexPattern; diff --git a/src/components/icon/assets/app_index_rollup.tsx b/src/components/icon/assets/app_index_rollup.tsx index 6b1d535d28e..ec5ed46a063 100644 --- a/src/components/icon/assets/app_index_rollup.tsx +++ b/src/components/icon/assets/app_index_rollup.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppIndexRollup = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + - + ); - export const icon = EuiIconAppIndexRollup; diff --git a/src/components/icon/assets/app_lens.tsx b/src/components/icon/assets/app_lens.tsx index fdc6de589c7..bf6a2cc8458 100644 --- a/src/components/icon/assets/app_lens.tsx +++ b/src/components/icon/assets/app_lens.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppLens = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppLens; diff --git a/src/components/icon/assets/app_logs.tsx b/src/components/icon/assets/app_logs.tsx index ccf6c81ff99..b82a5b19de2 100644 --- a/src/components/icon/assets/app_logs.tsx +++ b/src/components/icon/assets/app_logs.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppLogs = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppLogs; diff --git a/src/components/icon/assets/app_management.tsx b/src/components/icon/assets/app_management.tsx index 79691edb2b8..6e2fb81e593 100644 --- a/src/components/icon/assets/app_management.tsx +++ b/src/components/icon/assets/app_management.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppManagement = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppManagement; diff --git a/src/components/icon/assets/app_metricbeat.tsx b/src/components/icon/assets/app_metricbeat.tsx index e662da2e5f9..dade369d4ba 100644 --- a/src/components/icon/assets/app_metricbeat.tsx +++ b/src/components/icon/assets/app_metricbeat.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppMetricbeat = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + - + ); - export const icon = EuiIconAppMetricbeat; diff --git a/src/components/icon/assets/app_metrics.tsx b/src/components/icon/assets/app_metrics.tsx index 41a512ec0d9..d3674b4f16e 100644 --- a/src/components/icon/assets/app_metrics.tsx +++ b/src/components/icon/assets/app_metrics.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppMetrics = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppMetrics; diff --git a/src/components/icon/assets/app_ml.tsx b/src/components/icon/assets/app_ml.tsx index 9d9a7789294..a3a5beddf28 100644 --- a/src/components/icon/assets/app_ml.tsx +++ b/src/components/icon/assets/app_ml.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppMl = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppMl; diff --git a/src/components/icon/assets/app_monitoring.tsx b/src/components/icon/assets/app_monitoring.tsx index ff9c572a5b6..67d94c2062f 100644 --- a/src/components/icon/assets/app_monitoring.tsx +++ b/src/components/icon/assets/app_monitoring.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppMonitoring = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppMonitoring; diff --git a/src/components/icon/assets/app_notebook.tsx b/src/components/icon/assets/app_notebook.tsx index a3304316f32..6a938aa4e86 100644 --- a/src/components/icon/assets/app_notebook.tsx +++ b/src/components/icon/assets/app_notebook.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppNotebook = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + - + ); - export const icon = EuiIconAppNotebook; diff --git a/src/components/icon/assets/app_packetbeat.tsx b/src/components/icon/assets/app_packetbeat.tsx index 18d8efcc2b0..83ce89c0912 100644 --- a/src/components/icon/assets/app_packetbeat.tsx +++ b/src/components/icon/assets/app_packetbeat.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppPacketbeat = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppPacketbeat; diff --git a/src/components/icon/assets/app_pipeline.tsx b/src/components/icon/assets/app_pipeline.tsx index 24a2bc9f28c..c5e0225764f 100644 --- a/src/components/icon/assets/app_pipeline.tsx +++ b/src/components/icon/assets/app_pipeline.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppPipeline = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + ); - export const icon = EuiIconAppPipeline; diff --git a/src/components/icon/assets/app_recently_viewed.tsx b/src/components/icon/assets/app_recently_viewed.tsx index 0368e1b903d..2589ddc1873 100644 --- a/src/components/icon/assets/app_recently_viewed.tsx +++ b/src/components/icon/assets/app_recently_viewed.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppRecentlyViewed = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppRecentlyViewed; diff --git a/src/components/icon/assets/app_reporting.tsx b/src/components/icon/assets/app_reporting.tsx index 206d0b83218..70a183e5390 100644 --- a/src/components/icon/assets/app_reporting.tsx +++ b/src/components/icon/assets/app_reporting.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppReporting = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + ); - export const icon = EuiIconAppReporting; diff --git a/src/components/icon/assets/app_saved_objects.tsx b/src/components/icon/assets/app_saved_objects.tsx index adff2f0dc58..7b2571ffea9 100644 --- a/src/components/icon/assets/app_saved_objects.tsx +++ b/src/components/icon/assets/app_saved_objects.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppSavedObjects = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppSavedObjects; diff --git a/src/components/icon/assets/app_search_profiler.tsx b/src/components/icon/assets/app_search_profiler.tsx index 7a70f46c9f8..d18348049bd 100644 --- a/src/components/icon/assets/app_search_profiler.tsx +++ b/src/components/icon/assets/app_search_profiler.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppSearchProfiler = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + - + - + ); - export const icon = EuiIconAppSearchProfiler; diff --git a/src/components/icon/assets/app_security.tsx b/src/components/icon/assets/app_security.tsx index e8cbc4bef8c..0c56cb463b9 100644 --- a/src/components/icon/assets/app_security.tsx +++ b/src/components/icon/assets/app_security.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppSecurity = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppSecurity; diff --git a/src/components/icon/assets/app_security_analytics.tsx b/src/components/icon/assets/app_security_analytics.tsx index fae1c281389..10635ec07dc 100644 --- a/src/components/icon/assets/app_security_analytics.tsx +++ b/src/components/icon/assets/app_security_analytics.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppSecurityAnalytics = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconAppSecurityAnalytics; diff --git a/src/components/icon/assets/app_spaces.tsx b/src/components/icon/assets/app_spaces.tsx index dd3cad164e9..95600563616 100644 --- a/src/components/icon/assets/app_spaces.tsx +++ b/src/components/icon/assets/app_spaces.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppSpaces = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppSpaces; diff --git a/src/components/icon/assets/app_sql.tsx b/src/components/icon/assets/app_sql.tsx index 91dbfd10b96..f87c596d41c 100644 --- a/src/components/icon/assets/app_sql.tsx +++ b/src/components/icon/assets/app_sql.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppSql = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppSql; diff --git a/src/components/icon/assets/app_timelion.tsx b/src/components/icon/assets/app_timelion.tsx index 04ed9170315..32bcbd102be 100644 --- a/src/components/icon/assets/app_timelion.tsx +++ b/src/components/icon/assets/app_timelion.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppTimelion = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + ); - export const icon = EuiIconAppTimelion; diff --git a/src/components/icon/assets/app_upgrade_assistant.tsx b/src/components/icon/assets/app_upgrade_assistant.tsx index 999953d4dc4..ee82fe83da5 100644 --- a/src/components/icon/assets/app_upgrade_assistant.tsx +++ b/src/components/icon/assets/app_upgrade_assistant.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppUpgradeAssistant = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppUpgradeAssistant; diff --git a/src/components/icon/assets/app_uptime.tsx b/src/components/icon/assets/app_uptime.tsx index f14c3570d7e..eb2f1c54139 100644 --- a/src/components/icon/assets/app_uptime.tsx +++ b/src/components/icon/assets/app_uptime.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppUptime = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppUptime; diff --git a/src/components/icon/assets/app_users_roles.tsx b/src/components/icon/assets/app_users_roles.tsx index ed92782be19..17bec66fe51 100644 --- a/src/components/icon/assets/app_users_roles.tsx +++ b/src/components/icon/assets/app_users_roles.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppUsersRoles = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppUsersRoles; diff --git a/src/components/icon/assets/app_visualize.tsx b/src/components/icon/assets/app_visualize.tsx index 110558b76cc..50b8b11a626 100644 --- a/src/components/icon/assets/app_visualize.tsx +++ b/src/components/icon/assets/app_visualize.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppVisualize = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAppVisualize; diff --git a/src/components/icon/assets/app_vulnerability_management.tsx b/src/components/icon/assets/app_vulnerability_management.tsx index a7996133341..2710a23c170 100644 --- a/src/components/icon/assets/app_vulnerability_management.tsx +++ b/src/components/icon/assets/app_vulnerability_management.tsx @@ -9,6 +9,7 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; @@ -17,21 +18,21 @@ const EuiIconAppVulnerabilityManagement = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); export const icon = EuiIconAppVulnerabilityManagement; diff --git a/src/components/icon/assets/app_watches.tsx b/src/components/icon/assets/app_watches.tsx index 5bead1488ce..00069911ea6 100644 --- a/src/components/icon/assets/app_watches.tsx +++ b/src/components/icon/assets/app_watches.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppWatches = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - - + + + ); - export const icon = EuiIconAppWatches; diff --git a/src/components/icon/assets/app_workplace_search.tsx b/src/components/icon/assets/app_workplace_search.tsx index 02253fb0a62..06332ca7c1f 100644 --- a/src/components/icon/assets/app_workplace_search.tsx +++ b/src/components/icon/assets/app_workplace_search.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAppWorkplaceSearch = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconAppWorkplaceSearch; diff --git a/src/components/icon/assets/apps.tsx b/src/components/icon/assets/apps.tsx index e9d65977f1c..cf1d1a9374f 100644 --- a/src/components/icon/assets/apps.tsx +++ b/src/components/icon/assets/apps.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconApps = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconApps; diff --git a/src/components/icon/assets/arrowEnd.tsx b/src/components/icon/assets/arrowEnd.tsx index 3f7be6539b7..51e57cbea2e 100644 --- a/src/components/icon/assets/arrowEnd.tsx +++ b/src/components/icon/assets/arrowEnd.tsx @@ -9,32 +9,31 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconArrowEnd = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconArrowEnd; diff --git a/src/components/icon/assets/arrowStart.tsx b/src/components/icon/assets/arrowStart.tsx index 82178603b7f..e83d3b88563 100644 --- a/src/components/icon/assets/arrowStart.tsx +++ b/src/components/icon/assets/arrowStart.tsx @@ -9,32 +9,31 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconArrowStart = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconArrowStart; diff --git a/src/components/icon/assets/arrow_down.tsx b/src/components/icon/assets/arrow_down.tsx index 87f244926dd..d0fbc45d250 100644 --- a/src/components/icon/assets/arrow_down.tsx +++ b/src/components/icon/assets/arrow_down.tsx @@ -9,32 +9,31 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconArrowDown = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconArrowDown; diff --git a/src/components/icon/assets/arrow_left.tsx b/src/components/icon/assets/arrow_left.tsx index 4bc490a5f3e..c8bb809440e 100644 --- a/src/components/icon/assets/arrow_left.tsx +++ b/src/components/icon/assets/arrow_left.tsx @@ -9,32 +9,31 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconArrowLeft = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconArrowLeft; diff --git a/src/components/icon/assets/arrow_right.tsx b/src/components/icon/assets/arrow_right.tsx index 05b3617c867..dd1fbbb53f0 100644 --- a/src/components/icon/assets/arrow_right.tsx +++ b/src/components/icon/assets/arrow_right.tsx @@ -9,32 +9,31 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconArrowRight = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconArrowRight; diff --git a/src/components/icon/assets/arrow_up.tsx b/src/components/icon/assets/arrow_up.tsx index 5d4235963cc..9c96ddaf21a 100644 --- a/src/components/icon/assets/arrow_up.tsx +++ b/src/components/icon/assets/arrow_up.tsx @@ -9,32 +9,31 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconArrowUp = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconArrowUp; diff --git a/src/components/icon/assets/article.tsx b/src/components/icon/assets/article.tsx index 6fe679ecd64..cf13aa49aae 100644 --- a/src/components/icon/assets/article.tsx +++ b/src/components/icon/assets/article.tsx @@ -9,33 +9,32 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconArticle = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconArticle; diff --git a/src/components/icon/assets/asterisk.tsx b/src/components/icon/assets/asterisk.tsx index 01a49f1a7b9..74f6317ee88 100644 --- a/src/components/icon/assets/asterisk.tsx +++ b/src/components/icon/assets/asterisk.tsx @@ -9,27 +9,26 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconAsterisk = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconAsterisk; diff --git a/src/components/icon/assets/beaker.tsx b/src/components/icon/assets/beaker.tsx index 355fe0ae68b..470c20c7357 100644 --- a/src/components/icon/assets/beaker.tsx +++ b/src/components/icon/assets/beaker.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconBeaker = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconBeaker; diff --git a/src/components/icon/assets/bell.tsx b/src/components/icon/assets/bell.tsx index 2cd52dd1837..658e6508cc4 100644 --- a/src/components/icon/assets/bell.tsx +++ b/src/components/icon/assets/bell.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconBell = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconBell; diff --git a/src/components/icon/assets/bellSlash.tsx b/src/components/icon/assets/bellSlash.tsx index 4eb7810a0c8..1a7e0f38735 100644 --- a/src/components/icon/assets/bellSlash.tsx +++ b/src/components/icon/assets/bellSlash.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconBellSlash = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconBellSlash; diff --git a/src/components/icon/assets/beta.tsx b/src/components/icon/assets/beta.tsx index 32a71051c54..e7c639bac0e 100644 --- a/src/components/icon/assets/beta.tsx +++ b/src/components/icon/assets/beta.tsx @@ -9,27 +9,26 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconBeta = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconBeta; diff --git a/src/components/icon/assets/bolt.tsx b/src/components/icon/assets/bolt.tsx index 5259d9402c7..07b364ae8cb 100644 --- a/src/components/icon/assets/bolt.tsx +++ b/src/components/icon/assets/bolt.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconBolt = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconBolt; diff --git a/src/components/icon/assets/boxes_horizontal.tsx b/src/components/icon/assets/boxes_horizontal.tsx index bc1e2290a9d..915cf7eb2c1 100644 --- a/src/components/icon/assets/boxes_horizontal.tsx +++ b/src/components/icon/assets/boxes_horizontal.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconBoxesHorizontal = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconBoxesHorizontal; diff --git a/src/components/icon/assets/boxes_vertical.tsx b/src/components/icon/assets/boxes_vertical.tsx index 6ab9944f3b3..a11ae78f452 100644 --- a/src/components/icon/assets/boxes_vertical.tsx +++ b/src/components/icon/assets/boxes_vertical.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconBoxesVertical = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconBoxesVertical; diff --git a/src/components/icon/assets/branch.tsx b/src/components/icon/assets/branch.tsx index 16c700a34cf..2f4c721b776 100644 --- a/src/components/icon/assets/branch.tsx +++ b/src/components/icon/assets/branch.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconBranch = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconBranch; diff --git a/src/components/icon/assets/branchUser.tsx b/src/components/icon/assets/branchUser.tsx index 7e65c980a63..3f90d5a6880 100644 --- a/src/components/icon/assets/branchUser.tsx +++ b/src/components/icon/assets/branchUser.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconBranchUser = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} - + ); - export const icon = EuiIconBranchUser; diff --git a/src/components/icon/assets/broom.tsx b/src/components/icon/assets/broom.tsx index e6f69147c04..a72e4666845 100644 --- a/src/components/icon/assets/broom.tsx +++ b/src/components/icon/assets/broom.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconBroom = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconBroom; diff --git a/src/components/icon/assets/brush.tsx b/src/components/icon/assets/brush.tsx index c5d137f7d23..6684caff68a 100644 --- a/src/components/icon/assets/brush.tsx +++ b/src/components/icon/assets/brush.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconBrush = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconBrush; diff --git a/src/components/icon/assets/bug.tsx b/src/components/icon/assets/bug.tsx index 7b7ce2afeab..a45e51fdbe7 100644 --- a/src/components/icon/assets/bug.tsx +++ b/src/components/icon/assets/bug.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconBug = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconBug; diff --git a/src/components/icon/assets/bullseye.tsx b/src/components/icon/assets/bullseye.tsx index 304cfe2ac05..60718f86a38 100644 --- a/src/components/icon/assets/bullseye.tsx +++ b/src/components/icon/assets/bullseye.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconBullseye = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconBullseye; diff --git a/src/components/icon/assets/calendar.tsx b/src/components/icon/assets/calendar.tsx index 14caa504788..9115db7be88 100644 --- a/src/components/icon/assets/calendar.tsx +++ b/src/components/icon/assets/calendar.tsx @@ -9,30 +9,29 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconCalendar = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconCalendar; diff --git a/src/components/icon/assets/check.tsx b/src/components/icon/assets/check.tsx index b7d2e991db2..93b0a320221 100644 --- a/src/components/icon/assets/check.tsx +++ b/src/components/icon/assets/check.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconCheck = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconCheck; diff --git a/src/components/icon/assets/checkInCircleFilled.tsx b/src/components/icon/assets/checkInCircleFilled.tsx index e2fcd233074..8ee91dbbd84 100644 --- a/src/components/icon/assets/checkInCircleFilled.tsx +++ b/src/components/icon/assets/checkInCircleFilled.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconCheckInCircleFilled = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconCheckInCircleFilled; diff --git a/src/components/icon/assets/cheer.tsx b/src/components/icon/assets/cheer.tsx index fc893261968..c6c3cb9b97b 100644 --- a/src/components/icon/assets/cheer.tsx +++ b/src/components/icon/assets/cheer.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconCheer = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconCheer; diff --git a/src/components/icon/assets/clock.tsx b/src/components/icon/assets/clock.tsx index 53293797a07..aeae537fc7b 100644 --- a/src/components/icon/assets/clock.tsx +++ b/src/components/icon/assets/clock.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconClock = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconClock; diff --git a/src/components/icon/assets/cloudDrizzle.tsx b/src/components/icon/assets/cloudDrizzle.tsx index 4ee8fdcf6f2..1844d0e3b6c 100644 --- a/src/components/icon/assets/cloudDrizzle.tsx +++ b/src/components/icon/assets/cloudDrizzle.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconCloudDrizzle = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconCloudDrizzle; diff --git a/src/components/icon/assets/cloudStormy.tsx b/src/components/icon/assets/cloudStormy.tsx index b77f174400d..2ae4038366e 100644 --- a/src/components/icon/assets/cloudStormy.tsx +++ b/src/components/icon/assets/cloudStormy.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconCloudStormy = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconCloudStormy; diff --git a/src/components/icon/assets/cloudSunny.tsx b/src/components/icon/assets/cloudSunny.tsx index 17638cdc4c8..cd235d06f81 100644 --- a/src/components/icon/assets/cloudSunny.tsx +++ b/src/components/icon/assets/cloudSunny.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconCloudSunny = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconCloudSunny; diff --git a/src/components/icon/assets/cluster.tsx b/src/components/icon/assets/cluster.tsx index 01604f88574..19a8a27926e 100644 --- a/src/components/icon/assets/cluster.tsx +++ b/src/components/icon/assets/cluster.tsx @@ -9,32 +9,31 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconCluster = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconCluster; diff --git a/src/components/icon/assets/color.tsx b/src/components/icon/assets/color.tsx index 1e87e9c8e9d..6ccffbc06d6 100644 --- a/src/components/icon/assets/color.tsx +++ b/src/components/icon/assets/color.tsx @@ -9,27 +9,26 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconColor = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconColor; diff --git a/src/components/icon/assets/compute.tsx b/src/components/icon/assets/compute.tsx index 149eb5eeaf3..45a9f1d8156 100644 --- a/src/components/icon/assets/compute.tsx +++ b/src/components/icon/assets/compute.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconCompute = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconCompute; diff --git a/src/components/icon/assets/console.tsx b/src/components/icon/assets/console.tsx index f3ae0e2a854..fbd117d7948 100644 --- a/src/components/icon/assets/console.tsx +++ b/src/components/icon/assets/console.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconConsole = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconConsole; diff --git a/src/components/icon/assets/container.tsx b/src/components/icon/assets/container.tsx index 513ad36e2ed..ee6feb27f1a 100644 --- a/src/components/icon/assets/container.tsx +++ b/src/components/icon/assets/container.tsx @@ -9,19 +9,19 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconContainer = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconContainer; diff --git a/src/components/icon/assets/continuityAbove.tsx b/src/components/icon/assets/continuityAbove.tsx index 6a81b7a7658..394415e2ed2 100644 --- a/src/components/icon/assets/continuityAbove.tsx +++ b/src/components/icon/assets/continuityAbove.tsx @@ -9,27 +9,26 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconContinuityAbove = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconContinuityAbove; diff --git a/src/components/icon/assets/continuityAboveBelow.tsx b/src/components/icon/assets/continuityAboveBelow.tsx index 771f603ece2..4bdcedb6afe 100644 --- a/src/components/icon/assets/continuityAboveBelow.tsx +++ b/src/components/icon/assets/continuityAboveBelow.tsx @@ -9,27 +9,26 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconContinuityAboveBelow = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconContinuityAboveBelow; diff --git a/src/components/icon/assets/continuityBelow.tsx b/src/components/icon/assets/continuityBelow.tsx index 1be60d3d67e..82429b3d954 100644 --- a/src/components/icon/assets/continuityBelow.tsx +++ b/src/components/icon/assets/continuityBelow.tsx @@ -9,27 +9,26 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconContinuityBelow = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconContinuityBelow; diff --git a/src/components/icon/assets/continuityWithin.tsx b/src/components/icon/assets/continuityWithin.tsx index a303a031323..ffffc8c21d7 100644 --- a/src/components/icon/assets/continuityWithin.tsx +++ b/src/components/icon/assets/continuityWithin.tsx @@ -9,27 +9,26 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconContinuityWithin = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconContinuityWithin; diff --git a/src/components/icon/assets/controls_horizontal.tsx b/src/components/icon/assets/controls_horizontal.tsx index 5c5f35fd658..07499e6003d 100644 --- a/src/components/icon/assets/controls_horizontal.tsx +++ b/src/components/icon/assets/controls_horizontal.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconControlsHorizontal = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconControlsHorizontal; diff --git a/src/components/icon/assets/controls_vertical.tsx b/src/components/icon/assets/controls_vertical.tsx index e5817293853..f916a4f4c56 100644 --- a/src/components/icon/assets/controls_vertical.tsx +++ b/src/components/icon/assets/controls_vertical.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconControlsVertical = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconControlsVertical; diff --git a/src/components/icon/assets/copy.tsx b/src/components/icon/assets/copy.tsx index d8f1645c77a..7cd4267cb91 100644 --- a/src/components/icon/assets/copy.tsx +++ b/src/components/icon/assets/copy.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconCopy = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + ); - export const icon = EuiIconCopy; diff --git a/src/components/icon/assets/copy_clipboard.tsx b/src/components/icon/assets/copy_clipboard.tsx index c4273b971b1..0d148a9d5af 100644 --- a/src/components/icon/assets/copy_clipboard.tsx +++ b/src/components/icon/assets/copy_clipboard.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconCopyClipboard = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + ); - export const icon = EuiIconCopyClipboard; diff --git a/src/components/icon/assets/cross.tsx b/src/components/icon/assets/cross.tsx index b67354683d7..f60049b76f9 100644 --- a/src/components/icon/assets/cross.tsx +++ b/src/components/icon/assets/cross.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconCross = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconCross; diff --git a/src/components/icon/assets/crosshairs.tsx b/src/components/icon/assets/crosshairs.tsx index 8d43d7ccf10..2420ebc24d7 100644 --- a/src/components/icon/assets/crosshairs.tsx +++ b/src/components/icon/assets/crosshairs.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconCrosshairs = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconCrosshairs; diff --git a/src/components/icon/assets/currency.tsx b/src/components/icon/assets/currency.tsx index 3099a0e3488..ab0c722d9ab 100644 --- a/src/components/icon/assets/currency.tsx +++ b/src/components/icon/assets/currency.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconCurrency = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconCurrency; diff --git a/src/components/icon/assets/cut.tsx b/src/components/icon/assets/cut.tsx index c94b0fe4377..f6a0226e9ee 100644 --- a/src/components/icon/assets/cut.tsx +++ b/src/components/icon/assets/cut.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconCut = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconCut; diff --git a/src/components/icon/assets/database.tsx b/src/components/icon/assets/database.tsx index 23cd80457e4..8e75ed560bc 100644 --- a/src/components/icon/assets/database.tsx +++ b/src/components/icon/assets/database.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconDatabase = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconDatabase; diff --git a/src/components/icon/assets/desktop.tsx b/src/components/icon/assets/desktop.tsx index 20192ead699..5195d14524c 100644 --- a/src/components/icon/assets/desktop.tsx +++ b/src/components/icon/assets/desktop.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconDesktop = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} - + ); - export const icon = EuiIconDesktop; diff --git a/src/components/icon/assets/discuss.tsx b/src/components/icon/assets/discuss.tsx index 1d97c91b651..2fa7f23b92e 100644 --- a/src/components/icon/assets/discuss.tsx +++ b/src/components/icon/assets/discuss.tsx @@ -9,29 +9,28 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconDiscuss = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + ); - export const icon = EuiIconDiscuss; diff --git a/src/components/icon/assets/document.tsx b/src/components/icon/assets/document.tsx index a469cb9ad27..2143abf567d 100644 --- a/src/components/icon/assets/document.tsx +++ b/src/components/icon/assets/document.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconDocument = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconDocument; diff --git a/src/components/icon/assets/documentEdit.tsx b/src/components/icon/assets/documentEdit.tsx index a7e4bd17fb1..9ce400756f7 100644 --- a/src/components/icon/assets/documentEdit.tsx +++ b/src/components/icon/assets/documentEdit.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconDocumentEdit = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconDocumentEdit; diff --git a/src/components/icon/assets/documentation.tsx b/src/components/icon/assets/documentation.tsx index 01bc4285543..b6d0b603f3d 100644 --- a/src/components/icon/assets/documentation.tsx +++ b/src/components/icon/assets/documentation.tsx @@ -9,29 +9,28 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconDocumentation = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - - + + + ); - export const icon = EuiIconDocumentation; diff --git a/src/components/icon/assets/documents.tsx b/src/components/icon/assets/documents.tsx index df3d8c242ba..f59fa9fcd6c 100644 --- a/src/components/icon/assets/documents.tsx +++ b/src/components/icon/assets/documents.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconDocuments = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconDocuments; diff --git a/src/components/icon/assets/dot.tsx b/src/components/icon/assets/dot.tsx index 00faf53d6ed..59618dfda16 100644 --- a/src/components/icon/assets/dot.tsx +++ b/src/components/icon/assets/dot.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconDot = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconDot; diff --git a/src/components/icon/assets/dotInCircle.tsx b/src/components/icon/assets/dotInCircle.tsx index f4798f0141a..771e01bc2ed 100644 --- a/src/components/icon/assets/dotInCircle.tsx +++ b/src/components/icon/assets/dotInCircle.tsx @@ -9,33 +9,32 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconDotInCircle = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconDotInCircle; diff --git a/src/components/icon/assets/doubleArrowLeft.tsx b/src/components/icon/assets/doubleArrowLeft.tsx index 035c041251e..4da4d0cc603 100644 --- a/src/components/icon/assets/doubleArrowLeft.tsx +++ b/src/components/icon/assets/doubleArrowLeft.tsx @@ -9,37 +9,36 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconDoubleArrowLeft = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconDoubleArrowLeft; diff --git a/src/components/icon/assets/doubleArrowRight.tsx b/src/components/icon/assets/doubleArrowRight.tsx index bb711011b73..5818a2410ed 100644 --- a/src/components/icon/assets/doubleArrowRight.tsx +++ b/src/components/icon/assets/doubleArrowRight.tsx @@ -9,37 +9,36 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconDoubleArrowRight = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconDoubleArrowRight; diff --git a/src/components/icon/assets/download.tsx b/src/components/icon/assets/download.tsx index f3850f53ec5..78a553634f8 100644 --- a/src/components/icon/assets/download.tsx +++ b/src/components/icon/assets/download.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconDownload = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + ); - export const icon = EuiIconDownload; diff --git a/src/components/icon/assets/editorDistributeHorizontal.tsx b/src/components/icon/assets/editorDistributeHorizontal.tsx index 881a78deb4f..ce505b85306 100644 --- a/src/components/icon/assets/editorDistributeHorizontal.tsx +++ b/src/components/icon/assets/editorDistributeHorizontal.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorDistributeHorizontal = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorDistributeHorizontal; diff --git a/src/components/icon/assets/editorDistributeVertical.tsx b/src/components/icon/assets/editorDistributeVertical.tsx index 2b689ea15ff..c2af22837c2 100644 --- a/src/components/icon/assets/editorDistributeVertical.tsx +++ b/src/components/icon/assets/editorDistributeVertical.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorDistributeVertical = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorDistributeVertical; diff --git a/src/components/icon/assets/editorItemAlignBottom.tsx b/src/components/icon/assets/editorItemAlignBottom.tsx index 6c51d6bede3..843b24ae104 100644 --- a/src/components/icon/assets/editorItemAlignBottom.tsx +++ b/src/components/icon/assets/editorItemAlignBottom.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorItemAlignBottom = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorItemAlignBottom; diff --git a/src/components/icon/assets/editorItemAlignCenter.tsx b/src/components/icon/assets/editorItemAlignCenter.tsx index b054dc06d38..fac2f701f88 100644 --- a/src/components/icon/assets/editorItemAlignCenter.tsx +++ b/src/components/icon/assets/editorItemAlignCenter.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorItemAlignCenter = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorItemAlignCenter; diff --git a/src/components/icon/assets/editorItemAlignLeft.tsx b/src/components/icon/assets/editorItemAlignLeft.tsx index e154c0675fd..1ae9bc35364 100644 --- a/src/components/icon/assets/editorItemAlignLeft.tsx +++ b/src/components/icon/assets/editorItemAlignLeft.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorItemAlignLeft = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorItemAlignLeft; diff --git a/src/components/icon/assets/editorItemAlignMiddle.tsx b/src/components/icon/assets/editorItemAlignMiddle.tsx index be410174027..f7544eb6bc1 100644 --- a/src/components/icon/assets/editorItemAlignMiddle.tsx +++ b/src/components/icon/assets/editorItemAlignMiddle.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorItemAlignMiddle = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorItemAlignMiddle; diff --git a/src/components/icon/assets/editorItemAlignRight.tsx b/src/components/icon/assets/editorItemAlignRight.tsx index 08f14b10776..ca796b75d00 100644 --- a/src/components/icon/assets/editorItemAlignRight.tsx +++ b/src/components/icon/assets/editorItemAlignRight.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorItemAlignRight = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorItemAlignRight; diff --git a/src/components/icon/assets/editorItemAlignTop.tsx b/src/components/icon/assets/editorItemAlignTop.tsx index 31b6784be02..b98d5cd9ff8 100644 --- a/src/components/icon/assets/editorItemAlignTop.tsx +++ b/src/components/icon/assets/editorItemAlignTop.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorItemAlignTop = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorItemAlignTop; diff --git a/src/components/icon/assets/editorPositionBottomLeft.tsx b/src/components/icon/assets/editorPositionBottomLeft.tsx index 188c970dfd2..2fff16ba38d 100644 --- a/src/components/icon/assets/editorPositionBottomLeft.tsx +++ b/src/components/icon/assets/editorPositionBottomLeft.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorPositionBottomLeft = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorPositionBottomLeft; diff --git a/src/components/icon/assets/editorPositionBottomRight.tsx b/src/components/icon/assets/editorPositionBottomRight.tsx index 15d348ab947..bd9cf8aa673 100644 --- a/src/components/icon/assets/editorPositionBottomRight.tsx +++ b/src/components/icon/assets/editorPositionBottomRight.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorPositionBottomRight = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorPositionBottomRight; diff --git a/src/components/icon/assets/editorPositionTopLeft.tsx b/src/components/icon/assets/editorPositionTopLeft.tsx index 670bd3f7019..0df75fb58ee 100644 --- a/src/components/icon/assets/editorPositionTopLeft.tsx +++ b/src/components/icon/assets/editorPositionTopLeft.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorPositionTopLeft = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorPositionTopLeft; diff --git a/src/components/icon/assets/editorPositionTopRight.tsx b/src/components/icon/assets/editorPositionTopRight.tsx index 7e1e15c1741..36ae74cc115 100644 --- a/src/components/icon/assets/editorPositionTopRight.tsx +++ b/src/components/icon/assets/editorPositionTopRight.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorPositionTopRight = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorPositionTopRight; diff --git a/src/components/icon/assets/editor_align_center.tsx b/src/components/icon/assets/editor_align_center.tsx index dce41256aed..7289988ae6e 100644 --- a/src/components/icon/assets/editor_align_center.tsx +++ b/src/components/icon/assets/editor_align_center.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorAlignCenter = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorAlignCenter; diff --git a/src/components/icon/assets/editor_align_left.tsx b/src/components/icon/assets/editor_align_left.tsx index e53d6360754..3bc3087a02b 100644 --- a/src/components/icon/assets/editor_align_left.tsx +++ b/src/components/icon/assets/editor_align_left.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorAlignLeft = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorAlignLeft; diff --git a/src/components/icon/assets/editor_align_right.tsx b/src/components/icon/assets/editor_align_right.tsx index 3e2280db685..24470d5e4dd 100644 --- a/src/components/icon/assets/editor_align_right.tsx +++ b/src/components/icon/assets/editor_align_right.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorAlignRight = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorAlignRight; diff --git a/src/components/icon/assets/editor_bold.tsx b/src/components/icon/assets/editor_bold.tsx index 61c88e7c1b0..d04602e6cd3 100644 --- a/src/components/icon/assets/editor_bold.tsx +++ b/src/components/icon/assets/editor_bold.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorBold = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorBold; diff --git a/src/components/icon/assets/editor_checklist.tsx b/src/components/icon/assets/editor_checklist.tsx index ca167a30ca4..a49fa4e8bf2 100644 --- a/src/components/icon/assets/editor_checklist.tsx +++ b/src/components/icon/assets/editor_checklist.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorChecklist = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorChecklist; diff --git a/src/components/icon/assets/editor_code_block.tsx b/src/components/icon/assets/editor_code_block.tsx index 59205d1f048..1b1d3e09a53 100644 --- a/src/components/icon/assets/editor_code_block.tsx +++ b/src/components/icon/assets/editor_code_block.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorCodeBlock = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorCodeBlock; diff --git a/src/components/icon/assets/editor_comment.tsx b/src/components/icon/assets/editor_comment.tsx index d9e6e3f85c0..4573801372b 100644 --- a/src/components/icon/assets/editor_comment.tsx +++ b/src/components/icon/assets/editor_comment.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorComment = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorComment; diff --git a/src/components/icon/assets/editor_heading.tsx b/src/components/icon/assets/editor_heading.tsx index 073b478a2c4..1b71e5df0b4 100644 --- a/src/components/icon/assets/editor_heading.tsx +++ b/src/components/icon/assets/editor_heading.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorHeading = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorHeading; diff --git a/src/components/icon/assets/editor_italic.tsx b/src/components/icon/assets/editor_italic.tsx index a9779714a16..1481c57acc9 100644 --- a/src/components/icon/assets/editor_italic.tsx +++ b/src/components/icon/assets/editor_italic.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorItalic = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorItalic; diff --git a/src/components/icon/assets/editor_link.tsx b/src/components/icon/assets/editor_link.tsx index 40b58643843..f2356b787d4 100644 --- a/src/components/icon/assets/editor_link.tsx +++ b/src/components/icon/assets/editor_link.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorLink = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorLink; diff --git a/src/components/icon/assets/editor_ordered_list.tsx b/src/components/icon/assets/editor_ordered_list.tsx index 963d72a3d9e..af5102acbba 100644 --- a/src/components/icon/assets/editor_ordered_list.tsx +++ b/src/components/icon/assets/editor_ordered_list.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorOrderedList = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorOrderedList; diff --git a/src/components/icon/assets/editor_redo.tsx b/src/components/icon/assets/editor_redo.tsx index 501dbf12346..ba9cd3a9141 100644 --- a/src/components/icon/assets/editor_redo.tsx +++ b/src/components/icon/assets/editor_redo.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorRedo = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorRedo; diff --git a/src/components/icon/assets/editor_strike.tsx b/src/components/icon/assets/editor_strike.tsx index 3eeb0b93c09..9e303f082eb 100644 --- a/src/components/icon/assets/editor_strike.tsx +++ b/src/components/icon/assets/editor_strike.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorStrike = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorStrike; diff --git a/src/components/icon/assets/editor_table.tsx b/src/components/icon/assets/editor_table.tsx index 482650d8e4b..506408b6675 100644 --- a/src/components/icon/assets/editor_table.tsx +++ b/src/components/icon/assets/editor_table.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorTable = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorTable; diff --git a/src/components/icon/assets/editor_underline.tsx b/src/components/icon/assets/editor_underline.tsx index f0b7aa05147..500218bea31 100644 --- a/src/components/icon/assets/editor_underline.tsx +++ b/src/components/icon/assets/editor_underline.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorUnderline = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorUnderline; diff --git a/src/components/icon/assets/editor_undo.tsx b/src/components/icon/assets/editor_undo.tsx index 59785adc195..01f47c31130 100644 --- a/src/components/icon/assets/editor_undo.tsx +++ b/src/components/icon/assets/editor_undo.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorUndo = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorUndo; diff --git a/src/components/icon/assets/editor_unordered_list.tsx b/src/components/icon/assets/editor_unordered_list.tsx index faadc0794d8..3deb9531322 100644 --- a/src/components/icon/assets/editor_unordered_list.tsx +++ b/src/components/icon/assets/editor_unordered_list.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEditorUnorderedList = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEditorUnorderedList; diff --git a/src/components/icon/assets/email.tsx b/src/components/icon/assets/email.tsx index 119906c24a2..acda1e62e80 100644 --- a/src/components/icon/assets/email.tsx +++ b/src/components/icon/assets/email.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEmail = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconEmail; diff --git a/src/components/icon/assets/empty.tsx b/src/components/icon/assets/empty.tsx index f271c8615ff..67e1951cdc3 100644 --- a/src/components/icon/assets/empty.tsx +++ b/src/components/icon/assets/empty.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEmpty = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconEmpty; diff --git a/src/components/icon/assets/eql.tsx b/src/components/icon/assets/eql.tsx index d5b138b74eb..754b819ad24 100644 --- a/src/components/icon/assets/eql.tsx +++ b/src/components/icon/assets/eql.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEql = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + ); - export const icon = EuiIconEql; diff --git a/src/components/icon/assets/eraser.tsx b/src/components/icon/assets/eraser.tsx index 8d7281b3e45..29d247c449d 100644 --- a/src/components/icon/assets/eraser.tsx +++ b/src/components/icon/assets/eraser.tsx @@ -9,28 +9,27 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEraser = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + ); - export const icon = EuiIconEraser; diff --git a/src/components/icon/assets/error.tsx b/src/components/icon/assets/error.tsx index b98bcce2a1d..28d43642ab6 100644 --- a/src/components/icon/assets/error.tsx +++ b/src/components/icon/assets/error.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconError = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconError; diff --git a/src/components/icon/assets/exit.tsx b/src/components/icon/assets/exit.tsx index c993769dd0f..358a0e9ea65 100644 --- a/src/components/icon/assets/exit.tsx +++ b/src/components/icon/assets/exit.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconExit = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconExit; diff --git a/src/components/icon/assets/expand.tsx b/src/components/icon/assets/expand.tsx index de08722fd1c..f9024d79be5 100644 --- a/src/components/icon/assets/expand.tsx +++ b/src/components/icon/assets/expand.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconExpand = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconExpand; diff --git a/src/components/icon/assets/expandMini.tsx b/src/components/icon/assets/expandMini.tsx index cb2a62150c4..27c20bc9404 100644 --- a/src/components/icon/assets/expandMini.tsx +++ b/src/components/icon/assets/expandMini.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconExpandMini = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconExpandMini; diff --git a/src/components/icon/assets/export.tsx b/src/components/icon/assets/export.tsx index 29199d54f83..ed7288c1fda 100644 --- a/src/components/icon/assets/export.tsx +++ b/src/components/icon/assets/export.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconExport = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconExport; diff --git a/src/components/icon/assets/eye.tsx b/src/components/icon/assets/eye.tsx index 8cc90a5b8cc..213a500ef1b 100644 --- a/src/components/icon/assets/eye.tsx +++ b/src/components/icon/assets/eye.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEye = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEye; diff --git a/src/components/icon/assets/eye_closed.tsx b/src/components/icon/assets/eye_closed.tsx index db58e9f4350..1a6e8358a92 100644 --- a/src/components/icon/assets/eye_closed.tsx +++ b/src/components/icon/assets/eye_closed.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconEyeClosed = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconEyeClosed; diff --git a/src/components/icon/assets/face_happy.tsx b/src/components/icon/assets/face_happy.tsx index 92d90e297f3..1a6ca8ef493 100644 --- a/src/components/icon/assets/face_happy.tsx +++ b/src/components/icon/assets/face_happy.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconFaceHappy = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconFaceHappy; diff --git a/src/components/icon/assets/face_neutral.tsx b/src/components/icon/assets/face_neutral.tsx index fd9f1da903a..935c0d2b8d1 100644 --- a/src/components/icon/assets/face_neutral.tsx +++ b/src/components/icon/assets/face_neutral.tsx @@ -9,30 +9,29 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconFaceNeutral = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconFaceNeutral; diff --git a/src/components/icon/assets/face_sad.tsx b/src/components/icon/assets/face_sad.tsx index 3233a4ff2f1..8710ed2a237 100644 --- a/src/components/icon/assets/face_sad.tsx +++ b/src/components/icon/assets/face_sad.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconFaceSad = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconFaceSad; diff --git a/src/components/icon/assets/filter.tsx b/src/components/icon/assets/filter.tsx index a3db92bf442..aeb94e20d55 100644 --- a/src/components/icon/assets/filter.tsx +++ b/src/components/icon/assets/filter.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconFilter = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconFilter; diff --git a/src/components/icon/assets/filterExclude.tsx b/src/components/icon/assets/filterExclude.tsx index 96f64326efe..5f3bc53d3e2 100644 --- a/src/components/icon/assets/filterExclude.tsx +++ b/src/components/icon/assets/filterExclude.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconFilterExclude = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + - + ); - export const icon = EuiIconFilterExclude; diff --git a/src/components/icon/assets/filterIgnore.tsx b/src/components/icon/assets/filterIgnore.tsx index 9f5f318adf8..21da89448bf 100644 --- a/src/components/icon/assets/filterIgnore.tsx +++ b/src/components/icon/assets/filterIgnore.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconFilterIgnore = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconFilterIgnore; diff --git a/src/components/icon/assets/filterInCircle.tsx b/src/components/icon/assets/filterInCircle.tsx index 0381d3a9b3b..f4560680f55 100644 --- a/src/components/icon/assets/filterInCircle.tsx +++ b/src/components/icon/assets/filterInCircle.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconFilterInCircle = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconFilterInCircle; diff --git a/src/components/icon/assets/filterInclude.tsx b/src/components/icon/assets/filterInclude.tsx index 84ae39a8e19..010cae4afb7 100644 --- a/src/components/icon/assets/filterInclude.tsx +++ b/src/components/icon/assets/filterInclude.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconFilterInclude = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconFilterInclude; diff --git a/src/components/icon/assets/flag.tsx b/src/components/icon/assets/flag.tsx index 0c489046de4..d433f34b7c8 100644 --- a/src/components/icon/assets/flag.tsx +++ b/src/components/icon/assets/flag.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconFlag = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconFlag; diff --git a/src/components/icon/assets/fold.tsx b/src/components/icon/assets/fold.tsx index 29275781451..6864fed2c86 100644 --- a/src/components/icon/assets/fold.tsx +++ b/src/components/icon/assets/fold.tsx @@ -9,25 +9,24 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconFold = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconFold; diff --git a/src/components/icon/assets/folder_check.tsx b/src/components/icon/assets/folder_check.tsx index 46195038847..f36dfdb5d6a 100644 --- a/src/components/icon/assets/folder_check.tsx +++ b/src/components/icon/assets/folder_check.tsx @@ -9,30 +9,29 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconFolderCheck = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconFolderCheck; diff --git a/src/components/icon/assets/folder_closed.tsx b/src/components/icon/assets/folder_closed.tsx index b08ade4c2d6..fa71db5767e 100644 --- a/src/components/icon/assets/folder_closed.tsx +++ b/src/components/icon/assets/folder_closed.tsx @@ -9,27 +9,26 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconFolderClosed = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconFolderClosed; diff --git a/src/components/icon/assets/folder_exclamation.tsx b/src/components/icon/assets/folder_exclamation.tsx index ed5355b5eee..e6b81b77ea8 100644 --- a/src/components/icon/assets/folder_exclamation.tsx +++ b/src/components/icon/assets/folder_exclamation.tsx @@ -9,30 +9,29 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconFolderExclamation = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconFolderExclamation; diff --git a/src/components/icon/assets/folder_open.tsx b/src/components/icon/assets/folder_open.tsx index fb3013848a6..fa4b5d314db 100644 --- a/src/components/icon/assets/folder_open.tsx +++ b/src/components/icon/assets/folder_open.tsx @@ -9,27 +9,26 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconFolderOpen = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconFolderOpen; diff --git a/src/components/icon/assets/frameNext.tsx b/src/components/icon/assets/frameNext.tsx index 169b9dcdff2..4efb606740e 100644 --- a/src/components/icon/assets/frameNext.tsx +++ b/src/components/icon/assets/frameNext.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconFrameNext = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconFrameNext; diff --git a/src/components/icon/assets/framePrevious.tsx b/src/components/icon/assets/framePrevious.tsx index de0450c0ae9..93740db79c0 100644 --- a/src/components/icon/assets/framePrevious.tsx +++ b/src/components/icon/assets/framePrevious.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconFramePrevious = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconFramePrevious; diff --git a/src/components/icon/assets/fullScreenExit.tsx b/src/components/icon/assets/fullScreenExit.tsx index 60dfe01538a..f6a53e9767f 100644 --- a/src/components/icon/assets/fullScreenExit.tsx +++ b/src/components/icon/assets/fullScreenExit.tsx @@ -9,27 +9,26 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconFullScreenExit = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconFullScreenExit; diff --git a/src/components/icon/assets/full_screen.tsx b/src/components/icon/assets/full_screen.tsx index dfb83142dd1..cce92397cde 100644 --- a/src/components/icon/assets/full_screen.tsx +++ b/src/components/icon/assets/full_screen.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconFullScreen = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconFullScreen; diff --git a/src/components/icon/assets/function.tsx b/src/components/icon/assets/function.tsx index e966cff88ba..043539b4ffc 100644 --- a/src/components/icon/assets/function.tsx +++ b/src/components/icon/assets/function.tsx @@ -9,21 +9,21 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconFunction = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( @@ -31,5 +31,4 @@ const EuiIconFunction = ({ ); - export const icon = EuiIconFunction; diff --git a/src/components/icon/assets/gear.tsx b/src/components/icon/assets/gear.tsx index 83ae69f0b86..a91e570ad29 100644 --- a/src/components/icon/assets/gear.tsx +++ b/src/components/icon/assets/gear.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconGear = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconGear; diff --git a/src/components/icon/assets/glasses.tsx b/src/components/icon/assets/glasses.tsx index a6183b326bb..ea6d80c0549 100644 --- a/src/components/icon/assets/glasses.tsx +++ b/src/components/icon/assets/glasses.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconGlasses = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconGlasses; diff --git a/src/components/icon/assets/globe.tsx b/src/components/icon/assets/globe.tsx index d5bd2ae5b95..82da192e03d 100644 --- a/src/components/icon/assets/globe.tsx +++ b/src/components/icon/assets/globe.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconGlobe = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconGlobe; diff --git a/src/components/icon/assets/grab.tsx b/src/components/icon/assets/grab.tsx index 5e2d6e5137d..52e808dca99 100644 --- a/src/components/icon/assets/grab.tsx +++ b/src/components/icon/assets/grab.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconGrab = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconGrab; diff --git a/src/components/icon/assets/grab_horizontal.tsx b/src/components/icon/assets/grab_horizontal.tsx index 53d6267bed6..78be08e4e82 100644 --- a/src/components/icon/assets/grab_horizontal.tsx +++ b/src/components/icon/assets/grab_horizontal.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconGrabHorizontal = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconGrabHorizontal; diff --git a/src/components/icon/assets/grid.tsx b/src/components/icon/assets/grid.tsx index 4bd6967479d..77c128c6435 100644 --- a/src/components/icon/assets/grid.tsx +++ b/src/components/icon/assets/grid.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconGrid = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconGrid; diff --git a/src/components/icon/assets/heart.tsx b/src/components/icon/assets/heart.tsx index 206dddd7bfd..bc5f77c93f0 100644 --- a/src/components/icon/assets/heart.tsx +++ b/src/components/icon/assets/heart.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconHeart = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconHeart; diff --git a/src/components/icon/assets/heatmap.tsx b/src/components/icon/assets/heatmap.tsx index 5d89f9b3adf..2e643876715 100644 --- a/src/components/icon/assets/heatmap.tsx +++ b/src/components/icon/assets/heatmap.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconHeatmap = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconHeatmap; diff --git a/src/components/icon/assets/help.tsx b/src/components/icon/assets/help.tsx index f775a317b3c..f2bb38b69c6 100644 --- a/src/components/icon/assets/help.tsx +++ b/src/components/icon/assets/help.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconHelp = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconHelp; diff --git a/src/components/icon/assets/home.tsx b/src/components/icon/assets/home.tsx index 815d78f80e8..7af68e1bd49 100644 --- a/src/components/icon/assets/home.tsx +++ b/src/components/icon/assets/home.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconHome = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconHome; diff --git a/src/components/icon/assets/iInCircle.tsx b/src/components/icon/assets/iInCircle.tsx index 3e356b8586b..34026d3058a 100644 --- a/src/components/icon/assets/iInCircle.tsx +++ b/src/components/icon/assets/iInCircle.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconIInCircle = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconIInCircle; diff --git a/src/components/icon/assets/image.tsx b/src/components/icon/assets/image.tsx index 024fa53f5d4..7040868938b 100644 --- a/src/components/icon/assets/image.tsx +++ b/src/components/icon/assets/image.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconImage = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconImage; diff --git a/src/components/icon/assets/import.tsx b/src/components/icon/assets/import.tsx index bd27b435ebe..93a9ce3a28d 100644 --- a/src/components/icon/assets/import.tsx +++ b/src/components/icon/assets/import.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconImport = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconImport; diff --git a/src/components/icon/assets/indexTemporary.tsx b/src/components/icon/assets/indexTemporary.tsx index 3d31bea84b4..301f3d6b665 100644 --- a/src/components/icon/assets/indexTemporary.tsx +++ b/src/components/icon/assets/indexTemporary.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconIndexTemporary = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + ); - export const icon = EuiIconIndexTemporary; diff --git a/src/components/icon/assets/index_close.tsx b/src/components/icon/assets/index_close.tsx index b2b2c5fe5de..eb10c9c5a88 100644 --- a/src/components/icon/assets/index_close.tsx +++ b/src/components/icon/assets/index_close.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconIndexClose = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconIndexClose; diff --git a/src/components/icon/assets/index_edit.tsx b/src/components/icon/assets/index_edit.tsx index b3fe5225bb0..47efd95530e 100644 --- a/src/components/icon/assets/index_edit.tsx +++ b/src/components/icon/assets/index_edit.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconIndexEdit = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconIndexEdit; diff --git a/src/components/icon/assets/index_flush.tsx b/src/components/icon/assets/index_flush.tsx index 7069e784d22..232cdf7c8f1 100644 --- a/src/components/icon/assets/index_flush.tsx +++ b/src/components/icon/assets/index_flush.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconIndexFlush = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconIndexFlush; diff --git a/src/components/icon/assets/index_mapping.tsx b/src/components/icon/assets/index_mapping.tsx index b3c962adbc6..8a90f251fca 100644 --- a/src/components/icon/assets/index_mapping.tsx +++ b/src/components/icon/assets/index_mapping.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconIndexMapping = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconIndexMapping; diff --git a/src/components/icon/assets/index_open.tsx b/src/components/icon/assets/index_open.tsx index 85782d94e3d..9e11f9f4b5d 100644 --- a/src/components/icon/assets/index_open.tsx +++ b/src/components/icon/assets/index_open.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconIndexOpen = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconIndexOpen; diff --git a/src/components/icon/assets/index_runtime.tsx b/src/components/icon/assets/index_runtime.tsx index 13d3d63099a..158cf2da8df 100644 --- a/src/components/icon/assets/index_runtime.tsx +++ b/src/components/icon/assets/index_runtime.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconIndexRuntime = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconIndexRuntime; diff --git a/src/components/icon/assets/index_settings.tsx b/src/components/icon/assets/index_settings.tsx index e31fd5e78b2..27c4763bb21 100644 --- a/src/components/icon/assets/index_settings.tsx +++ b/src/components/icon/assets/index_settings.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconIndexSettings = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - - + + + ); - export const icon = EuiIconIndexSettings; diff --git a/src/components/icon/assets/infinity.tsx b/src/components/icon/assets/infinity.tsx index 622df272415..d22f0336d43 100644 --- a/src/components/icon/assets/infinity.tsx +++ b/src/components/icon/assets/infinity.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconInfinity = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconInfinity; diff --git a/src/components/icon/assets/inputOutput.tsx b/src/components/icon/assets/inputOutput.tsx index 10e18f69ba1..00a8df84ec0 100644 --- a/src/components/icon/assets/inputOutput.tsx +++ b/src/components/icon/assets/inputOutput.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconInputOutput = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconInputOutput; diff --git a/src/components/icon/assets/inspect.tsx b/src/components/icon/assets/inspect.tsx index 760a251fa5c..cf26a4cdd77 100644 --- a/src/components/icon/assets/inspect.tsx +++ b/src/components/icon/assets/inspect.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconInspect = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconInspect; diff --git a/src/components/icon/assets/invert.tsx b/src/components/icon/assets/invert.tsx index f7cb091f00e..53a95012587 100644 --- a/src/components/icon/assets/invert.tsx +++ b/src/components/icon/assets/invert.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconInvert = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + ); - export const icon = EuiIconInvert; diff --git a/src/components/icon/assets/ip.tsx b/src/components/icon/assets/ip.tsx index 083428c56a5..e55e8fbbbc5 100644 --- a/src/components/icon/assets/ip.tsx +++ b/src/components/icon/assets/ip.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconIp = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconIp; diff --git a/src/components/icon/assets/keyboard.tsx b/src/components/icon/assets/keyboard.tsx index ea1ea02ec50..1cf76ce5dc1 100644 --- a/src/components/icon/assets/keyboard.tsx +++ b/src/components/icon/assets/keyboard.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconKeyboard = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconKeyboard; diff --git a/src/components/icon/assets/kql_field.tsx b/src/components/icon/assets/kql_field.tsx index 728d89ed6cd..0a694ba2d0f 100644 --- a/src/components/icon/assets/kql_field.tsx +++ b/src/components/icon/assets/kql_field.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconKqlField = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconKqlField; diff --git a/src/components/icon/assets/kql_function.tsx b/src/components/icon/assets/kql_function.tsx index 55680b68733..38da4da95c8 100644 --- a/src/components/icon/assets/kql_function.tsx +++ b/src/components/icon/assets/kql_function.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconKqlFunction = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconKqlFunction; diff --git a/src/components/icon/assets/kql_operand.tsx b/src/components/icon/assets/kql_operand.tsx index ccd977a1047..55d22318a02 100644 --- a/src/components/icon/assets/kql_operand.tsx +++ b/src/components/icon/assets/kql_operand.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconKqlOperand = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconKqlOperand; diff --git a/src/components/icon/assets/kql_selector.tsx b/src/components/icon/assets/kql_selector.tsx index 9f9c168fb90..5a73a168f3e 100644 --- a/src/components/icon/assets/kql_selector.tsx +++ b/src/components/icon/assets/kql_selector.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconKqlSelector = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconKqlSelector; diff --git a/src/components/icon/assets/kql_value.tsx b/src/components/icon/assets/kql_value.tsx index 8230978f482..82fa2f296be 100644 --- a/src/components/icon/assets/kql_value.tsx +++ b/src/components/icon/assets/kql_value.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconKqlValue = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconKqlValue; diff --git a/src/components/icon/assets/kubernetesNode.tsx b/src/components/icon/assets/kubernetesNode.tsx index 4f652006626..2db28105921 100644 --- a/src/components/icon/assets/kubernetesNode.tsx +++ b/src/components/icon/assets/kubernetesNode.tsx @@ -9,32 +9,31 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconKubernetesNode = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconKubernetesNode; diff --git a/src/components/icon/assets/kubernetesPod.tsx b/src/components/icon/assets/kubernetesPod.tsx index ec03403ffcc..85da66607d9 100644 --- a/src/components/icon/assets/kubernetesPod.tsx +++ b/src/components/icon/assets/kubernetesPod.tsx @@ -9,32 +9,31 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconKubernetesPod = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconKubernetesPod; diff --git a/src/components/icon/assets/launch.tsx b/src/components/icon/assets/launch.tsx index d30c4e0e1ae..f76d6b99e1f 100644 --- a/src/components/icon/assets/launch.tsx +++ b/src/components/icon/assets/launch.tsx @@ -9,34 +9,33 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLaunch = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + - + ); - export const icon = EuiIconLaunch; diff --git a/src/components/icon/assets/layers.tsx b/src/components/icon/assets/layers.tsx index 4bc150aa170..8bdf8274767 100644 --- a/src/components/icon/assets/layers.tsx +++ b/src/components/icon/assets/layers.tsx @@ -9,29 +9,28 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLayers = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - - + + + ); - export const icon = EuiIconLayers; diff --git a/src/components/icon/assets/lettering.tsx b/src/components/icon/assets/lettering.tsx index 8d92006ad10..2123031840c 100644 --- a/src/components/icon/assets/lettering.tsx +++ b/src/components/icon/assets/lettering.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLettering = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconLettering; diff --git a/src/components/icon/assets/lineDashed.tsx b/src/components/icon/assets/lineDashed.tsx index f3ff9a067d4..d236e38c885 100644 --- a/src/components/icon/assets/lineDashed.tsx +++ b/src/components/icon/assets/lineDashed.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLineDashed = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconLineDashed; diff --git a/src/components/icon/assets/lineDotted.tsx b/src/components/icon/assets/lineDotted.tsx index d97dfe0faab..7143142bc41 100644 --- a/src/components/icon/assets/lineDotted.tsx +++ b/src/components/icon/assets/lineDotted.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLineDotted = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconLineDotted; diff --git a/src/components/icon/assets/lineSolid.tsx b/src/components/icon/assets/lineSolid.tsx index 9b558581eb7..428f129e20c 100644 --- a/src/components/icon/assets/lineSolid.tsx +++ b/src/components/icon/assets/lineSolid.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLineSolid = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconLineSolid; diff --git a/src/components/icon/assets/link.tsx b/src/components/icon/assets/link.tsx index 0e281568a72..d2840dd24a9 100644 --- a/src/components/icon/assets/link.tsx +++ b/src/components/icon/assets/link.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLink = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconLink; diff --git a/src/components/icon/assets/list.tsx b/src/components/icon/assets/list.tsx index 2577c4c2fa7..389e06d1b25 100644 --- a/src/components/icon/assets/list.tsx +++ b/src/components/icon/assets/list.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconList = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconList; diff --git a/src/components/icon/assets/list_add.tsx b/src/components/icon/assets/list_add.tsx index 18ebb7a299b..386c703580c 100644 --- a/src/components/icon/assets/list_add.tsx +++ b/src/components/icon/assets/list_add.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconListAdd = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconListAdd; diff --git a/src/components/icon/assets/lock.tsx b/src/components/icon/assets/lock.tsx index 2b42cc86bf2..5527d4932d1 100644 --- a/src/components/icon/assets/lock.tsx +++ b/src/components/icon/assets/lock.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLock = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconLock; diff --git a/src/components/icon/assets/lockOpen.tsx b/src/components/icon/assets/lockOpen.tsx index 2ddc7bead4b..81e4c218575 100644 --- a/src/components/icon/assets/lockOpen.tsx +++ b/src/components/icon/assets/lockOpen.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLockOpen = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconLockOpen; diff --git a/src/components/icon/assets/logo_aerospike.tsx b/src/components/icon/assets/logo_aerospike.tsx index c5423a45aa8..beb1f708abd 100644 --- a/src/components/icon/assets/logo_aerospike.tsx +++ b/src/components/icon/assets/logo_aerospike.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoAerospike = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconLogoAerospike; diff --git a/src/components/icon/assets/logo_apache.tsx b/src/components/icon/assets/logo_apache.tsx index 2f13ab93d1b..d584580b9df 100644 --- a/src/components/icon/assets/logo_apache.tsx +++ b/src/components/icon/assets/logo_apache.tsx @@ -9,17 +9,17 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; import { htmlIdGenerator } from '../../../services'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoApache = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => { +}: SVGProps & SVGRProps) => { const generateId = htmlIdGenerator('logo_apache'); return ( ); }; - export const icon = EuiIconLogoApache; diff --git a/src/components/icon/assets/logo_app_search.tsx b/src/components/icon/assets/logo_app_search.tsx index 4d8bba3b427..bd3628b3a65 100644 --- a/src/components/icon/assets/logo_app_search.tsx +++ b/src/components/icon/assets/logo_app_search.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoAppSearch = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconLogoAppSearch; diff --git a/src/components/icon/assets/logo_aws.tsx b/src/components/icon/assets/logo_aws.tsx index a5c8e894add..19a4142b6bc 100644 --- a/src/components/icon/assets/logo_aws.tsx +++ b/src/components/icon/assets/logo_aws.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoAws = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} - - + + ); - export const icon = EuiIconLogoAws; diff --git a/src/components/icon/assets/logo_aws_mono.tsx b/src/components/icon/assets/logo_aws_mono.tsx index 54d35f34df5..d718984ac66 100644 --- a/src/components/icon/assets/logo_aws_mono.tsx +++ b/src/components/icon/assets/logo_aws_mono.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoAwsMono = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( - - + + ); - export const icon = EuiIconLogoAwsMono; diff --git a/src/components/icon/assets/logo_azure.tsx b/src/components/icon/assets/logo_azure.tsx index cdbba60eae5..923986cacec 100644 --- a/src/components/icon/assets/logo_azure.tsx +++ b/src/components/icon/assets/logo_azure.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoAzure = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconLogoAzure; diff --git a/src/components/icon/assets/logo_azure_mono.tsx b/src/components/icon/assets/logo_azure_mono.tsx index 84e73c99d0f..2e74c615bcf 100644 --- a/src/components/icon/assets/logo_azure_mono.tsx +++ b/src/components/icon/assets/logo_azure_mono.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoAzureMono = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconLogoAzureMono; diff --git a/src/components/icon/assets/logo_beats.tsx b/src/components/icon/assets/logo_beats.tsx index 9402ea328ac..236d717b979 100644 --- a/src/components/icon/assets/logo_beats.tsx +++ b/src/components/icon/assets/logo_beats.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoBeats = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconLogoBeats; diff --git a/src/components/icon/assets/logo_business_analytics.tsx b/src/components/icon/assets/logo_business_analytics.tsx index 6ca31b5f33e..2edfc7ccf13 100644 --- a/src/components/icon/assets/logo_business_analytics.tsx +++ b/src/components/icon/assets/logo_business_analytics.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoBusinessAnalytics = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconLogoBusinessAnalytics; diff --git a/src/components/icon/assets/logo_ceph.tsx b/src/components/icon/assets/logo_ceph.tsx index ba499040147..58709abc75a 100644 --- a/src/components/icon/assets/logo_ceph.tsx +++ b/src/components/icon/assets/logo_ceph.tsx @@ -9,31 +9,30 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoCeph = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconLogoCeph; diff --git a/src/components/icon/assets/logo_cloud.tsx b/src/components/icon/assets/logo_cloud.tsx index 416d6fb907f..3827eaf2880 100644 --- a/src/components/icon/assets/logo_cloud.tsx +++ b/src/components/icon/assets/logo_cloud.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoCloud = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconLogoCloud; diff --git a/src/components/icon/assets/logo_cloud_ece.tsx b/src/components/icon/assets/logo_cloud_ece.tsx index cef5c39fb29..a4bbe17672a 100644 --- a/src/components/icon/assets/logo_cloud_ece.tsx +++ b/src/components/icon/assets/logo_cloud_ece.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoCloudEce = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconLogoCloudEce; diff --git a/src/components/icon/assets/logo_code.tsx b/src/components/icon/assets/logo_code.tsx index 61cf88f568a..4ea5319ab3d 100644 --- a/src/components/icon/assets/logo_code.tsx +++ b/src/components/icon/assets/logo_code.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoCode = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconLogoCode; diff --git a/src/components/icon/assets/logo_codesandbox.tsx b/src/components/icon/assets/logo_codesandbox.tsx index 48f69ec0385..e03cb6e0b41 100644 --- a/src/components/icon/assets/logo_codesandbox.tsx +++ b/src/components/icon/assets/logo_codesandbox.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoCodesandbox = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconLogoCodesandbox; diff --git a/src/components/icon/assets/logo_couchbase.tsx b/src/components/icon/assets/logo_couchbase.tsx index a86b1c185bb..9afb1a7966e 100644 --- a/src/components/icon/assets/logo_couchbase.tsx +++ b/src/components/icon/assets/logo_couchbase.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoCouchbase = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconLogoCouchbase; diff --git a/src/components/icon/assets/logo_docker.tsx b/src/components/icon/assets/logo_docker.tsx index bf7c8508e95..f18ad964d5a 100644 --- a/src/components/icon/assets/logo_docker.tsx +++ b/src/components/icon/assets/logo_docker.tsx @@ -9,31 +9,30 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoDocker = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconLogoDocker; diff --git a/src/components/icon/assets/logo_dropwizard.tsx b/src/components/icon/assets/logo_dropwizard.tsx index f2385cada0e..de8392ac3d4 100644 --- a/src/components/icon/assets/logo_dropwizard.tsx +++ b/src/components/icon/assets/logo_dropwizard.tsx @@ -9,55 +9,55 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; import { htmlIdGenerator } from '../../../services'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoDropwizard = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => { +}: SVGProps & SVGRProps) => { const generateId = htmlIdGenerator('logo_dropwizard'); return ( {title ? {title} : null} @@ -69,8 +69,8 @@ const EuiIconLogoDropwizard = ({ @@ -83,5 +83,4 @@ const EuiIconLogoDropwizard = ({ ); }; - export const icon = EuiIconLogoDropwizard; diff --git a/src/components/icon/assets/logo_elastic.tsx b/src/components/icon/assets/logo_elastic.tsx index baa357ffa9e..fadf3585b4f 100644 --- a/src/components/icon/assets/logo_elastic.tsx +++ b/src/components/icon/assets/logo_elastic.tsx @@ -9,59 +9,58 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoElastic = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconLogoElastic; diff --git a/src/components/icon/assets/logo_elastic_stack.tsx b/src/components/icon/assets/logo_elastic_stack.tsx index bfcf79a507e..f602cb341ea 100644 --- a/src/components/icon/assets/logo_elastic_stack.tsx +++ b/src/components/icon/assets/logo_elastic_stack.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoElasticStack = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( - - + + ); - export const icon = EuiIconLogoElasticStack; diff --git a/src/components/icon/assets/logo_elasticsearch.tsx b/src/components/icon/assets/logo_elasticsearch.tsx index abf4f34442b..76b0aa45f9b 100644 --- a/src/components/icon/assets/logo_elasticsearch.tsx +++ b/src/components/icon/assets/logo_elasticsearch.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoElasticsearch = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconLogoElasticsearch; diff --git a/src/components/icon/assets/logo_enterprise_search.tsx b/src/components/icon/assets/logo_enterprise_search.tsx index 9d1753fb3a9..81811c3e8e3 100644 --- a/src/components/icon/assets/logo_enterprise_search.tsx +++ b/src/components/icon/assets/logo_enterprise_search.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoEnterpriseSearch = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconLogoEnterpriseSearch; diff --git a/src/components/icon/assets/logo_etcd.tsx b/src/components/icon/assets/logo_etcd.tsx index 0c2d8dddf6a..637d0d945d2 100644 --- a/src/components/icon/assets/logo_etcd.tsx +++ b/src/components/icon/assets/logo_etcd.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoEtcd = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} - + ); - export const icon = EuiIconLogoEtcd; diff --git a/src/components/icon/assets/logo_gcp.tsx b/src/components/icon/assets/logo_gcp.tsx index fa3b6aeedf2..6ecef3b8dc9 100644 --- a/src/components/icon/assets/logo_gcp.tsx +++ b/src/components/icon/assets/logo_gcp.tsx @@ -9,17 +9,17 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; import { htmlIdGenerator } from '../../../services'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoGcp = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => { +}: SVGProps & SVGRProps) => { const generateId = htmlIdGenerator('logo_gcp'); return ( @@ -62,18 +62,17 @@ const EuiIconLogoGcp = ({ ); }; - export const icon = EuiIconLogoGcp; diff --git a/src/components/icon/assets/logo_gcp_mono.tsx b/src/components/icon/assets/logo_gcp_mono.tsx index dc157c80f42..9be81ce9007 100644 --- a/src/components/icon/assets/logo_gcp_mono.tsx +++ b/src/components/icon/assets/logo_gcp_mono.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoGcpMono = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconLogoGcpMono; diff --git a/src/components/icon/assets/logo_github.tsx b/src/components/icon/assets/logo_github.tsx index 5ed05c7e384..99df5649e7f 100644 --- a/src/components/icon/assets/logo_github.tsx +++ b/src/components/icon/assets/logo_github.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoGithub = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconLogoGithub; diff --git a/src/components/icon/assets/logo_gmail.tsx b/src/components/icon/assets/logo_gmail.tsx index 784693bd4a3..465fd2e8626 100644 --- a/src/components/icon/assets/logo_gmail.tsx +++ b/src/components/icon/assets/logo_gmail.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoGmail = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconLogoGmail; diff --git a/src/components/icon/assets/logo_golang.tsx b/src/components/icon/assets/logo_golang.tsx index 91e2c49bf03..21278b5e73a 100644 --- a/src/components/icon/assets/logo_golang.tsx +++ b/src/components/icon/assets/logo_golang.tsx @@ -9,153 +9,152 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoGolang = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + - + ); - export const icon = EuiIconLogoGolang; diff --git a/src/components/icon/assets/logo_google_g.tsx b/src/components/icon/assets/logo_google_g.tsx index 7fb1010e3ec..6b203f7638e 100644 --- a/src/components/icon/assets/logo_google_g.tsx +++ b/src/components/icon/assets/logo_google_g.tsx @@ -9,25 +9,25 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; import { htmlIdGenerator } from '../../../services'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoGoogleG = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => { +}: SVGProps & SVGRProps) => { const generateId = htmlIdGenerator('logo_google_g'); return ( @@ -43,7 +43,7 @@ const EuiIconLogoGoogleG = ({ /> @@ -69,8 +69,8 @@ const EuiIconLogoGoogleG = ({ @@ -80,8 +80,8 @@ const EuiIconLogoGoogleG = ({ @@ -91,13 +91,12 @@ const EuiIconLogoGoogleG = ({ ); }; - export const icon = EuiIconLogoGoogleG; diff --git a/src/components/icon/assets/logo_haproxy.tsx b/src/components/icon/assets/logo_haproxy.tsx index b83d2b8b5b0..79f02e3029b 100644 --- a/src/components/icon/assets/logo_haproxy.tsx +++ b/src/components/icon/assets/logo_haproxy.tsx @@ -9,96 +9,95 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; import { htmlIdGenerator } from '../../../services'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoHaproxy = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => { +}: SVGProps & SVGRProps) => { const generateId = htmlIdGenerator('logo_haproxy'); return ( {title ? {title} : null} - + - - + + ); }; - export const icon = EuiIconLogoHaproxy; diff --git a/src/components/icon/assets/logo_ibm.tsx b/src/components/icon/assets/logo_ibm.tsx index 79bef3c4098..c5069911f1d 100644 --- a/src/components/icon/assets/logo_ibm.tsx +++ b/src/components/icon/assets/logo_ibm.tsx @@ -9,17 +9,17 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; import { htmlIdGenerator } from '../../../services'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoIbm = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => { +}: SVGProps & SVGRProps) => { const generateId = htmlIdGenerator('logo_ibm'); return ( ); }; - export const icon = EuiIconLogoIbm; diff --git a/src/components/icon/assets/logo_ibm_mono.tsx b/src/components/icon/assets/logo_ibm_mono.tsx index db12e63583a..665f6254701 100644 --- a/src/components/icon/assets/logo_ibm_mono.tsx +++ b/src/components/icon/assets/logo_ibm_mono.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoIbmMono = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconLogoIbmMono; diff --git a/src/components/icon/assets/logo_kafka.tsx b/src/components/icon/assets/logo_kafka.tsx index 2fa3f2b3728..b45b8a659f0 100644 --- a/src/components/icon/assets/logo_kafka.tsx +++ b/src/components/icon/assets/logo_kafka.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoKafka = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconLogoKafka; diff --git a/src/components/icon/assets/logo_kibana.tsx b/src/components/icon/assets/logo_kibana.tsx index c35e37282a5..9288d760d37 100644 --- a/src/components/icon/assets/logo_kibana.tsx +++ b/src/components/icon/assets/logo_kibana.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoKibana = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconLogoKibana; diff --git a/src/components/icon/assets/logo_kubernetes.tsx b/src/components/icon/assets/logo_kubernetes.tsx index f70205d3003..cc8728045db 100644 --- a/src/components/icon/assets/logo_kubernetes.tsx +++ b/src/components/icon/assets/logo_kubernetes.tsx @@ -9,30 +9,29 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoKubernetes = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconLogoKubernetes; diff --git a/src/components/icon/assets/logo_logging.tsx b/src/components/icon/assets/logo_logging.tsx index 780ca404faa..20a64e22b82 100644 --- a/src/components/icon/assets/logo_logging.tsx +++ b/src/components/icon/assets/logo_logging.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoLogging = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconLogoLogging; diff --git a/src/components/icon/assets/logo_logstash.tsx b/src/components/icon/assets/logo_logstash.tsx index 36d082780ab..ba590daa163 100644 --- a/src/components/icon/assets/logo_logstash.tsx +++ b/src/components/icon/assets/logo_logstash.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoLogstash = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconLogoLogstash; diff --git a/src/components/icon/assets/logo_maps.tsx b/src/components/icon/assets/logo_maps.tsx index 29a17d6a541..e56279a8032 100644 --- a/src/components/icon/assets/logo_maps.tsx +++ b/src/components/icon/assets/logo_maps.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoMaps = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconLogoMaps; diff --git a/src/components/icon/assets/logo_memcached.tsx b/src/components/icon/assets/logo_memcached.tsx index 37787220577..4e321c056df 100644 --- a/src/components/icon/assets/logo_memcached.tsx +++ b/src/components/icon/assets/logo_memcached.tsx @@ -9,17 +9,17 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; import { htmlIdGenerator } from '../../../services'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoMemcached = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => { +}: SVGProps & SVGRProps) => { const generateId = htmlIdGenerator('logo_memcached'); return ( - + @@ -78,33 +72,32 @@ const EuiIconLogoMemcached = ({ ); }; - export const icon = EuiIconLogoMemcached; diff --git a/src/components/icon/assets/logo_metrics.tsx b/src/components/icon/assets/logo_metrics.tsx index 8e2c1979d45..8fd0f4248d7 100644 --- a/src/components/icon/assets/logo_metrics.tsx +++ b/src/components/icon/assets/logo_metrics.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoMetrics = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconLogoMetrics; diff --git a/src/components/icon/assets/logo_mongodb.tsx b/src/components/icon/assets/logo_mongodb.tsx index 0312112e467..0618c460fa7 100644 --- a/src/components/icon/assets/logo_mongodb.tsx +++ b/src/components/icon/assets/logo_mongodb.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoMongodb = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconLogoMongodb; diff --git a/src/components/icon/assets/logo_mysql.tsx b/src/components/icon/assets/logo_mysql.tsx index 3e07c8bc110..4dd4babd87f 100644 --- a/src/components/icon/assets/logo_mysql.tsx +++ b/src/components/icon/assets/logo_mysql.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoMysql = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + ); - export const icon = EuiIconLogoMysql; diff --git a/src/components/icon/assets/logo_nginx.tsx b/src/components/icon/assets/logo_nginx.tsx index 5b02c14bad6..34a1796c67a 100644 --- a/src/components/icon/assets/logo_nginx.tsx +++ b/src/components/icon/assets/logo_nginx.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoNginx = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconLogoNginx; diff --git a/src/components/icon/assets/logo_observability.tsx b/src/components/icon/assets/logo_observability.tsx index 65c5c9ba654..e3ac54799fd 100644 --- a/src/components/icon/assets/logo_observability.tsx +++ b/src/components/icon/assets/logo_observability.tsx @@ -9,32 +9,31 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoObservability = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + ); - export const icon = EuiIconLogoObservability; diff --git a/src/components/icon/assets/logo_osquery.tsx b/src/components/icon/assets/logo_osquery.tsx index 2cf0458e2ee..6dfdfd0cea8 100644 --- a/src/components/icon/assets/logo_osquery.tsx +++ b/src/components/icon/assets/logo_osquery.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoOsquery = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconLogoOsquery; diff --git a/src/components/icon/assets/logo_php.tsx b/src/components/icon/assets/logo_php.tsx index 29739447597..0242bee8a48 100644 --- a/src/components/icon/assets/logo_php.tsx +++ b/src/components/icon/assets/logo_php.tsx @@ -9,17 +9,17 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; import { htmlIdGenerator } from '../../../services'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoPhp = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => { +}: SVGProps & SVGRProps) => { const generateId = htmlIdGenerator('logo_php'); return ( - + @@ -87,32 +83,31 @@ const EuiIconLogoPhp = ({ ); }; - export const icon = EuiIconLogoPhp; diff --git a/src/components/icon/assets/logo_postgres.tsx b/src/components/icon/assets/logo_postgres.tsx index d1c2ffec58b..b9595cbaf6b 100644 --- a/src/components/icon/assets/logo_postgres.tsx +++ b/src/components/icon/assets/logo_postgres.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoPostgres = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconLogoPostgres; diff --git a/src/components/icon/assets/logo_prometheus.tsx b/src/components/icon/assets/logo_prometheus.tsx index 5d4634e30e3..6f7fe64c4b9 100644 --- a/src/components/icon/assets/logo_prometheus.tsx +++ b/src/components/icon/assets/logo_prometheus.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoPrometheus = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconLogoPrometheus; diff --git a/src/components/icon/assets/logo_rabbitmq.tsx b/src/components/icon/assets/logo_rabbitmq.tsx index 0a968405a01..c60eb51a499 100644 --- a/src/components/icon/assets/logo_rabbitmq.tsx +++ b/src/components/icon/assets/logo_rabbitmq.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoRabbitmq = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconLogoRabbitmq; diff --git a/src/components/icon/assets/logo_redis.tsx b/src/components/icon/assets/logo_redis.tsx index 153be25516a..22e3f11cc32 100644 --- a/src/components/icon/assets/logo_redis.tsx +++ b/src/components/icon/assets/logo_redis.tsx @@ -9,59 +9,58 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoRedis = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + - - - + + + ); - export const icon = EuiIconLogoRedis; diff --git a/src/components/icon/assets/logo_security.tsx b/src/components/icon/assets/logo_security.tsx index 167a0568de9..d6cd4cf2bf4 100644 --- a/src/components/icon/assets/logo_security.tsx +++ b/src/components/icon/assets/logo_security.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoSecurity = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconLogoSecurity; diff --git a/src/components/icon/assets/logo_site_search.tsx b/src/components/icon/assets/logo_site_search.tsx index 93311e0f60c..bf11913f156 100644 --- a/src/components/icon/assets/logo_site_search.tsx +++ b/src/components/icon/assets/logo_site_search.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoSiteSearch = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconLogoSiteSearch; diff --git a/src/components/icon/assets/logo_sketch.tsx b/src/components/icon/assets/logo_sketch.tsx index c82e58dc32e..089ab3c63b1 100644 --- a/src/components/icon/assets/logo_sketch.tsx +++ b/src/components/icon/assets/logo_sketch.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoSketch = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( - - - + + + ); - export const icon = EuiIconLogoSketch; diff --git a/src/components/icon/assets/logo_slack.tsx b/src/components/icon/assets/logo_slack.tsx index 121cf25c023..30f85d60bf5 100644 --- a/src/components/icon/assets/logo_slack.tsx +++ b/src/components/icon/assets/logo_slack.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoSlack = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconLogoSlack; diff --git a/src/components/icon/assets/logo_uptime.tsx b/src/components/icon/assets/logo_uptime.tsx index aadfa1660d4..638892346c7 100644 --- a/src/components/icon/assets/logo_uptime.tsx +++ b/src/components/icon/assets/logo_uptime.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoUptime = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconLogoUptime; diff --git a/src/components/icon/assets/logo_vulnerability_management.tsx b/src/components/icon/assets/logo_vulnerability_management.tsx index a712fcc4e62..8d7fb7e12d3 100644 --- a/src/components/icon/assets/logo_vulnerability_management.tsx +++ b/src/components/icon/assets/logo_vulnerability_management.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoVulnerabilityManagement = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - - - - + + + ); - export const icon = EuiIconLogoVulnerabilityManagement; diff --git a/src/components/icon/assets/logo_webhook.tsx b/src/components/icon/assets/logo_webhook.tsx index 9140ff810b5..39229edd850 100644 --- a/src/components/icon/assets/logo_webhook.tsx +++ b/src/components/icon/assets/logo_webhook.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoWebhook = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconLogoWebhook; diff --git a/src/components/icon/assets/logo_windows.tsx b/src/components/icon/assets/logo_windows.tsx index 4e5c2340a57..f4139a4f0d9 100644 --- a/src/components/icon/assets/logo_windows.tsx +++ b/src/components/icon/assets/logo_windows.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoWindows = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconLogoWindows; diff --git a/src/components/icon/assets/logo_workplace_search.tsx b/src/components/icon/assets/logo_workplace_search.tsx index ddf362cb5fa..2f41d227ffc 100644 --- a/src/components/icon/assets/logo_workplace_search.tsx +++ b/src/components/icon/assets/logo_workplace_search.tsx @@ -9,38 +9,37 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogoWorkplaceSearch = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconLogoWorkplaceSearch; diff --git a/src/components/icon/assets/logstash_filter.tsx b/src/components/icon/assets/logstash_filter.tsx index ebda1823c96..1fe76cd125a 100644 --- a/src/components/icon/assets/logstash_filter.tsx +++ b/src/components/icon/assets/logstash_filter.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogstashFilter = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconLogstashFilter; diff --git a/src/components/icon/assets/logstash_if.tsx b/src/components/icon/assets/logstash_if.tsx index 79b41908abb..2523f69ebe4 100644 --- a/src/components/icon/assets/logstash_if.tsx +++ b/src/components/icon/assets/logstash_if.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogstashIf = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconLogstashIf; diff --git a/src/components/icon/assets/logstash_input.tsx b/src/components/icon/assets/logstash_input.tsx index 8afaf73a1e6..6ee49505bf7 100644 --- a/src/components/icon/assets/logstash_input.tsx +++ b/src/components/icon/assets/logstash_input.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogstashInput = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconLogstashInput; diff --git a/src/components/icon/assets/logstash_output.tsx b/src/components/icon/assets/logstash_output.tsx index c90fa89a5ad..26a094067f7 100644 --- a/src/components/icon/assets/logstash_output.tsx +++ b/src/components/icon/assets/logstash_output.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogstashOutput = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconLogstashOutput; diff --git a/src/components/icon/assets/logstash_queue.tsx b/src/components/icon/assets/logstash_queue.tsx index 7727ea32a76..6fca72f310a 100644 --- a/src/components/icon/assets/logstash_queue.tsx +++ b/src/components/icon/assets/logstash_queue.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconLogstashQueue = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconLogstashQueue; diff --git a/src/components/icon/assets/magnet.tsx b/src/components/icon/assets/magnet.tsx index 02ccd7c4d1c..6c231d0c7cd 100644 --- a/src/components/icon/assets/magnet.tsx +++ b/src/components/icon/assets/magnet.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMagnet = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconMagnet; diff --git a/src/components/icon/assets/magnifyWithExclamation.tsx b/src/components/icon/assets/magnifyWithExclamation.tsx index 9bde39eea1b..d331fa269e7 100644 --- a/src/components/icon/assets/magnifyWithExclamation.tsx +++ b/src/components/icon/assets/magnifyWithExclamation.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMagnifyWithExclamation = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconMagnifyWithExclamation; diff --git a/src/components/icon/assets/magnifyWithMinus.tsx b/src/components/icon/assets/magnifyWithMinus.tsx index 7fb2281cd8b..50250063085 100644 --- a/src/components/icon/assets/magnifyWithMinus.tsx +++ b/src/components/icon/assets/magnifyWithMinus.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMagnifyWithMinus = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconMagnifyWithMinus; diff --git a/src/components/icon/assets/magnifyWithPlus.tsx b/src/components/icon/assets/magnifyWithPlus.tsx index 1e915701007..5608ce5f7d5 100644 --- a/src/components/icon/assets/magnifyWithPlus.tsx +++ b/src/components/icon/assets/magnifyWithPlus.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMagnifyWithPlus = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconMagnifyWithPlus; diff --git a/src/components/icon/assets/map_marker.tsx b/src/components/icon/assets/map_marker.tsx index 91a633f7fff..bb072382258 100644 --- a/src/components/icon/assets/map_marker.tsx +++ b/src/components/icon/assets/map_marker.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMapMarker = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconMapMarker; diff --git a/src/components/icon/assets/memory.tsx b/src/components/icon/assets/memory.tsx index 73665f64b19..ab4ef94ee16 100644 --- a/src/components/icon/assets/memory.tsx +++ b/src/components/icon/assets/memory.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMemory = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconMemory; diff --git a/src/components/icon/assets/menu.tsx b/src/components/icon/assets/menu.tsx index 65b2639604a..ac7d8bc09d4 100644 --- a/src/components/icon/assets/menu.tsx +++ b/src/components/icon/assets/menu.tsx @@ -9,28 +9,27 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMenu = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconMenu; diff --git a/src/components/icon/assets/menuDown.tsx b/src/components/icon/assets/menuDown.tsx index b893f4c9989..eb029eb31ba 100644 --- a/src/components/icon/assets/menuDown.tsx +++ b/src/components/icon/assets/menuDown.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMenuDown = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconMenuDown; diff --git a/src/components/icon/assets/menuLeft.tsx b/src/components/icon/assets/menuLeft.tsx index b172589519d..1d1a6f43812 100644 --- a/src/components/icon/assets/menuLeft.tsx +++ b/src/components/icon/assets/menuLeft.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMenuLeft = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconMenuLeft; diff --git a/src/components/icon/assets/menuRight.tsx b/src/components/icon/assets/menuRight.tsx index a4c60e8b921..00a55cc05bf 100644 --- a/src/components/icon/assets/menuRight.tsx +++ b/src/components/icon/assets/menuRight.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMenuRight = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconMenuRight; diff --git a/src/components/icon/assets/menuUp.tsx b/src/components/icon/assets/menuUp.tsx index 96816f9b679..3daddb9ea04 100644 --- a/src/components/icon/assets/menuUp.tsx +++ b/src/components/icon/assets/menuUp.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMenuUp = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconMenuUp; diff --git a/src/components/icon/assets/merge.tsx b/src/components/icon/assets/merge.tsx index 0be71217c6d..9783db26a6c 100644 --- a/src/components/icon/assets/merge.tsx +++ b/src/components/icon/assets/merge.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMerge = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconMerge; diff --git a/src/components/icon/assets/minimize.tsx b/src/components/icon/assets/minimize.tsx index 50a768ef37d..c793244325e 100644 --- a/src/components/icon/assets/minimize.tsx +++ b/src/components/icon/assets/minimize.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMinimize = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconMinimize; diff --git a/src/components/icon/assets/minus.tsx b/src/components/icon/assets/minus.tsx index 9805d754d9c..378b61f99da 100644 --- a/src/components/icon/assets/minus.tsx +++ b/src/components/icon/assets/minus.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMinus = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconMinus; diff --git a/src/components/icon/assets/minus_in_circle.tsx b/src/components/icon/assets/minus_in_circle.tsx index 2209b66e95d..003b90a9a81 100644 --- a/src/components/icon/assets/minus_in_circle.tsx +++ b/src/components/icon/assets/minus_in_circle.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMinusInCircle = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconMinusInCircle; diff --git a/src/components/icon/assets/minus_in_circle_filled.tsx b/src/components/icon/assets/minus_in_circle_filled.tsx index 1be19252d1f..e47ed600d7f 100644 --- a/src/components/icon/assets/minus_in_circle_filled.tsx +++ b/src/components/icon/assets/minus_in_circle_filled.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMinusInCircleFilled = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconMinusInCircleFilled; diff --git a/src/components/icon/assets/ml_classification_job.tsx b/src/components/icon/assets/ml_classification_job.tsx index 23e4eb8d2e3..31f4619db26 100644 --- a/src/components/icon/assets/ml_classification_job.tsx +++ b/src/components/icon/assets/ml_classification_job.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMlClassificationJob = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconMlClassificationJob; diff --git a/src/components/icon/assets/ml_create_advanced_job.tsx b/src/components/icon/assets/ml_create_advanced_job.tsx index 6cd6aaafb2b..bfb7c72cddb 100644 --- a/src/components/icon/assets/ml_create_advanced_job.tsx +++ b/src/components/icon/assets/ml_create_advanced_job.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMlCreateAdvancedJob = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconMlCreateAdvancedJob; diff --git a/src/components/icon/assets/ml_create_multi_metric_job.tsx b/src/components/icon/assets/ml_create_multi_metric_job.tsx index 73069d95829..71aff8a3811 100644 --- a/src/components/icon/assets/ml_create_multi_metric_job.tsx +++ b/src/components/icon/assets/ml_create_multi_metric_job.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMlCreateMultiMetricJob = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconMlCreateMultiMetricJob; diff --git a/src/components/icon/assets/ml_create_population_job.tsx b/src/components/icon/assets/ml_create_population_job.tsx index fd2bbc047ea..8d071bae787 100644 --- a/src/components/icon/assets/ml_create_population_job.tsx +++ b/src/components/icon/assets/ml_create_population_job.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMlCreatePopulationJob = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconMlCreatePopulationJob; diff --git a/src/components/icon/assets/ml_create_single_metric_job.tsx b/src/components/icon/assets/ml_create_single_metric_job.tsx index 3edebc3cdb0..ca58ea8da33 100644 --- a/src/components/icon/assets/ml_create_single_metric_job.tsx +++ b/src/components/icon/assets/ml_create_single_metric_job.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMlCreateSingleMetricJob = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconMlCreateSingleMetricJob; diff --git a/src/components/icon/assets/ml_data_visualizer.tsx b/src/components/icon/assets/ml_data_visualizer.tsx index a017517ab0c..3f82fe44bb2 100644 --- a/src/components/icon/assets/ml_data_visualizer.tsx +++ b/src/components/icon/assets/ml_data_visualizer.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMlDataVisualizer = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconMlDataVisualizer; diff --git a/src/components/icon/assets/ml_outlier_detection_job.tsx b/src/components/icon/assets/ml_outlier_detection_job.tsx index f4df25d83ed..c347f955fa3 100644 --- a/src/components/icon/assets/ml_outlier_detection_job.tsx +++ b/src/components/icon/assets/ml_outlier_detection_job.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMlOutlierDetectionJob = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconMlOutlierDetectionJob; diff --git a/src/components/icon/assets/ml_regression_job.tsx b/src/components/icon/assets/ml_regression_job.tsx index b8dc9bacfa4..0ae3dfef349 100644 --- a/src/components/icon/assets/ml_regression_job.tsx +++ b/src/components/icon/assets/ml_regression_job.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMlRegressionJob = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconMlRegressionJob; diff --git a/src/components/icon/assets/mobile.tsx b/src/components/icon/assets/mobile.tsx index 282c71e40e9..69dd968fe18 100644 --- a/src/components/icon/assets/mobile.tsx +++ b/src/components/icon/assets/mobile.tsx @@ -9,32 +9,31 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMobile = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconMobile; diff --git a/src/components/icon/assets/moon.tsx b/src/components/icon/assets/moon.tsx index 03672968539..6c84bfdd9ed 100644 --- a/src/components/icon/assets/moon.tsx +++ b/src/components/icon/assets/moon.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconMoon = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconMoon; diff --git a/src/components/icon/assets/namespace.tsx b/src/components/icon/assets/namespace.tsx index 3756fd5c9d7..c55e33c2fb8 100644 --- a/src/components/icon/assets/namespace.tsx +++ b/src/components/icon/assets/namespace.tsx @@ -9,32 +9,31 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconNamespace = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconNamespace; diff --git a/src/components/icon/assets/nested.tsx b/src/components/icon/assets/nested.tsx index 513f06d7ac7..e6267ba2b09 100644 --- a/src/components/icon/assets/nested.tsx +++ b/src/components/icon/assets/nested.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconNested = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconNested; diff --git a/src/components/icon/assets/node.tsx b/src/components/icon/assets/node.tsx index 7ac96b3d2b3..8f800e4b28a 100644 --- a/src/components/icon/assets/node.tsx +++ b/src/components/icon/assets/node.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconNode = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconNode; diff --git a/src/components/icon/assets/number.tsx b/src/components/icon/assets/number.tsx index 85923a4d896..c809ae5132a 100644 --- a/src/components/icon/assets/number.tsx +++ b/src/components/icon/assets/number.tsx @@ -9,30 +9,29 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconNumber = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconNumber; diff --git a/src/components/icon/assets/offline.tsx b/src/components/icon/assets/offline.tsx index 0df0542eb49..16d96e1021b 100644 --- a/src/components/icon/assets/offline.tsx +++ b/src/components/icon/assets/offline.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconOffline = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconOffline; diff --git a/src/components/icon/assets/online.tsx b/src/components/icon/assets/online.tsx index af4d16c9ae3..6b92e12c137 100644 --- a/src/components/icon/assets/online.tsx +++ b/src/components/icon/assets/online.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconOnline = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconOnline; diff --git a/src/components/icon/assets/package.tsx b/src/components/icon/assets/package.tsx index 3b61dccb926..ff0769293fd 100644 --- a/src/components/icon/assets/package.tsx +++ b/src/components/icon/assets/package.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconPackage = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconPackage; diff --git a/src/components/icon/assets/pageSelect.tsx b/src/components/icon/assets/pageSelect.tsx index 9080efeb3f7..77de1cedf08 100644 --- a/src/components/icon/assets/pageSelect.tsx +++ b/src/components/icon/assets/pageSelect.tsx @@ -9,30 +9,29 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconPageSelect = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconPageSelect; diff --git a/src/components/icon/assets/pagesSelect.tsx b/src/components/icon/assets/pagesSelect.tsx index 6f6328aa882..e8c2016652a 100644 --- a/src/components/icon/assets/pagesSelect.tsx +++ b/src/components/icon/assets/pagesSelect.tsx @@ -9,30 +9,29 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconPagesSelect = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconPagesSelect; diff --git a/src/components/icon/assets/paint.tsx b/src/components/icon/assets/paint.tsx index a4290560566..09adee0cae0 100644 --- a/src/components/icon/assets/paint.tsx +++ b/src/components/icon/assets/paint.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconPaint = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconPaint; diff --git a/src/components/icon/assets/paper_clip.tsx b/src/components/icon/assets/paper_clip.tsx index 57996a5f7fc..256a682208a 100644 --- a/src/components/icon/assets/paper_clip.tsx +++ b/src/components/icon/assets/paper_clip.tsx @@ -9,27 +9,26 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconPaperClip = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconPaperClip; diff --git a/src/components/icon/assets/partial.tsx b/src/components/icon/assets/partial.tsx index f9611f0dca0..24d639a1dca 100644 --- a/src/components/icon/assets/partial.tsx +++ b/src/components/icon/assets/partial.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconPartial = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconPartial; diff --git a/src/components/icon/assets/pause.tsx b/src/components/icon/assets/pause.tsx index 9f790526ff6..45384b76591 100644 --- a/src/components/icon/assets/pause.tsx +++ b/src/components/icon/assets/pause.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconPause = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconPause; diff --git a/src/components/icon/assets/payment.tsx b/src/components/icon/assets/payment.tsx index d9f453c4bc0..94d05f56bc2 100644 --- a/src/components/icon/assets/payment.tsx +++ b/src/components/icon/assets/payment.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconPayment = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconPayment; diff --git a/src/components/icon/assets/pencil.tsx b/src/components/icon/assets/pencil.tsx index efde72e450f..0a8bf9e2350 100644 --- a/src/components/icon/assets/pencil.tsx +++ b/src/components/icon/assets/pencil.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconPencil = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconPencil; diff --git a/src/components/icon/assets/percent.tsx b/src/components/icon/assets/percent.tsx index 1dfccb54f47..2b6ca1015f1 100644 --- a/src/components/icon/assets/percent.tsx +++ b/src/components/icon/assets/percent.tsx @@ -9,21 +9,21 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconPercent = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( @@ -39,5 +39,4 @@ const EuiIconPercent = ({ /> ); - export const icon = EuiIconPercent; diff --git a/src/components/icon/assets/pin.tsx b/src/components/icon/assets/pin.tsx index 696e19e449d..7e4385ca06b 100644 --- a/src/components/icon/assets/pin.tsx +++ b/src/components/icon/assets/pin.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconPin = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconPin; diff --git a/src/components/icon/assets/pin_filled.tsx b/src/components/icon/assets/pin_filled.tsx index a1c4b90b1b7..1b943e9958f 100644 --- a/src/components/icon/assets/pin_filled.tsx +++ b/src/components/icon/assets/pin_filled.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconPinFilled = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconPinFilled; diff --git a/src/components/icon/assets/pivot.tsx b/src/components/icon/assets/pivot.tsx index 0c4ddd967e3..43c70da8c00 100644 --- a/src/components/icon/assets/pivot.tsx +++ b/src/components/icon/assets/pivot.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconPivot = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconPivot; diff --git a/src/components/icon/assets/play.tsx b/src/components/icon/assets/play.tsx index 9f817b9e14f..0746be1f61e 100644 --- a/src/components/icon/assets/play.tsx +++ b/src/components/icon/assets/play.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconPlay = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconPlay; diff --git a/src/components/icon/assets/playFilled.tsx b/src/components/icon/assets/playFilled.tsx index be18bde62e1..68dd90b3dfb 100644 --- a/src/components/icon/assets/playFilled.tsx +++ b/src/components/icon/assets/playFilled.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconPlayFilled = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconPlayFilled; diff --git a/src/components/icon/assets/plus.tsx b/src/components/icon/assets/plus.tsx index e78b5832343..38da70a377c 100644 --- a/src/components/icon/assets/plus.tsx +++ b/src/components/icon/assets/plus.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconPlus = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconPlus; diff --git a/src/components/icon/assets/plus_in_circle.tsx b/src/components/icon/assets/plus_in_circle.tsx index 14eac766fc2..f1f3a58cdfe 100644 --- a/src/components/icon/assets/plus_in_circle.tsx +++ b/src/components/icon/assets/plus_in_circle.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconPlusInCircle = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconPlusInCircle; diff --git a/src/components/icon/assets/plus_in_circle_filled.tsx b/src/components/icon/assets/plus_in_circle_filled.tsx index e7e2ae6220a..be0f6d997f2 100644 --- a/src/components/icon/assets/plus_in_circle_filled.tsx +++ b/src/components/icon/assets/plus_in_circle_filled.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconPlusInCircleFilled = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconPlusInCircleFilled; diff --git a/src/components/icon/assets/popout.tsx b/src/components/icon/assets/popout.tsx index b846af2bd09..74a73b8fa3d 100644 --- a/src/components/icon/assets/popout.tsx +++ b/src/components/icon/assets/popout.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconPopout = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconPopout; diff --git a/src/components/icon/assets/push.tsx b/src/components/icon/assets/push.tsx index 6b05d53ea7f..77d7e10844a 100644 --- a/src/components/icon/assets/push.tsx +++ b/src/components/icon/assets/push.tsx @@ -9,28 +9,27 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconPush = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + ); - export const icon = EuiIconPush; diff --git a/src/components/icon/assets/question_in_circle.tsx b/src/components/icon/assets/question_in_circle.tsx index 65a91cb348a..c0c9064e11a 100644 --- a/src/components/icon/assets/question_in_circle.tsx +++ b/src/components/icon/assets/question_in_circle.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconQuestionInCircle = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconQuestionInCircle; diff --git a/src/components/icon/assets/quote.tsx b/src/components/icon/assets/quote.tsx index b3110094f71..3a21c7f6dee 100644 --- a/src/components/icon/assets/quote.tsx +++ b/src/components/icon/assets/quote.tsx @@ -9,27 +9,26 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconQuote = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconQuote; diff --git a/src/components/icon/assets/refresh.tsx b/src/components/icon/assets/refresh.tsx index d3bd201becc..913f06cae2d 100644 --- a/src/components/icon/assets/refresh.tsx +++ b/src/components/icon/assets/refresh.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconRefresh = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconRefresh; diff --git a/src/components/icon/assets/reporter.tsx b/src/components/icon/assets/reporter.tsx index e67ae81782c..e2af175d125 100644 --- a/src/components/icon/assets/reporter.tsx +++ b/src/components/icon/assets/reporter.tsx @@ -9,30 +9,29 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconReporter = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconReporter; diff --git a/src/components/icon/assets/return_key.tsx b/src/components/icon/assets/return_key.tsx index 335df7c25f0..020baf19940 100644 --- a/src/components/icon/assets/return_key.tsx +++ b/src/components/icon/assets/return_key.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconReturnKey = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconReturnKey; diff --git a/src/components/icon/assets/save.tsx b/src/components/icon/assets/save.tsx index aa66b99d4e5..4be79fe3360 100644 --- a/src/components/icon/assets/save.tsx +++ b/src/components/icon/assets/save.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconSave = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconSave; diff --git a/src/components/icon/assets/scale.tsx b/src/components/icon/assets/scale.tsx index d09bc3db880..31b8e25a3a7 100644 --- a/src/components/icon/assets/scale.tsx +++ b/src/components/icon/assets/scale.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconScale = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconScale; diff --git a/src/components/icon/assets/search.tsx b/src/components/icon/assets/search.tsx index 56a8e682170..a3eeac7895c 100644 --- a/src/components/icon/assets/search.tsx +++ b/src/components/icon/assets/search.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconSearch = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconSearch; diff --git a/src/components/icon/assets/securitySignal.tsx b/src/components/icon/assets/securitySignal.tsx index 24556e3bc9a..71d24b9667e 100644 --- a/src/components/icon/assets/securitySignal.tsx +++ b/src/components/icon/assets/securitySignal.tsx @@ -9,30 +9,29 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconSecuritySignal = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconSecuritySignal; diff --git a/src/components/icon/assets/securitySignalDetected.tsx b/src/components/icon/assets/securitySignalDetected.tsx index 7f615058931..ad3f25fa92a 100644 --- a/src/components/icon/assets/securitySignalDetected.tsx +++ b/src/components/icon/assets/securitySignalDetected.tsx @@ -9,30 +9,29 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconSecuritySignalDetected = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconSecuritySignalDetected; diff --git a/src/components/icon/assets/securitySignalResolved.tsx b/src/components/icon/assets/securitySignalResolved.tsx index eb818f4c407..85a3a279457 100644 --- a/src/components/icon/assets/securitySignalResolved.tsx +++ b/src/components/icon/assets/securitySignalResolved.tsx @@ -9,30 +9,29 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconSecuritySignalResolved = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconSecuritySignalResolved; diff --git a/src/components/icon/assets/sessionViewer.tsx b/src/components/icon/assets/sessionViewer.tsx index 123e889e422..fee1944e7d3 100644 --- a/src/components/icon/assets/sessionViewer.tsx +++ b/src/components/icon/assets/sessionViewer.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconSessionViewer = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconSessionViewer; diff --git a/src/components/icon/assets/shard.tsx b/src/components/icon/assets/shard.tsx index 779f56dd5bb..f0f310d3667 100644 --- a/src/components/icon/assets/shard.tsx +++ b/src/components/icon/assets/shard.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconShard = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconShard; diff --git a/src/components/icon/assets/share.tsx b/src/components/icon/assets/share.tsx index 10dae8a20fa..f1227e32ca6 100644 --- a/src/components/icon/assets/share.tsx +++ b/src/components/icon/assets/share.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconShare = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconShare; diff --git a/src/components/icon/assets/snowflake.tsx b/src/components/icon/assets/snowflake.tsx index f0e52ac915d..a082e46b200 100644 --- a/src/components/icon/assets/snowflake.tsx +++ b/src/components/icon/assets/snowflake.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconSnowflake = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconSnowflake; diff --git a/src/components/icon/assets/sortAscending.tsx b/src/components/icon/assets/sortAscending.tsx index 1199374d4db..eea3119e0e0 100644 --- a/src/components/icon/assets/sortAscending.tsx +++ b/src/components/icon/assets/sortAscending.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconSortAscending = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconSortAscending; diff --git a/src/components/icon/assets/sortDescending.tsx b/src/components/icon/assets/sortDescending.tsx index d2d08929d03..7751641317a 100644 --- a/src/components/icon/assets/sortDescending.tsx +++ b/src/components/icon/assets/sortDescending.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconSortDescending = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconSortDescending; diff --git a/src/components/icon/assets/sortLeft.tsx b/src/components/icon/assets/sortLeft.tsx index 674acf0987a..470d94be392 100644 --- a/src/components/icon/assets/sortLeft.tsx +++ b/src/components/icon/assets/sortLeft.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconSortLeft = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconSortLeft; diff --git a/src/components/icon/assets/sortRight.tsx b/src/components/icon/assets/sortRight.tsx index 510a5aafb93..aa94c6f5447 100644 --- a/src/components/icon/assets/sortRight.tsx +++ b/src/components/icon/assets/sortRight.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconSortRight = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconSortRight; diff --git a/src/components/icon/assets/sort_down.tsx b/src/components/icon/assets/sort_down.tsx index 57d9e683345..aeb08393bc0 100644 --- a/src/components/icon/assets/sort_down.tsx +++ b/src/components/icon/assets/sort_down.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconSortDown = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconSortDown; diff --git a/src/components/icon/assets/sort_up.tsx b/src/components/icon/assets/sort_up.tsx index 605d25482f8..82994ab850e 100644 --- a/src/components/icon/assets/sort_up.tsx +++ b/src/components/icon/assets/sort_up.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconSortUp = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconSortUp; diff --git a/src/components/icon/assets/sortable.tsx b/src/components/icon/assets/sortable.tsx index 102bd4f03be..3a964736763 100644 --- a/src/components/icon/assets/sortable.tsx +++ b/src/components/icon/assets/sortable.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconSortable = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconSortable; diff --git a/src/components/icon/assets/spaces.tsx b/src/components/icon/assets/spaces.tsx index 90efa45993d..4fb4958883e 100644 --- a/src/components/icon/assets/spaces.tsx +++ b/src/components/icon/assets/spaces.tsx @@ -9,21 +9,21 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconSpaces = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconSpaces; diff --git a/src/components/icon/assets/starPlusEmpty.tsx b/src/components/icon/assets/starPlusEmpty.tsx index 16281300e29..4cfcf220715 100644 --- a/src/components/icon/assets/starPlusEmpty.tsx +++ b/src/components/icon/assets/starPlusEmpty.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconStarPlusEmpty = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconStarPlusEmpty; diff --git a/src/components/icon/assets/starPlusFilled.tsx b/src/components/icon/assets/starPlusFilled.tsx index 5a77d3b6833..c06c6df52cb 100644 --- a/src/components/icon/assets/starPlusFilled.tsx +++ b/src/components/icon/assets/starPlusFilled.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconStarPlusFilled = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconStarPlusFilled; diff --git a/src/components/icon/assets/star_empty.tsx b/src/components/icon/assets/star_empty.tsx index b9bc6dc9471..ad29f879691 100644 --- a/src/components/icon/assets/star_empty.tsx +++ b/src/components/icon/assets/star_empty.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconStarEmpty = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconStarEmpty; diff --git a/src/components/icon/assets/star_empty_space.tsx b/src/components/icon/assets/star_empty_space.tsx index 1907a8cf28a..16fe107e09e 100644 --- a/src/components/icon/assets/star_empty_space.tsx +++ b/src/components/icon/assets/star_empty_space.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconStarEmptySpace = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconStarEmptySpace; diff --git a/src/components/icon/assets/star_filled.tsx b/src/components/icon/assets/star_filled.tsx index 5d35875b573..ab959a39ba6 100644 --- a/src/components/icon/assets/star_filled.tsx +++ b/src/components/icon/assets/star_filled.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconStarFilled = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconStarFilled; diff --git a/src/components/icon/assets/star_filled_space.tsx b/src/components/icon/assets/star_filled_space.tsx index c1440c91cfa..f7ad58cac64 100644 --- a/src/components/icon/assets/star_filled_space.tsx +++ b/src/components/icon/assets/star_filled_space.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconStarFilledSpace = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconStarFilledSpace; diff --git a/src/components/icon/assets/star_minus_empty.tsx b/src/components/icon/assets/star_minus_empty.tsx index 97f0e044ec7..27ddfc603ed 100644 --- a/src/components/icon/assets/star_minus_empty.tsx +++ b/src/components/icon/assets/star_minus_empty.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconStarMinusEmpty = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconStarMinusEmpty; diff --git a/src/components/icon/assets/star_minus_filled.tsx b/src/components/icon/assets/star_minus_filled.tsx index 964074dc056..db5bb555019 100644 --- a/src/components/icon/assets/star_minus_filled.tsx +++ b/src/components/icon/assets/star_minus_filled.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconStarMinusFilled = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconStarMinusFilled; diff --git a/src/components/icon/assets/stats.tsx b/src/components/icon/assets/stats.tsx index f160f98473b..34306f769fc 100644 --- a/src/components/icon/assets/stats.tsx +++ b/src/components/icon/assets/stats.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconStats = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconStats; diff --git a/src/components/icon/assets/stop.tsx b/src/components/icon/assets/stop.tsx index ddafcefb17b..c0a4b332299 100644 --- a/src/components/icon/assets/stop.tsx +++ b/src/components/icon/assets/stop.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconStop = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconStop; diff --git a/src/components/icon/assets/stop_filled.tsx b/src/components/icon/assets/stop_filled.tsx index 9b1d06caba2..72e271b57b4 100644 --- a/src/components/icon/assets/stop_filled.tsx +++ b/src/components/icon/assets/stop_filled.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconStopFilled = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconStopFilled; diff --git a/src/components/icon/assets/stop_slash.tsx b/src/components/icon/assets/stop_slash.tsx index 2b7e340b33a..6cf6ffca80f 100644 --- a/src/components/icon/assets/stop_slash.tsx +++ b/src/components/icon/assets/stop_slash.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconStopSlash = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconStopSlash; diff --git a/src/components/icon/assets/storage.tsx b/src/components/icon/assets/storage.tsx index 98fe6afcbaa..806605dba66 100644 --- a/src/components/icon/assets/storage.tsx +++ b/src/components/icon/assets/storage.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconStorage = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( @@ -39,5 +39,4 @@ const EuiIconStorage = ({ ); - export const icon = EuiIconStorage; diff --git a/src/components/icon/assets/string.tsx b/src/components/icon/assets/string.tsx index f6781c75208..dac085a53e6 100644 --- a/src/components/icon/assets/string.tsx +++ b/src/components/icon/assets/string.tsx @@ -9,30 +9,29 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconString = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconString; diff --git a/src/components/icon/assets/submodule.tsx b/src/components/icon/assets/submodule.tsx index 1d5cd4db0be..12ddcfde534 100644 --- a/src/components/icon/assets/submodule.tsx +++ b/src/components/icon/assets/submodule.tsx @@ -9,32 +9,31 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconSubmodule = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconSubmodule; diff --git a/src/components/icon/assets/sun.tsx b/src/components/icon/assets/sun.tsx index 2c6e3674943..e471ba8d2e0 100644 --- a/src/components/icon/assets/sun.tsx +++ b/src/components/icon/assets/sun.tsx @@ -9,27 +9,26 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconSun = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconSun; diff --git a/src/components/icon/assets/swatch_input.tsx b/src/components/icon/assets/swatch_input.tsx index 10d5d5f98c8..476cee76a63 100644 --- a/src/components/icon/assets/swatch_input.tsx +++ b/src/components/icon/assets/swatch_input.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconSwatchInput = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconSwatchInput; diff --git a/src/components/icon/assets/symlink.tsx b/src/components/icon/assets/symlink.tsx index 76ab4b6aa2e..9b8531da405 100644 --- a/src/components/icon/assets/symlink.tsx +++ b/src/components/icon/assets/symlink.tsx @@ -9,32 +9,31 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconSymlink = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconSymlink; diff --git a/src/components/icon/assets/tableOfContents.tsx b/src/components/icon/assets/tableOfContents.tsx index 3961229dc79..d3d71c97c2c 100644 --- a/src/components/icon/assets/tableOfContents.tsx +++ b/src/components/icon/assets/tableOfContents.tsx @@ -9,21 +9,21 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTableOfContents = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( @@ -31,5 +31,4 @@ const EuiIconTableOfContents = ({ ); - export const icon = EuiIconTableOfContents; diff --git a/src/components/icon/assets/table_density_compact.tsx b/src/components/icon/assets/table_density_compact.tsx index 807b7b09355..a3421bb41ab 100644 --- a/src/components/icon/assets/table_density_compact.tsx +++ b/src/components/icon/assets/table_density_compact.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTableDensityCompact = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTableDensityCompact; diff --git a/src/components/icon/assets/table_density_expanded.tsx b/src/components/icon/assets/table_density_expanded.tsx index f2ea56ca31b..6e23bf094a5 100644 --- a/src/components/icon/assets/table_density_expanded.tsx +++ b/src/components/icon/assets/table_density_expanded.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTableDensityExpanded = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTableDensityExpanded; diff --git a/src/components/icon/assets/table_density_normal.tsx b/src/components/icon/assets/table_density_normal.tsx index d73c9cae61e..0b566368cbb 100644 --- a/src/components/icon/assets/table_density_normal.tsx +++ b/src/components/icon/assets/table_density_normal.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTableDensityNormal = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTableDensityNormal; diff --git a/src/components/icon/assets/tag.tsx b/src/components/icon/assets/tag.tsx index 9f9860ea55d..700c8e4a9e7 100644 --- a/src/components/icon/assets/tag.tsx +++ b/src/components/icon/assets/tag.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTag = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTag; diff --git a/src/components/icon/assets/tear.tsx b/src/components/icon/assets/tear.tsx index 93b2820f835..892777bf73b 100644 --- a/src/components/icon/assets/tear.tsx +++ b/src/components/icon/assets/tear.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTear = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTear; diff --git a/src/components/icon/assets/temperature.tsx b/src/components/icon/assets/temperature.tsx index f2c77b4ce43..23147c5e796 100644 --- a/src/components/icon/assets/temperature.tsx +++ b/src/components/icon/assets/temperature.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTemperature = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + ); - export const icon = EuiIconTemperature; diff --git a/src/components/icon/assets/timeRefresh.tsx b/src/components/icon/assets/timeRefresh.tsx index b63222a602c..6b1e2ffa7ec 100644 --- a/src/components/icon/assets/timeRefresh.tsx +++ b/src/components/icon/assets/timeRefresh.tsx @@ -9,33 +9,32 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTimeRefresh = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTimeRefresh; diff --git a/src/components/icon/assets/timeline.tsx b/src/components/icon/assets/timeline.tsx index 0cf4fee7833..41bcb50ea46 100644 --- a/src/components/icon/assets/timeline.tsx +++ b/src/components/icon/assets/timeline.tsx @@ -9,30 +9,29 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTimeline = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconTimeline; diff --git a/src/components/icon/assets/timelineWithArrow.tsx b/src/components/icon/assets/timelineWithArrow.tsx index 041378c00a6..dc81800d563 100644 --- a/src/components/icon/assets/timelineWithArrow.tsx +++ b/src/components/icon/assets/timelineWithArrow.tsx @@ -9,6 +9,7 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; @@ -17,19 +18,19 @@ const EuiIconTimelineWithArrow = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); diff --git a/src/components/icon/assets/timeslider.tsx b/src/components/icon/assets/timeslider.tsx index ae79febc050..4e7cb77c8a1 100644 --- a/src/components/icon/assets/timeslider.tsx +++ b/src/components/icon/assets/timeslider.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTimeslider = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconTimeslider; diff --git a/src/components/icon/assets/tokenAlias.tsx b/src/components/icon/assets/tokenAlias.tsx index c084c21ac34..f582741c8b4 100644 --- a/src/components/icon/assets/tokenAlias.tsx +++ b/src/components/icon/assets/tokenAlias.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenAlias = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenAlias; diff --git a/src/components/icon/assets/tokenAnnotation.tsx b/src/components/icon/assets/tokenAnnotation.tsx index 057cd4389c1..2aa9a884665 100644 --- a/src/components/icon/assets/tokenAnnotation.tsx +++ b/src/components/icon/assets/tokenAnnotation.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenAnnotation = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenAnnotation; diff --git a/src/components/icon/assets/tokenArray.tsx b/src/components/icon/assets/tokenArray.tsx index dd42f4e7943..ff87485649c 100644 --- a/src/components/icon/assets/tokenArray.tsx +++ b/src/components/icon/assets/tokenArray.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenArray = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenArray; diff --git a/src/components/icon/assets/tokenBinary.tsx b/src/components/icon/assets/tokenBinary.tsx index 987b9fee166..32992123948 100644 --- a/src/components/icon/assets/tokenBinary.tsx +++ b/src/components/icon/assets/tokenBinary.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenBinary = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTokenBinary; diff --git a/src/components/icon/assets/tokenBoolean.tsx b/src/components/icon/assets/tokenBoolean.tsx index 1ba5c833079..c27098eb5b6 100644 --- a/src/components/icon/assets/tokenBoolean.tsx +++ b/src/components/icon/assets/tokenBoolean.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenBoolean = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenBoolean; diff --git a/src/components/icon/assets/tokenClass.tsx b/src/components/icon/assets/tokenClass.tsx index 8fc1b04735d..a8992e0abdb 100644 --- a/src/components/icon/assets/tokenClass.tsx +++ b/src/components/icon/assets/tokenClass.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenClass = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenClass; diff --git a/src/components/icon/assets/tokenCompletionSuggester.tsx b/src/components/icon/assets/tokenCompletionSuggester.tsx index fda22c9e623..e1f506abe9c 100644 --- a/src/components/icon/assets/tokenCompletionSuggester.tsx +++ b/src/components/icon/assets/tokenCompletionSuggester.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenCompletionSuggester = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} - + ); - export const icon = EuiIconTokenCompletionSuggester; diff --git a/src/components/icon/assets/tokenConstant.tsx b/src/components/icon/assets/tokenConstant.tsx index 5e6fd0d16bf..c0cc70844c8 100644 --- a/src/components/icon/assets/tokenConstant.tsx +++ b/src/components/icon/assets/tokenConstant.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenConstant = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenConstant; diff --git a/src/components/icon/assets/tokenDate.tsx b/src/components/icon/assets/tokenDate.tsx index cc821cfcb56..e81c0ba0c04 100644 --- a/src/components/icon/assets/tokenDate.tsx +++ b/src/components/icon/assets/tokenDate.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenDate = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenDate; diff --git a/src/components/icon/assets/tokenDenseVector.tsx b/src/components/icon/assets/tokenDenseVector.tsx index 6dce2d376ae..928303a39eb 100644 --- a/src/components/icon/assets/tokenDenseVector.tsx +++ b/src/components/icon/assets/tokenDenseVector.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenDenseVector = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTokenDenseVector; diff --git a/src/components/icon/assets/tokenElement.tsx b/src/components/icon/assets/tokenElement.tsx index 305d612696e..652e4a5ecdd 100644 --- a/src/components/icon/assets/tokenElement.tsx +++ b/src/components/icon/assets/tokenElement.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenElement = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenElement; diff --git a/src/components/icon/assets/tokenEnum.tsx b/src/components/icon/assets/tokenEnum.tsx index b9cc56ea615..bb3f39f4a0b 100644 --- a/src/components/icon/assets/tokenEnum.tsx +++ b/src/components/icon/assets/tokenEnum.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenEnum = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconTokenEnum; diff --git a/src/components/icon/assets/tokenEnumMember.tsx b/src/components/icon/assets/tokenEnumMember.tsx index 55989d6fbf8..13d8db9b4a2 100644 --- a/src/components/icon/assets/tokenEnumMember.tsx +++ b/src/components/icon/assets/tokenEnumMember.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenEnumMember = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenEnumMember; diff --git a/src/components/icon/assets/tokenEvent.tsx b/src/components/icon/assets/tokenEvent.tsx index bf7edde7872..baa697665cc 100644 --- a/src/components/icon/assets/tokenEvent.tsx +++ b/src/components/icon/assets/tokenEvent.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenEvent = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenEvent; diff --git a/src/components/icon/assets/tokenException.tsx b/src/components/icon/assets/tokenException.tsx index 7f7e16e0000..6bd28f2df65 100644 --- a/src/components/icon/assets/tokenException.tsx +++ b/src/components/icon/assets/tokenException.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenException = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTokenException; diff --git a/src/components/icon/assets/tokenField.tsx b/src/components/icon/assets/tokenField.tsx index 01b7b4f123f..f9abc7d404c 100644 --- a/src/components/icon/assets/tokenField.tsx +++ b/src/components/icon/assets/tokenField.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenField = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconTokenField; diff --git a/src/components/icon/assets/tokenFile.tsx b/src/components/icon/assets/tokenFile.tsx index 70e8237e20f..c4a066e46a0 100644 --- a/src/components/icon/assets/tokenFile.tsx +++ b/src/components/icon/assets/tokenFile.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenFile = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTokenFile; diff --git a/src/components/icon/assets/tokenFlattened.tsx b/src/components/icon/assets/tokenFlattened.tsx index db3d0b739ec..21e7766552a 100644 --- a/src/components/icon/assets/tokenFlattened.tsx +++ b/src/components/icon/assets/tokenFlattened.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenFlattened = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTokenFlattened; diff --git a/src/components/icon/assets/tokenFunction.tsx b/src/components/icon/assets/tokenFunction.tsx index 8bdea311648..48f76ea9043 100644 --- a/src/components/icon/assets/tokenFunction.tsx +++ b/src/components/icon/assets/tokenFunction.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenFunction = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenFunction; diff --git a/src/components/icon/assets/tokenGeo.tsx b/src/components/icon/assets/tokenGeo.tsx index 93b78d9f8fe..c2bb6d2ff22 100644 --- a/src/components/icon/assets/tokenGeo.tsx +++ b/src/components/icon/assets/tokenGeo.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenGeo = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenGeo; diff --git a/src/components/icon/assets/tokenHistogram.tsx b/src/components/icon/assets/tokenHistogram.tsx index 655044dca68..c7b65a98885 100644 --- a/src/components/icon/assets/tokenHistogram.tsx +++ b/src/components/icon/assets/tokenHistogram.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenHistogram = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconTokenHistogram; diff --git a/src/components/icon/assets/tokenIP.tsx b/src/components/icon/assets/tokenIP.tsx index 249c044e45e..d12ac46dd57 100644 --- a/src/components/icon/assets/tokenIP.tsx +++ b/src/components/icon/assets/tokenIP.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenIP = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenIP; diff --git a/src/components/icon/assets/tokenInterface.tsx b/src/components/icon/assets/tokenInterface.tsx index 874eba3e477..5fdd5ec7a81 100644 --- a/src/components/icon/assets/tokenInterface.tsx +++ b/src/components/icon/assets/tokenInterface.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenInterface = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenInterface; diff --git a/src/components/icon/assets/tokenJoin.tsx b/src/components/icon/assets/tokenJoin.tsx index ba94a0d58fe..d398d453f98 100644 --- a/src/components/icon/assets/tokenJoin.tsx +++ b/src/components/icon/assets/tokenJoin.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenJoin = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenJoin; diff --git a/src/components/icon/assets/tokenKey.tsx b/src/components/icon/assets/tokenKey.tsx index eed4cd02f44..471ef53422f 100644 --- a/src/components/icon/assets/tokenKey.tsx +++ b/src/components/icon/assets/tokenKey.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenKey = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenKey; diff --git a/src/components/icon/assets/tokenKeyword.tsx b/src/components/icon/assets/tokenKeyword.tsx index 7ad02c88196..3c4170d6742 100644 --- a/src/components/icon/assets/tokenKeyword.tsx +++ b/src/components/icon/assets/tokenKeyword.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenKeyword = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( ); - export const icon = EuiIconTokenKeyword; diff --git a/src/components/icon/assets/tokenMethod.tsx b/src/components/icon/assets/tokenMethod.tsx index 77b122c5a3b..bd64f81bd41 100644 --- a/src/components/icon/assets/tokenMethod.tsx +++ b/src/components/icon/assets/tokenMethod.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenMethod = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenMethod; diff --git a/src/components/icon/assets/tokenMetricCounter.tsx b/src/components/icon/assets/tokenMetricCounter.tsx index 1d0d1db8082..bbc8e769755 100644 --- a/src/components/icon/assets/tokenMetricCounter.tsx +++ b/src/components/icon/assets/tokenMetricCounter.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenMetricCounter = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTokenMetricCounter; diff --git a/src/components/icon/assets/tokenMetricGauge.tsx b/src/components/icon/assets/tokenMetricGauge.tsx index 6f59a97a4fb..793ae7be0a5 100644 --- a/src/components/icon/assets/tokenMetricGauge.tsx +++ b/src/components/icon/assets/tokenMetricGauge.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenMetricGauge = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTokenMetricGauge; diff --git a/src/components/icon/assets/tokenModule.tsx b/src/components/icon/assets/tokenModule.tsx index fe9f36c9596..51e927aa7ee 100644 --- a/src/components/icon/assets/tokenModule.tsx +++ b/src/components/icon/assets/tokenModule.tsx @@ -9,28 +9,27 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenModule = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + ); - export const icon = EuiIconTokenModule; diff --git a/src/components/icon/assets/tokenNamespace.tsx b/src/components/icon/assets/tokenNamespace.tsx index de0da1a9562..1e97543c127 100644 --- a/src/components/icon/assets/tokenNamespace.tsx +++ b/src/components/icon/assets/tokenNamespace.tsx @@ -9,27 +9,26 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenNamespace = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTokenNamespace; diff --git a/src/components/icon/assets/tokenNested.tsx b/src/components/icon/assets/tokenNested.tsx index 97bb48dacb6..4bae09317b8 100644 --- a/src/components/icon/assets/tokenNested.tsx +++ b/src/components/icon/assets/tokenNested.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenNested = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + ); - export const icon = EuiIconTokenNested; diff --git a/src/components/icon/assets/tokenNull.tsx b/src/components/icon/assets/tokenNull.tsx index a55a162315a..66272516c0d 100644 --- a/src/components/icon/assets/tokenNull.tsx +++ b/src/components/icon/assets/tokenNull.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenNull = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTokenNull; diff --git a/src/components/icon/assets/tokenNumber.tsx b/src/components/icon/assets/tokenNumber.tsx index a7a0eac3b42..41976d5f198 100644 --- a/src/components/icon/assets/tokenNumber.tsx +++ b/src/components/icon/assets/tokenNumber.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenNumber = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTokenNumber; diff --git a/src/components/icon/assets/tokenObject.tsx b/src/components/icon/assets/tokenObject.tsx index f44ac7e025f..799c1c9400a 100644 --- a/src/components/icon/assets/tokenObject.tsx +++ b/src/components/icon/assets/tokenObject.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenObject = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenObject; diff --git a/src/components/icon/assets/tokenOperator.tsx b/src/components/icon/assets/tokenOperator.tsx index 6cf8fab3d97..76496bee5b0 100644 --- a/src/components/icon/assets/tokenOperator.tsx +++ b/src/components/icon/assets/tokenOperator.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenOperator = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenOperator; diff --git a/src/components/icon/assets/tokenPackage.tsx b/src/components/icon/assets/tokenPackage.tsx index 095a9e93a49..ad487a84b7a 100644 --- a/src/components/icon/assets/tokenPackage.tsx +++ b/src/components/icon/assets/tokenPackage.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenPackage = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenPackage; diff --git a/src/components/icon/assets/tokenParameter.tsx b/src/components/icon/assets/tokenParameter.tsx index df1326bf4ba..111450de6c1 100644 --- a/src/components/icon/assets/tokenParameter.tsx +++ b/src/components/icon/assets/tokenParameter.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenParameter = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenParameter; diff --git a/src/components/icon/assets/tokenPercolator.tsx b/src/components/icon/assets/tokenPercolator.tsx index a350a334cc4..8e94b6b72c5 100644 --- a/src/components/icon/assets/tokenPercolator.tsx +++ b/src/components/icon/assets/tokenPercolator.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenPercolator = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenPercolator; diff --git a/src/components/icon/assets/tokenProperty.tsx b/src/components/icon/assets/tokenProperty.tsx index 7675af870d0..d35cda1a52d 100644 --- a/src/components/icon/assets/tokenProperty.tsx +++ b/src/components/icon/assets/tokenProperty.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenProperty = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenProperty; diff --git a/src/components/icon/assets/tokenRange.tsx b/src/components/icon/assets/tokenRange.tsx index daf78f4e2b9..8e3e6f320e0 100644 --- a/src/components/icon/assets/tokenRange.tsx +++ b/src/components/icon/assets/tokenRange.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenRange = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTokenRange; diff --git a/src/components/icon/assets/tokenRankFeature.tsx b/src/components/icon/assets/tokenRankFeature.tsx index 2dddddaae23..c9818a9299e 100644 --- a/src/components/icon/assets/tokenRankFeature.tsx +++ b/src/components/icon/assets/tokenRankFeature.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenRankFeature = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTokenRankFeature; diff --git a/src/components/icon/assets/tokenRankFeatures.tsx b/src/components/icon/assets/tokenRankFeatures.tsx index e89fd42fee2..3769d1b3c61 100644 --- a/src/components/icon/assets/tokenRankFeatures.tsx +++ b/src/components/icon/assets/tokenRankFeatures.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenRankFeatures = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTokenRankFeatures; diff --git a/src/components/icon/assets/tokenRepo.tsx b/src/components/icon/assets/tokenRepo.tsx index 0ce029ca5a7..efbc67be112 100644 --- a/src/components/icon/assets/tokenRepo.tsx +++ b/src/components/icon/assets/tokenRepo.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenRepo = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenRepo; diff --git a/src/components/icon/assets/tokenSearchType.tsx b/src/components/icon/assets/tokenSearchType.tsx index 3780a872a5d..7fb49af7e2d 100644 --- a/src/components/icon/assets/tokenSearchType.tsx +++ b/src/components/icon/assets/tokenSearchType.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenSearchType = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTokenSearchType; diff --git a/src/components/icon/assets/tokenShape.tsx b/src/components/icon/assets/tokenShape.tsx index e999100714e..97ca81a7157 100644 --- a/src/components/icon/assets/tokenShape.tsx +++ b/src/components/icon/assets/tokenShape.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenShape = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenShape; diff --git a/src/components/icon/assets/tokenString.tsx b/src/components/icon/assets/tokenString.tsx index 73807361b10..da8d60ef294 100644 --- a/src/components/icon/assets/tokenString.tsx +++ b/src/components/icon/assets/tokenString.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenString = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTokenString; diff --git a/src/components/icon/assets/tokenStruct.tsx b/src/components/icon/assets/tokenStruct.tsx index 1e13ab1672b..94f6257e4f5 100644 --- a/src/components/icon/assets/tokenStruct.tsx +++ b/src/components/icon/assets/tokenStruct.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenStruct = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenStruct; diff --git a/src/components/icon/assets/tokenSymbol.tsx b/src/components/icon/assets/tokenSymbol.tsx index c8a8996854e..2e2464dd70c 100644 --- a/src/components/icon/assets/tokenSymbol.tsx +++ b/src/components/icon/assets/tokenSymbol.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenSymbol = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTokenSymbol; diff --git a/src/components/icon/assets/tokenTag.tsx b/src/components/icon/assets/tokenTag.tsx index a61ab632b61..d8ee731922e 100644 --- a/src/components/icon/assets/tokenTag.tsx +++ b/src/components/icon/assets/tokenTag.tsx @@ -9,31 +9,30 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenTag = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTokenTag; diff --git a/src/components/icon/assets/tokenText.tsx b/src/components/icon/assets/tokenText.tsx index 8d67e9e30b6..055543d0474 100644 --- a/src/components/icon/assets/tokenText.tsx +++ b/src/components/icon/assets/tokenText.tsx @@ -9,27 +9,26 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenText = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTokenText; diff --git a/src/components/icon/assets/tokenTokenCount.tsx b/src/components/icon/assets/tokenTokenCount.tsx index 05aab9d6a6b..ac58bd4420d 100644 --- a/src/components/icon/assets/tokenTokenCount.tsx +++ b/src/components/icon/assets/tokenTokenCount.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenTokenCount = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTokenTokenCount; diff --git a/src/components/icon/assets/tokenVariable.tsx b/src/components/icon/assets/tokenVariable.tsx index a4f4715d862..8d42761e946 100644 --- a/src/components/icon/assets/tokenVariable.tsx +++ b/src/components/icon/assets/tokenVariable.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTokenVariable = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} ); - export const icon = EuiIconTokenVariable; diff --git a/src/components/icon/assets/training.tsx b/src/components/icon/assets/training.tsx index 9520e24e3cf..8a6d9b7c5a2 100644 --- a/src/components/icon/assets/training.tsx +++ b/src/components/icon/assets/training.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTraining = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTraining; diff --git a/src/components/icon/assets/trash.tsx b/src/components/icon/assets/trash.tsx index 80694cb643d..fad0eef74de 100644 --- a/src/components/icon/assets/trash.tsx +++ b/src/components/icon/assets/trash.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconTrash = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconTrash; diff --git a/src/components/icon/assets/unfold.tsx b/src/components/icon/assets/unfold.tsx index a182d57354d..e4d72559a50 100644 --- a/src/components/icon/assets/unfold.tsx +++ b/src/components/icon/assets/unfold.tsx @@ -9,25 +9,24 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconUnfold = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconUnfold; diff --git a/src/components/icon/assets/unlink.tsx b/src/components/icon/assets/unlink.tsx index 6e4e75802bd..e4da3f1d3db 100644 --- a/src/components/icon/assets/unlink.tsx +++ b/src/components/icon/assets/unlink.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconUnlink = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + ); - export const icon = EuiIconUnlink; diff --git a/src/components/icon/assets/user.tsx b/src/components/icon/assets/user.tsx index 3cf6b5f12ed..1d5bdc50bb5 100644 --- a/src/components/icon/assets/user.tsx +++ b/src/components/icon/assets/user.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconUser = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title} : null} - + ); - export const icon = EuiIconUser; diff --git a/src/components/icon/assets/userAvatar.tsx b/src/components/icon/assets/userAvatar.tsx index dc9bff34adc..2cb7e7d16f4 100644 --- a/src/components/icon/assets/userAvatar.tsx +++ b/src/components/icon/assets/userAvatar.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconUserAvatar = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + ); - export const icon = EuiIconUserAvatar; diff --git a/src/components/icon/assets/users.tsx b/src/components/icon/assets/users.tsx index 3cfdc0eea05..8b299797447 100644 --- a/src/components/icon/assets/users.tsx +++ b/src/components/icon/assets/users.tsx @@ -9,34 +9,33 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconUsers = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} ); - export const icon = EuiIconUsers; diff --git a/src/components/icon/assets/vector.tsx b/src/components/icon/assets/vector.tsx index 06f08da49c6..53cf9381744 100644 --- a/src/components/icon/assets/vector.tsx +++ b/src/components/icon/assets/vector.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconVector = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconVector; diff --git a/src/components/icon/assets/videoPlayer.tsx b/src/components/icon/assets/videoPlayer.tsx index 1cc11e45284..d6ad58af52c 100644 --- a/src/components/icon/assets/videoPlayer.tsx +++ b/src/components/icon/assets/videoPlayer.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconVideoPlayer = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconVideoPlayer; diff --git a/src/components/icon/assets/vis_area.tsx b/src/components/icon/assets/vis_area.tsx index d0ce95aae0a..f258abad668 100644 --- a/src/components/icon/assets/vis_area.tsx +++ b/src/components/icon/assets/vis_area.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconVisArea = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconVisArea; diff --git a/src/components/icon/assets/vis_area_stacked.tsx b/src/components/icon/assets/vis_area_stacked.tsx index c57c8376e52..3ebe9363cac 100644 --- a/src/components/icon/assets/vis_area_stacked.tsx +++ b/src/components/icon/assets/vis_area_stacked.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconVisAreaStacked = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconVisAreaStacked; diff --git a/src/components/icon/assets/vis_bar_horizontal.tsx b/src/components/icon/assets/vis_bar_horizontal.tsx index 1dc9048190d..bebbd2b9674 100644 --- a/src/components/icon/assets/vis_bar_horizontal.tsx +++ b/src/components/icon/assets/vis_bar_horizontal.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconVisBarHorizontal = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconVisBarHorizontal; diff --git a/src/components/icon/assets/vis_bar_horizontal_stacked.tsx b/src/components/icon/assets/vis_bar_horizontal_stacked.tsx index 180dbe54e55..a443b58d6e3 100644 --- a/src/components/icon/assets/vis_bar_horizontal_stacked.tsx +++ b/src/components/icon/assets/vis_bar_horizontal_stacked.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconVisBarHorizontalStacked = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconVisBarHorizontalStacked; diff --git a/src/components/icon/assets/vis_bar_vertical.tsx b/src/components/icon/assets/vis_bar_vertical.tsx index e98df3a6165..f97ce650554 100644 --- a/src/components/icon/assets/vis_bar_vertical.tsx +++ b/src/components/icon/assets/vis_bar_vertical.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconVisBarVertical = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconVisBarVertical; diff --git a/src/components/icon/assets/vis_bar_vertical_stacked.tsx b/src/components/icon/assets/vis_bar_vertical_stacked.tsx index 24008aa047b..186d3049824 100644 --- a/src/components/icon/assets/vis_bar_vertical_stacked.tsx +++ b/src/components/icon/assets/vis_bar_vertical_stacked.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconVisBarVerticalStacked = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconVisBarVerticalStacked; diff --git a/src/components/icon/assets/vis_gauge.tsx b/src/components/icon/assets/vis_gauge.tsx index 6a3eaa9e825..20de00cbcb5 100644 --- a/src/components/icon/assets/vis_gauge.tsx +++ b/src/components/icon/assets/vis_gauge.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconVisGauge = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconVisGauge; diff --git a/src/components/icon/assets/vis_goal.tsx b/src/components/icon/assets/vis_goal.tsx index 588d1efec1c..72eb3fa1076 100644 --- a/src/components/icon/assets/vis_goal.tsx +++ b/src/components/icon/assets/vis_goal.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconVisGoal = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconVisGoal; diff --git a/src/components/icon/assets/vis_line.tsx b/src/components/icon/assets/vis_line.tsx index 237f0b0daef..5ccecabd1e4 100644 --- a/src/components/icon/assets/vis_line.tsx +++ b/src/components/icon/assets/vis_line.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconVisLine = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconVisLine; diff --git a/src/components/icon/assets/vis_map_coordinate.tsx b/src/components/icon/assets/vis_map_coordinate.tsx index 5c4150d663a..e69fbbfd4ad 100644 --- a/src/components/icon/assets/vis_map_coordinate.tsx +++ b/src/components/icon/assets/vis_map_coordinate.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconVisMapCoordinate = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconVisMapCoordinate; diff --git a/src/components/icon/assets/vis_map_region.tsx b/src/components/icon/assets/vis_map_region.tsx index ba9068f60d2..71f06153ef1 100644 --- a/src/components/icon/assets/vis_map_region.tsx +++ b/src/components/icon/assets/vis_map_region.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconVisMapRegion = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconVisMapRegion; diff --git a/src/components/icon/assets/vis_metric.tsx b/src/components/icon/assets/vis_metric.tsx index 187c7817717..59c5276861b 100644 --- a/src/components/icon/assets/vis_metric.tsx +++ b/src/components/icon/assets/vis_metric.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconVisMetric = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconVisMetric; diff --git a/src/components/icon/assets/vis_pie.tsx b/src/components/icon/assets/vis_pie.tsx index efa03210fe7..1db78500228 100644 --- a/src/components/icon/assets/vis_pie.tsx +++ b/src/components/icon/assets/vis_pie.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconVisPie = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconVisPie; diff --git a/src/components/icon/assets/vis_table.tsx b/src/components/icon/assets/vis_table.tsx index 9c403dc65c9..41f4ff2a0c2 100644 --- a/src/components/icon/assets/vis_table.tsx +++ b/src/components/icon/assets/vis_table.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconVisTable = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconVisTable; diff --git a/src/components/icon/assets/vis_tag_cloud.tsx b/src/components/icon/assets/vis_tag_cloud.tsx index f5d592bb6a2..b64bc9a5b45 100644 --- a/src/components/icon/assets/vis_tag_cloud.tsx +++ b/src/components/icon/assets/vis_tag_cloud.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconVisTagCloud = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconVisTagCloud; diff --git a/src/components/icon/assets/vis_text.tsx b/src/components/icon/assets/vis_text.tsx index 98581e5c8a3..8c2451b59bd 100644 --- a/src/components/icon/assets/vis_text.tsx +++ b/src/components/icon/assets/vis_text.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconVisText = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconVisText; diff --git a/src/components/icon/assets/vis_timelion.tsx b/src/components/icon/assets/vis_timelion.tsx index 5e7038a3289..1798458204b 100644 --- a/src/components/icon/assets/vis_timelion.tsx +++ b/src/components/icon/assets/vis_timelion.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconVisTimelion = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconVisTimelion; diff --git a/src/components/icon/assets/vis_vega.tsx b/src/components/icon/assets/vis_vega.tsx index 6737807f4a1..91001ef4579 100644 --- a/src/components/icon/assets/vis_vega.tsx +++ b/src/components/icon/assets/vis_vega.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconVisVega = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconVisVega; diff --git a/src/components/icon/assets/vis_visual_builder.tsx b/src/components/icon/assets/vis_visual_builder.tsx index 08261bcf3af..cb1638cb1bf 100644 --- a/src/components/icon/assets/vis_visual_builder.tsx +++ b/src/components/icon/assets/vis_visual_builder.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconVisVisualBuilder = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconVisVisualBuilder; diff --git a/src/components/icon/assets/warning.tsx b/src/components/icon/assets/warning.tsx index 33cc7947619..3a08b7a973c 100644 --- a/src/components/icon/assets/warning.tsx +++ b/src/components/icon/assets/warning.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconWarning = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - - + + ); - export const icon = EuiIconWarning; diff --git a/src/components/icon/assets/wordWrap.tsx b/src/components/icon/assets/wordWrap.tsx index d8860df9371..6c86fe2dcc3 100644 --- a/src/components/icon/assets/wordWrap.tsx +++ b/src/components/icon/assets/wordWrap.tsx @@ -9,28 +9,27 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconWordWrap = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconWordWrap; diff --git a/src/components/icon/assets/wordWrapDisabled.tsx b/src/components/icon/assets/wordWrapDisabled.tsx index 4196db873ea..d36df88a763 100644 --- a/src/components/icon/assets/wordWrapDisabled.tsx +++ b/src/components/icon/assets/wordWrapDisabled.tsx @@ -9,27 +9,26 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconWordWrapDisabled = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconWordWrapDisabled; diff --git a/src/components/icon/assets/wrench.tsx b/src/components/icon/assets/wrench.tsx index d102628c0db..7a5e8e164f7 100644 --- a/src/components/icon/assets/wrench.tsx +++ b/src/components/icon/assets/wrench.tsx @@ -9,16 +9,16 @@ // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js import * as React from 'react'; +import type { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } - const EuiIconWrench = ({ title, titleId, ...props -}: React.SVGProps & SVGRProps) => ( +}: SVGProps & SVGRProps) => ( {title ? {title} : null} - + ); - export const icon = EuiIconWrench; From 53a80e1d0c25976bf8bf0a3c421d4d65791bff06 Mon Sep 17 00:00:00 2001 From: Constance Chen Date: Wed, 14 Jun 2023 11:30:42 -0700 Subject: [PATCH 3/5] changelog --- upcoming_changelogs/6843.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 upcoming_changelogs/6843.md diff --git a/upcoming_changelogs/6843.md b/upcoming_changelogs/6843.md new file mode 100644 index 00000000000..f5a02d8e801 --- /dev/null +++ b/upcoming_changelogs/6843.md @@ -0,0 +1 @@ +- Updated EUI's SVG icons library to use latest SVGO v3 optimization From 6730827572a28cf7d404fee600c8338caa8fab49 Mon Sep 17 00:00:00 2001 From: Constance Chen Date: Sun, 18 Jun 2023 22:17:00 -0700 Subject: [PATCH 4/5] Lint fix --- src/components/icon/assets/logo_memcached.tsx | 8 +++++++- src/components/icon/assets/logo_php.tsx | 6 +++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/components/icon/assets/logo_memcached.tsx b/src/components/icon/assets/logo_memcached.tsx index 4e321c056df..3260fbc39b5 100644 --- a/src/components/icon/assets/logo_memcached.tsx +++ b/src/components/icon/assets/logo_memcached.tsx @@ -54,7 +54,13 @@ const EuiIconLogoMemcached = ({ - + diff --git a/src/components/icon/assets/logo_php.tsx b/src/components/icon/assets/logo_php.tsx index 0242bee8a48..ae32e280f2e 100644 --- a/src/components/icon/assets/logo_php.tsx +++ b/src/components/icon/assets/logo_php.tsx @@ -63,7 +63,11 @@ const EuiIconLogoPhp = ({ - + From f37317e3c1d1fe6e330b07ca6b354b530b392208 Mon Sep 17 00:00:00 2001 From: Constance Chen Date: Mon, 19 Jun 2023 21:49:42 -0700 Subject: [PATCH 5/5] snapshots --- .../icon/__snapshots__/icon.test.tsx.snap | 1423 ++++++++--------- 1 file changed, 710 insertions(+), 713 deletions(-) diff --git a/src/components/icon/__snapshots__/icon.test.tsx.snap b/src/components/icon/__snapshots__/icon.test.tsx.snap index 7456904f0f4..d3046eec745 100644 --- a/src/components/icon/__snapshots__/icon.test.tsx.snap +++ b/src/components/icon/__snapshots__/icon.test.tsx.snap @@ -14,7 +14,7 @@ exports[`EuiIcon is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -33,7 +33,7 @@ exports[`EuiIcon props color #885522 is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -52,7 +52,7 @@ exports[`EuiIcon props color #fde is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -70,7 +70,7 @@ exports[`EuiIcon props color accent is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -88,7 +88,7 @@ exports[`EuiIcon props color danger is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -106,7 +106,7 @@ exports[`EuiIcon props color default is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -124,7 +124,7 @@ exports[`EuiIcon props color ghost is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -143,7 +143,7 @@ exports[`EuiIcon props color hsla(270, 60%, 70%, 0.9) is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -161,7 +161,7 @@ exports[`EuiIcon props color inherit is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -179,7 +179,7 @@ exports[`EuiIcon props color primary is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -198,7 +198,7 @@ exports[`EuiIcon props color rgb(100, 150, 200) is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -216,7 +216,7 @@ exports[`EuiIcon props color subdued is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -234,7 +234,7 @@ exports[`EuiIcon props color success is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -252,7 +252,7 @@ exports[`EuiIcon props color text is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -270,7 +270,7 @@ exports[`EuiIcon props color warning is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -291,7 +291,7 @@ exports[`EuiIcon props other props are passed through to the icon 1`] = ` Search `; @@ -309,7 +309,7 @@ exports[`EuiIcon props size \${size} is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -327,7 +327,7 @@ exports[`EuiIcon props size \${size} is rendered 2`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -345,7 +345,7 @@ exports[`EuiIcon props size \${size} is rendered 3`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -363,7 +363,7 @@ exports[`EuiIcon props size \${size} is rendered 4`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -381,7 +381,7 @@ exports[`EuiIcon props size \${size} is rendered 5`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -399,7 +399,7 @@ exports[`EuiIcon props size \${size} is rendered 6`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -418,7 +418,7 @@ exports[`EuiIcon props tabIndex renders focusable="false" when -1 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -436,7 +436,7 @@ exports[`EuiIcon props tabIndex renders focusable="false" when not provided 1`] xmlns="http://www.w3.org/2000/svg" > `; @@ -455,7 +455,7 @@ exports[`EuiIcon props tabIndex renders focusable="true" when 0 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -478,7 +478,7 @@ exports[`EuiIcon props title and titleId are passed and generate an aria-labelle Search icon `; @@ -496,7 +496,7 @@ exports[`EuiIcon props type accessibility is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -514,7 +514,7 @@ exports[`EuiIcon props type addDataApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -573,19 +573,19 @@ exports[`EuiIcon props type agentApp is rendered 1`] = ` > @@ -604,7 +604,7 @@ exports[`EuiIcon props type aggregate is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -623,10 +623,10 @@ exports[`EuiIcon props type alert is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -646,7 +646,7 @@ exports[`EuiIcon props type analyzeEvent is rendered 1`] = ` > @@ -665,7 +665,7 @@ exports[`EuiIcon props type annotation is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -687,7 +687,7 @@ exports[`EuiIcon props type apmApp is rendered 1`] = ` /> `; @@ -705,7 +705,7 @@ exports[`EuiIcon props type apmTrace is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -723,12 +723,12 @@ exports[`EuiIcon props type appSearchApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -747,7 +747,7 @@ exports[`EuiIcon props type apps is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -767,7 +767,7 @@ exports[`EuiIcon props type arrowDown is rendered 1`] = ` > @@ -787,11 +787,11 @@ exports[`EuiIcon props type arrowEnd is rendered 1`] = ` > `; @@ -811,7 +811,7 @@ exports[`EuiIcon props type arrowLeft is rendered 1`] = ` > @@ -832,7 +832,7 @@ exports[`EuiIcon props type arrowRight is rendered 1`] = ` > @@ -851,11 +851,11 @@ exports[`EuiIcon props type arrowStart is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -876,7 +876,7 @@ exports[`EuiIcon props type arrowUp is rendered 1`] = ` > @@ -896,11 +896,11 @@ exports[`EuiIcon props type article is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -919,7 +919,7 @@ exports[`EuiIcon props type asterisk is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -959,7 +959,7 @@ exports[`EuiIcon props type beaker is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -977,7 +977,7 @@ exports[`EuiIcon props type bell is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -996,7 +996,7 @@ exports[`EuiIcon props type bellSlash is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1014,7 +1014,7 @@ exports[`EuiIcon props type beta is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1032,7 +1032,7 @@ exports[`EuiIcon props type bolt is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1050,7 +1050,7 @@ exports[`EuiIcon props type boxesHorizontal is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1068,7 +1068,7 @@ exports[`EuiIcon props type boxesVertical is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1086,7 +1086,7 @@ exports[`EuiIcon props type branch is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1105,11 +1105,11 @@ exports[`EuiIcon props type branchUser is rendered 1`] = ` > `; @@ -1127,7 +1127,7 @@ exports[`EuiIcon props type broom is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1145,7 +1145,7 @@ exports[`EuiIcon props type brush is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1163,7 +1163,7 @@ exports[`EuiIcon props type bug is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1181,7 +1181,7 @@ exports[`EuiIcon props type bullseye is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1199,7 +1199,7 @@ exports[`EuiIcon props type calendar is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -1222,7 +1222,7 @@ exports[`EuiIcon props type canvasApp is rendered 1`] = ` d="M7 17h2v7H7zM12 14h2v10h-2zM17 16h2v8h-2zM22 14h3v2h-3zM22 18h3v2h-3zM22 22h3v2h-3z" /> `; @@ -1241,16 +1241,16 @@ exports[`EuiIcon props type casesApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -1269,7 +1269,7 @@ exports[`EuiIcon props type check is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -1288,7 +1288,7 @@ exports[`EuiIcon props type checkInCircleFilled is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -1307,7 +1307,7 @@ exports[`EuiIcon props type cheer is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1325,11 +1325,11 @@ exports[`EuiIcon props type classificationJob is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1347,7 +1347,7 @@ exports[`EuiIcon props type clock is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -1366,7 +1366,7 @@ exports[`EuiIcon props type cloudDrizzle is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1384,7 +1384,7 @@ exports[`EuiIcon props type cloudStormy is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1402,7 +1402,7 @@ exports[`EuiIcon props type cloudSunny is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1422,7 +1422,7 @@ exports[`EuiIcon props type cluster is rendered 1`] = ` > @@ -1441,11 +1441,11 @@ exports[`EuiIcon props type codeApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1463,7 +1463,7 @@ exports[`EuiIcon props type color is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1481,7 +1481,7 @@ exports[`EuiIcon props type compute is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1524,14 +1524,14 @@ exports[`EuiIcon props type consoleApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1549,7 +1549,7 @@ exports[`EuiIcon props type container is rendered 1`] = ` > @@ -1568,7 +1568,7 @@ exports[`EuiIcon props type continuityAbove is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1586,7 +1586,7 @@ exports[`EuiIcon props type continuityAboveBelow is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1604,7 +1604,7 @@ exports[`EuiIcon props type continuityBelow is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1622,7 +1622,7 @@ exports[`EuiIcon props type continuityWithin is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1640,7 +1640,7 @@ exports[`EuiIcon props type controlsHorizontal is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -1659,7 +1659,7 @@ exports[`EuiIcon props type controlsVertical is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -1678,10 +1678,10 @@ exports[`EuiIcon props type copy is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1699,10 +1699,10 @@ exports[`EuiIcon props type copyClipboard is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1743,10 +1743,10 @@ exports[`EuiIcon props type createMultiMetricJob is rendered 1`] = ` > `; @@ -1764,11 +1764,11 @@ exports[`EuiIcon props type createPopulationJob is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1786,7 +1786,7 @@ exports[`EuiIcon props type createSingleMetricJob is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1830,7 +1830,7 @@ exports[`EuiIcon props type crossClusterReplicationApp is rendered 1`] = ` /> `; @@ -1848,7 +1848,7 @@ exports[`EuiIcon props type crosshairs is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1866,7 +1866,7 @@ exports[`EuiIcon props type currency is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1884,7 +1884,7 @@ exports[`EuiIcon props type cut is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -1903,18 +1903,18 @@ exports[`EuiIcon props type dashboardApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1932,11 +1932,11 @@ exports[`EuiIcon props type dataVisualizer is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1954,7 +1954,7 @@ exports[`EuiIcon props type database is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -1973,11 +1973,11 @@ exports[`EuiIcon props type desktop is rendered 1`] = ` > `; @@ -1995,7 +1995,7 @@ exports[`EuiIcon props type devToolsApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2040,10 +2040,10 @@ exports[`EuiIcon props type discuss is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2061,7 +2061,7 @@ exports[`EuiIcon props type document is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2079,7 +2079,7 @@ exports[`EuiIcon props type documentEdit is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2097,13 +2097,13 @@ exports[`EuiIcon props type documentation is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2121,7 +2121,7 @@ exports[`EuiIcon props type documents is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2161,11 +2161,11 @@ exports[`EuiIcon props type dotInCircle is rendered 1`] = ` > `; @@ -2185,12 +2185,12 @@ exports[`EuiIcon props type doubleArrowLeft is rendered 1`] = ` > @@ -2211,12 +2211,12 @@ exports[`EuiIcon props type doubleArrowRight is rendered 1`] = ` > @@ -2235,10 +2235,10 @@ exports[`EuiIcon props type download is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2256,7 +2256,7 @@ exports[`EuiIcon props type editorAlignCenter is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2274,7 +2274,7 @@ exports[`EuiIcon props type editorAlignLeft is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2292,7 +2292,7 @@ exports[`EuiIcon props type editorAlignRight is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2310,7 +2310,7 @@ exports[`EuiIcon props type editorBold is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2329,7 +2329,7 @@ exports[`EuiIcon props type editorChecklist is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2347,7 +2347,7 @@ exports[`EuiIcon props type editorCodeBlock is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2365,7 +2365,7 @@ exports[`EuiIcon props type editorComment is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2383,7 +2383,7 @@ exports[`EuiIcon props type editorDistributeHorizontal is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2401,7 +2401,7 @@ exports[`EuiIcon props type editorDistributeVertical is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2419,7 +2419,7 @@ exports[`EuiIcon props type editorHeading is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2437,7 +2437,7 @@ exports[`EuiIcon props type editorItalic is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2455,7 +2455,7 @@ exports[`EuiIcon props type editorItemAlignBottom is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2473,7 +2473,7 @@ exports[`EuiIcon props type editorItemAlignCenter is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2491,7 +2491,7 @@ exports[`EuiIcon props type editorItemAlignLeft is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2509,7 +2509,7 @@ exports[`EuiIcon props type editorItemAlignMiddle is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2527,7 +2527,7 @@ exports[`EuiIcon props type editorItemAlignRight is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2545,7 +2545,7 @@ exports[`EuiIcon props type editorItemAlignTop is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2563,7 +2563,7 @@ exports[`EuiIcon props type editorLink is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2581,7 +2581,7 @@ exports[`EuiIcon props type editorOrderedList is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2599,7 +2599,7 @@ exports[`EuiIcon props type editorPositionBottomLeft is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2617,7 +2617,7 @@ exports[`EuiIcon props type editorPositionBottomRight is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2635,7 +2635,7 @@ exports[`EuiIcon props type editorPositionTopLeft is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2653,7 +2653,7 @@ exports[`EuiIcon props type editorPositionTopRight is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2671,7 +2671,7 @@ exports[`EuiIcon props type editorRedo is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2689,7 +2689,7 @@ exports[`EuiIcon props type editorStrike is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2707,7 +2707,7 @@ exports[`EuiIcon props type editorTable is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2725,7 +2725,7 @@ exports[`EuiIcon props type editorUnderline is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2743,7 +2743,7 @@ exports[`EuiIcon props type editorUndo is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2761,7 +2761,7 @@ exports[`EuiIcon props type editorUnorderedList is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2779,7 +2779,7 @@ exports[`EuiIcon props type email is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -2816,7 +2816,7 @@ exports[`EuiIcon props type emsApp is rendered 1`] = ` d="M3 22h3v2H1V1h23v5h-2V3H3z" /> `; @@ -2834,10 +2834,10 @@ exports[`EuiIcon props type eql is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2855,10 +2855,10 @@ exports[`EuiIcon props type eraser is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2876,7 +2876,7 @@ exports[`EuiIcon props type error is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -2895,7 +2895,7 @@ exports[`EuiIcon props type exit is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -2914,7 +2914,7 @@ exports[`EuiIcon props type expand is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -2933,7 +2933,7 @@ exports[`EuiIcon props type expandMini is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -2952,7 +2952,7 @@ exports[`EuiIcon props type exportAction is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2970,7 +2970,7 @@ exports[`EuiIcon props type eye is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -2988,7 +2988,7 @@ exports[`EuiIcon props type eyeClosed is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3006,7 +3006,7 @@ exports[`EuiIcon props type faceHappy is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3024,7 +3024,7 @@ exports[`EuiIcon props type faceNeutral is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -3043,7 +3043,7 @@ exports[`EuiIcon props type faceSad is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3065,7 +3065,7 @@ exports[`EuiIcon props type filebeatApp is rendered 1`] = ` d="M8 18h16v2H8zM8 13h9v2H8zM8 23h16v2H8z" /> `; @@ -3083,7 +3083,7 @@ exports[`EuiIcon props type filter is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3101,14 +3101,14 @@ exports[`EuiIcon props type filterExclude is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3126,7 +3126,7 @@ exports[`EuiIcon props type filterIgnore is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3144,7 +3144,7 @@ exports[`EuiIcon props type filterInCircle is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -3163,7 +3163,7 @@ exports[`EuiIcon props type filterInclude is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3181,7 +3181,7 @@ exports[`EuiIcon props type flag is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3199,11 +3199,11 @@ exports[`EuiIcon props type fleetApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3219,7 +3219,7 @@ exports[`EuiIcon props type fold is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3237,7 +3237,7 @@ exports[`EuiIcon props type folderCheck is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -3256,7 +3256,7 @@ exports[`EuiIcon props type folderClosed is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3274,7 +3274,7 @@ exports[`EuiIcon props type folderExclamation is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -3293,7 +3293,7 @@ exports[`EuiIcon props type folderOpen is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3313,7 +3313,7 @@ exports[`EuiIcon props type frameNext is rendered 1`] = ` > `; @@ -3333,7 +3333,7 @@ exports[`EuiIcon props type framePrevious is rendered 1`] = ` > `; @@ -3351,7 +3351,7 @@ exports[`EuiIcon props type fullScreen is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -3370,7 +3370,7 @@ exports[`EuiIcon props type fullScreenExit is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3406,7 +3406,7 @@ exports[`EuiIcon props type gear is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3425,10 +3425,10 @@ exports[`EuiIcon props type gisApp is rendered 1`] = ` > `; @@ -3446,7 +3446,7 @@ exports[`EuiIcon props type glasses is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3464,7 +3464,7 @@ exports[`EuiIcon props type globe is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3482,7 +3482,7 @@ exports[`EuiIcon props type grab is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -3501,7 +3501,7 @@ exports[`EuiIcon props type grabHorizontal is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -3521,10 +3521,10 @@ exports[`EuiIcon props type graphApp is rendered 1`] = ` > `; @@ -3542,7 +3542,7 @@ exports[`EuiIcon props type grid is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3560,11 +3560,11 @@ exports[`EuiIcon props type grokApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3582,7 +3582,7 @@ exports[`EuiIcon props type heart is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3601,10 +3601,10 @@ exports[`EuiIcon props type heartbeatApp is rendered 1`] = ` > `; @@ -3622,7 +3622,7 @@ exports[`EuiIcon props type heatmap is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3640,7 +3640,7 @@ exports[`EuiIcon props type help is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -3659,7 +3659,7 @@ exports[`EuiIcon props type home is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3677,7 +3677,7 @@ exports[`EuiIcon props type iInCircle is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -3696,7 +3696,7 @@ exports[`EuiIcon props type image is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3714,7 +3714,7 @@ exports[`EuiIcon props type importAction is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3732,7 +3732,7 @@ exports[`EuiIcon props type indexClose is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3750,7 +3750,7 @@ exports[`EuiIcon props type indexEdit is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3768,7 +3768,7 @@ exports[`EuiIcon props type indexFlush is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -3791,10 +3791,10 @@ exports[`EuiIcon props type indexManagementApp is rendered 1`] = ` /> `; @@ -3812,7 +3812,7 @@ exports[`EuiIcon props type indexMapping is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3830,7 +3830,7 @@ exports[`EuiIcon props type indexOpen is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3848,11 +3848,11 @@ exports[`EuiIcon props type indexPatternApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3870,17 +3870,17 @@ exports[`EuiIcon props type indexRollupApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3901,7 +3901,7 @@ exports[`EuiIcon props type indexRuntime is rendered 1`] = ` d="M12 2H2v11h6v1H1V1h12v6.839l-1-.707V2z" /> `; @@ -3919,13 +3919,13 @@ exports[`EuiIcon props type indexSettings is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3943,10 +3943,10 @@ exports[`EuiIcon props type indexTemporary is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -3964,7 +3964,7 @@ exports[`EuiIcon props type infinity is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -4006,7 +4006,7 @@ exports[`EuiIcon props type inspect is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -4024,10 +4024,10 @@ exports[`EuiIcon props type invert is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -4045,7 +4045,7 @@ exports[`EuiIcon props type ip is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -4062,7 +4062,7 @@ exports[`EuiIcon props type keyboard is rendered 1`] = ` > @@ -4081,7 +4081,7 @@ exports[`EuiIcon props type kqlField is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -4099,7 +4099,7 @@ exports[`EuiIcon props type kqlFunction is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -4117,7 +4117,7 @@ exports[`EuiIcon props type kqlOperand is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -4135,7 +4135,7 @@ exports[`EuiIcon props type kqlSelector is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -4153,7 +4153,7 @@ exports[`EuiIcon props type kqlValue is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -4214,15 +4214,15 @@ exports[`EuiIcon props type launch is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -4240,13 +4240,13 @@ exports[`EuiIcon props type layers is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -4265,10 +4265,10 @@ exports[`EuiIcon props type lensApp is rendered 1`] = ` > `; @@ -4286,7 +4286,7 @@ exports[`EuiIcon props type lettering is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -4305,7 +4305,7 @@ exports[`EuiIcon props type lineDashed is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -4323,7 +4323,7 @@ exports[`EuiIcon props type lineDotted is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -4341,7 +4341,7 @@ exports[`EuiIcon props type lineSolid is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -4359,7 +4359,7 @@ exports[`EuiIcon props type link is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -4377,7 +4377,7 @@ exports[`EuiIcon props type list is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -4395,7 +4395,7 @@ exports[`EuiIcon props type listAdd is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -4413,7 +4413,7 @@ exports[`EuiIcon props type lock is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -4431,7 +4431,7 @@ exports[`EuiIcon props type lockOpen is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -4454,16 +4454,16 @@ exports[`EuiIcon props type logoAWS is rendered 1`] = ` > @@ -4486,14 +4486,14 @@ exports[`EuiIcon props type logoAWSMono is rendered 1`] = ` fill-rule="evenodd" > @@ -4519,7 +4519,7 @@ exports[`EuiIcon props type logoAerospike is rendered 1`] = ` fill="#C4373A" /> @@ -4708,37 +4708,37 @@ exports[`EuiIcon props type logoApache is rendered 1`] = ` fill="none" > @@ -4759,15 +4759,15 @@ exports[`EuiIcon props type logoAppSearch is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -4786,7 +4786,7 @@ exports[`EuiIcon props type logoAzure is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -4805,7 +4805,7 @@ exports[`EuiIcon props type logoAzureMono is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -4827,12 +4827,12 @@ exports[`EuiIcon props type logoBeats is rendered 1`] = ` fill="#0080D5" /> `; @@ -4883,7 +4883,7 @@ exports[`EuiIcon props type logoCeph is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -4907,14 +4907,14 @@ exports[`EuiIcon props type logoCloud is rendered 1`] = ` > @@ -4935,14 +4935,14 @@ exports[`EuiIcon props type logoCloudEnterprise is rendered 1`] = ` > @@ -4962,14 +4962,14 @@ exports[`EuiIcon props type logoCode is rendered 1`] = ` > @@ -4988,7 +4988,7 @@ exports[`EuiIcon props type logoCodesandbox is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -5006,7 +5006,7 @@ exports[`EuiIcon props type logoCouchbase is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -5054,11 +5054,11 @@ exports[`EuiIcon props type logoDropwizard is rendered 1`] = ` fill="url(#logo_dropwizard_generated-id_b)" /> @@ -5183,7 +5183,7 @@ exports[`EuiIcon props type logoElasticStack is rendered 1`] = ` fill-rule="evenodd" > @@ -5220,14 +5220,14 @@ exports[`EuiIcon props type logoElasticsearch is rendered 1`] = ` > @@ -5248,20 +5248,20 @@ exports[`EuiIcon props type logoEnterpriseSearch is rendered 1`] = ` > @@ -5286,7 +5286,7 @@ exports[`EuiIcon props type logoEtcd is rendered 1`] = ` d="M14.65 14.164c0 1.189-.933 2.15-2.083 2.15-1.152 0-2.082-.961-2.082-2.15 0-1.185.93-2.15 2.082-2.15 1.15 0 2.083.965 2.083 2.15zm2.693 0c0 1.189.934 2.15 2.084 2.15s2.083-.961 2.083-2.15c0-1.185-.933-2.15-2.083-2.15-1.15 0-2.084.965-2.084 2.15z" /> @@ -5316,22 +5316,22 @@ exports[`EuiIcon props type logoGCP is rendered 1`] = ` fill-rule="evenodd" > @@ -5348,13 +5348,13 @@ exports[`EuiIcon props type logoGCP is rendered 1`] = ` /> @@ -5378,7 +5378,7 @@ exports[`EuiIcon props type logoGCPMono is rendered 1`] = ` d="M20.256 15.982c0-2.316-1.91-4.194-4.268-4.194-2.357 0-4.268 1.878-4.268 4.194 0 2.317 1.911 4.195 4.268 4.195 2.357 0 4.268-1.878 4.268-4.195" /> `; @@ -5396,7 +5396,7 @@ exports[`EuiIcon props type logoGithub is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -5417,31 +5417,31 @@ exports[`EuiIcon props type logoGmail is rendered 1`] = ` fill="none" > @@ -5462,75 +5462,75 @@ exports[`EuiIcon props type logoGolang is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -5619,7 +5619,7 @@ exports[`EuiIcon props type logoGoogleG is rendered 1`] = ` id="logo_google_g_generated-id_c" /> @@ -5921,31 +5921,31 @@ exports[`EuiIcon props type logoIBM is rendered 1`] = ` fill-rule="evenodd" > @@ -5966,7 +5966,7 @@ exports[`EuiIcon props type logoIBMMono is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -5985,7 +5985,7 @@ exports[`EuiIcon props type logoKafka is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6012,10 +6012,10 @@ exports[`EuiIcon props type logoKibana is rendered 1`] = ` /> @@ -6035,7 +6035,7 @@ exports[`EuiIcon props type logoKubernetes is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -6054,7 +6054,7 @@ exports[`EuiIcon props type logoLogging is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6108,15 +6108,15 @@ exports[`EuiIcon props type logoMaps is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -6206,28 +6206,28 @@ exports[`EuiIcon props type logoMemcached is rendered 1`] = ` fill="none" > @@ -6252,15 +6252,15 @@ exports[`EuiIcon props type logoMetrics is rendered 1`] = ` fill-rule="evenodd" > @@ -6283,11 +6283,11 @@ exports[`EuiIcon props type logoMongodb is rendered 1`] = ` fill="none" > @@ -6326,10 +6326,10 @@ exports[`EuiIcon props type logoMySQL is rendered 1`] = ` fill="#00546B" > @@ -6352,11 +6352,11 @@ exports[`EuiIcon props type logoNginx is rendered 1`] = ` fill-rule="evenodd" > @@ -6377,7 +6377,7 @@ exports[`EuiIcon props type logoObservability is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -6551,27 +6551,27 @@ exports[`EuiIcon props type logoPhp is rendered 1`] = ` mask="url(#logo_php_generated-id_g)" > @@ -6595,19 +6595,19 @@ exports[`EuiIcon props type logoPostgres is rendered 1`] = ` fill="none" > @@ -6627,7 +6627,7 @@ exports[`EuiIcon props type logoPrometheus is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -6646,7 +6646,7 @@ exports[`EuiIcon props type logoRabbitmq is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -6693,7 +6693,7 @@ exports[`EuiIcon props type logoRedis is rendered 1`] = ` fill="#D82C20" /> @@ -6728,16 +6728,16 @@ exports[`EuiIcon props type logoSecurity is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6763,12 +6763,12 @@ exports[`EuiIcon props type logoSiteSearch is rendered 1`] = ` fill="#FA744E" /> @@ -6790,27 +6790,27 @@ exports[`EuiIcon props type logoSketch is rendered 1`] = ` fill="none" > @@ -6833,19 +6833,19 @@ exports[`EuiIcon props type logoSlack is rendered 1`] = ` fill="none" > @@ -6865,16 +6865,16 @@ exports[`EuiIcon props type logoUptime is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6891,21 +6891,18 @@ exports[`EuiIcon props type logoVulnerabilityManagement is rendered 1`] = ` width="32" xmlns="http://www.w3.org/2000/svg" > - - - - - + + + `; @@ -6925,15 +6922,15 @@ exports[`EuiIcon props type logoWebhook is rendered 1`] = ` fill="none" > @@ -6953,7 +6950,7 @@ exports[`EuiIcon props type logoWindows is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -6972,16 +6969,16 @@ exports[`EuiIcon props type logoWorkplaceSearch is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -6999,11 +6996,11 @@ exports[`EuiIcon props type logsApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7021,7 +7018,7 @@ exports[`EuiIcon props type logstashFilter is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7039,7 +7036,7 @@ exports[`EuiIcon props type logstashIf is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7057,7 +7054,7 @@ exports[`EuiIcon props type logstashInput is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7075,7 +7072,7 @@ exports[`EuiIcon props type logstashOutput is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7093,7 +7090,7 @@ exports[`EuiIcon props type logstashQueue is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7112,10 +7109,10 @@ exports[`EuiIcon props type machineLearningApp is rendered 1`] = ` > `; @@ -7133,7 +7130,7 @@ exports[`EuiIcon props type magnet is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7151,7 +7148,7 @@ exports[`EuiIcon props type magnifyWithExclamation is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7169,7 +7166,7 @@ exports[`EuiIcon props type magnifyWithMinus is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7187,7 +7184,7 @@ exports[`EuiIcon props type magnifyWithPlus is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7206,10 +7203,10 @@ exports[`EuiIcon props type managementApp is rendered 1`] = ` > `; @@ -7227,7 +7224,7 @@ exports[`EuiIcon props type mapMarker is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7248,7 +7245,7 @@ exports[`EuiIcon props type memory is rendered 1`] = ` d="M7 10h2V6H7zM3 10h2V6H3zM11.025 10h2V6h-2zM3.5 13.75h1v-2.4h-1zM6.175 13.75h1.001v-2.4H6.175zM8.85 13.75h1v-2.4h-1zM11.525 13.75h1v-2.4h-1z" /> `; @@ -7267,7 +7264,7 @@ exports[`EuiIcon props type menu is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7285,7 +7282,7 @@ exports[`EuiIcon props type menuDown is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7303,7 +7300,7 @@ exports[`EuiIcon props type menuLeft is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7321,7 +7318,7 @@ exports[`EuiIcon props type menuRight is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7339,7 +7336,7 @@ exports[`EuiIcon props type menuUp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7357,7 +7354,7 @@ exports[`EuiIcon props type merge is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7375,14 +7372,14 @@ exports[`EuiIcon props type metricbeatApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7400,11 +7397,11 @@ exports[`EuiIcon props type metricsApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7422,7 +7419,7 @@ exports[`EuiIcon props type minimize is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7462,7 +7459,7 @@ exports[`EuiIcon props type minusInCircle is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7481,7 +7478,7 @@ exports[`EuiIcon props type minusInCircleFilled is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7500,11 +7497,11 @@ exports[`EuiIcon props type mobile is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7523,11 +7520,11 @@ exports[`EuiIcon props type monitoringApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7545,7 +7542,7 @@ exports[`EuiIcon props type moon is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7584,7 +7581,7 @@ exports[`EuiIcon props type nested is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7602,7 +7599,7 @@ exports[`EuiIcon props type node is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7620,7 +7617,7 @@ exports[`EuiIcon props type notebookApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7682,7 +7679,7 @@ exports[`EuiIcon props type online is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7704,7 +7701,7 @@ exports[`EuiIcon props type outlierDetectionJob is rendered 1`] = ` /> `; @@ -7722,7 +7719,7 @@ exports[`EuiIcon props type package is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7741,10 +7738,10 @@ exports[`EuiIcon props type packetbeatApp is rendered 1`] = ` > `; @@ -7762,7 +7759,7 @@ exports[`EuiIcon props type pageSelect is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7781,7 +7778,7 @@ exports[`EuiIcon props type pagesSelect is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7800,7 +7797,7 @@ exports[`EuiIcon props type paperClip is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7818,7 +7815,7 @@ exports[`EuiIcon props type partial is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7836,7 +7833,7 @@ exports[`EuiIcon props type pause is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7855,7 +7852,7 @@ exports[`EuiIcon props type payment is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7873,7 +7870,7 @@ exports[`EuiIcon props type pencil is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7917,7 +7914,7 @@ exports[`EuiIcon props type pin is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7936,7 +7933,7 @@ exports[`EuiIcon props type pinFilled is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -7954,7 +7951,7 @@ exports[`EuiIcon props type pipelineApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -7997,7 +7994,7 @@ exports[`EuiIcon props type play is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8016,7 +8013,7 @@ exports[`EuiIcon props type playFilled is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8034,7 +8031,7 @@ exports[`EuiIcon props type plus is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8052,7 +8049,7 @@ exports[`EuiIcon props type plusInCircle is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8071,7 +8068,7 @@ exports[`EuiIcon props type plusInCircleFilled is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8089,7 +8086,7 @@ exports[`EuiIcon props type popout is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8107,10 +8104,10 @@ exports[`EuiIcon props type push is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8128,7 +8125,7 @@ exports[`EuiIcon props type questionInCircle is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8146,7 +8143,7 @@ exports[`EuiIcon props type quote is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8164,11 +8161,11 @@ exports[`EuiIcon props type recentlyViewedApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8186,7 +8183,7 @@ exports[`EuiIcon props type refresh is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8204,7 +8201,7 @@ exports[`EuiIcon props type regressionJob is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8245,10 +8242,10 @@ exports[`EuiIcon props type reportingApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8288,7 +8285,7 @@ exports[`EuiIcon props type save is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8307,10 +8304,10 @@ exports[`EuiIcon props type savedObjectsApp is rendered 1`] = ` > `; @@ -8328,7 +8325,7 @@ exports[`EuiIcon props type scale is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8347,7 +8344,7 @@ exports[`EuiIcon props type search is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8379,7 +8376,7 @@ exports[`EuiIcon props type searchProfilerApp is rendered 1`] = ` d="M15.81 16H19v2h-3.19zM7 12h9v2H7z" /> `; @@ -8422,11 +8419,11 @@ exports[`EuiIcon props type securityApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8444,7 +8441,7 @@ exports[`EuiIcon props type securitySignal is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8463,7 +8460,7 @@ exports[`EuiIcon props type securitySignalDetected is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8482,7 +8479,7 @@ exports[`EuiIcon props type securitySignalResolved is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8505,7 +8502,7 @@ exports[`EuiIcon props type sessionViewer is rendered 1`] = ` /> @@ -8524,7 +8521,7 @@ exports[`EuiIcon props type shard is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8542,7 +8539,7 @@ exports[`EuiIcon props type share is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8560,7 +8557,7 @@ exports[`EuiIcon props type snowflake is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8579,7 +8576,7 @@ exports[`EuiIcon props type sortAscending is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8597,7 +8594,7 @@ exports[`EuiIcon props type sortDescending is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8615,7 +8612,7 @@ exports[`EuiIcon props type sortDown is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8633,7 +8630,7 @@ exports[`EuiIcon props type sortLeft is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8652,7 +8649,7 @@ exports[`EuiIcon props type sortRight is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8670,7 +8667,7 @@ exports[`EuiIcon props type sortUp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8688,7 +8685,7 @@ exports[`EuiIcon props type sortable is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -8708,7 +8705,7 @@ exports[`EuiIcon props type spaces is rendered 1`] = ` > @@ -8757,7 +8754,7 @@ exports[`EuiIcon props type sqlApp is rendered 1`] = ` d="M18 6h9v2h-9zM5 6h9v2H5zM5 12h9v2H5zM18 12h9v2h-9zM5 18h9v2H5zM18 18h9v2h-9zM18 24h9v2h-9zM5 24h9v2H5z" /> `; @@ -8775,7 +8772,7 @@ exports[`EuiIcon props type starEmpty is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8794,7 +8791,7 @@ exports[`EuiIcon props type starEmptySpace is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8813,7 +8810,7 @@ exports[`EuiIcon props type starFilled is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8832,7 +8829,7 @@ exports[`EuiIcon props type starFilledSpace is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8851,7 +8848,7 @@ exports[`EuiIcon props type starMinusEmpty is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8870,7 +8867,7 @@ exports[`EuiIcon props type starMinusFilled is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8889,7 +8886,7 @@ exports[`EuiIcon props type starPlusEmpty is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8908,7 +8905,7 @@ exports[`EuiIcon props type starPlusFilled is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8927,7 +8924,7 @@ exports[`EuiIcon props type stats is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8946,7 +8943,7 @@ exports[`EuiIcon props type stop is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -8988,7 +8985,7 @@ exports[`EuiIcon props type stopSlash is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9010,7 +9007,7 @@ exports[`EuiIcon props type storage is rendered 1`] = ` transform="translate(0 2)" > @@ -9064,7 +9061,7 @@ exports[`EuiIcon props type submodule is rendered 1`] = ` > @@ -9083,7 +9080,7 @@ exports[`EuiIcon props type sun is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9133,7 +9130,7 @@ exports[`EuiIcon props type symlink is rendered 1`] = ` > @@ -9152,7 +9149,7 @@ exports[`EuiIcon props type tableDensityCompact is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9170,7 +9167,7 @@ exports[`EuiIcon props type tableDensityExpanded is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9188,7 +9185,7 @@ exports[`EuiIcon props type tableDensityNormal is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9224,7 +9221,7 @@ exports[`EuiIcon props type tag is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9242,7 +9239,7 @@ exports[`EuiIcon props type tear is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9260,10 +9257,10 @@ exports[`EuiIcon props type temperature is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9283,11 +9280,11 @@ exports[`EuiIcon props type timeRefresh is rendered 1`] = ` > `; @@ -9305,7 +9302,7 @@ exports[`EuiIcon props type timeline is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9324,7 +9321,7 @@ exports[`EuiIcon props type timelineWithArrow is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9343,7 +9340,7 @@ exports[`EuiIcon props type timelionApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9385,7 +9382,7 @@ exports[`EuiIcon props type tokenAlias is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9404,7 +9401,7 @@ exports[`EuiIcon props type tokenAnnotation is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9423,7 +9420,7 @@ exports[`EuiIcon props type tokenArray is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9442,7 +9439,7 @@ exports[`EuiIcon props type tokenBinary is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9461,7 +9458,7 @@ exports[`EuiIcon props type tokenBoolean is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9480,7 +9477,7 @@ exports[`EuiIcon props type tokenClass is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9500,11 +9497,11 @@ exports[`EuiIcon props type tokenCompletionSuggester is rendered 1`] = ` > `; @@ -9522,7 +9519,7 @@ exports[`EuiIcon props type tokenConstant is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9541,7 +9538,7 @@ exports[`EuiIcon props type tokenDate is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9560,7 +9557,7 @@ exports[`EuiIcon props type tokenDenseVector is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9578,7 +9575,7 @@ exports[`EuiIcon props type tokenElement is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9616,7 +9613,7 @@ exports[`EuiIcon props type tokenEnumMember is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9635,7 +9632,7 @@ exports[`EuiIcon props type tokenEvent is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9654,7 +9651,7 @@ exports[`EuiIcon props type tokenException is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9691,7 +9688,7 @@ exports[`EuiIcon props type tokenFile is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9709,7 +9706,7 @@ exports[`EuiIcon props type tokenFlattened is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9727,7 +9724,7 @@ exports[`EuiIcon props type tokenFunction is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9746,7 +9743,7 @@ exports[`EuiIcon props type tokenGeo is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9783,7 +9780,7 @@ exports[`EuiIcon props type tokenIP is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9802,7 +9799,7 @@ exports[`EuiIcon props type tokenInterface is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9822,7 +9819,7 @@ exports[`EuiIcon props type tokenJoin is rendered 1`] = ` > @@ -9841,7 +9838,7 @@ exports[`EuiIcon props type tokenKey is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9878,7 +9875,7 @@ exports[`EuiIcon props type tokenMethod is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -9897,7 +9894,7 @@ exports[`EuiIcon props type tokenMetricCounter is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9915,7 +9912,7 @@ exports[`EuiIcon props type tokenMetricGauge is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9933,10 +9930,10 @@ exports[`EuiIcon props type tokenModule is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9954,7 +9951,7 @@ exports[`EuiIcon props type tokenNamespace is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -9975,10 +9972,10 @@ exports[`EuiIcon props type tokenNested is rendered 1`] = ` fill-rule="evenodd" > @@ -9997,7 +9994,7 @@ exports[`EuiIcon props type tokenNull is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10015,7 +10012,7 @@ exports[`EuiIcon props type tokenNumber is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10033,7 +10030,7 @@ exports[`EuiIcon props type tokenObject is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -10052,7 +10049,7 @@ exports[`EuiIcon props type tokenOperator is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -10071,7 +10068,7 @@ exports[`EuiIcon props type tokenPackage is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -10090,7 +10087,7 @@ exports[`EuiIcon props type tokenParameter is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -10110,7 +10107,7 @@ exports[`EuiIcon props type tokenPercolator is rendered 1`] = ` > @@ -10129,7 +10126,7 @@ exports[`EuiIcon props type tokenProperty is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -10151,7 +10148,7 @@ exports[`EuiIcon props type tokenRange is rendered 1`] = ` fill-rule="evenodd" > @@ -10170,7 +10167,7 @@ exports[`EuiIcon props type tokenRankFeature is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10188,7 +10185,7 @@ exports[`EuiIcon props type tokenRankFeatures is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10206,7 +10203,7 @@ exports[`EuiIcon props type tokenRepo is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -10225,11 +10222,11 @@ exports[`EuiIcon props type tokenSearchType is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -10248,7 +10245,7 @@ exports[`EuiIcon props type tokenShape is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -10267,7 +10264,7 @@ exports[`EuiIcon props type tokenString is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10285,7 +10282,7 @@ exports[`EuiIcon props type tokenStruct is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -10304,7 +10301,7 @@ exports[`EuiIcon props type tokenSymbol is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10322,10 +10319,10 @@ exports[`EuiIcon props type tokenTag is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -10344,7 +10341,7 @@ exports[`EuiIcon props type tokenText is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10362,7 +10359,7 @@ exports[`EuiIcon props type tokenTokenCount is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10380,7 +10377,7 @@ exports[`EuiIcon props type tokenVariable is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -10399,7 +10396,7 @@ exports[`EuiIcon props type training is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10417,7 +10414,7 @@ exports[`EuiIcon props type trash is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10433,7 +10430,7 @@ exports[`EuiIcon props type unfold is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10452,10 +10449,10 @@ exports[`EuiIcon props type unlink is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10474,10 +10471,10 @@ exports[`EuiIcon props type upgradeAssistantApp is rendered 1`] = ` > `; @@ -10496,10 +10493,10 @@ exports[`EuiIcon props type uptimeApp is rendered 1`] = ` > `; @@ -10518,11 +10515,11 @@ exports[`EuiIcon props type user is rendered 1`] = ` > `; @@ -10543,10 +10540,10 @@ exports[`EuiIcon props type userAvatar is rendered 1`] = ` fill-rule="evenodd" > @@ -10565,11 +10562,11 @@ exports[`EuiIcon props type users is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -10588,11 +10585,11 @@ exports[`EuiIcon props type usersRolesApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10610,7 +10607,7 @@ exports[`EuiIcon props type vector is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10628,7 +10625,7 @@ exports[`EuiIcon props type videoPlayer is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10646,7 +10643,7 @@ exports[`EuiIcon props type visArea is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10664,7 +10661,7 @@ exports[`EuiIcon props type visAreaStacked is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10682,7 +10679,7 @@ exports[`EuiIcon props type visBarHorizontal is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10700,7 +10697,7 @@ exports[`EuiIcon props type visBarHorizontalStacked is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10718,7 +10715,7 @@ exports[`EuiIcon props type visBarVertical is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10736,7 +10733,7 @@ exports[`EuiIcon props type visBarVerticalStacked is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10754,7 +10751,7 @@ exports[`EuiIcon props type visGauge is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10772,7 +10769,7 @@ exports[`EuiIcon props type visGoal is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10790,7 +10787,7 @@ exports[`EuiIcon props type visLine is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10808,7 +10805,7 @@ exports[`EuiIcon props type visMapCoordinate is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10826,7 +10823,7 @@ exports[`EuiIcon props type visMapRegion is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10844,7 +10841,7 @@ exports[`EuiIcon props type visMetric is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10862,7 +10859,7 @@ exports[`EuiIcon props type visPie is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10880,7 +10877,7 @@ exports[`EuiIcon props type visTable is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10898,7 +10895,7 @@ exports[`EuiIcon props type visTagCloud is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10916,7 +10913,7 @@ exports[`EuiIcon props type visText is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10934,7 +10931,7 @@ exports[`EuiIcon props type visTimelion is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10952,7 +10949,7 @@ exports[`EuiIcon props type visVega is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10970,7 +10967,7 @@ exports[`EuiIcon props type visVisualBuilder is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -10989,13 +10986,13 @@ exports[`EuiIcon props type visualizeApp is rendered 1`] = ` > `; @@ -11014,10 +11011,10 @@ exports[`EuiIcon props type vulnerabilityManagementApp is rendered 1`] = ` > `; @@ -11035,10 +11032,10 @@ exports[`EuiIcon props type warning is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -11056,17 +11053,17 @@ exports[`EuiIcon props type watchesApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -11087,7 +11084,7 @@ exports[`EuiIcon props type wordWrap is rendered 1`] = ` d="M2 3h12v1H2V3zm0 8h6v1H2v-1z" /> `; @@ -11105,7 +11102,7 @@ exports[`EuiIcon props type wordWrapDisabled is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `; @@ -11123,12 +11120,12 @@ exports[`EuiIcon props type workplaceSearchApp is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -11147,7 +11144,7 @@ exports[`EuiIcon props type wrench is rendered 1`] = ` xmlns="http://www.w3.org/2000/svg" > `;