diff --git a/packages/eslint-plugin/README.md b/packages/eslint-plugin/README.md index 23612721f116..dd4352af0992 100644 --- a/packages/eslint-plugin/README.md +++ b/packages/eslint-plugin/README.md @@ -29,6 +29,16 @@ We don't use `no-restricted-imports` because ESLint doesn't allow multiple error All deprecations still must follow our [deprecation process](../../wiki/eui-team-processes/deprecations.md). +### `@elastic/eui/no-deprecated-icon-aliases` + +Disallows deprecated EUI icon aliases in static JSX props on components imported +from `@elastic/eui`. The rule checks props ending in `IconType`, the `type` prop +on `EuiIcon` and `EuiIconTip`, and component-specific icon props such as +`timelineAvatar`, `icon`, `logo`, `iconLeft`, and `iconRight`. It automatically +replaces deprecated aliases with their supported icon handles. + +See the full table of icon replacements here: https://github.com/elastic/eui/issues/9561 + ### `@elastic/eui/no-css-color` This rule warns engineers to not use literal css color in the codebase, particularly for CSS properties that apply color to either the html element or text nodes, but rather urge users to defer to using the color tokens provided by EUI. diff --git a/packages/eslint-plugin/changelogs/upcoming/9815.md b/packages/eslint-plugin/changelogs/upcoming/9815.md new file mode 100644 index 000000000000..6f39e277587d --- /dev/null +++ b/packages/eslint-plugin/changelogs/upcoming/9815.md @@ -0,0 +1 @@ +- Add `no-deprecated-icon-aliases` rule diff --git a/packages/eslint-plugin/src/index.ts b/packages/eslint-plugin/src/index.ts index 7d446d9b3449..9e0f75caf760 100644 --- a/packages/eslint-plugin/src/index.ts +++ b/packages/eslint-plugin/src/index.ts @@ -27,6 +27,7 @@ import { EuiBadgeAccessibilityRules } from './rules/a11y/badge_accessibility_rul import { EuiIconAccessibilityRules } from './rules/a11y/icon_accessibility_rules'; import { TooltipNoInteractiveContent } from './rules/a11y/tooltip_no_interactive_content'; import { TooltipButtonIconWrap } from './rules/a11y/tooltip_button_icon_wrap'; +import { NoDeprecatedIconAliases } from './rules/no_deprecated_icon_aliases'; const config = { rules: { @@ -36,6 +37,7 @@ const config = { 'consistent-is-invalid-props': ConsistentIsInvalidProps, 'href-or-on-click': HrefOnClick, 'no-css-color': NoCssColor, + 'no-deprecated-icon-aliases': NoDeprecatedIconAliases, 'no-restricted-eui-imports': NoRestrictedEuiImports, 'no-static-z-index': NoStaticZIndex, 'no-unnamed-interactive-element': NoUnnamedInteractiveElement, @@ -63,6 +65,7 @@ const config = { '@elastic/eui/consistent-is-invalid-props': 'warn', '@elastic/eui/href-or-on-click': 'warn', '@elastic/eui/no-css-color': 'warn', + '@elastic/eui/no-deprecated-icon-aliases': 'warn', '@elastic/eui/no-restricted-eui-imports': 'warn', '@elastic/eui/no-static-z-index': 'warn', '@elastic/eui/no-unnamed-interactive-element': 'warn', diff --git a/packages/eslint-plugin/src/rules/no_deprecated_icon_aliases.test.ts b/packages/eslint-plugin/src/rules/no_deprecated_icon_aliases.test.ts new file mode 100644 index 000000000000..a60a64186629 --- /dev/null +++ b/packages/eslint-plugin/src/rules/no_deprecated_icon_aliases.test.ts @@ -0,0 +1,153 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { RuleTester } from '@typescript-eslint/rule-tester'; +import { + DEPRECATED_ICON_ALIASES, + DEPRECATED_ICONS_WITHOUT_REPLACEMENT, + NoDeprecatedIconAliases, +} from './no_deprecated_icon_aliases'; + +const languageOptions = { + sourceType: 'module' as const, + parserOptions: { + ecmaFeatures: { + jsx: true, + }, + }, +}; + +const ruleTester = new RuleTester(); + +ruleTester.run('no-deprecated-icon-aliases', NoDeprecatedIconAliases, { + valid: [ + { + code: 'import { EuiIcon } from "@elastic/eui";\n', + languageOptions, + }, + { + code: 'import { EuiButtonIcon } from "@elastic/eui";\n', + languageOptions, + }, + { + code: '', + languageOptions, + }, + { + code: '', + languageOptions, + }, + { + code: '', + languageOptions, + }, + { + code: 'import { EuiEmptyPrompt } from "@elastic/eui";\n', + languageOptions, + }, + { + code: '', + languageOptions, + }, + ], + invalid: [ + ...Object.entries(DEPRECATED_ICON_ALIASES).map(([alias, replacement]) => ({ + code: `import { EuiIcon } from "@elastic/eui";\n`, + output: `import { EuiIcon } from "@elastic/eui";\n`, + languageOptions, + errors: [ + { + messageId: 'deprecatedIconAlias' as const, + data: { alias, replacement }, + }, + ], + })), + ...Array.from(DEPRECATED_ICONS_WITHOUT_REPLACEMENT).map((iconType) => ({ + code: `import { EuiIcon } from "@elastic/eui";\n`, + languageOptions, + errors: [ + { + messageId: 'deprecatedIcon' as const, + data: { iconType }, + }, + ], + })), + { + code: "import { EuiButtonIcon } from '@elastic/eui';\n", + output: + "import { EuiButtonIcon } from '@elastic/eui';\n", + languageOptions, + errors: [ + { + messageId: 'deprecatedIconAlias', + data: { alias: 'editorComment', replacement: 'comment' }, + }, + ], + }, + { + code: 'import { EuiCommentTimeline } from "@elastic/eui";\n', + output: + 'import { EuiCommentTimeline } from "@elastic/eui";\n', + languageOptions, + errors: [ + { + messageId: 'deprecatedIconAlias', + data: { alias: 'compute', replacement: 'processor' }, + }, + ], + }, + { + code: 'import { EuiTimelineItem } from "@elastic/eui";\n', + output: + 'import { EuiTimelineItem } from "@elastic/eui";\n', + languageOptions, + errors: [ + { + messageId: 'deprecatedIconAlias', + data: { alias: 'temperature', replacement: 'thermometer' }, + }, + ], + }, + { + code: 'import { EuiLoadingLogo } from "@elastic/eui";\n', + output: + 'import { EuiLoadingLogo } from "@elastic/eui";\n', + languageOptions, + errors: [ + { + messageId: 'deprecatedIconAlias', + data: { alias: 'visArea', replacement: 'chartArea' }, + }, + ], + }, + { + code: 'import { EuiFormPrepend } from "@elastic/eui";\n', + output: + 'import { EuiFormPrepend } from "@elastic/eui";\n', + languageOptions, + errors: [ + { + messageId: 'deprecatedIconAlias', + data: { alias: 'search', replacement: 'magnify' }, + }, + ], + }, + { + code: 'import { EuiIcon as Icon } from "@elastic/eui";\n', + output: + 'import { EuiIcon as Icon } from "@elastic/eui";\n', + languageOptions, + errors: [ + { + messageId: 'deprecatedIconAlias', + data: { alias: 'mapMarker', replacement: 'waypoint' }, + }, + ], + }, + ], +}); diff --git a/packages/eslint-plugin/src/rules/no_deprecated_icon_aliases.ts b/packages/eslint-plugin/src/rules/no_deprecated_icon_aliases.ts new file mode 100644 index 000000000000..8abdf23e0ea8 --- /dev/null +++ b/packages/eslint-plugin/src/rules/no_deprecated_icon_aliases.ts @@ -0,0 +1,360 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { ESLintUtils, TSESTree } from '@typescript-eslint/utils'; + +export const DEPRECATED_ICON_ALIASES = { + alert: 'warning', + anomalyChart: 'chartAnomaly', + apmTrace: 'chartWaterfall', + arrowDown: 'chevronSingleDown', + arrowEnd: 'chevronLimitRight', + arrowLeft: 'chevronSingleLeft', + arrowRight: 'chevronSingleRight', + arrowStart: 'chevronLimitLeft', + arrowUp: 'chevronSingleUp', + beaker: 'flask', + boxesHorizontal: 'ellipsis', + boxesVertical: 'ellipsis', + changePointDetection: 'chartChangePoint', + checkInCircleFilled: 'checkCircleFill', + cheer: 'popper', + color: 'paintBucket', + compute: 'processor', + console: 'commandLine', + contrastHigh: 'contrastFill', + controlsHorizontal: 'controls', + controlsVertical: 'controls', + copyClipboard: 'copy', + crossInCircle: 'crossCircle', + crosshairs: 'crosshair', + currency: 'money', + cut: 'scissors', + desktop: 'display', + diff: 'compare', + discuss: 'comment', + documentEdit: 'pencil', + documents: 'document', + doubleArrowLeft: 'chevronDoubleLeft', + doubleArrowRight: 'chevronDoubleRight', + editorAlignCenter: 'textAlignCenter', + editorAlignLeft: 'textAlignLeft', + editorAlignRight: 'textAlignRight', + editorBold: 'textBold', + editorChecklist: 'listCheck', + editorCodeBlock: 'code', + editorComment: 'comment', + editorDistributeHorizontal: 'distributeHorizontal', + editorDistributeVertical: 'distributeVertical', + editorHeading: 'textHeading', + editorItalic: 'textItalic', + editorItemAlignBottom: 'alignBottom', + editorItemAlignCenter: 'alignCenterHorizontal', + editorItemAlignLeft: 'alignLeft', + editorItemAlignMiddle: 'alignCenterVertical', + editorItemAlignRight: 'alignRight', + editorItemAlignTop: 'alignTop', + editorLink: 'link', + editorOrderedList: 'listNumber', + editorPositionBottomLeft: 'alignBottomLeft', + editorPositionBottomRight: 'alignBottomRight', + editorPositionTopLeft: 'alignTopLeft', + editorPositionTopRight: 'alignTopRight', + editorRedo: 'redo', + editorStrike: 'textStrike', + editorTable: 'table', + editorUnderline: 'textUnderline', + editorUndo: 'undo', + editorUnorderedList: 'listBullet', + email: 'mail', + eql: 'query', + errorFilled: 'errorFill', + exit: 'logOut', + expand: 'maximize', + expandMini: 'maximize', + export: 'upload', + exportAction: 'upload', + eyeClosed: 'eyeSlash', + fieldStatistics: 'tableInfo', + filterInCircle: 'filter', + folderCheck: 'check', + folderOpened: 'folderOpen', + glasses: 'readOnly', + grab: 'dragVertical', + grabHorizontal: 'dragHorizontal', + grabOmnidirectional: 'drag', + heatmap: 'chartHeatmap', + importAction: 'download', + indexClose: 'tableCross', + indexEdit: 'tablePencil', + indexFlush: 'chartThreshold', + indexMapping: 'mapping', + indexOpen: 'tablePlus', + indexRuntime: 'tablePlay', + indexSettings: 'tableGear', + indexTemporary: 'tableTime', + invert: 'contrast', + kqlField: 'queryField', + kqlOperand: 'queryOperand', + kqlSelector: 'querySelector', + kqlValue: 'queryValue', + kubernetesPod: 'cube', + launch: 'rocket', + lettering: 'text', + lineDashed: 'lineDash', + lineDotted: 'lineDot', + list: 'listBullet', + listAdd: 'plusCircle', + logPatternAnalysis: 'pattern', + logRateAnalysis: 'chartBarVertical', + logstashIf: 'if', + logstashQueue: 'queue', + magnifyWithExclamation: 'magnifyExclamation', + magnifyWithMinus: 'magnifyMinus', + magnifyWithPlus: 'magnifyPlus', + mapMarker: 'waypoint', + minusInCircle: 'minusCircle', + minusInCircleFilled: 'minusCircle', + minusInSquare: 'minusSquare', + newChat: 'plusCircle', + node: 'vectorTriangle', + offline: 'wifiSlash', + online: 'wifi', + pagesSelect: 'documentsCheck', + pinFilled: 'pinFill', + pipeBreaks: 'lineBreak', + pipeNoBreaks: 'lineBreakSlash', + playFilled: 'play', + plusInCircle: 'plusCircle', + plusInCircleFilled: 'plusCircle', + plusInSquare: 'plusSquare', + popout: 'external', + productRobot: 'productAgent', + push: 'send', + returnKey: 'return', + search: 'magnify', + securitySignal: 'radar', + starEmpty: 'star', + starFilled: 'starFill', + starFilledSpace: 'starFillSpace', + starMinusFilled: 'starMinusFill', + starPlusFilled: 'starPlusFill', + stopFilled: 'stopFill', + streamsClassic: 'productStreamsClassic', + streamsWired: 'productStreamsWired', + submodule: 'merge', + tableDensityCompact: 'tableDensityHigh', + tableDensityExpanded: 'tableDensityLow', + tableDensityNormal: 'table', + temperature: 'thermometer', + timeRefresh: 'refreshTime', + timelineWithArrow: 'timelinePointer', + timeslider: 'clockControl', + tokenDenseVector: 'tokenVectorDense', + training: 'presentation', + unlink: 'linkSlash', + userAvatar: 'user', + vector: 'vectorSquare', + visArea: 'chartArea', + visAreaStacked: 'chartAreaStack', + visBarHorizontal: 'chartBarHorizontal', + visBarHorizontalStacked: 'chartBarHorizontalStack', + visBarVertical: 'chartBarVertical', + visBarVerticalStacked: 'chartBarVerticalStack', + visGauge: 'chartGauge', + visLine: 'chartLine', + visMapCoordinate: 'waypoint', + visMapRegion: 'map', + visMetric: 'chartMetric', + visPie: 'chartPie', + visTable: 'table', + visTagCloud: 'chartTagCloud', + visText: 'text', + visVega: 'code', + warningFilled: 'warningFill', +} as const; + +export const DEPRECATED_ICONS_WITHOUT_REPLACEMENT: ReadonlySet = + new Set(['mobile']); + +type DeprecatedIconAlias = keyof typeof DEPRECATED_ICON_ALIASES; +type StaticStringNode = TSESTree.Literal | TSESTree.TemplateLiteral; + +const getComponentName = ( + node: TSESTree.JSXOpeningElement +): string | undefined => + node.name.type === 'JSXIdentifier' ? node.name.name : undefined; + +const COMPONENT_ICON_ATTRIBUTES: Readonly>> = + { + EuiCommentTimeline: new Set(['timelineAvatar']), + EuiFormAppend: new Set(['iconLeft', 'iconRight']), + EuiFormAppendPrepend: new Set(['iconLeft', 'iconRight']), + EuiFormPrepend: new Set(['iconLeft', 'iconRight']), + EuiLoadingLogo: new Set(['logo']), + EuiTimelineItem: new Set(['icon']), + }; + +const isIconAttribute = ( + attributeName: string, + importedComponentName: string +): boolean => { + const normalizedName = attributeName.toLowerCase(); + + return ( + normalizedName.endsWith('icontype') || + COMPONENT_ICON_ATTRIBUTES[importedComponentName]?.has(attributeName) === + true || + (normalizedName === 'type' && + (importedComponentName === 'EuiIcon' || + importedComponentName === 'EuiIconTip')) + ); +}; + +const getStaticStringNode = ( + node: TSESTree.JSXAttribute +): StaticStringNode | undefined => { + if (node.value?.type === 'Literal' && typeof node.value.value === 'string') { + return node.value; + } + + if (node.value?.type !== 'JSXExpressionContainer') { + return; + } + + const { expression } = node.value; + + if (expression.type === 'Literal' && typeof expression.value === 'string') { + return expression; + } + + if ( + expression.type === 'TemplateLiteral' && + expression.expressions.length === 0 + ) { + return expression; + } +}; + +const getStaticStringValue = (node: StaticStringNode): string | undefined => { + if (node.type === 'Literal') { + return typeof node.value === 'string' ? node.value : undefined; + } + + return node.quasis[0]?.value.cooked ?? undefined; +}; + +const isDeprecatedIconAlias = (value: string): value is DeprecatedIconAlias => + value in DEPRECATED_ICON_ALIASES; + +export const NoDeprecatedIconAliases = ESLintUtils.RuleCreator.withoutDocs({ + create(context) { + const euiComponentImports = new Map(); + + return { + ImportDeclaration(node: TSESTree.ImportDeclaration) { + if ( + typeof node.source.value !== 'string' || + (node.source.value !== '@elastic/eui' && + !node.source.value.startsWith('@elastic/eui/')) + ) { + return; + } + + for (const specifier of node.specifiers) { + if (specifier.type !== 'ImportSpecifier') { + continue; + } + + const importedName = + specifier.imported.type === 'Identifier' + ? specifier.imported.name + : specifier.imported.value; + + if (importedName.startsWith('Eui')) { + euiComponentImports.set(specifier.local.name, importedName); + } + } + }, + JSXAttribute(node: TSESTree.JSXAttribute) { + if (node.name.type !== 'JSXIdentifier') { + return; + } + + const openingElement = node.parent; + const localComponentName = + openingElement.type === 'JSXOpeningElement' + ? getComponentName(openingElement) + : undefined; + const importedComponentName = localComponentName + ? euiComponentImports.get(localComponentName) + : undefined; + + if ( + !importedComponentName || + !isIconAttribute(node.name.name, importedComponentName) + ) { + return; + } + + const staticStringNode = getStaticStringNode(node); + if (!staticStringNode) { + return; + } + + const iconType = getStaticStringValue(staticStringNode); + if (!iconType) { + return; + } + + if (!isDeprecatedIconAlias(iconType)) { + if (DEPRECATED_ICONS_WITHOUT_REPLACEMENT.has(iconType)) { + context.report({ + node: staticStringNode, + messageId: 'deprecatedIcon', + data: { iconType }, + }); + } + return; + } + + const replacement = DEPRECATED_ICON_ALIASES[iconType]; + + context.report({ + node: staticStringNode, + messageId: 'deprecatedIconAlias', + data: { alias: iconType, replacement }, + fix(fixer) { + const sourceText = context.sourceCode.getText(staticStringNode); + const quote = sourceText[0]; + + return fixer.replaceText( + staticStringNode, + `${quote}${replacement}${quote}` + ); + }, + }); + }, + }; + }, + meta: { + type: 'suggestion', + docs: { + description: 'Disallow deprecated EUI icons in JSX icon props.', + }, + fixable: 'code', + schema: [], + messages: { + deprecatedIcon: + 'Icon `{{iconType}}` is deprecated and has no direct replacement.', + deprecatedIconAlias: + 'Icon alias `{{alias}}` is deprecated. Use `{{replacement}}` instead.', + }, + }, + defaultOptions: [], +}); diff --git a/packages/eui/.vrt/reference/display-euiicon--all-icons-desktop.png b/packages/eui/.vrt/reference/display-euiicon--all-icons-desktop.png index 3d74aa5c3d67..4bc639413e79 100644 Binary files a/packages/eui/.vrt/reference/display-euiicon--all-icons-desktop.png and b/packages/eui/.vrt/reference/display-euiicon--all-icons-desktop.png differ diff --git a/packages/eui/.vrt/reference/display-euiicon--all-icons-mobile.png b/packages/eui/.vrt/reference/display-euiicon--all-icons-mobile.png index fb778661cbef..6cd412c121c5 100644 Binary files a/packages/eui/.vrt/reference/display-euiicon--all-icons-mobile.png and b/packages/eui/.vrt/reference/display-euiicon--all-icons-mobile.png differ diff --git a/packages/eui/changelogs/upcoming/9815.md b/packages/eui/changelogs/upcoming/9815.md new file mode 100644 index 000000000000..8188fecdc117 --- /dev/null +++ b/packages/eui/changelogs/upcoming/9815.md @@ -0,0 +1,5 @@ +- Deprecated additional `EuiIcon` types that are not represented in Figma + +**Breaking changes** + +- Removed deprecated `EuiIcon` types and their icon assets diff --git a/packages/eui/src/components/basic_table/__snapshots__/collapsed_item_actions.test.tsx.snap b/packages/eui/src/components/basic_table/__snapshots__/collapsed_item_actions.test.tsx.snap index 5a16bf682e17..ecb79bb13174 100644 --- a/packages/eui/src/components/basic_table/__snapshots__/collapsed_item_actions.test.tsx.snap +++ b/packages/eui/src/components/basic_table/__snapshots__/collapsed_item_actions.test.tsx.snap @@ -25,7 +25,7 @@ exports[`CollapsedItemActions custom actions 1`] = ` aria-hidden="true" class="euiButtonIcon__icon" color="inherit" - data-euiicon-type="boxesVertical" + data-euiicon-type="ellipsis" /> @@ -151,7 +151,7 @@ exports[`CollapsedItemActions default actions - renders color on EuiContextMenuI aria-hidden="true" class="euiButtonIcon__icon" color="inherit" - data-euiicon-type="boxesVertical" + data-euiicon-type="ellipsis" /> @@ -296,7 +296,7 @@ exports[`CollapsedItemActions default actions 1`] = ` aria-hidden="true" class="euiButtonIcon__icon" color="inherit" - data-euiicon-type="boxesVertical" + data-euiicon-type="ellipsis" /> @@ -429,7 +429,7 @@ exports[`CollapsedItemActions renders 1`] = ` aria-hidden="true" class="euiButtonIcon__icon" color="inherit" - data-euiicon-type="boxesVertical" + data-euiicon-type="ellipsis" /> diff --git a/packages/eui/src/components/basic_table/collapsed_item_actions.tsx b/packages/eui/src/components/basic_table/collapsed_item_actions.tsx index 4a50637c42aa..ce9614d579ac 100644 --- a/packages/eui/src/components/basic_table/collapsed_item_actions.tsx +++ b/packages/eui/src/components/basic_table/collapsed_item_actions.tsx @@ -137,7 +137,7 @@ export const CollapsedItemActions = ({ ? allActionsButtonDisabledAriaLabel : allActionsButtonAriaLabel } - iconType="boxesVertical" + iconType="ellipsis" color="text" isDisabled={actionsDisabled} hasAriaDisabled={actionsDisabled} diff --git a/packages/eui/src/components/datagrid/__snapshots__/data_grid.test.tsx.snap b/packages/eui/src/components/datagrid/__snapshots__/data_grid.test.tsx.snap index 9786fa4e15fb..c24f55502c37 100644 --- a/packages/eui/src/components/datagrid/__snapshots__/data_grid.test.tsx.snap +++ b/packages/eui/src/components/datagrid/__snapshots__/data_grid.test.tsx.snap @@ -789,7 +789,7 @@ exports[`EuiDataGrid rendering renders additional toolbar controls 1`] = ` aria-hidden="true" class="euiButtonIcon__icon" color="inherit" - data-euiicon-type="boxesVertical" + data-euiicon-type="ellipsis" /> @@ -841,7 +841,7 @@ exports[`EuiDataGrid rendering renders additional toolbar controls 1`] = ` aria-hidden="true" class="euiButtonIcon__icon" color="inherit" - data-euiicon-type="boxesVertical" + data-euiicon-type="ellipsis" /> @@ -1256,7 +1256,7 @@ exports[`EuiDataGrid rendering renders control columns 1`] = ` aria-hidden="true" class="euiButtonIcon__icon" color="inherit" - data-euiicon-type="boxesVertical" + data-euiicon-type="ellipsis" /> @@ -1308,7 +1308,7 @@ exports[`EuiDataGrid rendering renders control columns 1`] = ` aria-hidden="true" class="euiButtonIcon__icon" color="inherit" - data-euiicon-type="boxesVertical" + data-euiicon-type="ellipsis" /> @@ -1876,7 +1876,7 @@ exports[`EuiDataGrid rendering renders custom column headers 1`] = ` aria-hidden="true" class="euiButtonIcon__icon" color="inherit" - data-euiicon-type="boxesVertical" + data-euiicon-type="ellipsis" /> @@ -1929,7 +1929,7 @@ exports[`EuiDataGrid rendering renders custom column headers 1`] = ` aria-hidden="true" class="euiButtonIcon__icon" color="inherit" - data-euiicon-type="boxesVertical" + data-euiicon-type="ellipsis" /> @@ -2319,7 +2319,7 @@ exports[`EuiDataGrid rendering renders with common and div attributes 1`] = ` aria-hidden="true" class="euiButtonIcon__icon" color="inherit" - data-euiicon-type="boxesVertical" + data-euiicon-type="ellipsis" /> @@ -2371,7 +2371,7 @@ exports[`EuiDataGrid rendering renders with common and div attributes 1`] = ` aria-hidden="true" class="euiButtonIcon__icon" color="inherit" - data-euiicon-type="boxesVertical" + data-euiicon-type="ellipsis" /> diff --git a/packages/eui/src/components/datagrid/body/__snapshots__/data_grid_body_custom.test.tsx.snap b/packages/eui/src/components/datagrid/body/__snapshots__/data_grid_body_custom.test.tsx.snap index 2f1eb13189e5..465c2cc3e6f9 100644 --- a/packages/eui/src/components/datagrid/body/__snapshots__/data_grid_body_custom.test.tsx.snap +++ b/packages/eui/src/components/datagrid/body/__snapshots__/data_grid_body_custom.test.tsx.snap @@ -49,7 +49,7 @@ exports[`EuiDataGridBodyCustomRender treats \`renderCustomGridBody\` as a render aria-hidden="true" class="euiButtonIcon__icon" color="inherit" - data-euiicon-type="boxesVertical" + data-euiicon-type="ellipsis" /> @@ -101,7 +101,7 @@ exports[`EuiDataGridBodyCustomRender treats \`renderCustomGridBody\` as a render aria-hidden="true" class="euiButtonIcon__icon" color="inherit" - data-euiicon-type="boxesVertical" + data-euiicon-type="ellipsis" /> diff --git a/packages/eui/src/components/datagrid/body/__snapshots__/data_grid_body_virtualized.test.tsx.snap b/packages/eui/src/components/datagrid/body/__snapshots__/data_grid_body_virtualized.test.tsx.snap index 85369eb37da2..522254a4f189 100644 --- a/packages/eui/src/components/datagrid/body/__snapshots__/data_grid_body_virtualized.test.tsx.snap +++ b/packages/eui/src/components/datagrid/body/__snapshots__/data_grid_body_virtualized.test.tsx.snap @@ -53,7 +53,7 @@ exports[`EuiDataGridBodyVirtualized renders 1`] = ` aria-hidden="true" class="euiButtonIcon__icon" color="inherit" - data-euiicon-type="boxesVertical" + data-euiicon-type="ellipsis" /> @@ -105,7 +105,7 @@ exports[`EuiDataGridBodyVirtualized renders 1`] = ` aria-hidden="true" class="euiButtonIcon__icon" color="inherit" - data-euiicon-type="boxesVertical" + data-euiicon-type="ellipsis" /> diff --git a/packages/eui/src/components/datagrid/body/header/__snapshots__/column_actions.test.tsx.snap b/packages/eui/src/components/datagrid/body/header/__snapshots__/column_actions.test.tsx.snap index 8e49cd3786cf..f31fa2608bc1 100644 --- a/packages/eui/src/components/datagrid/body/header/__snapshots__/column_actions.test.tsx.snap +++ b/packages/eui/src/components/datagrid/body/header/__snapshots__/column_actions.test.tsx.snap @@ -18,7 +18,7 @@ exports[`ColumnActions renders 1`] = ` aria-hidden="true" class="euiButtonIcon__icon" color="inherit" - data-euiicon-type="boxesVertical" + data-euiicon-type="ellipsis" /> diff --git a/packages/eui/src/components/datagrid/body/header/__snapshots__/data_grid_header_cell.test.tsx.snap b/packages/eui/src/components/datagrid/body/header/__snapshots__/data_grid_header_cell.test.tsx.snap index 4a5b62552ca3..a9acddc329fb 100644 --- a/packages/eui/src/components/datagrid/body/header/__snapshots__/data_grid_header_cell.test.tsx.snap +++ b/packages/eui/src/components/datagrid/body/header/__snapshots__/data_grid_header_cell.test.tsx.snap @@ -41,7 +41,7 @@ exports[`EuiDataGridHeaderCell renders 1`] = ` aria-hidden="true" class="euiButtonIcon__icon" color="inherit" - data-euiicon-type="boxesVertical" + data-euiicon-type="ellipsis" /> diff --git a/packages/eui/src/components/datagrid/body/header/column_actions.tsx b/packages/eui/src/components/datagrid/body/header/column_actions.tsx index ca81791a20d7..451e04662661 100644 --- a/packages/eui/src/components/datagrid/body/header/column_actions.tsx +++ b/packages/eui/src/components/datagrid/body/header/column_actions.tsx @@ -197,7 +197,7 @@ export const ColumnActions: FunctionComponent< css={styles.euiDataGridHeaderCell__popover} button={ { aria-hidden="true" class="euiButtonIcon__icon" color="inherit" - data-euiicon-type="boxesVertical" + data-euiicon-type="ellipsis" /> diff --git a/packages/eui/src/components/datagrid/data_grid.stories.utils.tsx b/packages/eui/src/components/datagrid/data_grid.stories.utils.tsx index 5493d53ce9a6..7fa502f3281e 100644 --- a/packages/eui/src/components/datagrid/data_grid.stories.utils.tsx +++ b/packages/eui/src/components/datagrid/data_grid.stories.utils.tsx @@ -238,7 +238,7 @@ export const defaultStorybookArgs = { <> diff --git a/packages/eui/src/components/icon/__snapshots__/icon.test.tsx.snap b/packages/eui/src/components/icon/__snapshots__/icon.test.tsx.snap index 7c7bec4b233f..ba26d3cb7551 100644 --- a/packages/eui/src/components/icon/__snapshots__/icon.test.tsx.snap +++ b/packages/eui/src/components/icon/__snapshots__/icon.test.tsx.snap @@ -1001,26 +1001,6 @@ exports[`EuiIcon props type annotation is rendered 1`] = ` `; -exports[`EuiIcon props type anomalyChart is rendered 1`] = ` - - - - -`; - exports[`EuiIcon props type anomalySwimLane is rendered 1`] = ` `; -exports[`EuiIcon props type apmTrace is rendered 1`] = ` - - - - - - - - - -`; - exports[`EuiIcon props type appSearchApp is rendered 1`] = ` `; -exports[`EuiIcon props type arrowDown is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type arrowEnd is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type arrowLeft is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type arrowRight is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type arrowStart is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type arrowUp is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type article is rendered 1`] = ` `; -exports[`EuiIcon props type beaker is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type bell is rendered 1`] = ` `; -exports[`EuiIcon props type boxesHorizontal is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type boxesVertical is rendered 1`] = ` `; -exports[`EuiIcon props type changePointDetection is rendered 1`] = ` - - - - -`; - exports[`EuiIcon props type chartAnomaly is rendered 1`] = ` `; -exports[`EuiIcon props type checkInCircleFilled is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type cheer is rendered 1`] = ` - - - - -`; - exports[`EuiIcon props type chevronDoubleLeft is rendered 1`] = ` `; -exports[`EuiIcon props type color is rendered 1`] = ` +exports[`EuiIcon props type commandLine is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type commandLine is rendered 1`] = ` - - `; -exports[`EuiIcon props type console is rendered 1`] = ` - - - - -`; - exports[`EuiIcon props type consoleApp is rendered 1`] = ` `; -exports[`EuiIcon props type contrastHigh is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type controls is rendered 1`] = ` `; -exports[`EuiIcon props type controlsHorizontal is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type controlsVertical is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type copy is rendered 1`] = ` `; -exports[`EuiIcon props type copyClipboard is rendered 1`] = ` - - - - -`; - exports[`EuiIcon props type createAdvancedJob is rendered 1`] = ` `; -exports[`EuiIcon props type crossInCircle is rendered 1`] = ` - - - - -`; - exports[`EuiIcon props type crossProjectSearch is rendered 1`] = ` `; -exports[`EuiIcon props type crosshairs is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type currency is rendered 1`] = ` - - - - - -`; - -exports[`EuiIcon props type cut is rendered 1`] = ` +exports[`EuiIcon props type cube is rendered 1`] = ` - `; @@ -3542,25 +3069,6 @@ exports[`EuiIcon props type database is rendered 1`] = ` `; -exports[`EuiIcon props type desktop is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type devToolsApp is rendered 1`] = ` `; -exports[`EuiIcon props type diff is rendered 1`] = ` - - - - - -`; - exports[`EuiIcon props type discoverApp is rendered 1`] = ` `; -exports[`EuiIcon props type discuss is rendered 1`] = ` - - - - -`; - exports[`EuiIcon props type display is rendered 1`] = ` `; -exports[`EuiIcon props type documentEdit is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type documentation is rendered 1`] = ` `; -exports[`EuiIcon props type dot is rendered 1`] = ` +exports[`EuiIcon props type documentsCheck is rendered 1`] = ` - -`; - -exports[`EuiIcon props type dotInCircle is rendered 1`] = ` - `; -exports[`EuiIcon props type doubleArrowLeft is rendered 1`] = ` +exports[`EuiIcon props type dot is rendered 1`] = ` - `; -exports[`EuiIcon props type doubleArrowRight is rendered 1`] = ` +exports[`EuiIcon props type dotInCircle is rendered 1`] = ` `; @@ -3939,10 +3358,10 @@ exports[`EuiIcon props type dragVertical is rendered 1`] = ` `; -exports[`EuiIcon props type editorAlignCenter is rendered 1`] = ` +exports[`EuiIcon props type editorComment is rendered 1`] = ` + `; -exports[`EuiIcon props type editorAlignLeft is rendered 1`] = ` +exports[`EuiIcon props type ellipsis is rendered 1`] = ` `; -exports[`EuiIcon props type editorAlignRight is rendered 1`] = ` +exports[`EuiIcon props type empty is rendered 1`] = ` - - +/> `; -exports[`EuiIcon props type editorBold is rendered 1`] = ` +exports[`EuiIcon props type emsApp is rendered 1`] = ` + `; -exports[`EuiIcon props type editorChecklist is rendered 1`] = ` +exports[`EuiIcon props type endpoint is rendered 1`] = ` `; -exports[`EuiIcon props type editorCodeBlock is rendered 1`] = ` +exports[`EuiIcon props type eraser is rendered 1`] = ` + `; -exports[`EuiIcon props type editorComment is rendered 1`] = ` +exports[`EuiIcon props type error is rendered 1`] = ` `; -exports[`EuiIcon props type editorDistributeHorizontal is rendered 1`] = ` +exports[`EuiIcon props type errorFill is rendered 1`] = ` `; -exports[`EuiIcon props type editorDistributeVertical is rendered 1`] = ` +exports[`EuiIcon props type esqlVis is rendered 1`] = ` + `; -exports[`EuiIcon props type editorHeading is rendered 1`] = ` +exports[`EuiIcon props type export is rendered 1`] = ` `; -exports[`EuiIcon props type editorItalic is rendered 1`] = ` +exports[`EuiIcon props type external is rendered 1`] = ` + `; -exports[`EuiIcon props type editorItemAlignBottom is rendered 1`] = ` +exports[`EuiIcon props type eye is rendered 1`] = ` + `; -exports[`EuiIcon props type editorItemAlignCenter is rendered 1`] = ` +exports[`EuiIcon props type eyeSlash is rendered 1`] = ` + + + `; -exports[`EuiIcon props type editorItemAlignLeft is rendered 1`] = ` +exports[`EuiIcon props type faceHappy is rendered 1`] = ` + `; -exports[`EuiIcon props type editorItemAlignMiddle is rendered 1`] = ` +exports[`EuiIcon props type faceNeutral is rendered 1`] = ` + `; -exports[`EuiIcon props type editorItemAlignRight is rendered 1`] = ` +exports[`EuiIcon props type faceSad is rendered 1`] = ` + `; -exports[`EuiIcon props type editorItemAlignTop is rendered 1`] = ` +exports[`EuiIcon props type filebeatApp is rendered 1`] = ` + `; -exports[`EuiIcon props type editorLink is rendered 1`] = ` +exports[`EuiIcon props type filter is rendered 1`] = ` - - `; -exports[`EuiIcon props type editorOrderedList is rendered 1`] = ` +exports[`EuiIcon props type filterExclude is rendered 1`] = ` `; -exports[`EuiIcon props type editorPositionBottomLeft is rendered 1`] = ` +exports[`EuiIcon props type filterIgnore is rendered 1`] = ` `; -exports[`EuiIcon props type editorPositionBottomRight is rendered 1`] = ` +exports[`EuiIcon props type filterInclude is rendered 1`] = ` `; -exports[`EuiIcon props type editorPositionTopLeft is rendered 1`] = ` +exports[`EuiIcon props type flag is rendered 1`] = ` `; -exports[`EuiIcon props type editorPositionTopRight is rendered 1`] = ` +exports[`EuiIcon props type flask is rendered 1`] = ` `; -exports[`EuiIcon props type editorRedo is rendered 1`] = ` +exports[`EuiIcon props type fleetApp is rendered 1`] = ` + `; -exports[`EuiIcon props type editorStrike is rendered 1`] = ` +exports[`EuiIcon props type fold is rendered 1`] = ` `; -exports[`EuiIcon props type editorTable is rendered 1`] = ` +exports[`EuiIcon props type folder is rendered 1`] = ` - `; -exports[`EuiIcon props type editorUnderline is rendered 1`] = ` +exports[`EuiIcon props type folderCheck is rendered 1`] = ` - - -`; - -exports[`EuiIcon props type editorUndo is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type editorUnorderedList is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type ellipsis is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type email is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type empty is rendered 1`] = ` - -`; - -exports[`EuiIcon props type emsApp is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type endpoint is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type eql is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type eraser is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type error is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type errorFill is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type errorFilled is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type esqlVis is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type exit is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type expand is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type expandMini is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type export is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type exportAction is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type external is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type eye is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type eyeClosed is rendered 1`] = ` - - - - - - -`; - -exports[`EuiIcon props type eyeSlash is rendered 1`] = ` - - - - - - -`; - -exports[`EuiIcon props type faceHappy is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type faceNeutral is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type faceSad is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type fieldStatistics is rendered 1`] = ` - - - - - - -`; - -exports[`EuiIcon props type filebeatApp is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type filter is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type filterExclude is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type filterIgnore is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type filterInCircle is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type filterInclude is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type flag is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type flask is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type fleetApp is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type fold is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type folder is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type folderCheck is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type glasses is rendered 1`] = ` - - - - - - - - -`; - -exports[`EuiIcon props type globe is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type grab is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type grabHorizontal is rendered 1`] = ` - + `; -exports[`EuiIcon props type grabOmnidirectional is rendered 1`] = ` +exports[`EuiIcon props type globe is rendered 1`] = ` `; @@ -5643,47 +4269,6 @@ exports[`EuiIcon props type heartbeatApp is rendered 1`] = ` `; -exports[`EuiIcon props type heatmap is rendered 1`] = ` - - - - - - - - - -`; - exports[`EuiIcon props type help is rendered 1`] = ` `; -exports[`EuiIcon props type importAction is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type index is rendered 1`] = ` `; -exports[`EuiIcon props type indexFlush is rendered 1`] = ` - - - - - -`; - exports[`EuiIcon props type indexManagementApp is rendered 1`] = ` `; -exports[`EuiIcon props type indexMapping is rendered 1`] = ` - - - - -`; - exports[`EuiIcon props type indexOpen is rendered 1`] = ` `; -exports[`EuiIcon props type indexTemporary is rendered 1`] = ` - - - - - - -`; - exports[`EuiIcon props type infinity is rendered 1`] = ` - - -`; - -exports[`EuiIcon props type inspect is rendered 1`] = ` - - - - - -`; - -exports[`EuiIcon props type invert is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type ip is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type key is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type keyboard is rendered 1`] = ` - - - + `; -exports[`EuiIcon props type kqlField is rendered 1`] = ` +exports[`EuiIcon props type inspect is rendered 1`] = ` `; -exports[`EuiIcon props type kqlFunction is rendered 1`] = ` +exports[`EuiIcon props type ip is rendered 1`] = ` `; -exports[`EuiIcon props type kqlOperand is rendered 1`] = ` +exports[`EuiIcon props type key is rendered 1`] = ` + `; -exports[`EuiIcon props type kqlSelector is rendered 1`] = ` +exports[`EuiIcon props type keyboard is rendered 1`] = ` `; -exports[`EuiIcon props type kqlValue is rendered 1`] = ` +exports[`EuiIcon props type kqlFunction is rendered 1`] = ` - - `; @@ -6413,31 +4796,6 @@ exports[`EuiIcon props type kubernetesPod is rendered 1`] = ` `; -exports[`EuiIcon props type launch is rendered 1`] = ` - - - - - -`; - exports[`EuiIcon props type layers is rendered 1`] = ` `; -exports[`EuiIcon props type lettering is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type lineBreak is rendered 1`] = ` `; -exports[`EuiIcon props type lineDashed is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type lineDot is rendered 1`] = ` `; -exports[`EuiIcon props type lineDotted is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type lineSolid is rendered 1`] = ` `; -exports[`EuiIcon props type listAdd is rendered 1`] = ` - - - - -`; - exports[`EuiIcon props type listBullet is rendered 1`] = ` `; -exports[`EuiIcon props type logPatternAnalysis is rendered 1`] = ` - - - - -`; - exports[`EuiIcon props type logRateAnalysis is rendered 1`] = ` `; -exports[`EuiIcon props type logstashIf is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type logstashInput is rendered 1`] = ` `; -exports[`EuiIcon props type logstashQueue is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type machineLearningApp is rendered 1`] = ` - -`; - -exports[`EuiIcon props type magnify is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type magnifyExclamation is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type magnifyMinus is rendered 1`] = ` - - - `; -exports[`EuiIcon props type magnifyPlus is rendered 1`] = ` +exports[`EuiIcon props type magnify is rendered 1`] = ` - `; -exports[`EuiIcon props type magnifyWithExclamation is rendered 1`] = ` +exports[`EuiIcon props type magnifyExclamation is rendered 1`] = ` `; -exports[`EuiIcon props type magnifyWithMinus is rendered 1`] = ` +exports[`EuiIcon props type magnifyMinus is rendered 1`] = ` `; -exports[`EuiIcon props type magnifyWithPlus is rendered 1`] = ` +exports[`EuiIcon props type magnifyPlus is rendered 1`] = ` `; @@ -10037,76 +8202,6 @@ exports[`EuiIcon props type minusCircle is rendered 1`] = ` `; -exports[`EuiIcon props type minusInCircle is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type minusInCircleFilled is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type minusInSquare is rendered 1`] = ` - - - - -`; - exports[`EuiIcon props type minusSquare is rendered 1`] = ` `; -exports[`EuiIcon props type newChat is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type node is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type notebookApp is rendered 1`] = ` `; -exports[`EuiIcon props type offline is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type online is rendered 1`] = ` - - - - - -`; - exports[`EuiIcon props type outlierDetectionJob is rendered 1`] = ` `; -exports[`EuiIcon props type pipeBreaks is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type pipeNoBreaks is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type pipelineApp is rendered 1`] = ` `; -exports[`EuiIcon props type pivot is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type play is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type playFilled is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type plugs is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type plus is rendered 1`] = ` +exports[`EuiIcon props type pivot is rendered 1`] = ` `; -exports[`EuiIcon props type plusCircle is rendered 1`] = ` +exports[`EuiIcon props type play is rendered 1`] = ` - `; -exports[`EuiIcon props type plusInCircle is rendered 1`] = ` +exports[`EuiIcon props type plugs is rendered 1`] = ` - `; -exports[`EuiIcon props type plusInCircleFilled is rendered 1`] = ` +exports[`EuiIcon props type plus is rendered 1`] = ` - `; -exports[`EuiIcon props type plusInSquare is rendered 1`] = ` +exports[`EuiIcon props type plusCircle is rendered 1`] = ` @@ -11002,26 +8898,6 @@ exports[`EuiIcon props type plusSquare is rendered 1`] = ` `; -exports[`EuiIcon props type popout is rendered 1`] = ` - - - - -`; - exports[`EuiIcon props type popper is rendered 1`] = ` `; -exports[`EuiIcon props type productRobot is rendered 1`] = ` - - - - - -`; - exports[`EuiIcon props type productStreamsClassic is rendered 1`] = ` `; -exports[`EuiIcon props type push is rendered 1`] = ` - - - - -`; - exports[`EuiIcon props type query is rendered 1`] = ` `; -exports[`EuiIcon props type returnKey is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type rocket is rendered 1`] = ` `; -exports[`EuiIcon props type securitySignal is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type securitySignalDetected is rendered 1`] = ` `; -exports[`EuiIcon props type starFilledSpace is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type starMinusEmpty is rendered 1`] = ` `; -exports[`EuiIcon props type starMinusFilled is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type starPlusEmpty is rendered 1`] = ` - -`; - -exports[`EuiIcon props type starPlusFilled is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type stats is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type stop is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type stopFill is rendered 1`] = ` - - - -`; - -exports[`EuiIcon props type stopFilled is rendered 1`] = ` - - `; -exports[`EuiIcon props type stopSlash is rendered 1`] = ` +exports[`EuiIcon props type stats is rendered 1`] = ` `; -exports[`EuiIcon props type storage is rendered 1`] = ` +exports[`EuiIcon props type stop is rendered 1`] = ` - `; -exports[`EuiIcon props type streamsClassic is rendered 1`] = ` +exports[`EuiIcon props type stopFill is rendered 1`] = ` - `; -exports[`EuiIcon props type streamsWired is rendered 1`] = ` +exports[`EuiIcon props type stopSlash is rendered 1`] = ` - `; -exports[`EuiIcon props type string is rendered 1`] = ` +exports[`EuiIcon props type storage is rendered 1`] = ` + `; -exports[`EuiIcon props type submodule is rendered 1`] = ` +exports[`EuiIcon props type string is rendered 1`] = ` `; @@ -12871,10 +10527,10 @@ exports[`EuiIcon props type table is rendered 1`] = ` `; -exports[`EuiIcon props type tableDensityCompact is rendered 1`] = ` +exports[`EuiIcon props type tableCross is rendered 1`] = ` - -`; - -exports[`EuiIcon props type tableDensityExpanded is rendered 1`] = ` - `; @@ -12959,10 +10599,10 @@ exports[`EuiIcon props type tableDensityLow is rendered 1`] = ` `; -exports[`EuiIcon props type tableDensityNormal is rendered 1`] = ` +exports[`EuiIcon props type tableGear is rendered 1`] = ` @@ -13028,6 +10668,86 @@ exports[`EuiIcon props type tableOfContents is rendered 1`] = ` `; +exports[`EuiIcon props type tablePencil is rendered 1`] = ` + + + + + +`; + +exports[`EuiIcon props type tablePlay is rendered 1`] = ` + + + + + +`; + +exports[`EuiIcon props type tablePlus is rendered 1`] = ` + + + + + + +`; + exports[`EuiIcon props type tableTime is rendered 1`] = ` `; -exports[`EuiIcon props type timeRefresh is rendered 1`] = ` +exports[`EuiIcon props type timeline is rendered 1`] = ` - `; -exports[`EuiIcon props type timeline is rendered 1`] = ` +exports[`EuiIcon props type timelinePointer is rendered 1`] = ` + + `; @@ -13440,31 +11163,6 @@ exports[`EuiIcon props type timelionApp is rendered 1`] = ` `; -exports[`EuiIcon props type timeslider is rendered 1`] = ` - - - - - -`; - exports[`EuiIcon props type tokenAlias is rendered 1`] = ` `; -exports[`EuiIcon props type tokenDenseVector is rendered 1`] = ` - - - - - -`; - exports[`EuiIcon props type tokenDimension is rendered 1`] = ` `; -exports[`EuiIcon props type training is rendered 1`] = ` - - - - -`; - exports[`EuiIcon props type transitionBottomIn is rendered 1`] = ` - -`; - -exports[`EuiIcon props type unlink is rendered 1`] = ` - - `; @@ -14866,25 +12502,6 @@ exports[`EuiIcon props type user is rendered 1`] = ` `; -exports[`EuiIcon props type userAvatar is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type users is rendered 1`] = ` `; -exports[`EuiIcon props type vector is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type vectorSquare is rendered 1`] = ` `; -exports[`EuiIcon props type visAreaStacked is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type visBarHorizontal is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type visBarHorizontalStacked is rendered 1`] = ` - - - - -`; - exports[`EuiIcon props type visBarVertical is rendered 1`] = ` `; -exports[`EuiIcon props type visBarVerticalStacked is rendered 1`] = ` - - - - -`; - exports[`EuiIcon props type visGauge is rendered 1`] = ` `; -exports[`EuiIcon props type visMapCoordinate is rendered 1`] = ` - - - - -`; - -exports[`EuiIcon props type visMapRegion is rendered 1`] = ` - - - - - -`; - -exports[`EuiIcon props type visMetric is rendered 1`] = ` - - - - -`; - exports[`EuiIcon props type visPie is rendered 1`] = ` `; -exports[`EuiIcon props type visTagCloud is rendered 1`] = ` - - - - - -`; - -exports[`EuiIcon props type visText is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type visTimelion is rendered 1`] = ` `; -exports[`EuiIcon props type visVega is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type visVisualBuilder is rendered 1`] = ` `; -exports[`EuiIcon props type warningFilled is rendered 1`] = ` - - - -`; - exports[`EuiIcon props type watchesApp is rendered 1`] = ` & SVGRProps) => ( - - {title ? {title} : null} - - - -); -export const icon = EuiIconAnomalyChart; diff --git a/packages/eui/src/components/icon/assets/apm_trace.tsx b/packages/eui/src/components/icon/assets/apm_trace.tsx deleted file mode 100644 index 81570f1c472e..000000000000 --- a/packages/eui/src/components/icon/assets/apm_trace.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconApmTrace; diff --git a/packages/eui/src/components/icon/assets/arrow_down.tsx b/packages/eui/src/components/icon/assets/arrow_down.tsx deleted file mode 100644 index 519bee06c8cd..000000000000 --- a/packages/eui/src/components/icon/assets/arrow_down.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconArrowDown; diff --git a/packages/eui/src/components/icon/assets/arrow_left.tsx b/packages/eui/src/components/icon/assets/arrow_left.tsx deleted file mode 100644 index 9db59bfebca4..000000000000 --- a/packages/eui/src/components/icon/assets/arrow_left.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconArrowLeft; diff --git a/packages/eui/src/components/icon/assets/arrow_right.tsx b/packages/eui/src/components/icon/assets/arrow_right.tsx deleted file mode 100644 index 99f9ab7ad5a0..000000000000 --- a/packages/eui/src/components/icon/assets/arrow_right.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconArrowRight; diff --git a/packages/eui/src/components/icon/assets/arrow_up.tsx b/packages/eui/src/components/icon/assets/arrow_up.tsx deleted file mode 100644 index 1f7f1a12e588..000000000000 --- a/packages/eui/src/components/icon/assets/arrow_up.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconArrowUp; diff --git a/packages/eui/src/components/icon/assets/boxes_horizontal.tsx b/packages/eui/src/components/icon/assets/boxes_horizontal.tsx deleted file mode 100644 index 915cf7eb2c1f..000000000000 --- a/packages/eui/src/components/icon/assets/boxes_horizontal.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconBoxesHorizontal; diff --git a/packages/eui/src/components/icon/assets/change_point_detection.tsx b/packages/eui/src/components/icon/assets/change_point_detection.tsx deleted file mode 100644 index 2f5436cf41b7..000000000000 --- a/packages/eui/src/components/icon/assets/change_point_detection.tsx +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js - -import * as React from 'react'; -import type { SVGProps } from 'react'; -interface SVGRProps { - title?: string; - titleId?: string; -} -const EuiIconChangePointDetection = ({ - title, - titleId, - ...props -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - -); -export const icon = EuiIconChangePointDetection; diff --git a/packages/eui/src/components/icon/assets/cheer.tsx b/packages/eui/src/components/icon/assets/cheer.tsx deleted file mode 100644 index c6c3cb9b97b1..000000000000 --- a/packages/eui/src/components/icon/assets/cheer.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconCheer; diff --git a/packages/eui/src/components/icon/assets/color.tsx b/packages/eui/src/components/icon/assets/color.tsx deleted file mode 100644 index 6ccffbc06d65..000000000000 --- a/packages/eui/src/components/icon/assets/color.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconColor; diff --git a/packages/eui/src/components/icon/assets/compute.tsx b/packages/eui/src/components/icon/assets/compute.tsx deleted file mode 100644 index 45a9f1d81565..000000000000 --- a/packages/eui/src/components/icon/assets/compute.tsx +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - -); -export const icon = EuiIconCompute; diff --git a/packages/eui/src/components/icon/assets/console.tsx b/packages/eui/src/components/icon/assets/console.tsx deleted file mode 100644 index fbd117d79480..000000000000 --- a/packages/eui/src/components/icon/assets/console.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconConsole; diff --git a/packages/eui/src/components/icon/assets/copy_clipboard.tsx b/packages/eui/src/components/icon/assets/copy_clipboard.tsx deleted file mode 100644 index 0d148a9d5af5..000000000000 --- a/packages/eui/src/components/icon/assets/copy_clipboard.tsx +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - -); -export const icon = EuiIconCopyClipboard; diff --git a/packages/eui/src/components/icon/assets/crosshairs.tsx b/packages/eui/src/components/icon/assets/crosshairs.tsx deleted file mode 100644 index 2420ebc24d71..000000000000 --- a/packages/eui/src/components/icon/assets/crosshairs.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconCrosshairs; diff --git a/packages/eui/src/components/icon/assets/currency.tsx b/packages/eui/src/components/icon/assets/currency.tsx deleted file mode 100644 index ab0c722d9abe..000000000000 --- a/packages/eui/src/components/icon/assets/currency.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconCurrency; diff --git a/packages/eui/src/components/icon/assets/cut.tsx b/packages/eui/src/components/icon/assets/cut.tsx deleted file mode 100644 index f6a0226e9ee6..000000000000 --- a/packages/eui/src/components/icon/assets/cut.tsx +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconCut; diff --git a/packages/eui/src/components/icon/assets/desktop.tsx b/packages/eui/src/components/icon/assets/desktop.tsx deleted file mode 100644 index 5195d14524c5..000000000000 --- a/packages/eui/src/components/icon/assets/desktop.tsx +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - -); -export const icon = EuiIconDesktop; diff --git a/packages/eui/src/components/icon/assets/diff.tsx b/packages/eui/src/components/icon/assets/diff.tsx deleted file mode 100644 index a4506e035c22..000000000000 --- a/packages/eui/src/components/icon/assets/diff.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js - -import * as React from 'react'; -import type { SVGProps } from 'react'; -interface SVGRProps { - title?: string; - titleId?: string; -} -const EuiIconDiff = ({ - title, - titleId, - ...props -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconDiff; diff --git a/packages/eui/src/components/icon/assets/document_edit.tsx b/packages/eui/src/components/icon/assets/document_edit.tsx deleted file mode 100644 index 9ce400756f7d..000000000000 --- a/packages/eui/src/components/icon/assets/document_edit.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconDocumentEdit; diff --git a/packages/eui/src/components/icon/assets/editor_align_center.tsx b/packages/eui/src/components/icon/assets/editor_align_center.tsx deleted file mode 100644 index 7289988ae6eb..000000000000 --- a/packages/eui/src/components/icon/assets/editor_align_center.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorAlignCenter; diff --git a/packages/eui/src/components/icon/assets/editor_align_left.tsx b/packages/eui/src/components/icon/assets/editor_align_left.tsx deleted file mode 100644 index 3bc3087a02b8..000000000000 --- a/packages/eui/src/components/icon/assets/editor_align_left.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorAlignLeft; diff --git a/packages/eui/src/components/icon/assets/editor_align_right.tsx b/packages/eui/src/components/icon/assets/editor_align_right.tsx deleted file mode 100644 index 24470d5e4dda..000000000000 --- a/packages/eui/src/components/icon/assets/editor_align_right.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorAlignRight; diff --git a/packages/eui/src/components/icon/assets/editor_bold.tsx b/packages/eui/src/components/icon/assets/editor_bold.tsx deleted file mode 100644 index d04602e6cd31..000000000000 --- a/packages/eui/src/components/icon/assets/editor_bold.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorBold; diff --git a/packages/eui/src/components/icon/assets/editor_checklist.tsx b/packages/eui/src/components/icon/assets/editor_checklist.tsx deleted file mode 100644 index 67776b4a3c79..000000000000 --- a/packages/eui/src/components/icon/assets/editor_checklist.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorChecklist; diff --git a/packages/eui/src/components/icon/assets/editor_distribute_horizontal.tsx b/packages/eui/src/components/icon/assets/editor_distribute_horizontal.tsx deleted file mode 100644 index ce505b85306e..000000000000 --- a/packages/eui/src/components/icon/assets/editor_distribute_horizontal.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorDistributeHorizontal; diff --git a/packages/eui/src/components/icon/assets/editor_distribute_vertical.tsx b/packages/eui/src/components/icon/assets/editor_distribute_vertical.tsx deleted file mode 100644 index c2af22837c29..000000000000 --- a/packages/eui/src/components/icon/assets/editor_distribute_vertical.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorDistributeVertical; diff --git a/packages/eui/src/components/icon/assets/editor_heading.tsx b/packages/eui/src/components/icon/assets/editor_heading.tsx deleted file mode 100644 index 1b71e5df0b45..000000000000 --- a/packages/eui/src/components/icon/assets/editor_heading.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorHeading; diff --git a/packages/eui/src/components/icon/assets/editor_italic.tsx b/packages/eui/src/components/icon/assets/editor_italic.tsx deleted file mode 100644 index 1481c57acc96..000000000000 --- a/packages/eui/src/components/icon/assets/editor_italic.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorItalic; diff --git a/packages/eui/src/components/icon/assets/editor_item_align_bottom.tsx b/packages/eui/src/components/icon/assets/editor_item_align_bottom.tsx deleted file mode 100644 index 843b24ae1042..000000000000 --- a/packages/eui/src/components/icon/assets/editor_item_align_bottom.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorItemAlignBottom; diff --git a/packages/eui/src/components/icon/assets/editor_item_align_center.tsx b/packages/eui/src/components/icon/assets/editor_item_align_center.tsx deleted file mode 100644 index fac2f701f887..000000000000 --- a/packages/eui/src/components/icon/assets/editor_item_align_center.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorItemAlignCenter; diff --git a/packages/eui/src/components/icon/assets/editor_item_align_left.tsx b/packages/eui/src/components/icon/assets/editor_item_align_left.tsx deleted file mode 100644 index 1ae9bc353649..000000000000 --- a/packages/eui/src/components/icon/assets/editor_item_align_left.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorItemAlignLeft; diff --git a/packages/eui/src/components/icon/assets/editor_item_align_middle.tsx b/packages/eui/src/components/icon/assets/editor_item_align_middle.tsx deleted file mode 100644 index f7544eb6bc1e..000000000000 --- a/packages/eui/src/components/icon/assets/editor_item_align_middle.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorItemAlignMiddle; diff --git a/packages/eui/src/components/icon/assets/editor_item_align_right.tsx b/packages/eui/src/components/icon/assets/editor_item_align_right.tsx deleted file mode 100644 index ca796b75d003..000000000000 --- a/packages/eui/src/components/icon/assets/editor_item_align_right.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorItemAlignRight; diff --git a/packages/eui/src/components/icon/assets/editor_item_align_top.tsx b/packages/eui/src/components/icon/assets/editor_item_align_top.tsx deleted file mode 100644 index b98d5cd9ff82..000000000000 --- a/packages/eui/src/components/icon/assets/editor_item_align_top.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorItemAlignTop; diff --git a/packages/eui/src/components/icon/assets/editor_link.tsx b/packages/eui/src/components/icon/assets/editor_link.tsx deleted file mode 100644 index f2356b787d47..000000000000 --- a/packages/eui/src/components/icon/assets/editor_link.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorLink; diff --git a/packages/eui/src/components/icon/assets/editor_ordered_list.tsx b/packages/eui/src/components/icon/assets/editor_ordered_list.tsx deleted file mode 100644 index d455ab60d392..000000000000 --- a/packages/eui/src/components/icon/assets/editor_ordered_list.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorOrderedList; diff --git a/packages/eui/src/components/icon/assets/editor_position_bottom_left.tsx b/packages/eui/src/components/icon/assets/editor_position_bottom_left.tsx deleted file mode 100644 index 2fff16ba38d0..000000000000 --- a/packages/eui/src/components/icon/assets/editor_position_bottom_left.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorPositionBottomLeft; diff --git a/packages/eui/src/components/icon/assets/editor_position_bottom_right.tsx b/packages/eui/src/components/icon/assets/editor_position_bottom_right.tsx deleted file mode 100644 index bd9cf8aa6730..000000000000 --- a/packages/eui/src/components/icon/assets/editor_position_bottom_right.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorPositionBottomRight; diff --git a/packages/eui/src/components/icon/assets/editor_position_top_left.tsx b/packages/eui/src/components/icon/assets/editor_position_top_left.tsx deleted file mode 100644 index 0df75fb58eef..000000000000 --- a/packages/eui/src/components/icon/assets/editor_position_top_left.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorPositionTopLeft; diff --git a/packages/eui/src/components/icon/assets/editor_position_top_right.tsx b/packages/eui/src/components/icon/assets/editor_position_top_right.tsx deleted file mode 100644 index 36ae74cc115b..000000000000 --- a/packages/eui/src/components/icon/assets/editor_position_top_right.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorPositionTopRight; diff --git a/packages/eui/src/components/icon/assets/editor_redo.tsx b/packages/eui/src/components/icon/assets/editor_redo.tsx deleted file mode 100644 index ba9cd3a91411..000000000000 --- a/packages/eui/src/components/icon/assets/editor_redo.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorRedo; diff --git a/packages/eui/src/components/icon/assets/editor_strike.tsx b/packages/eui/src/components/icon/assets/editor_strike.tsx deleted file mode 100644 index 9e303f082eba..000000000000 --- a/packages/eui/src/components/icon/assets/editor_strike.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorStrike; diff --git a/packages/eui/src/components/icon/assets/editor_table.tsx b/packages/eui/src/components/icon/assets/editor_table.tsx deleted file mode 100644 index 506408b6675a..000000000000 --- a/packages/eui/src/components/icon/assets/editor_table.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorTable; diff --git a/packages/eui/src/components/icon/assets/editor_underline.tsx b/packages/eui/src/components/icon/assets/editor_underline.tsx deleted file mode 100644 index 500218bea31b..000000000000 --- a/packages/eui/src/components/icon/assets/editor_underline.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorUnderline; diff --git a/packages/eui/src/components/icon/assets/editor_undo.tsx b/packages/eui/src/components/icon/assets/editor_undo.tsx deleted file mode 100644 index 01f47c311301..000000000000 --- a/packages/eui/src/components/icon/assets/editor_undo.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorUndo; diff --git a/packages/eui/src/components/icon/assets/editor_unordered_list.tsx b/packages/eui/src/components/icon/assets/editor_unordered_list.tsx deleted file mode 100644 index 3deb95313224..000000000000 --- a/packages/eui/src/components/icon/assets/editor_unordered_list.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEditorUnorderedList; diff --git a/packages/eui/src/components/icon/assets/email.tsx b/packages/eui/src/components/icon/assets/email.tsx deleted file mode 100644 index acda1e62e805..000000000000 --- a/packages/eui/src/components/icon/assets/email.tsx +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconEmail; diff --git a/packages/eui/src/components/icon/assets/eql.tsx b/packages/eui/src/components/icon/assets/eql.tsx deleted file mode 100644 index 754b819ad241..000000000000 --- a/packages/eui/src/components/icon/assets/eql.tsx +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - -); -export const icon = EuiIconEql; diff --git a/packages/eui/src/components/icon/assets/exit.tsx b/packages/eui/src/components/icon/assets/exit.tsx deleted file mode 100644 index 358a0e9ea656..000000000000 --- a/packages/eui/src/components/icon/assets/exit.tsx +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconExit; diff --git a/packages/eui/src/components/icon/assets/expand.tsx b/packages/eui/src/components/icon/assets/expand.tsx deleted file mode 100644 index 020f6690418f..000000000000 --- a/packages/eui/src/components/icon/assets/expand.tsx +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - -); -export const icon = EuiIconExpand; diff --git a/packages/eui/src/components/icon/assets/eye_closed.tsx b/packages/eui/src/components/icon/assets/eye_closed.tsx deleted file mode 100644 index cf1ad0db0b70..000000000000 --- a/packages/eui/src/components/icon/assets/eye_closed.tsx +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - - - -); -export const icon = EuiIconEyeClosed; diff --git a/packages/eui/src/components/icon/assets/field_statistics.tsx b/packages/eui/src/components/icon/assets/field_statistics.tsx deleted file mode 100644 index 100cc40f498f..000000000000 --- a/packages/eui/src/components/icon/assets/field_statistics.tsx +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js - -import * as React from 'react'; -import type { SVGProps } from 'react'; -interface SVGRProps { - title?: string; - titleId?: string; -} -const EuiIconFieldStatistics = ({ - title, - titleId, - ...props -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - - -); -export const icon = EuiIconFieldStatistics; diff --git a/packages/eui/src/components/icon/assets/filter_in_circle.tsx b/packages/eui/src/components/icon/assets/filter_in_circle.tsx deleted file mode 100644 index f4560680f55c..000000000000 --- a/packages/eui/src/components/icon/assets/filter_in_circle.tsx +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconFilterInCircle; diff --git a/packages/eui/src/components/icon/assets/grab.tsx b/packages/eui/src/components/icon/assets/grab.tsx deleted file mode 100644 index cb8a2c531331..000000000000 --- a/packages/eui/src/components/icon/assets/grab.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconGrab; diff --git a/packages/eui/src/components/icon/assets/grab_horizontal.tsx b/packages/eui/src/components/icon/assets/grab_horizontal.tsx deleted file mode 100644 index 7424a201bc49..000000000000 --- a/packages/eui/src/components/icon/assets/grab_horizontal.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconGrabHorizontal; diff --git a/packages/eui/src/components/icon/assets/grab_omnidirectional.tsx b/packages/eui/src/components/icon/assets/grab_omnidirectional.tsx deleted file mode 100644 index 05d88d687704..000000000000 --- a/packages/eui/src/components/icon/assets/grab_omnidirectional.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js - -import * as React from 'react'; -import type { SVGProps } from 'react'; -interface SVGRProps { - title?: string; - titleId?: string; -} -const EuiIconGrabOmnidirectional = ({ - title, - titleId, - ...props -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconGrabOmnidirectional; diff --git a/packages/eui/src/components/icon/assets/heatmap.tsx b/packages/eui/src/components/icon/assets/heatmap.tsx deleted file mode 100644 index 2e643876715e..000000000000 --- a/packages/eui/src/components/icon/assets/heatmap.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconHeatmap; diff --git a/packages/eui/src/components/icon/assets/import.tsx b/packages/eui/src/components/icon/assets/import.tsx deleted file mode 100644 index 0f05c69bbb1b..000000000000 --- a/packages/eui/src/components/icon/assets/import.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconImport; diff --git a/packages/eui/src/components/icon/assets/index_flush.tsx b/packages/eui/src/components/icon/assets/index_flush.tsx deleted file mode 100644 index 232cdf7c8f1f..000000000000 --- a/packages/eui/src/components/icon/assets/index_flush.tsx +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconIndexFlush; diff --git a/packages/eui/src/components/icon/assets/index_mapping.tsx b/packages/eui/src/components/icon/assets/index_mapping.tsx deleted file mode 100644 index 8a90f251fcaa..000000000000 --- a/packages/eui/src/components/icon/assets/index_mapping.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconIndexMapping; diff --git a/packages/eui/src/components/icon/assets/kql_field.tsx b/packages/eui/src/components/icon/assets/kql_field.tsx deleted file mode 100644 index 0a694ba2d0f9..000000000000 --- a/packages/eui/src/components/icon/assets/kql_field.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconKqlField; diff --git a/packages/eui/src/components/icon/assets/kql_operand.tsx b/packages/eui/src/components/icon/assets/kql_operand.tsx deleted file mode 100644 index 55d22318a02f..000000000000 --- a/packages/eui/src/components/icon/assets/kql_operand.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconKqlOperand; diff --git a/packages/eui/src/components/icon/assets/kql_selector.tsx b/packages/eui/src/components/icon/assets/kql_selector.tsx deleted file mode 100644 index 5a73a168f3e3..000000000000 --- a/packages/eui/src/components/icon/assets/kql_selector.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconKqlSelector; diff --git a/packages/eui/src/components/icon/assets/kql_value.tsx b/packages/eui/src/components/icon/assets/kql_value.tsx deleted file mode 100644 index 82fa2f296be6..000000000000 --- a/packages/eui/src/components/icon/assets/kql_value.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconKqlValue; diff --git a/packages/eui/src/components/icon/assets/launch.tsx b/packages/eui/src/components/icon/assets/launch.tsx deleted file mode 100644 index 300fb2612e15..000000000000 --- a/packages/eui/src/components/icon/assets/launch.tsx +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - - -); -export const icon = EuiIconLaunch; diff --git a/packages/eui/src/components/icon/assets/lettering.tsx b/packages/eui/src/components/icon/assets/lettering.tsx deleted file mode 100644 index 2123031840cc..000000000000 --- a/packages/eui/src/components/icon/assets/lettering.tsx +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconLettering; diff --git a/packages/eui/src/components/icon/assets/list.tsx b/packages/eui/src/components/icon/assets/list.tsx deleted file mode 100644 index a4b273bc23ef..000000000000 --- a/packages/eui/src/components/icon/assets/list.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconList; diff --git a/packages/eui/src/components/icon/assets/list_add.tsx b/packages/eui/src/components/icon/assets/list_add.tsx deleted file mode 100644 index 386c703580cb..000000000000 --- a/packages/eui/src/components/icon/assets/list_add.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconListAdd; diff --git a/packages/eui/src/components/icon/assets/log_pattern_analysis.tsx b/packages/eui/src/components/icon/assets/log_pattern_analysis.tsx deleted file mode 100644 index 3dfdcabb89c8..000000000000 --- a/packages/eui/src/components/icon/assets/log_pattern_analysis.tsx +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js - -import * as React from 'react'; -import type { SVGProps } from 'react'; -interface SVGRProps { - title?: string; - titleId?: string; -} -const EuiIconLogPatternAnalysis = ({ - title, - titleId, - ...props -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - - - - - - - - - - - - - - - - -); -export const icon = EuiIconLogPatternAnalysis; diff --git a/packages/eui/src/components/icon/assets/logstash_if.tsx b/packages/eui/src/components/icon/assets/logstash_if.tsx deleted file mode 100644 index 2523f69ebe4f..000000000000 --- a/packages/eui/src/components/icon/assets/logstash_if.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconLogstashIf; diff --git a/packages/eui/src/components/icon/assets/logstash_queue.tsx b/packages/eui/src/components/icon/assets/logstash_queue.tsx deleted file mode 100644 index 6fca72f310a0..000000000000 --- a/packages/eui/src/components/icon/assets/logstash_queue.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconLogstashQueue; diff --git a/packages/eui/src/components/icon/assets/magnify_with_exclamation.tsx b/packages/eui/src/components/icon/assets/magnify_with_exclamation.tsx deleted file mode 100644 index 1c1dae8fabb3..000000000000 --- a/packages/eui/src/components/icon/assets/magnify_with_exclamation.tsx +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - -); -export const icon = EuiIconMagnifyWithExclamation; diff --git a/packages/eui/src/components/icon/assets/magnify_with_minus.tsx b/packages/eui/src/components/icon/assets/magnify_with_minus.tsx deleted file mode 100644 index fdb25d37b197..000000000000 --- a/packages/eui/src/components/icon/assets/magnify_with_minus.tsx +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - -); -export const icon = EuiIconMagnifyWithMinus; diff --git a/packages/eui/src/components/icon/assets/magnify_with_plus.tsx b/packages/eui/src/components/icon/assets/magnify_with_plus.tsx deleted file mode 100644 index 766427ec8116..000000000000 --- a/packages/eui/src/components/icon/assets/magnify_with_plus.tsx +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - -); -export const icon = EuiIconMagnifyWithPlus; diff --git a/packages/eui/src/components/icon/assets/map_marker.tsx b/packages/eui/src/components/icon/assets/map_marker.tsx deleted file mode 100644 index bb072382258e..000000000000 --- a/packages/eui/src/components/icon/assets/map_marker.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconMapMarker; diff --git a/packages/eui/src/components/icon/assets/new_chat.tsx b/packages/eui/src/components/icon/assets/new_chat.tsx deleted file mode 100644 index 750b9a7a8910..000000000000 --- a/packages/eui/src/components/icon/assets/new_chat.tsx +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js - -import * as React from 'react'; -import type { SVGProps } from 'react'; -interface SVGRProps { - title?: string; - titleId?: string; -} -const EuiIconNewChat = ({ - title, - titleId, - ...props -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - -); -export const icon = EuiIconNewChat; diff --git a/packages/eui/src/components/icon/assets/offline.tsx b/packages/eui/src/components/icon/assets/offline.tsx deleted file mode 100644 index 16d96e1021be..000000000000 --- a/packages/eui/src/components/icon/assets/offline.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconOffline; diff --git a/packages/eui/src/components/icon/assets/online.tsx b/packages/eui/src/components/icon/assets/online.tsx deleted file mode 100644 index 6b92e12c1371..000000000000 --- a/packages/eui/src/components/icon/assets/online.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconOnline; diff --git a/packages/eui/src/components/icon/assets/paint.tsx b/packages/eui/src/components/icon/assets/paint.tsx deleted file mode 100644 index 09adee0cae05..000000000000 --- a/packages/eui/src/components/icon/assets/paint.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconPaint; diff --git a/packages/eui/src/components/icon/assets/play_filled.tsx b/packages/eui/src/components/icon/assets/play_filled.tsx deleted file mode 100644 index 68dd90b3dfbc..000000000000 --- a/packages/eui/src/components/icon/assets/play_filled.tsx +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconPlayFilled; diff --git a/packages/eui/src/components/icon/assets/plus_in_circle_filled.tsx b/packages/eui/src/components/icon/assets/plus_in_circle_filled.tsx deleted file mode 100644 index be0f6d997f2f..000000000000 --- a/packages/eui/src/components/icon/assets/plus_in_circle_filled.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconPlusInCircleFilled; diff --git a/packages/eui/src/components/icon/assets/popout.tsx b/packages/eui/src/components/icon/assets/popout.tsx deleted file mode 100644 index f93e0a05acf1..000000000000 --- a/packages/eui/src/components/icon/assets/popout.tsx +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - -); -export const icon = EuiIconPopout; diff --git a/packages/eui/src/components/icon/assets/push.tsx b/packages/eui/src/components/icon/assets/push.tsx deleted file mode 100644 index 77d7e10844a5..000000000000 --- a/packages/eui/src/components/icon/assets/push.tsx +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - -); -export const icon = EuiIconPush; diff --git a/packages/eui/src/components/icon/assets/return_key.tsx b/packages/eui/src/components/icon/assets/return_key.tsx deleted file mode 100644 index 020baf199401..000000000000 --- a/packages/eui/src/components/icon/assets/return_key.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconReturnKey; diff --git a/packages/eui/src/components/icon/assets/search.tsx b/packages/eui/src/components/icon/assets/search.tsx deleted file mode 100644 index f83f62f74366..000000000000 --- a/packages/eui/src/components/icon/assets/search.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconSearch; diff --git a/packages/eui/src/components/icon/assets/security_signal.tsx b/packages/eui/src/components/icon/assets/security_signal.tsx deleted file mode 100644 index 71d24b9667ee..000000000000 --- a/packages/eui/src/components/icon/assets/security_signal.tsx +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconSecuritySignal; diff --git a/packages/eui/src/components/icon/assets/star_empty.tsx b/packages/eui/src/components/icon/assets/star_empty.tsx deleted file mode 100644 index ad29f8796914..000000000000 --- a/packages/eui/src/components/icon/assets/star_empty.tsx +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconStarEmpty; diff --git a/packages/eui/src/components/icon/assets/streams_classic.tsx b/packages/eui/src/components/icon/assets/streams_classic.tsx deleted file mode 100644 index 53b4d8e2e0f8..000000000000 --- a/packages/eui/src/components/icon/assets/streams_classic.tsx +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js - -import * as React from 'react'; -import type { SVGProps } from 'react'; -interface SVGRProps { - title?: string; - titleId?: string; -} -const EuiIconStreamsClassic = ({ - title, - titleId, - ...props -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconStreamsClassic; diff --git a/packages/eui/src/components/icon/assets/streams_wired.tsx b/packages/eui/src/components/icon/assets/streams_wired.tsx deleted file mode 100644 index 2a8f411e5151..000000000000 --- a/packages/eui/src/components/icon/assets/streams_wired.tsx +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js - -import * as React from 'react'; -import type { SVGProps } from 'react'; -interface SVGRProps { - title?: string; - titleId?: string; -} -const EuiIconStreamsWired = ({ - title, - titleId, - ...props -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - -); -export const icon = EuiIconStreamsWired; diff --git a/packages/eui/src/components/icon/assets/submodule.tsx b/packages/eui/src/components/icon/assets/submodule.tsx deleted file mode 100644 index 12ddcfde534e..000000000000 --- a/packages/eui/src/components/icon/assets/submodule.tsx +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconSubmodule; diff --git a/packages/eui/src/components/icon/assets/table_density_compact.tsx b/packages/eui/src/components/icon/assets/table_density_compact.tsx deleted file mode 100644 index e04ae9cf375e..000000000000 --- a/packages/eui/src/components/icon/assets/table_density_compact.tsx +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - -); -export const icon = EuiIconTableDensityCompact; diff --git a/packages/eui/src/components/icon/assets/table_density_expanded.tsx b/packages/eui/src/components/icon/assets/table_density_expanded.tsx deleted file mode 100644 index e51c8e354b63..000000000000 --- a/packages/eui/src/components/icon/assets/table_density_expanded.tsx +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - -); -export const icon = EuiIconTableDensityExpanded; diff --git a/packages/eui/src/components/icon/assets/table_density_normal.tsx b/packages/eui/src/components/icon/assets/table_density_normal.tsx deleted file mode 100644 index 0b566368cbb4..000000000000 --- a/packages/eui/src/components/icon/assets/table_density_normal.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconTableDensityNormal; diff --git a/packages/eui/src/components/icon/assets/temperature.tsx b/packages/eui/src/components/icon/assets/temperature.tsx deleted file mode 100644 index 23147c5e796c..000000000000 --- a/packages/eui/src/components/icon/assets/temperature.tsx +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - -); -export const icon = EuiIconTemperature; diff --git a/packages/eui/src/components/icon/assets/timeslider.tsx b/packages/eui/src/components/icon/assets/timeslider.tsx deleted file mode 100644 index 1aac52284e6b..000000000000 --- a/packages/eui/src/components/icon/assets/timeslider.tsx +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - - -); -export const icon = EuiIconTimeslider; diff --git a/packages/eui/src/components/icon/assets/training.tsx b/packages/eui/src/components/icon/assets/training.tsx deleted file mode 100644 index 8a6d9b7c5a26..000000000000 --- a/packages/eui/src/components/icon/assets/training.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconTraining; diff --git a/packages/eui/src/components/icon/assets/unlink.tsx b/packages/eui/src/components/icon/assets/unlink.tsx deleted file mode 100644 index de18c3f3241e..000000000000 --- a/packages/eui/src/components/icon/assets/unlink.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconUnlink; diff --git a/packages/eui/src/components/icon/assets/vector.tsx b/packages/eui/src/components/icon/assets/vector.tsx deleted file mode 100644 index 53cf93817441..000000000000 --- a/packages/eui/src/components/icon/assets/vector.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconVector; diff --git a/packages/eui/src/components/icon/assets/vis_area.tsx b/packages/eui/src/components/icon/assets/vis_area.tsx deleted file mode 100644 index f258abad6683..000000000000 --- a/packages/eui/src/components/icon/assets/vis_area.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconVisArea; diff --git a/packages/eui/src/components/icon/assets/vis_area_stacked.tsx b/packages/eui/src/components/icon/assets/vis_area_stacked.tsx deleted file mode 100644 index 3ebe9363cacb..000000000000 --- a/packages/eui/src/components/icon/assets/vis_area_stacked.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconVisAreaStacked; diff --git a/packages/eui/src/components/icon/assets/vis_bar_horizontal.tsx b/packages/eui/src/components/icon/assets/vis_bar_horizontal.tsx deleted file mode 100644 index bebbd2b96741..000000000000 --- a/packages/eui/src/components/icon/assets/vis_bar_horizontal.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconVisBarHorizontal; diff --git a/packages/eui/src/components/icon/assets/vis_bar_horizontal_stacked.tsx b/packages/eui/src/components/icon/assets/vis_bar_horizontal_stacked.tsx deleted file mode 100644 index a443b58d6e3a..000000000000 --- a/packages/eui/src/components/icon/assets/vis_bar_horizontal_stacked.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconVisBarHorizontalStacked; diff --git a/packages/eui/src/components/icon/assets/vis_bar_vertical.tsx b/packages/eui/src/components/icon/assets/vis_bar_vertical.tsx deleted file mode 100644 index f97ce6505549..000000000000 --- a/packages/eui/src/components/icon/assets/vis_bar_vertical.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconVisBarVertical; diff --git a/packages/eui/src/components/icon/assets/vis_bar_vertical_stacked.tsx b/packages/eui/src/components/icon/assets/vis_bar_vertical_stacked.tsx deleted file mode 100644 index 186d3049824a..000000000000 --- a/packages/eui/src/components/icon/assets/vis_bar_vertical_stacked.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconVisBarVerticalStacked; diff --git a/packages/eui/src/components/icon/assets/vis_gauge.tsx b/packages/eui/src/components/icon/assets/vis_gauge.tsx deleted file mode 100644 index 13b0718b881a..000000000000 --- a/packages/eui/src/components/icon/assets/vis_gauge.tsx +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - - - -); -export const icon = EuiIconVisGauge; diff --git a/packages/eui/src/components/icon/assets/vis_line.tsx b/packages/eui/src/components/icon/assets/vis_line.tsx deleted file mode 100644 index 17be223340e0..000000000000 --- a/packages/eui/src/components/icon/assets/vis_line.tsx +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - -); -export const icon = EuiIconVisLine; diff --git a/packages/eui/src/components/icon/assets/vis_map_coordinate.tsx b/packages/eui/src/components/icon/assets/vis_map_coordinate.tsx deleted file mode 100644 index e69fbbfd4ad0..000000000000 --- a/packages/eui/src/components/icon/assets/vis_map_coordinate.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconVisMapCoordinate; diff --git a/packages/eui/src/components/icon/assets/vis_map_region.tsx b/packages/eui/src/components/icon/assets/vis_map_region.tsx deleted file mode 100644 index 71f06153ef19..000000000000 --- a/packages/eui/src/components/icon/assets/vis_map_region.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconVisMapRegion; diff --git a/packages/eui/src/components/icon/assets/vis_pie.tsx b/packages/eui/src/components/icon/assets/vis_pie.tsx deleted file mode 100644 index 1db78500228f..000000000000 --- a/packages/eui/src/components/icon/assets/vis_pie.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconVisPie; diff --git a/packages/eui/src/components/icon/assets/vis_table.tsx b/packages/eui/src/components/icon/assets/vis_table.tsx deleted file mode 100644 index b5b51ec8b879..000000000000 --- a/packages/eui/src/components/icon/assets/vis_table.tsx +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - - -); -export const icon = EuiIconVisTable; diff --git a/packages/eui/src/components/icon/assets/vis_tag_cloud.tsx b/packages/eui/src/components/icon/assets/vis_tag_cloud.tsx deleted file mode 100644 index b64bc9a5b452..000000000000 --- a/packages/eui/src/components/icon/assets/vis_tag_cloud.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconVisTagCloud; diff --git a/packages/eui/src/components/icon/assets/vis_text.tsx b/packages/eui/src/components/icon/assets/vis_text.tsx deleted file mode 100644 index c118ee9654d8..000000000000 --- a/packages/eui/src/components/icon/assets/vis_text.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -// THIS IS A GENERATED FILE. DO NOT 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 -}: SVGProps & SVGRProps) => ( - - {title ? {title} : null} - - -); -export const icon = EuiIconVisText; diff --git a/packages/eui/src/components/icon/icon_editor.a11y.tsx b/packages/eui/src/components/icon/icon_editor.a11y.tsx deleted file mode 100644 index c9ce41d674b3..000000000000 --- a/packages/eui/src/components/icon/icon_editor.a11y.tsx +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -/// -/// -/// - -import React from 'react'; -import { EuiIcon } from './icon'; - -describe('EuiIcons', () => { - describe('Automated accessibility check for editor icons', () => { - const EditorIcons = [ - 'editorAlignCenter', - 'editorAlignLeft', - 'editorAlignRight', - 'editorBold', - 'editorChecklist', - 'editorCodeBlock', - 'editorComment', - 'editorDistributeHorizontal', - 'editorDistributeVertical', - 'editorHeading', - 'editorItalic', - 'editorItemAlignBottom', - 'editorItemAlignCenter', - 'editorItemAlignLeft', - 'editorItemAlignMiddle', - 'editorItemAlignRight', - 'editorItemAlignTop', - 'editorLink', - 'editorOrderedList', - 'editorPositionBottomLeft', - 'editorPositionBottomRight', - 'editorPositionTopLeft', - 'editorPositionTopRight', - 'editorRedo', - 'editorStrike', - 'editorTable', - 'editorUnderline', - 'editorUndo', - 'editorUnorderedList', - ]; - - const EditorGrid = () => ( -
- {EditorIcons.map((glyph) => ( - - ))} -
- ); - - it('has zero violations on first render', () => { - cy.mount(); - cy.get('div[data-cy-root]') - .find('svg', { timeout: 5000 }) - .should('have.length', 29); - cy.checkAxe(); - }); - }); -}); diff --git a/packages/eui/src/components/icon/icon_glyphs.a11y.tsx b/packages/eui/src/components/icon/icon_glyphs.a11y.tsx index aa53bb5edc15..5d3bcf140155 100644 --- a/packages/eui/src/components/icon/icon_glyphs.a11y.tsx +++ b/packages/eui/src/components/icon/icon_glyphs.a11y.tsx @@ -20,22 +20,13 @@ describe('EuiIcons', () => { 'aggregate', 'analyzeEvent', 'annotation', - 'apmTrace', 'apps', - 'arrowDown', - 'arrowLeft', - 'arrowRight', - 'arrowUp', - 'arrowStart', - 'arrowEnd', 'article', 'asterisk', - 'beaker', 'bell', 'bellSlash', 'beta', 'bolt', - 'boxesHorizontal', 'boxesVertical', 'branch', 'branchUser', @@ -45,51 +36,30 @@ describe('EuiIcons', () => { 'bullseye', 'calendar', 'check', - 'checkInCircleFilled', - 'cheer', 'clock', 'cloudDrizzle', 'cloudStormy', 'cloudSunny', 'cluster', - 'color', - 'compute', - 'console', 'container', 'continuityAbove', 'continuityAboveBelow', 'continuityBelow', 'continuityWithin', - 'controlsHorizontal', - 'controlsVertical', 'copy', - 'copyClipboard', 'cross', - 'crosshairs', - 'currency', - 'cut', + 'cube', 'database', - 'desktop', - 'discuss', 'document', 'documents', - 'documentEdit', + 'documentsCheck', 'documentation', 'dot', 'dotInCircle', - 'doubleArrowLeft', - 'doubleArrowRight', 'download', - 'email', 'empty', - 'eql', 'eraser', - 'exit', - 'expand', - 'expandMini', - 'exportAction', 'eye', - 'eyeClosed', 'faceHappy', 'faceNeutral', 'faceSad', @@ -97,7 +67,6 @@ describe('EuiIcons', () => { 'filterExclude', 'filterIgnore', 'filterInclude', - 'filterInCircle', 'flag', 'fold', 'folderCheck', @@ -110,60 +79,35 @@ describe('EuiIcons', () => { 'fullScreenExit', 'function', 'gear', - 'glasses', 'globe', - 'grab', - 'grabHorizontal', 'grid', 'heart', - 'heatmap', 'help', 'home', 'info', 'image', - 'importAction', 'indexClose', 'indexEdit', - 'indexFlush', - 'indexMapping', 'indexOpen', 'indexRuntime', 'indexSettings', - 'indexTemporary', 'infinity', 'inputOutput', 'inspect', - 'invert', 'ip', 'keyboard', - 'kqlField', 'kqlFunction', - 'kqlOperand', - 'kqlSelector', - 'kqlValue', 'kubernetesNode', 'kubernetesPod', - 'launch', 'layers', - 'lettering', - 'lineDashed', - 'lineDotted', 'lineSolid', 'link', - 'list', - 'listAdd', 'lock', 'lockOpen', 'logstashFilter', - 'logstashIf', 'logstashInput', 'logstashOutput', - 'logstashQueue', - 'magnifyWithExclamation', - 'magnifyWithMinus', - 'magnifyWithPlus', 'magnet', - 'mapMarker', 'memory', 'merge', 'menu', @@ -173,16 +117,11 @@ describe('EuiIcons', () => { 'menuUp', 'minimize', 'minus', - 'minusInCircle', - 'minusInCircleFilled', 'mobile', 'moon', 'namespace', 'nested', - 'node', 'number', - 'offline', - 'online', 'package', 'pageSelect', 'pagesSelect', @@ -193,23 +132,14 @@ describe('EuiIcons', () => { 'pencil', 'percent', 'pin', - 'pinFilled', 'play', - 'playFilled', 'plus', - 'plusInCircle', - 'plusInCircleFilled', - 'popout', - 'push', 'question', 'quote', 'refresh', 'reporter', - 'returnKey', 'save', 'scale', - 'search', - 'securitySignal', 'securitySignalDetected', 'securitySignalResolved', 'sessionViewer', @@ -226,61 +156,34 @@ describe('EuiIcons', () => { 'sortUp', 'spaces', 'sparkles', - 'starEmpty', 'starEmptySpace', - 'starFilled', - 'starFilledSpace', 'starMinusEmpty', - 'starMinusFilled', 'starPlusEmpty', - 'starPlusFilled', 'stats', 'stop', - 'stopFilled', 'stopSlash', 'storage', 'string', - 'submodule', 'sun', 'symlink', + 'tableCross', + 'tableGear', 'tableOfContents', - 'tableDensityExpanded', - 'tableDensityCompact', - 'tableDensityNormal', + 'tablePencil', + 'tablePlay', + 'tablePlus', 'tag', 'tear', - 'temperature', 'timeline', + 'timelinePointer', 'timelineWithArrow', - 'timeRefresh', - 'timeslider', - 'training', 'trash', 'unfold', - 'unlink', 'user', - 'userAvatar', 'users', - 'vector', 'videoPlayer', - 'visArea', - 'visAreaStacked', - 'visBarHorizontal', - 'visBarHorizontalStacked', - 'visBarVertical', - 'visBarVerticalStacked', - 'visGauge', 'visGoal', - 'visLine', - 'visMapCoordinate', - 'visMapRegion', - 'visMetric', - 'visPie', - 'visTable', - 'visTagCloud', - 'visText', 'visTimelion', - 'visVega', 'visVisualBuilder', 'warning', 'wordWrap', diff --git a/packages/eui/src/components/icon/icon_map.ts b/packages/eui/src/components/icon/icon_map.ts index 1dbd0afe7741..6dce2e1361cb 100644 --- a/packages/eui/src/components/icon/icon_map.ts +++ b/packages/eui/src/components/icon/icon_map.ts @@ -120,16 +120,13 @@ export const typeToPathMap = { alignTopRight: withMetadata(() => import('./assets/align_top_right'), { synonyms: ['align', 'top', 'right', 'corner', 'position', 'layout'], }), - alert: () => import('./assets/warning'), // NOTE: To be deprecated in favor of `warning` analyzeEvent: () => import('./assets/analyze_event'), annotation: () => import('./assets/annotation'), - anomalyChart: () => import('./assets/chart_anomaly'), // NOTE: To be deprecated in favor of chartAnomaly chartAnomaly: withMetadata(() => import('./assets/chart_anomaly'), { synonyms: ['anomaly', 'chart', 'outlier', 'detection', 'spike', 'unusual'], }), anomalySwimLane: () => import('./assets/anomaly_swim_lane'), apmApp: withMetadata(() => import('./assets/app_apm'), { category: 'app' }), - apmTrace: () => import('./assets/chart_waterfall'), // NOTE: To be deprecated in favor of chartWaterfall chartWaterfall: withMetadata(() => import('./assets/chart_waterfall'), { synonyms: [ 'waterfall chart', @@ -144,26 +141,21 @@ export const typeToPathMap = { category: 'app', }), apps: () => import('./assets/apps'), - arrowDown: () => import('./assets/chevron_single_down'), // NOTE: To be deprecated in favor of chevronSingleDown chevronSingleDown: withMetadata( () => import('./assets/chevron_single_down'), { synonyms: ['chevron', 'down', 'dropdown', 'expand', 'arrow', 'caret'] } ), - arrowLeft: () => import('./assets/chevron_single_left'), // NOTE: To be deprecated in favor of chevronSingleLeft chevronSingleLeft: withMetadata( () => import('./assets/chevron_single_left'), { synonyms: ['chevron', 'left', 'back', 'previous', 'arrow', 'caret'] } ), - arrowRight: () => import('./assets/chevron_single_right'), // NOTE: To be deprecated in favor of chevronSingleRight chevronSingleRight: withMetadata( () => import('./assets/chevron_single_right'), { synonyms: ['chevron', 'right', 'next', 'forward', 'arrow', 'caret'] } ), - arrowUp: () => import('./assets/chevron_single_up'), // NOTE: To be deprecated in favor of chevronSingleUp chevronSingleUp: withMetadata(() => import('./assets/chevron_single_up'), { synonyms: ['chevron', 'up', 'collapse', 'arrow', 'caret'], }), - arrowStart: () => import('./assets/chevron_limit_left'), // NOTE: To be deprecated in favor of chevronLimitLeft chevronLimitLeft: withMetadata(() => import('./assets/chevron_limit_left'), { synonyms: [ 'chevron', @@ -175,7 +167,6 @@ export const typeToPathMap = { 'skip', ], }), - arrowEnd: () => import('./assets/chevron_limit_right'), // NOTE: To be deprecated in favor of chevronLimitRight chevronLimitRight: withMetadata( () => import('./assets/chevron_limit_right'), { synonyms: ['chevron', 'limit', 'last', 'end', 'final', 'jump', 'skip'] } @@ -242,7 +233,6 @@ export const typeToPathMap = { 'queue', ], }), - beaker: () => import('./assets/flask'), // NOTE: To be deprecated in favor of `flask` bell: withMetadata(() => import('./assets/bell'), { synonyms: [ 'notification', @@ -270,8 +260,7 @@ export const typeToPathMap = { bolt: withMetadata(() => import('./assets/bolt'), { synonyms: ['lightning', 'fast', 'power', 'electric', 'speed', 'energy'], }), - boxesHorizontal: () => import('./assets/boxes_vertical'), // NOTE: To be deprecated in favor of `boxes_vertical` - boxesVertical: () => import('./assets/boxes_vertical'), + boxesVertical: () => import('./assets/boxes_vertical'), // Deprecated in favor of `ellipsis` branch: withMetadata(() => import('./assets/branch'), { synonyms: ['git', 'version control', 'fork', 'tree', 'split', 'divergence'], }), @@ -312,7 +301,6 @@ export const typeToPathMap = { casesApp: withMetadata(() => import('./assets/app_cases'), { category: 'app', }), - changePointDetection: () => import('./assets/chart_change_point'), // NOTE: To be deprecated in favor of chartChangePoint chartChangePoint: withMetadata(() => import('./assets/chart_change_point'), { synonyms: [ 'change point', @@ -333,6 +321,7 @@ export const typeToPathMap = { 'plot', ], }), + visArea: () => import('./assets/chart_area'), // Deprecated in favor of `chartArea` chartAreaStack: withMetadata(() => import('./assets/chart_area_stack'), { synonyms: [ 'stacked area', @@ -379,6 +368,7 @@ export const typeToPathMap = { 'plot', ], }), + visBarVertical: () => import('./assets/chart_bar_vertical'), // Deprecated in favor of `chartBarVertical` chartBarVerticalStack: withMetadata( () => import('./assets/chart_bar_vertical_stack'), { @@ -395,6 +385,7 @@ export const typeToPathMap = { chartGauge: withMetadata(() => import('./assets/chart_gauge'), { synonyms: ['gauge', 'meter', 'dial', 'chart', 'metric', 'speedometer'], }), + visGauge: () => import('./assets/chart_gauge'), // Deprecated in favor of `chartGauge` chartHeatmap: withMetadata(() => import('./assets/chart_heatmap'), { synonyms: ['heatmap', 'matrix', 'density', 'chart', 'grid', 'correlation'], }), @@ -408,6 +399,7 @@ export const typeToPathMap = { 'time series', ], }), + visLine: () => import('./assets/chart_line'), // Deprecated in favor of `chartLine` chartPie: withMetadata(() => import('./assets/chart_pie'), { synonyms: [ 'pie chart', @@ -418,6 +410,7 @@ export const typeToPathMap = { 'share', ], }), + visPie: () => import('./assets/chart_pie'), // Deprecated in favor of `chartPie` chartTagCloud: withMetadata(() => import('./assets/chart_tag_cloud'), { synonyms: [ 'tag cloud', @@ -444,11 +437,9 @@ export const typeToPathMap = { checkCircle: withMetadata(() => import('./assets/check_circle'), { synonyms: ['check', 'circle', 'success', 'confirm', 'complete', 'ok'], }), - checkInCircleFilled: () => import('./assets/check_circle_fill'), // NOTE: To be deprecated in favor of checkCircleFill checkCircleFill: withMetadata(() => import('./assets/check_circle_fill'), { synonyms: ['check', 'filled', 'success', 'confirm', 'complete', 'ok'], }), - cheer: () => import('./assets/popper'), // NOTE: To be deprecated in favor of popper popper: withMetadata(() => import('./assets/popper'), { synonyms: ['popper', 'tooltip', 'overlay', 'popup', 'floating'], }), @@ -482,7 +473,6 @@ export const typeToPathMap = { synonyms: ['code', 'developer', 'programming', 'script', 'source'], }), codeApp: withMetadata(() => import('./assets/app_code'), { category: 'app' }), - color: () => import('./assets/paint_bucket'), // NOTE: To be deprecated in favor of paintBucket paintBucket: withMetadata(() => import('./assets/paint_bucket'), { synonyms: ['paint', 'fill', 'bucket', 'color', 'flood fill'], }), @@ -492,14 +482,14 @@ export const typeToPathMap = { comment: withMetadata(() => import('./assets/comment'), { synonyms: ['comment', 'chat', 'message', 'feedback', 'discussion'], }), + editorComment: () => import('./assets/comment'), // Deprecated in favor of `comment` compare: withMetadata(() => import('./assets/compare'), { synonyms: ['compare', 'diff', 'versus', 'side by side'], }), - compute: () => import('./assets/processor'), // NOTE: To be deprecated in favor of processor processor: withMetadata(() => import('./assets/processor'), { synonyms: ['processor', 'compute', 'cpu', 'transform', 'ingest'], }), - console: () => import('./assets/command_line'), // NOTE: To be deprecated in favor of commandLine + compute: () => import('./assets/processor'), // Deprecated in favor of `processor` consoleApp: withMetadata(() => import('./assets/app_console'), { category: 'app', }), @@ -511,7 +501,6 @@ export const typeToPathMap = { contrast: withMetadata(() => import('./assets/contrast'), { synonyms: ['contrast', 'accessibility', 'visibility', 'a11y'], }), - contrastHigh: () => import('./assets/contrast_fill'), // NOTE: To be deprecated in favor of contrastFill contrastFill: withMetadata(() => import('./assets/contrast_fill'), { synonyms: [ 'contrast', @@ -525,12 +514,9 @@ export const typeToPathMap = { controls: withMetadata(() => import('./assets/controls'), { synonyms: ['controls', 'sliders', 'settings', 'adjust', 'panel'], }), - controlsHorizontal: () => import('./assets/controls'), // NOTE: To be deprecated in favor of `controls` - controlsVertical: () => import('./assets/controls'), // NOTE: To be deprecated in favor of `controls` copy: withMetadata(() => import('./assets/copy'), { synonyms: ['duplicate', 'clone', 'clipboard', 'replicate', 'paste'], }), - copyClipboard: () => import('./assets/copy'), // NOTE: To be deprecated in favor of `copy` crossProjectSearch: withMetadata( () => import('./assets/cross_project_search'), { @@ -574,19 +560,15 @@ export const typeToPathMap = { () => import('./assets/app_cross_cluster_replication'), { category: 'app' } ), - crossInCircle: () => import('./assets/cross_circle'), // NOTE: To be deprecated in favor of crossCircle crossCircle: withMetadata(() => import('./assets/cross_circle'), { synonyms: ['cross circle', 'cross', 'close', 'cancel', 'delete', 'circle'], }), crosshair: withMetadata(() => import('./assets/crosshair'), { synonyms: ['crosshair'], }), - crosshairs: () => import('./assets/crosshair'), // NOTE: To be deprecated in favor of crosshair - currency: () => import('./assets/money'), // NOTE: To be deprecated in favor of money money: withMetadata(() => import('./assets/money'), { - synonyms: ['money', 'payment', 'billing', 'cost', 'finance'], + synonyms: ['money', 'payment', 'billing', 'cost', 'finance', 'currency'], }), - cut: () => import('./assets/scissors'), // NOTE: To be deprecated in favor of scissors scissors: withMetadata(() => import('./assets/scissors'), { synonyms: ['scissors'], }), @@ -609,14 +591,12 @@ export const typeToPathMap = { database: withMetadata(() => import('./assets/database'), { synonyms: ['database', 'data', 'storage', 'sql', 'records'], }), - desktop: () => import('./assets/display'), // NOTE: To be deprecated in favor of display display: withMetadata(() => import('./assets/display'), { - synonyms: ['display'], + synonyms: ['display', 'desktop'], }), devToolsApp: withMetadata(() => import('./assets/app_devtools'), { category: 'app', }), - diff: () => import('./assets/compare'), // NOTE: To be deprecated in favor of compare discoverApp: withMetadata(() => import('./assets/app_discover'), { category: 'app', }), @@ -656,27 +636,23 @@ export const typeToPathMap = { 'vertical', ], }), - discuss: () => import('./assets/comment'), // NOTE: To be deprecated in favor of `comment` document: withMetadata(() => import('./assets/document'), { synonyms: ['document', 'file', 'page', 'paper', 'doc'], }), - documentEdit: () => import('./assets/document_edit'), // NOTE: To be deprecated in favor of pencil documentation: withMetadata(() => import('./assets/documentation'), { synonyms: ['documentation', 'docs', 'help', 'guide', 'manual'], }), documents: withMetadata(() => import('./assets/documents'), { synonyms: ['documents', 'files', 'pages', 'papers', 'library'], - }), + }), // Deprecated in favor of `document` dot: withMetadata(() => import('./assets/dot'), { synonyms: ['dot', 'point', 'bullet', 'period', 'circle'], }), dotInCircle: () => import('./assets/dot_in_circle'), - doubleArrowLeft: () => import('./assets/chevron_double_left'), // NOTE: To be deprecated in favor of chevronDoubleLeft chevronDoubleLeft: withMetadata( () => import('./assets/chevron_double_left'), { synonyms: ['chevron', 'double', 'left', 'rewind', 'back', 'previous'] } ), - doubleArrowRight: () => import('./assets/chevron_double_right'), // NOTE: To be deprecated in favor of chevronDoubleRight chevronDoubleRight: withMetadata( () => import('./assets/chevron_double_right'), { synonyms: ['chevron', 'double', 'right', 'forward', 'skip', 'next'] } @@ -684,23 +660,18 @@ export const typeToPathMap = { ellipsis: withMetadata(() => import('./assets/ellipsis'), { synonyms: ['ellipsis', 'more', 'menu', 'overflow', 'dots'], }), - editorAlignCenter: () => import('./assets/text_align_center'), // NOTE: To be deprecated in favor of textAlignCenter textAlignCenter: withMetadata(() => import('./assets/text_align_center'), { synonyms: ['text', 'align', 'center', 'middle', 'typography'], }), - editorAlignLeft: () => import('./assets/text_align_left'), // NOTE: To be deprecated in favor of textAlignLeft textAlignLeft: withMetadata(() => import('./assets/text_align_left'), { synonyms: ['text', 'align', 'left', 'typography', 'paragraph'], }), - editorAlignRight: () => import('./assets/text_align_right'), // NOTE: To be deprecated in favor of textAlignRight textAlignRight: withMetadata(() => import('./assets/text_align_right'), { synonyms: ['text', 'align', 'right', 'typography', 'paragraph'], }), - editorBold: () => import('./assets/text_bold'), // NOTE: To be deprecated in favor of textBold textBold: withMetadata(() => import('./assets/text_bold'), { synonyms: ['text bold', 'text', 'bold', 'typography', 'formatting'], }), - editorChecklist: () => import('./assets/list_check'), // NOTE: To be deprecated in favor of listCheck listCheck: withMetadata(() => import('./assets/list_check'), { synonyms: [ 'list check', @@ -713,27 +684,12 @@ export const typeToPathMap = { 'confirm', ], }), - editorCodeBlock: () => import('./assets/code'), // NOTE: To be deprecated in favor of `code` - editorComment: () => import('./assets/comment'), // NOTE: To be deprecated in favor of `comment` - editorDistributeHorizontal: () => - import('./assets/editor_distribute_horizontal'), // NOTE: To be deprecated in favor of distributeHorizontal - editorDistributeVertical: () => import('./assets/editor_distribute_vertical'), // NOTE: To be deprecated in favor of distributeVertical - editorHeading: () => import('./assets/text_heading'), // NOTE: To be deprecated in favor of textHeading textHeading: withMetadata(() => import('./assets/text_heading'), { synonyms: ['text', 'heading', 'title', 'h1', 'typography', 'header'], }), - editorItalic: () => import('./assets/text_italic'), // NOTE: To be deprecated in favor of textItalic textItalic: withMetadata(() => import('./assets/text_italic'), { synonyms: ['text italic', 'text', 'italic', 'typography', 'formatting'], }), - editorItemAlignBottom: () => import('./assets/editor_item_align_bottom'), // NOTE: To be deprecated in favor of alignBottom - editorItemAlignCenter: () => import('./assets/editor_item_align_center'), // NOTE: To be deprecated in favor of alignCenterHorizontal - editorItemAlignLeft: () => import('./assets/editor_item_align_left'), // NOTE: To be deprecated in favor of alignLeft - editorItemAlignMiddle: () => import('./assets/editor_item_align_middle'), // NOTE: To be deprecated in favor of alignCenterVertical - editorItemAlignRight: () => import('./assets/editor_item_align_right'), // NOTE: To be deprecated in favor of alignRight - editorItemAlignTop: () => import('./assets/editor_item_align_top'), // NOTE: To be deprecated in favor of alignTop, - editorLink: () => import('./assets/link'), // NOTE: To be deprecated in favor of `link` - editorOrderedList: () => import('./assets/list_number'), // NOTE: To be deprecated in favor of listNumber listNumber: withMetadata(() => import('./assets/list_number'), { synonyms: [ 'list number', @@ -746,23 +702,14 @@ export const typeToPathMap = { 'numeric', ], }), - editorPositionBottomLeft: () => - import('./assets/editor_position_bottom_left'), // NOTE: To be deprecated in favor of alignBottomLeft - editorPositionBottomRight: () => - import('./assets/editor_position_bottom_right'), // NOTE: To be deprecated in favor of alignBottomRight - editorPositionTopLeft: () => import('./assets/editor_position_top_left'), // NOTE: To be deprecated in favor of alignTopLeft - editorPositionTopRight: () => import('./assets/editor_position_top_right'), // NOTE: To be deprecated in favor of alignTopRight - editorRedo: () => import('./assets/redo'), // NOTE: To be deprecated in favor of redo redo: withMetadata(() => import('./assets/redo'), { synonyms: ['redo', 'repeat', 'forward', 'again'], }), - editorStrike: () => import('./assets/text_strike'), // NOTE: To be deprecated in favor of textStrike textStrike: withMetadata(() => import('./assets/text_strike'), { synonyms: ['text', 'strikethrough', 'strike', 'delete', 'typography'], }), - editorTable: () => import('./assets/table'), // NOTE: To be deprecated in favor of table table: withMetadata(() => import('./assets/table'), { synonyms: ['table'] }), - editorUnderline: () => import('./assets/text_underline'), // NOTE: To be deprecated in favor of textUnderline + visTable: () => import('./assets/table'), // Deprecated in favor of `table` textUnderline: withMetadata(() => import('./assets/text_underline'), { synonyms: [ 'text underline', @@ -772,15 +719,13 @@ export const typeToPathMap = { 'formatting', ], }), - editorUndo: () => import('./assets/undo'), // NOTE: To be deprecated in favor of undo undo: withMetadata(() => import('./assets/undo'), { synonyms: ['undo', 'revert', 'back', 'previous action'], }), - editorUnorderedList: () => import('./assets/list_bullet'), // NOTE: To be deprecated in favor of listBullet listBullet: withMetadata(() => import('./assets/list_bullet'), { synonyms: ['list bullet', 'list', 'bullet', 'items', 'rows'], }), - email: () => import('./assets/mail'), // NOTE: To be deprecated in favor of mail + list: () => import('./assets/list_bullet'), // Deprecated in favor of `listBullet` mail: withMetadata(() => import('./assets/mail'), { synonyms: ['mail', 'email', 'envelope', 'message', 'inbox'], }), @@ -791,9 +736,8 @@ export const typeToPathMap = { endpoint: withMetadata(() => import('./assets/endpoint'), { synonyms: ['endpoint', 'api', 'url', 'connection', 'target'], }), - eql: () => import('./assets/query'), // NOTE: To be deprecated in favor of query query: withMetadata(() => import('./assets/query'), { - synonyms: ['query', 'search', 'sql', 'lucene', 'filter'], + synonyms: ['query', 'search', 'sql', 'lucene', 'filter', 'eql', 'esql'], }), eraser: withMetadata(() => import('./assets/eraser'), { synonyms: ['eraser', 'clear', 'remove', 'delete', 'rubber'], @@ -801,7 +745,6 @@ export const typeToPathMap = { error: withMetadata(() => import('./assets/error'), { synonyms: ['error', 'failure', 'problem', 'invalid', 'cross'], }), - errorFilled: () => import('./assets/error_fill'), // NOTE: To be deprecated in favor of errorFill errorFill: withMetadata(() => import('./assets/error_fill'), { synonyms: [ 'error fill', @@ -815,17 +758,13 @@ export const typeToPathMap = { ], }), esqlVis: () => import('./assets/esql_vis'), - exit: () => import('./assets/log_out'), // NOTE: To be deprecated in favor of logOut logOut: withMetadata(() => import('./assets/log_out'), { - synonyms: ['log out', 'log', 'out'], + synonyms: ['log out', 'log', 'out', 'exit'], }), - expand: () => import('./assets/maximize'), // NOTE: To be deprecated in favor of maximize maximize: withMetadata(() => import('./assets/maximize'), { - synonyms: ['maximize'], + synonyms: ['maximize', 'expand'], }), - expandMini: () => import('./assets/maximize'), // NOTE: To be deprecated in favor of maximize - export: () => import('./assets/upload'), - exportAction: () => import('./assets/upload'), // NOTE: To be deprecated in favor of upload + export: () => import('./assets/upload'), // Deprecated in favor of `upload` upload: withMetadata(() => import('./assets/upload'), { synonyms: ['upload', 'import', 'send', 'cloud', 'arrow up'], }), @@ -835,7 +774,6 @@ export const typeToPathMap = { eye: withMetadata(() => import('./assets/eye'), { synonyms: ['eye', 'view', 'visible', 'show', 'preview', 'watch'], }), - eyeClosed: () => import('./assets/eye_slash'), // NOTE: To be deprecated in favor of eyeSlash eyeSlash: withMetadata(() => import('./assets/eye_slash'), { synonyms: [ 'eye slash', @@ -865,7 +803,6 @@ export const typeToPathMap = { faceSad: withMetadata(() => import('./assets/face_sad'), { synonyms: ['face sad', 'face', 'sad'], }), - fieldStatistics: () => import('./assets/table_info'), // NOTE: To be deprecated in favor of tableInfo tableInfo: withMetadata(() => import('./assets/table_info'), { synonyms: ['table', 'info', 'metadata', 'details', 'schema', 'columns'], }), @@ -892,7 +829,6 @@ export const typeToPathMap = { filterInclude: withMetadata(() => import('./assets/filter_include'), { synonyms: ['filter', 'include', 'add', 'refine', 'narrow', 'select'], }), - filterInCircle: () => import('./assets/filter_in_circle'), // NOTE: To be deprecated in favor of filter flask: withMetadata(() => import('./assets/flask'), { synonyms: ['flask', 'experiment', 'lab', 'science', 'test'], }), @@ -908,12 +844,12 @@ export const typeToPathMap = { folderClose: withMetadata(() => import('./assets/folder_close'), { synonyms: ['folder', 'closed', 'collapse', 'directory', 'archive'], }), - folderCheck: () => import('./assets/folder_check'), + folderCheck: () => import('./assets/folder_check'), // Deprecated in favor of `check` folderExclamation: () => import('./assets/folder_exclamation'), folderOpen: withMetadata(() => import('./assets/folder_open'), { synonyms: ['folder', 'open', 'expand', 'directory', 'browse'], }), - folderOpened: () => import('./assets/folder_open'), + folderOpened: () => import('./assets/folder_open'), // Deprecated in favor of `folderOpen` frameNext: () => import('./assets/frame_next'), framePrevious: () => import('./assets/frame_previous'), fullScreen: withMetadata(() => import('./assets/full_screen'), { @@ -937,13 +873,9 @@ export const typeToPathMap = { ], }), gisApp: withMetadata(() => import('./assets/app_gis'), { category: 'app' }), - glasses: () => import('./assets/read_only'), // NOTE: To be deprecated in favor of `readOnly` globe: withMetadata(() => import('./assets/globe'), { synonyms: ['globe', 'world', 'web', 'internet', 'international'], }), - grab: () => import('./assets/drag_vertical'), // NOTE: To be deprecated in favor of dragVertical - grabHorizontal: () => import('./assets/drag_horizontal'), // NOTE: To be deprecated in favor of dragHorizontal - grabOmnidirectional: () => import('./assets/grab_omnidirectional'), // NOTE: To be deprecated in favor of drag, gradient: withMetadata(() => import('./assets/gradient'), { synonyms: ['gradient', 'blend', 'fade', 'color transition'], }), @@ -960,7 +892,6 @@ export const typeToPathMap = { heartbeatApp: withMetadata(() => import('./assets/app_heartbeat'), { category: 'app', }), - heatmap: () => import('./assets/chart_heatmap'), // NOTE: To be deprecated in favor of chartHeatmap help: () => import('./assets/help'), // NOTE: Might be deprecated later (not recommended in Kibana) home: withMetadata(() => import('./assets/home'), { synonyms: ['home', 'house', 'main', 'start', 'dashboard'], @@ -977,13 +908,24 @@ export const typeToPathMap = { image: withMetadata(() => import('./assets/image'), { synonyms: ['image', 'picture', 'photo', 'media', 'graphic'], }), - importAction: () => import('./assets/download'), // NOTE: To be deprecated in favor of download index: () => import('./assets/index'), - indexClose: withMetadata(() => import('./assets/index_close'), { - synonyms: ['index', 'close', 'elasticsearch', 'dataset', 'remove'], + indexClose: () => import('./assets/index_close'), // Deprecated in favor of `tableCross` + tableCross: withMetadata(() => import('./assets/index_close'), { + synonyms: [ + 'table', + 'cross', + 'index', + 'close', + 'elasticsearch', + 'dataset', + 'remove', + ], }), - indexEdit: withMetadata(() => import('./assets/index_edit'), { + indexEdit: () => import('./assets/index_edit'), // Deprecated in favor of `tablePencil` + tablePencil: withMetadata(() => import('./assets/index_edit'), { synonyms: [ + 'table', + 'pencil', 'index', 'edit', 'elasticsearch', @@ -992,17 +934,24 @@ export const typeToPathMap = { 'settings', ], }), - indexFlush: () => import('./assets/chart_threshold'), // NOTE: To be deprecated in favor of chartThreshold indexManagementApp: withMetadata( () => import('./assets/app_index_management'), { category: 'app' } ), - indexMapping: () => import('./assets/mapping'), // NOTE: To be deprecated in favor of mapping mapping: withMetadata(() => import('./assets/mapping'), { synonyms: ['mapping'], }), - indexOpen: withMetadata(() => import('./assets/index_open'), { - synonyms: ['index', 'open', 'elasticsearch', 'dataset', 'browse'], + indexOpen: () => import('./assets/index_open'), // Deprecated in favor of `tablePlus` + tablePlus: withMetadata(() => import('./assets/index_open'), { + synonyms: [ + 'table', + 'plus', + 'index', + 'open', + 'elasticsearch', + 'dataset', + 'browse', + ], }), indexPatternApp: withMetadata(() => import('./assets/app_index_pattern'), { category: 'app', @@ -1010,13 +959,30 @@ export const typeToPathMap = { indexRollupApp: withMetadata(() => import('./assets/app_index_rollup'), { category: 'app', }), - indexRuntime: withMetadata(() => import('./assets/index_runtime'), { - synonyms: ['index', 'runtime', 'elasticsearch', 'live', 'execution'], + indexRuntime: () => import('./assets/index_runtime'), // Deprecated in favor of `tablePlay` + tablePlay: withMetadata(() => import('./assets/index_runtime'), { + synonyms: [ + 'table', + 'play', + 'index', + 'runtime', + 'elasticsearch', + 'live', + 'execution', + ], }), - indexSettings: withMetadata(() => import('./assets/index_settings'), { - synonyms: ['index', 'settings', 'elasticsearch', 'configure', 'options'], + indexSettings: () => import('./assets/index_settings'), // Deprecated in favor of `tableGear` + tableGear: withMetadata(() => import('./assets/index_settings'), { + synonyms: [ + 'table', + 'gear', + 'index', + 'settings', + 'elasticsearch', + 'configure', + 'options', + ], }), - indexTemporary: () => import('./assets/table_time'), // NOTE: To be deprecated in favor of tableTime tableTime: withMetadata(() => import('./assets/table_time'), { synonyms: ['table', 'time', 'temporal', 'date', 'timeline', 'history'], }), @@ -1029,7 +995,6 @@ export const typeToPathMap = { inspect: withMetadata(() => import('./assets/inspect'), { synonyms: ['inspect', 'investigate', 'examine', 'analyze', 'look'], }), - invert: () => import('./assets/contrast'), // NOTE: To be deprecated in favor of contrast ip: () => import('./assets/ip'), key: withMetadata(() => import('./assets/key'), { synonyms: ['key', 'password', 'credential', 'access', 'security'], @@ -1037,26 +1002,24 @@ export const typeToPathMap = { keyboard: withMetadata(() => import('./assets/keyboard'), { synonyms: ['keyboard', 'typing', 'input', 'shortcut', 'keys'], }), - kqlField: () => import('./assets/query_field'), // NOTE: To be deprecated in favor of queryField queryField: withMetadata(() => import('./assets/query_field'), { synonyms: ['query', 'field', 'filter', 'column', 'attribute', 'selector'], }), kqlFunction: () => import('./assets/kql_function'), - kqlOperand: () => import('./assets/query_operand'), // NOTE: To be deprecated in favor of queryOperand queryOperand: withMetadata(() => import('./assets/query_operand'), { synonyms: ['query', 'operand', 'operator', 'logic', 'condition', 'rule'], }), - kqlSelector: () => import('./assets/query_selector'), // NOTE: To be deprecated in favor of querySelector querySelector: withMetadata(() => import('./assets/query_selector'), { synonyms: ['query', 'selector', 'pick', 'choose', 'field', 'filter'], }), - kqlValue: () => import('./assets/query_value'), // NOTE: To be deprecated in favor of queryValue queryValue: withMetadata(() => import('./assets/query_value'), { synonyms: ['query', 'value', 'literal', 'data', 'input', 'filter'], }), kubernetesNode: () => import('./assets/kubernetes_node'), - kubernetesPod: withMetadata(() => import('./assets/kubernetes_pod'), { + kubernetesPod: () => import('./assets/kubernetes_pod'), // Deprecated in favor of `cube` + cube: withMetadata(() => import('./assets/kubernetes_pod'), { synonyms: [ + 'cube', 'kubernetes', 'pod', 'k8s', @@ -1065,7 +1028,6 @@ export const typeToPathMap = { 'orchestration', ], }), - launch: () => import('./assets/rocket'), // NOTE: To be deprecated in favor of rocket rocket: withMetadata(() => import('./assets/rocket'), { synonyms: ['rocket', 'launch', 'deploy', 'fast', 'startup'], }), @@ -1073,7 +1035,6 @@ export const typeToPathMap = { synonyms: ['layers'], }), lensApp: withMetadata(() => import('./assets/app_lens'), { category: 'app' }), - lettering: () => import('./assets/text'), // NOTE: To be deprecated in favor of text text: withMetadata(() => import('./assets/text'), { synonyms: ['text'] }), lineBreak: withMetadata(() => import('./assets/line_break'), { synonyms: ['line break', 'newline', 'paragraph', 'text', 'wrap', 'return'], @@ -1084,7 +1045,6 @@ export const typeToPathMap = { lineDash: withMetadata(() => import('./assets/line_dash'), { synonyms: ['line dash', 'line', 'dash'], }), - lineDashed: () => import('./assets/line_dash'), // NOTE: To be deprecated in favor of lineDash lineDot: withMetadata(() => import('./assets/line_dot'), { synonyms: [ 'line dot', @@ -1096,7 +1056,6 @@ export const typeToPathMap = { 'circle', ], }), - lineDotted: () => import('./assets/line_dot'), // NOTE: To be deprecated in favor of lineDot lineSolid: withMetadata(() => import('./assets/line_solid'), { synonyms: ['line solid', 'line', 'solid'], }), @@ -1106,8 +1065,6 @@ export const typeToPathMap = { linkSlash: withMetadata(() => import('./assets/link_slash'), { synonyms: ['unlink', 'broken link', 'remove link', 'disconnect', 'url'], }), - list: () => import('./assets/list_bullet'), // NOTE: To be deprecated in favor of listBullet, - listAdd: () => import('./assets/plus_circle'), // NOTE: To be deprecated in favor of `plus_circle` lock: withMetadata(() => import('./assets/lock'), { synonyms: ['lock', 'secure', 'private', 'protected', 'password'], }), @@ -1122,11 +1079,10 @@ export const typeToPathMap = { 'open', ], }), - logPatternAnalysis: () => import('./assets/pattern'), // NOTE: To be deprecated in favor of pattern pattern: withMetadata(() => import('./assets/pattern'), { synonyms: ['pattern', 'texture', 'repeat', 'design', 'fill'], }), - logRateAnalysis: () => import('./assets/log_rate_analysis'), + logRateAnalysis: () => import('./assets/log_rate_analysis'), // Deprecated in favor of `chartBarVertical` logoAWS: withMetadata(() => import('./assets/logo_aws'), { category: 'thirdPartyLogo', }), @@ -1310,10 +1266,8 @@ export const typeToPathMap = { ), logsApp: withMetadata(() => import('./assets/app_logs'), { category: 'app' }), logstashFilter: () => import('./assets/logstash_filter'), - logstashIf: () => import('./assets/if'), // NOTE: To be deprecated in favor of if logstashInput: () => import('./assets/logstash_input'), logstashOutput: () => import('./assets/logstash_output'), - logstashQueue: () => import('./assets/queue'), // NOTE: To be deprecated in favor of queue queue: withMetadata(() => import('./assets/queue'), { synonyms: ['queue', 'line', 'buffer', 'waiting', 'jobs'], }), @@ -1332,6 +1286,7 @@ export const typeToPathMap = { 'glass', ], }), + search: () => import('./assets/magnify'), // Deprecated in favor of `magnify` magnifyExclamation: withMetadata( () => import('./assets/magnify_exclamation'), { synonyms: ['search', 'alert', 'warning', 'find', 'magnify', 'important'] } @@ -1342,16 +1297,13 @@ export const typeToPathMap = { magnifyPlus: withMetadata(() => import('./assets/magnify_plus'), { synonyms: ['zoom in', 'search', 'plus', 'enlarge', 'magnify'], }), - magnifyWithExclamation: () => import('./assets/magnify_with_exclamation'), // NOTE: To be deprecated in favor of magnifyExclamation - magnifyWithMinus: () => import('./assets/magnify_with_minus'), // NOTE: To be deprecated in favor of magnifyMinus - magnifyWithPlus: () => import('./assets/magnify_with_plus'), // NOTE: To be deprecated in favor of magnifyPlus, managementApp: withMetadata(() => import('./assets/app_management'), { category: 'app', }), map: withMetadata(() => import('./assets/map'), { synonyms: ['map', 'location', 'geo', 'geography', 'region'], }), - mapMarker: () => import('./assets/waypoint'), // NOTE: To be deprecated in favor of waypoint + mapMarker: () => import('./assets/waypoint'), // Deprecated in favor of `waypoint` waypoint: withMetadata(() => import('./assets/waypoint'), { synonyms: ['waypoint', 'marker', 'step', 'node', 'path'], }), @@ -1411,13 +1363,10 @@ export const typeToPathMap = { 'circle', ], }), - minusInCircle: () => import('./assets/minus_circle'), // NOTE: To be deprecated in favor of minusCircle - minusInCircleFilled: () => import('./assets/minus_circle'), // NOTE: To be deprecated in favor of minusCircle - minusInSquare: () => import('./assets/minus_square'), // NOTE: To be deprecated in favor of minusSquare minusSquare: withMetadata(() => import('./assets/minus_square'), { synonyms: ['minus', 'square', 'remove', 'collapse', 'decrement'], }), - mobile: () => import('./assets/mobile'), + mobile: () => import('./assets/mobile'), // Deprecated with no replacement monitoringApp: withMetadata(() => import('./assets/app_monitoring'), { category: 'app', }), @@ -1431,8 +1380,6 @@ export const typeToPathMap = { nested: withMetadata(() => import('./assets/nested'), { synonyms: ['nested', 'hierarchy', 'tree', 'child', 'indent'], }), - newChat: () => import('./assets/plus_circle'), // NOTE: To be deprecated in favor of plusCircle - node: () => import('./assets/vector_triangle'), // NOTE: To be deprecated in favor of vectorTriangle vectorTriangle: withMetadata(() => import('./assets/vector_triangle'), { synonyms: ['vector', 'triangle', 'shape', 'geometry', 'delta'], }), @@ -1442,7 +1389,6 @@ export const typeToPathMap = { number: withMetadata(() => import('./assets/number'), { synonyms: ['number', 'digit', 'numeric', 'count', 'hash'], }), - offline: () => import('./assets/wifi_slash'), // NOTE: To be deprecated in favor of wifiSlash wifiSlash: withMetadata(() => import('./assets/wifi_slash'), { synonyms: [ 'wifi', @@ -1453,7 +1399,6 @@ export const typeToPathMap = { 'no signal', ], }), - online: () => import('./assets/wifi'), // NOTE: To be deprecated in favor of wifi wifi: withMetadata(() => import('./assets/wifi'), { synonyms: ['wifi', 'wireless', 'network', 'internet', 'connection'], }), @@ -1468,8 +1413,17 @@ export const typeToPathMap = { category: 'app', }), pageSelect: () => import('./assets/page_select'), - pagesSelect: withMetadata(() => import('./assets/pages_select'), { - synonyms: ['pages', 'select', 'pagination', 'choose', 'document'], + pagesSelect: () => import('./assets/pages_select'), // Deprecated in favor of `documentsCheck` + documentsCheck: withMetadata(() => import('./assets/pages_select'), { + synonyms: [ + 'documents', + 'check', + 'pages', + 'select', + 'pagination', + 'choose', + 'document', + ], }), palette: withMetadata(() => import('./assets/palette'), { synonyms: ['palette', 'colors', 'theme', 'design', 'swatch'], @@ -1496,19 +1450,16 @@ export const typeToPathMap = { pinFill: withMetadata(() => import('./assets/pin_fill'), { synonyms: ['pin', 'filled', 'stick', 'anchor', 'fixed', 'bookmark'], }), - pinFilled: () => import('./assets/pin_fill'), // NOTE: To be deprecated in favor of pinFill - pipeBreaks: () => import('./assets/line_break'), // NOTE: To be deprecated in favor of lineBreak + pinFilled: () => import('./assets/pin_fill'), // Deprecated in favor of `pinFill` pipelineApp: withMetadata(() => import('./assets/app_pipeline'), { category: 'app', }), - pipeNoBreaks: () => import('./assets/line_break_slash'), // NOTE: To be deprecated in favor of lineBreakSlash pivot: withMetadata(() => import('./assets/pivot'), { synonyms: ['pivot', 'table', 'transform', 'rotate', 'analytics'], }), play: withMetadata(() => import('./assets/play'), { synonyms: ['play', 'start', 'run', 'media', 'video'], }), - playFilled: () => import('./assets/play_filled'), // NOTE: To be deprecated in favor of play plugs: () => import('./assets/plugs'), plus: withMetadata(() => import('./assets/plus'), { synonyms: ['plus', 'add', 'new', 'create', 'increment'], @@ -1524,17 +1475,12 @@ export const typeToPathMap = { 'circle', ], }), - plusInCircle: () => import('./assets/plus_circle'), // NOTE: To be deprecated in favor of plusCircle - plusInCircleFilled: () => import('./assets/plus_circle'), // NOTE: To be deprecated in favor of plusCircle - plusInSquare: () => import('./assets/plus_square'), // NOTE: To be deprecated in favor of plusSquare plusSquare: withMetadata(() => import('./assets/plus_square'), { synonyms: ['plus', 'square', 'add', 'expand', 'increment'], }), - popout: () => import('./assets/external'), // NOTE: To be deprecated in favor of external presentation: withMetadata(() => import('./assets/presentation'), { synonyms: ['presentation', 'slides', 'deck', 'display', 'show'], }), - productRobot: () => import('./assets/product_agent'), // NOTE: To be deprecated in favor of productAgent productAgent: withMetadata(() => import('./assets/product_agent'), { synonyms: ['agent', 'product', 'elastic agent', 'fleet', 'monitoring'], }), @@ -1568,7 +1514,6 @@ export const typeToPathMap = { ], } ), - push: () => import('./assets/send'), // NOTE: To be deprecated in favor of send send: withMetadata(() => import('./assets/send'), { synonyms: ['send', 'submit', 'dispatch', 'arrow', 'share'], }), @@ -1603,7 +1548,6 @@ export const typeToPathMap = { return: withMetadata(() => import('./assets/return'), { synonyms: ['return', 'enter', 'keyboard', 'submit', 'back', 'revert'], }), - returnKey: () => import('./assets/return'), // NOTE: To be deprecated in favor of return save: withMetadata(() => import('./assets/save'), { synonyms: ['save', 'store', 'disk', 'persist', 'keep'], }), @@ -1611,7 +1555,6 @@ export const typeToPathMap = { category: 'app', }), scale: () => import('./assets/scale'), - search: () => import('./assets/magnify'), // NOTE: To be deprecated in favor of magnify searchProfilerApp: withMetadata( () => import('./assets/app_search_profiler'), { category: 'app' } @@ -1626,7 +1569,6 @@ export const typeToPathMap = { securityApp: withMetadata(() => import('./assets/app_security'), { category: 'app', }), - securitySignal: () => import('./assets/security_signal'), // NOTE: To be deprecated in favor of radar securitySignalDetected: () => import('./assets/security_signal_detected'), securitySignalResolved: () => import('./assets/security_signal_resolved'), server: withMetadata(() => import('./assets/server'), { @@ -1685,7 +1627,7 @@ export const typeToPathMap = { star: withMetadata(() => import('./assets/star'), { synonyms: ['star', 'favorite', 'rating', 'bookmark'], }), - starEmpty: () => import('./assets/star'), // NOTE: To be deprecated in favor of star + starEmpty: () => import('./assets/star'), // Deprecated in favor of `star` starEmptySpace: () => import('./assets/star_empty_space'), starFill: withMetadata(() => import('./assets/star_fill'), { synonyms: [ @@ -1699,29 +1641,22 @@ export const typeToPathMap = { 'solid', ], }), - starFilled: () => import('./assets/star_fill'), // NOTE: To be deprecated in favor of starFill, + starFilled: () => import('./assets/star_fill'), // Deprecated in favor of `starFill` starFillSpace: () => import('./assets/star_fill_space'), - starFilledSpace: () => import('./assets/star_fill_space'), // NOTE: To be deprecated in favor of starFillSpace starMinusEmpty: () => import('./assets/star_minus_empty'), starMinusFill: () => import('./assets/star_minus_fill'), - starMinusFilled: () => import('./assets/star_minus_fill'), // NOTE: To be deprecated in favor of starMinusFill starPlusEmpty: () => import('./assets/star_plus_empty'), starPlusFill: () => import('./assets/star_plus_fill'), - starPlusFilled: () => import('./assets/star_plus_fill'), // NOTE: To be deprecated in favor of starPlusFill stats: () => import('./assets/stats'), stop: withMetadata(() => import('./assets/stop'), { synonyms: ['stop', 'halt', 'end', 'terminate', 'square'], }), stopFill: () => import('./assets/stop_fill'), - stopFilled: () => import('./assets/stop_fill'), // NOTE: To be deprecated in favor of stopFill stopSlash: () => import('./assets/stop_slash'), storage: withMetadata(() => import('./assets/storage'), { synonyms: ['storage', 'disk', 'drive', 'save', 'data store'], }), - streamsClassic: () => import('./assets/product_streams_classic'), // NOTE: To be deprecated in favor of productStreamsClassic - streamsWired: () => import('./assets/product_streams_wired'), // NOTE: To be deprecated in favor of productStreamsWired string: () => import('./assets/string'), - submodule: () => import('./assets/merge'), // NOTE: To be deprecated in favor of `merge` sun: withMetadata(() => import('./assets/sun'), { synonyms: ['sun', 'light', 'day', 'theme', 'bright'], }), @@ -1729,24 +1664,21 @@ export const typeToPathMap = { symlink: withMetadata(() => import('./assets/symlink'), { synonyms: ['symlink', 'shortcut', 'alias', 'link', 'reference'], }), - tableDensityCompact: () => import('./assets/table_density_high'), // NOTE: To be deprecated in favor of tableDensityHigh tableDensityHigh: withMetadata(() => import('./assets/table_density_high'), { synonyms: ['table', 'density', 'compact', 'tight', 'rows', 'spacing'], }), - tableDensityExpanded: () => import('./assets/table_density_low'), // NOTE: To be deprecated in favor of tableDensityLow tableDensityLow: withMetadata(() => import('./assets/table_density_low'), { synonyms: ['table', 'density', 'spacious', 'loose', 'rows', 'spacing'], }), - tableDensityNormal: () => import('./assets/table'), // NOTE: To be deprecated in favor of table tableOfContents: () => import('./assets/table_of_contents'), tag: withMetadata(() => import('./assets/tag'), { synonyms: ['tag', 'label', 'category', 'keyword', 'badge'], }), tear: () => import('./assets/tear'), - temperature: () => import('./assets/thermometer'), // NOTE: To be deprecated in favor of thermometer thermometer: withMetadata(() => import('./assets/thermometer'), { synonyms: ['thermometer', 'temperature', 'heat', 'metric', 'gauge'], }), + temperature: () => import('./assets/thermometer'), // Deprecated in favor of `thermometer` thumbDown: withMetadata(() => import('./assets/thumb_down'), { synonyms: ['thumbs down', 'dislike', 'negative', 'vote', 'feedback', 'bad'], }), @@ -1756,19 +1688,24 @@ export const typeToPathMap = { timeline: withMetadata(() => import('./assets/timeline'), { synonyms: ['timeline', 'history', 'events', 'chronological', 'sequence'], }), - timelineWithArrow: withMetadata( - () => import('./assets/timeline_with_arrow'), - { synonyms: ['timeline', 'arrow', 'history', 'sequence', 'flow', 'events'] } - ), + timelineWithArrow: () => import('./assets/timeline_with_arrow'), // Deprecated in favor of `timelinePointer` + timelinePointer: withMetadata(() => import('./assets/timeline_with_arrow'), { + synonyms: [ + 'timeline', + 'pointer', + 'arrow', + 'history', + 'sequence', + 'flow', + 'events', + ], + }), timelionApp: withMetadata(() => import('./assets/app_timelion'), { category: 'app', }), - timeRefresh: () => import('./assets/refresh_time'), // NOTE: To be deprecated in favor of refreshTime refreshTime: withMetadata(() => import('./assets/refresh_time'), { synonyms: ['refresh', 'time', 'reload', 'schedule', 'sync', 'clock'], }), - timeslider: () => import('./assets/clock_control'), // NOTE: To be deprecated in favor of clockControl - training: () => import('./assets/presentation'), // NOTE: To be deprecated in favor of presentation, transitionBottomIn: withMetadata( () => import('./assets/transition_bottom_in'), { synonyms: ['transition', 'bottom', 'in', 'animate', 'enter', 'motion'] } @@ -1797,7 +1734,6 @@ export const typeToPathMap = { synonyms: ['trash', 'delete', 'remove', 'bin', 'garbage', 'discard'], }), unfold: () => import('./assets/unfold'), - unlink: () => import('./assets/link_slash'), // NOTE: To be deprecated in favor of linkSlash upgradeAssistantApp: withMetadata( () => import('./assets/app_upgrade_assistant'), { category: 'app' } @@ -1808,7 +1744,6 @@ export const typeToPathMap = { user: withMetadata(() => import('./assets/user'), { synonyms: ['user', 'person', 'account', 'profile', 'avatar'], }), - userAvatar: () => import('./assets/user'), // NOTE: To be deprecated in favor of `user` users: withMetadata(() => import('./assets/users'), { synonyms: ['users', 'people', 'team', 'group', 'accounts'], }), @@ -1818,34 +1753,17 @@ export const typeToPathMap = { unarchive: withMetadata(() => import('./assets/unarchive'), { synonyms: ['unarchive', 'restore', 'extract', 'retrieve', 'unpack'], }), - vector: () => import('./assets/vector_square'), // NOTE: To be deprecated in favor of vectorSquare vectorSquare: withMetadata(() => import('./assets/vector_square'), { synonyms: ['vector', 'square', 'shape', 'geometry', 'box', 'region'], }), videoPlayer: withMetadata(() => import('./assets/video_player'), { synonyms: ['video', 'player', 'play', 'media', 'film', 'watch'], }), - visArea: () => import('./assets/chart_area'), // NOTE: To be deprecated in favor of chartArea - visAreaStacked: () => import('./assets/chart_area_stack'), // NOTE: To be deprecated in favor of chartAreaStack - visBarHorizontal: () => import('./assets/chart_bar_horizontal'), // NOTE: To be deprecated in favor of chartBarHorizontal - visBarHorizontalStacked: () => import('./assets/chart_bar_horizontal_stack'), // NOTE: To be deprecated in favor of chartBarHorizontalStack - visBarVertical: () => import('./assets/chart_bar_vertical'), // NOTE: To be deprecated in favor of chartBarVertical - visBarVerticalStacked: () => import('./assets/chart_bar_vertical_stack'), // NOTE: To be deprecated in favor of chartBarVerticalStack - visGauge: () => import('./assets/chart_gauge'), // NOTE: To be deprecated in favor of chartGauge visGoal: () => import('./assets/vis_goal'), - visLine: () => import('./assets/chart_line'), // NOTE: To be deprecated in favor of chartLine - visMapCoordinate: () => import('./assets/waypoint'), // NOTE: To be deprecated in favor of waypoint - visMapRegion: () => import('./assets/map'), // NOTE: To be deprecated in favor of map - visMetric: () => import('./assets/chart_metric'), // NOTE: To be deprecated in favor of chartMetric chartMetric: withMetadata(() => import('./assets/chart_metric'), { synonyms: ['metric', 'chart', 'kpi', 'measurement', 'stat', 'indicator'], }), - visPie: () => import('./assets/chart_pie'), // NOTE: To be deprecated in favor of chartPie - visTable: () => import('./assets/table'), // NOTE: To be deprecated in favor of table - visTagCloud: () => import('./assets/chart_tag_cloud'), // NOTE: To be deprecated in favor of chartTagCloud - visText: () => import('./assets/text'), // NOTE: To be deprecated in favor of text, visTimelion: () => import('./assets/vis_timelion'), - visVega: () => import('./assets/code'), // NOTE: To be deprecated in favor of `code` visVisualBuilder: () => import('./assets/vis_visual_builder'), visualizeApp: withMetadata(() => import('./assets/app_visualize'), { category: 'app', @@ -1857,7 +1775,7 @@ export const typeToPathMap = { warning: withMetadata(() => import('./assets/warning'), { synonyms: ['warning', 'alert', 'caution', 'danger', 'issue'], }), - warningFilled: () => import('./assets/warning_fill'), // NOTE: To be deprecated in favor of warningFill + alert: () => import('./assets/warning'), // Deprecated in favor of `warning` warningFill: withMetadata(() => import('./assets/warning_fill'), { synonyms: [ 'warning fill', @@ -2059,9 +1977,6 @@ export const typeToPathMap = { tokenVectorDense: withMetadata(() => import('./assets/token_vector_dense'), { category: 'token', }), - tokenDenseVector: withMetadata(() => import('./assets/token_vector_dense'), { - category: 'token', - }), // NOTE: This is an undocumented alias for `tokenVectorDense`, added for legacy compatibility tokenVectorSparse: withMetadata( () => import('./assets/token_vector_sparse'), { category: 'token' } @@ -2085,176 +2000,6 @@ const getTypeToPathMapMetadata = ( synonyms: metadata?.synonyms, }; }; -/* List of icon types that are deprecated and should not be used in new code. -These icons will be removed in a future release. But we need to keep them to -maintain backward compatibility. */ -export const typeToPathMapDeprecatedIconTypes = [ - 'alert', - 'anomalyChart', - 'apmTrace', - 'arrowDown', - 'arrowLeft', - 'arrowRight', - 'arrowUp', - 'arrowStart', - 'arrowEnd', - 'beaker', - 'boxesHorizontal', - 'changePointDetection', - 'checkInCircleFilled', - 'cheer', - 'color', - 'compute', - 'console', - 'contrastHigh', - 'controlsHorizontal', - 'controlsVertical', - 'copyClipboard', - 'crossInCircle', - 'crosshairs', - 'currency', - 'cut', - 'desktop', - 'diff', - 'discuss', - 'documentEdit', - 'doubleArrowLeft', - 'doubleArrowRight', - 'editorAlignCenter', - 'editorAlignLeft', - 'editorAlignRight', - 'editorBold', - 'editorChecklist', - 'editorCodeBlock', - 'editorComment', - 'editorDistributeHorizontal', - 'editorDistributeVertical', - 'editorHeading', - 'editorItalic', - 'editorItemAlignBottom', - 'editorItemAlignCenter', - 'editorItemAlignLeft', - 'editorItemAlignMiddle', - 'editorItemAlignRight', - 'editorItemAlignTop', - 'editorLink', - 'editorOrderedList', - 'editorPositionBottomLeft', - 'editorPositionBottomRight', - 'editorPositionTopLeft', - 'editorPositionTopRight', - 'editorRedo', - 'editorStrike', - 'editorTable', - 'editorUnderline', - 'editorUndo', - 'editorUnorderedList', - 'email', - 'eql', - 'errorFilled', - 'exit', - 'expand', - 'expandMini', - 'exportAction', - 'eyeClosed', - 'fieldStatistics', - 'filterInCircle', - 'glasses', - 'grab', - 'grabHorizontal', - 'grabOmnidirectional', - 'heatmap', - 'importAction', - 'indexFlush', - 'indexMapping', - 'indexTemporary', - 'invert', - 'kqlField', - 'kqlOperand', - 'kqlSelector', - 'kqlValue', - 'launch', - 'lettering', - 'lineDashed', - 'lineDotted', - 'list', - 'listAdd', - 'logPatternAnalysis', - 'logstashIf', - 'logstashQueue', - 'magnifyWithExclamation', - 'magnifyWithMinus', - 'magnifyWithPlus', - 'mapMarker', - 'minusInCircle', - 'minusInCircleFilled', - 'minusInSquare', - 'newChat', - 'node', - 'offline', - 'online', - 'pinFilled', - 'pipeBreaks', - 'pipeNoBreaks', - 'playFilled', - 'plusInCircle', - 'plusInCircleFilled', - 'plusInSquare', - 'popout', - 'productRobot', - 'push', - 'returnKey', - 'search', - 'securitySignal', - 'starEmpty', - 'starFilled', - 'starFilledSpace', - 'starMinusFilled', - 'starPlusFilled', - 'stopFilled', - 'streamsClassic', - 'streamsWired', - 'submodule', - 'tableDensityCompact', - 'tableDensityExpanded', - 'tableDensityNormal', - 'temperature', - 'timeRefresh', - 'timeslider', - 'training', - 'unlink', - 'userAvatar', - 'vector', - 'visArea', - 'visAreaStacked', - 'visBarHorizontal', - 'visBarHorizontalStacked', - 'visBarVertical', - 'visBarVerticalStacked', - 'visGauge', - 'visLine', - 'visMapCoordinate', - 'visMapRegion', - 'visMetric', - 'visPie', - 'visTable', - 'visTagCloud', - 'visText', - 'visVega', - 'warningFilled', -] as const satisfies ReadonlyArray; - -const typeToPathMapDeprecatedIconTypesSet = new Set( - typeToPathMapDeprecatedIconTypes -); - -const getTypeToPathMapNonDeprecatedIconTypes = ( - iconTypes: ReadonlyArray -) => - iconTypes.filter( - (iconType) => !typeToPathMapDeprecatedIconTypesSet.has(iconType) - ); - const getTypeToPathMapCategoryIconTypes = (category: IconCategory) => Object.entries(typeToPathMap) .filter( @@ -2276,20 +2021,53 @@ export const typeToPathMapMlIconTypes = getTypeToPathMapCategoryIconTypes('ml'); export const typeToPathMapTokenIconTypes = getTypeToPathMapCategoryIconTypes('token'); -export const typeToPathMapDocsAppIconTypes = - getTypeToPathMapNonDeprecatedIconTypes(typeToPathMapAppIconTypes); +export const typeToPathMapDocsAppIconTypes = typeToPathMapAppIconTypes; + +// TODO: Remove this compatibility filter with https://github.com/elastic/eui/issues/9832. +const deprecatedIconsExcludedFromDocs = new Set([ + 'alert', + 'boxesVertical', + 'compute', + 'documents', + 'editorComment', + 'export', + 'folderCheck', + 'folderOpened', + 'indexClose', + 'indexEdit', + 'indexOpen', + 'indexRuntime', + 'indexSettings', + 'kubernetesPod', + 'list', + 'logRateAnalysis', + 'mapMarker', + 'mobile', + 'pagesSelect', + 'pinFilled', + 'search', + 'starEmpty', + 'starFilled', + 'temperature', + 'timelineWithArrow', + 'visArea', + 'visBarVertical', + 'visGauge', + 'visLine', + 'visPie', + 'visTable', +]); export const typeToPathMapDocsGlyphIconTypes = - getTypeToPathMapNonDeprecatedIconTypes(typeToPathMapGlyphIconTypes); + typeToPathMapGlyphIconTypes.filter( + (iconType) => !deprecatedIconsExcludedFromDocs.has(iconType) + ); -export const typeToPathMapDocsLogoIconTypes = - getTypeToPathMapNonDeprecatedIconTypes(typeToPathMapLogoIconTypes); +export const typeToPathMapDocsLogoIconTypes = typeToPathMapLogoIconTypes; -export const typeToPathMapDocsMlIconTypes = - getTypeToPathMapNonDeprecatedIconTypes(typeToPathMapMlIconTypes); +export const typeToPathMapDocsMlIconTypes = typeToPathMapMlIconTypes; -export const typeToPathMapDocsTokenIconTypes = - getTypeToPathMapNonDeprecatedIconTypes(typeToPathMapTokenIconTypes); +export const typeToPathMapDocsTokenIconTypes = typeToPathMapTokenIconTypes; export type TypeToPathMapSynonyms = Partial< Record diff --git a/packages/eui/src/components/icon/icon_tokens.a11y.tsx b/packages/eui/src/components/icon/icon_tokens.a11y.tsx index 15f843b92f5d..80ca2508a715 100644 --- a/packages/eui/src/components/icon/icon_tokens.a11y.tsx +++ b/packages/eui/src/components/icon/icon_tokens.a11y.tsx @@ -25,7 +25,6 @@ describe('EuiIcons', () => { 'tokenCompletionSuggester', 'tokenConstant', 'tokenDate', - 'tokenDenseVector', 'tokenElement', 'tokenEnum', 'tokenEnumMember', @@ -69,6 +68,7 @@ describe('EuiIcons', () => { 'tokenText', 'tokenTokenCount', 'tokenVariable', + 'tokenVectorDense', ]; const TokenGrid = () => ( diff --git a/packages/eui/src/components/icon/svgs/anomaly_chart.svg b/packages/eui/src/components/icon/svgs/anomaly_chart.svg deleted file mode 100644 index 316cc2351a94..000000000000 --- a/packages/eui/src/components/icon/svgs/anomaly_chart.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/packages/eui/src/components/icon/svgs/apm_trace.svg b/packages/eui/src/components/icon/svgs/apm_trace.svg deleted file mode 100644 index ddc5da2efa3f..000000000000 --- a/packages/eui/src/components/icon/svgs/apm_trace.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/arrow_down.svg b/packages/eui/src/components/icon/svgs/arrow_down.svg deleted file mode 100644 index 35c638bca132..000000000000 --- a/packages/eui/src/components/icon/svgs/arrow_down.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/arrow_left.svg b/packages/eui/src/components/icon/svgs/arrow_left.svg deleted file mode 100644 index b4c91ece7190..000000000000 --- a/packages/eui/src/components/icon/svgs/arrow_left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/arrow_right.svg b/packages/eui/src/components/icon/svgs/arrow_right.svg deleted file mode 100644 index 453f0f0075b0..000000000000 --- a/packages/eui/src/components/icon/svgs/arrow_right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/arrow_up.svg b/packages/eui/src/components/icon/svgs/arrow_up.svg deleted file mode 100644 index 21817d0657a5..000000000000 --- a/packages/eui/src/components/icon/svgs/arrow_up.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/boxes_horizontal.svg b/packages/eui/src/components/icon/svgs/boxes_horizontal.svg deleted file mode 100644 index a7fb0073feca..000000000000 --- a/packages/eui/src/components/icon/svgs/boxes_horizontal.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/packages/eui/src/components/icon/svgs/change_point_detection.svg b/packages/eui/src/components/icon/svgs/change_point_detection.svg deleted file mode 100644 index bbcf139cc6d0..000000000000 --- a/packages/eui/src/components/icon/svgs/change_point_detection.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/packages/eui/src/components/icon/svgs/cheer.svg b/packages/eui/src/components/icon/svgs/cheer.svg deleted file mode 100644 index 072a80cdd0f6..000000000000 --- a/packages/eui/src/components/icon/svgs/cheer.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/color.svg b/packages/eui/src/components/icon/svgs/color.svg deleted file mode 100755 index 3311b35f1974..000000000000 --- a/packages/eui/src/components/icon/svgs/color.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/compute.svg b/packages/eui/src/components/icon/svgs/compute.svg deleted file mode 100644 index 5247f8912552..000000000000 --- a/packages/eui/src/components/icon/svgs/compute.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/packages/eui/src/components/icon/svgs/console.svg b/packages/eui/src/components/icon/svgs/console.svg deleted file mode 100644 index 9dc03fa9d7fc..000000000000 --- a/packages/eui/src/components/icon/svgs/console.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/packages/eui/src/components/icon/svgs/copy_clipboard.svg b/packages/eui/src/components/icon/svgs/copy_clipboard.svg deleted file mode 100644 index 0c6097b0e6bb..000000000000 --- a/packages/eui/src/components/icon/svgs/copy_clipboard.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/eui/src/components/icon/svgs/crosshairs.svg b/packages/eui/src/components/icon/svgs/crosshairs.svg deleted file mode 100644 index 236b8a3461b2..000000000000 --- a/packages/eui/src/components/icon/svgs/crosshairs.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/currency.svg b/packages/eui/src/components/icon/svgs/currency.svg deleted file mode 100644 index 9682ce0cae45..000000000000 --- a/packages/eui/src/components/icon/svgs/currency.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/cut.svg b/packages/eui/src/components/icon/svgs/cut.svg deleted file mode 100644 index ca7af4fc5b56..000000000000 --- a/packages/eui/src/components/icon/svgs/cut.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/desktop.svg b/packages/eui/src/components/icon/svgs/desktop.svg deleted file mode 100644 index 88bc53c1d59a..000000000000 --- a/packages/eui/src/components/icon/svgs/desktop.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/packages/eui/src/components/icon/svgs/diff.svg b/packages/eui/src/components/icon/svgs/diff.svg deleted file mode 100644 index d20d0ab01bcc..000000000000 --- a/packages/eui/src/components/icon/svgs/diff.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/eui/src/components/icon/svgs/document_edit.svg b/packages/eui/src/components/icon/svgs/document_edit.svg deleted file mode 100644 index 5dd7ded0f893..000000000000 --- a/packages/eui/src/components/icon/svgs/document_edit.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_align_center.svg b/packages/eui/src/components/icon/svgs/editor_align_center.svg deleted file mode 100644 index 18dd2d651174..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_align_center.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_align_left.svg b/packages/eui/src/components/icon/svgs/editor_align_left.svg deleted file mode 100644 index 5ad53e7bcc26..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_align_left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_align_right.svg b/packages/eui/src/components/icon/svgs/editor_align_right.svg deleted file mode 100644 index b4b4383f4c70..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_align_right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_bold.svg b/packages/eui/src/components/icon/svgs/editor_bold.svg deleted file mode 100644 index d07462cefac9..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_bold.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_checklist.svg b/packages/eui/src/components/icon/svgs/editor_checklist.svg deleted file mode 100644 index 2ef4cbc1b663..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_checklist.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_distribute_horizontal.svg b/packages/eui/src/components/icon/svgs/editor_distribute_horizontal.svg deleted file mode 100644 index 5612226ae4c0..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_distribute_horizontal.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_distribute_vertical.svg b/packages/eui/src/components/icon/svgs/editor_distribute_vertical.svg deleted file mode 100644 index 9579b1130ead..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_distribute_vertical.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_heading.svg b/packages/eui/src/components/icon/svgs/editor_heading.svg deleted file mode 100644 index 4361aa05d2f8..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_heading.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_italic.svg b/packages/eui/src/components/icon/svgs/editor_italic.svg deleted file mode 100644 index 1294e009de78..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_italic.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_item_align_bottom.svg b/packages/eui/src/components/icon/svgs/editor_item_align_bottom.svg deleted file mode 100644 index 1967e2a4ba88..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_item_align_bottom.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_item_align_center.svg b/packages/eui/src/components/icon/svgs/editor_item_align_center.svg deleted file mode 100644 index 7d810adb7dda..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_item_align_center.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_item_align_left.svg b/packages/eui/src/components/icon/svgs/editor_item_align_left.svg deleted file mode 100644 index 192763a50100..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_item_align_left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_item_align_middle.svg b/packages/eui/src/components/icon/svgs/editor_item_align_middle.svg deleted file mode 100644 index 35f459a88aea..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_item_align_middle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_item_align_right.svg b/packages/eui/src/components/icon/svgs/editor_item_align_right.svg deleted file mode 100644 index f000368d3eb1..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_item_align_right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_item_align_top.svg b/packages/eui/src/components/icon/svgs/editor_item_align_top.svg deleted file mode 100644 index 7cc1d57a1a68..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_item_align_top.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_link.svg b/packages/eui/src/components/icon/svgs/editor_link.svg deleted file mode 100644 index ed0b6d71d0c4..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_link.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/packages/eui/src/components/icon/svgs/editor_ordered_list.svg b/packages/eui/src/components/icon/svgs/editor_ordered_list.svg deleted file mode 100644 index 31e2d9ef825d..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_ordered_list.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_position_bottom_left.svg b/packages/eui/src/components/icon/svgs/editor_position_bottom_left.svg deleted file mode 100644 index d9bc9be34912..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_position_bottom_left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_position_bottom_right.svg b/packages/eui/src/components/icon/svgs/editor_position_bottom_right.svg deleted file mode 100644 index 162e80be7a7f..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_position_bottom_right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_position_top_left.svg b/packages/eui/src/components/icon/svgs/editor_position_top_left.svg deleted file mode 100644 index 74306ead1a63..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_position_top_left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_position_top_right.svg b/packages/eui/src/components/icon/svgs/editor_position_top_right.svg deleted file mode 100644 index fd5b0fffa511..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_position_top_right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_redo.svg b/packages/eui/src/components/icon/svgs/editor_redo.svg deleted file mode 100644 index d0fbcf0c3141..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_redo.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_strike.svg b/packages/eui/src/components/icon/svgs/editor_strike.svg deleted file mode 100644 index 9d1da5ebcfde..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_strike.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_table.svg b/packages/eui/src/components/icon/svgs/editor_table.svg deleted file mode 100644 index 8bb7741d0d97..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_table.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_underline.svg b/packages/eui/src/components/icon/svgs/editor_underline.svg deleted file mode 100644 index fc1a589f45a5..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_underline.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_undo.svg b/packages/eui/src/components/icon/svgs/editor_undo.svg deleted file mode 100644 index 0e679119f189..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_undo.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/editor_unordered_list.svg b/packages/eui/src/components/icon/svgs/editor_unordered_list.svg deleted file mode 100644 index a872e078f313..000000000000 --- a/packages/eui/src/components/icon/svgs/editor_unordered_list.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/email.svg b/packages/eui/src/components/icon/svgs/email.svg deleted file mode 100644 index 72c5972c6bfc..000000000000 --- a/packages/eui/src/components/icon/svgs/email.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/eql.svg b/packages/eui/src/components/icon/svgs/eql.svg deleted file mode 100644 index 1ae622e8a8aa..000000000000 --- a/packages/eui/src/components/icon/svgs/eql.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/packages/eui/src/components/icon/svgs/exit.svg b/packages/eui/src/components/icon/svgs/exit.svg deleted file mode 100644 index 10172876f868..000000000000 --- a/packages/eui/src/components/icon/svgs/exit.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/expand.svg b/packages/eui/src/components/icon/svgs/expand.svg deleted file mode 100644 index 2367e6d1dc00..000000000000 --- a/packages/eui/src/components/icon/svgs/expand.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/packages/eui/src/components/icon/svgs/eye_closed.svg b/packages/eui/src/components/icon/svgs/eye_closed.svg deleted file mode 100644 index ed4ccede6381..000000000000 --- a/packages/eui/src/components/icon/svgs/eye_closed.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/packages/eui/src/components/icon/svgs/field_statistics.svg b/packages/eui/src/components/icon/svgs/field_statistics.svg deleted file mode 100644 index c1def46c30be..000000000000 --- a/packages/eui/src/components/icon/svgs/field_statistics.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/packages/eui/src/components/icon/svgs/filter_in_circle.svg b/packages/eui/src/components/icon/svgs/filter_in_circle.svg deleted file mode 100644 index ae8386b0284b..000000000000 --- a/packages/eui/src/components/icon/svgs/filter_in_circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/grab.svg b/packages/eui/src/components/icon/svgs/grab.svg deleted file mode 100644 index cb2d53fafad0..000000000000 --- a/packages/eui/src/components/icon/svgs/grab.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/grab_horizontal.svg b/packages/eui/src/components/icon/svgs/grab_horizontal.svg deleted file mode 100644 index defe511ca931..000000000000 --- a/packages/eui/src/components/icon/svgs/grab_horizontal.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/grab_omnidirectional.svg b/packages/eui/src/components/icon/svgs/grab_omnidirectional.svg deleted file mode 100644 index 6d7518abbf96..000000000000 --- a/packages/eui/src/components/icon/svgs/grab_omnidirectional.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/heatmap.svg b/packages/eui/src/components/icon/svgs/heatmap.svg deleted file mode 100644 index b0e7604ca476..000000000000 --- a/packages/eui/src/components/icon/svgs/heatmap.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/import.svg b/packages/eui/src/components/icon/svgs/import.svg deleted file mode 100644 index 5e6e16a7ec30..000000000000 --- a/packages/eui/src/components/icon/svgs/import.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/index_flush.svg b/packages/eui/src/components/icon/svgs/index_flush.svg deleted file mode 100644 index be11b1fdbd70..000000000000 --- a/packages/eui/src/components/icon/svgs/index_flush.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/index_mapping.svg b/packages/eui/src/components/icon/svgs/index_mapping.svg deleted file mode 100644 index 9f008508aa7d..000000000000 --- a/packages/eui/src/components/icon/svgs/index_mapping.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/kql_field.svg b/packages/eui/src/components/icon/svgs/kql_field.svg deleted file mode 100644 index ef45c2b82e4f..000000000000 --- a/packages/eui/src/components/icon/svgs/kql_field.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/packages/eui/src/components/icon/svgs/kql_operand.svg b/packages/eui/src/components/icon/svgs/kql_operand.svg deleted file mode 100644 index 352f59d979a2..000000000000 --- a/packages/eui/src/components/icon/svgs/kql_operand.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/packages/eui/src/components/icon/svgs/kql_selector.svg b/packages/eui/src/components/icon/svgs/kql_selector.svg deleted file mode 100644 index 18bc40682b2f..000000000000 --- a/packages/eui/src/components/icon/svgs/kql_selector.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/packages/eui/src/components/icon/svgs/kql_value.svg b/packages/eui/src/components/icon/svgs/kql_value.svg deleted file mode 100644 index 13e0c5db7ddd..000000000000 --- a/packages/eui/src/components/icon/svgs/kql_value.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/packages/eui/src/components/icon/svgs/launch.svg b/packages/eui/src/components/icon/svgs/launch.svg deleted file mode 100644 index c743295bed4d..000000000000 --- a/packages/eui/src/components/icon/svgs/launch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/packages/eui/src/components/icon/svgs/lettering.svg b/packages/eui/src/components/icon/svgs/lettering.svg deleted file mode 100644 index e7764e935e67..000000000000 --- a/packages/eui/src/components/icon/svgs/lettering.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/list.svg b/packages/eui/src/components/icon/svgs/list.svg deleted file mode 100644 index bd790492b22a..000000000000 --- a/packages/eui/src/components/icon/svgs/list.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/list_add.svg b/packages/eui/src/components/icon/svgs/list_add.svg deleted file mode 100644 index d950be2fcb4d..000000000000 --- a/packages/eui/src/components/icon/svgs/list_add.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/log_pattern_analysis.svg b/packages/eui/src/components/icon/svgs/log_pattern_analysis.svg deleted file mode 100644 index 7860594b4190..000000000000 --- a/packages/eui/src/components/icon/svgs/log_pattern_analysis.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/packages/eui/src/components/icon/svgs/logstash_if.svg b/packages/eui/src/components/icon/svgs/logstash_if.svg deleted file mode 100644 index 13307045c76f..000000000000 --- a/packages/eui/src/components/icon/svgs/logstash_if.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/logstash_queue.svg b/packages/eui/src/components/icon/svgs/logstash_queue.svg deleted file mode 100644 index d249a5359337..000000000000 --- a/packages/eui/src/components/icon/svgs/logstash_queue.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/magnify_with_exclamation.svg b/packages/eui/src/components/icon/svgs/magnify_with_exclamation.svg deleted file mode 100644 index 39d0509d90d2..000000000000 --- a/packages/eui/src/components/icon/svgs/magnify_with_exclamation.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/packages/eui/src/components/icon/svgs/magnify_with_minus.svg b/packages/eui/src/components/icon/svgs/magnify_with_minus.svg deleted file mode 100644 index 9e7758f38a14..000000000000 --- a/packages/eui/src/components/icon/svgs/magnify_with_minus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/packages/eui/src/components/icon/svgs/magnify_with_plus.svg b/packages/eui/src/components/icon/svgs/magnify_with_plus.svg deleted file mode 100644 index 650c0d56104b..000000000000 --- a/packages/eui/src/components/icon/svgs/magnify_with_plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/packages/eui/src/components/icon/svgs/map_marker.svg b/packages/eui/src/components/icon/svgs/map_marker.svg deleted file mode 100644 index ed566d64f3c3..000000000000 --- a/packages/eui/src/components/icon/svgs/map_marker.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/new_chat.svg b/packages/eui/src/components/icon/svgs/new_chat.svg deleted file mode 100644 index ceb848afccf1..000000000000 --- a/packages/eui/src/components/icon/svgs/new_chat.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/packages/eui/src/components/icon/svgs/offline.svg b/packages/eui/src/components/icon/svgs/offline.svg deleted file mode 100644 index 3921a3fa5157..000000000000 --- a/packages/eui/src/components/icon/svgs/offline.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/online.svg b/packages/eui/src/components/icon/svgs/online.svg deleted file mode 100644 index 0fc3d72bd0cc..000000000000 --- a/packages/eui/src/components/icon/svgs/online.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/paint.svg b/packages/eui/src/components/icon/svgs/paint.svg deleted file mode 100644 index 90282308a53d..000000000000 --- a/packages/eui/src/components/icon/svgs/paint.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/play_filled.svg b/packages/eui/src/components/icon/svgs/play_filled.svg deleted file mode 100644 index 6ce4089e262d..000000000000 --- a/packages/eui/src/components/icon/svgs/play_filled.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/plus_in_circle_filled.svg b/packages/eui/src/components/icon/svgs/plus_in_circle_filled.svg deleted file mode 100644 index b4d5f11ba555..000000000000 --- a/packages/eui/src/components/icon/svgs/plus_in_circle_filled.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/popout.svg b/packages/eui/src/components/icon/svgs/popout.svg deleted file mode 100644 index 98e92e84448e..000000000000 --- a/packages/eui/src/components/icon/svgs/popout.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/packages/eui/src/components/icon/svgs/push.svg b/packages/eui/src/components/icon/svgs/push.svg deleted file mode 100755 index c0907e6a3f5f..000000000000 --- a/packages/eui/src/components/icon/svgs/push.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/packages/eui/src/components/icon/svgs/return_key.svg b/packages/eui/src/components/icon/svgs/return_key.svg deleted file mode 100644 index bc2dd3fdeecc..000000000000 --- a/packages/eui/src/components/icon/svgs/return_key.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/packages/eui/src/components/icon/svgs/search.svg b/packages/eui/src/components/icon/svgs/search.svg deleted file mode 100644 index cd70c86dd24e..000000000000 --- a/packages/eui/src/components/icon/svgs/search.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/security_signal.svg b/packages/eui/src/components/icon/svgs/security_signal.svg deleted file mode 100755 index 90e991b6d11f..000000000000 --- a/packages/eui/src/components/icon/svgs/security_signal.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/star_empty.svg b/packages/eui/src/components/icon/svgs/star_empty.svg deleted file mode 100644 index 64211fe37c04..000000000000 --- a/packages/eui/src/components/icon/svgs/star_empty.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/streams_classic.svg b/packages/eui/src/components/icon/svgs/streams_classic.svg deleted file mode 100644 index cfdc08aa1ba7..000000000000 --- a/packages/eui/src/components/icon/svgs/streams_classic.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/streams_wired.svg b/packages/eui/src/components/icon/svgs/streams_wired.svg deleted file mode 100644 index c73711b6bcd5..000000000000 --- a/packages/eui/src/components/icon/svgs/streams_wired.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/packages/eui/src/components/icon/svgs/submodule.svg b/packages/eui/src/components/icon/svgs/submodule.svg deleted file mode 100644 index 90b2a9142067..000000000000 --- a/packages/eui/src/components/icon/svgs/submodule.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/table_density_compact.svg b/packages/eui/src/components/icon/svgs/table_density_compact.svg deleted file mode 100644 index 8fd5070d5450..000000000000 --- a/packages/eui/src/components/icon/svgs/table_density_compact.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/packages/eui/src/components/icon/svgs/table_density_expanded.svg b/packages/eui/src/components/icon/svgs/table_density_expanded.svg deleted file mode 100644 index f71a3c92ae41..000000000000 --- a/packages/eui/src/components/icon/svgs/table_density_expanded.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/packages/eui/src/components/icon/svgs/table_density_normal.svg b/packages/eui/src/components/icon/svgs/table_density_normal.svg deleted file mode 100644 index aa9b43c2d8cf..000000000000 --- a/packages/eui/src/components/icon/svgs/table_density_normal.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/temperature.svg b/packages/eui/src/components/icon/svgs/temperature.svg deleted file mode 100644 index 1259f20cbfae..000000000000 --- a/packages/eui/src/components/icon/svgs/temperature.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/packages/eui/src/components/icon/svgs/timeslider.svg b/packages/eui/src/components/icon/svgs/timeslider.svg deleted file mode 100644 index edf8f4f7d8cd..000000000000 --- a/packages/eui/src/components/icon/svgs/timeslider.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/packages/eui/src/components/icon/svgs/training.svg b/packages/eui/src/components/icon/svgs/training.svg deleted file mode 100644 index 0205c51e15cc..000000000000 --- a/packages/eui/src/components/icon/svgs/training.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/unlink.svg b/packages/eui/src/components/icon/svgs/unlink.svg deleted file mode 100644 index 2fc84c6dbfed..000000000000 --- a/packages/eui/src/components/icon/svgs/unlink.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/vector.svg b/packages/eui/src/components/icon/svgs/vector.svg deleted file mode 100644 index 57ddb3fd9c14..000000000000 --- a/packages/eui/src/components/icon/svgs/vector.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/vis_area.svg b/packages/eui/src/components/icon/svgs/vis_area.svg deleted file mode 100644 index d5c421e2efe2..000000000000 --- a/packages/eui/src/components/icon/svgs/vis_area.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/vis_area_stacked.svg b/packages/eui/src/components/icon/svgs/vis_area_stacked.svg deleted file mode 100644 index 87e37c8241dd..000000000000 --- a/packages/eui/src/components/icon/svgs/vis_area_stacked.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/vis_bar_horizontal.svg b/packages/eui/src/components/icon/svgs/vis_bar_horizontal.svg deleted file mode 100644 index 694717aecdc8..000000000000 --- a/packages/eui/src/components/icon/svgs/vis_bar_horizontal.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/vis_bar_horizontal_stacked.svg b/packages/eui/src/components/icon/svgs/vis_bar_horizontal_stacked.svg deleted file mode 100644 index 8a3807e1095a..000000000000 --- a/packages/eui/src/components/icon/svgs/vis_bar_horizontal_stacked.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/vis_bar_vertical.svg b/packages/eui/src/components/icon/svgs/vis_bar_vertical.svg deleted file mode 100644 index 2e431ba8da72..000000000000 --- a/packages/eui/src/components/icon/svgs/vis_bar_vertical.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/vis_bar_vertical_stacked.svg b/packages/eui/src/components/icon/svgs/vis_bar_vertical_stacked.svg deleted file mode 100644 index f33513d055fa..000000000000 --- a/packages/eui/src/components/icon/svgs/vis_bar_vertical_stacked.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/vis_gauge.svg b/packages/eui/src/components/icon/svgs/vis_gauge.svg deleted file mode 100644 index 31c91aaf2ac2..000000000000 --- a/packages/eui/src/components/icon/svgs/vis_gauge.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/packages/eui/src/components/icon/svgs/vis_line.svg b/packages/eui/src/components/icon/svgs/vis_line.svg deleted file mode 100644 index 88c969d5fe0d..000000000000 --- a/packages/eui/src/components/icon/svgs/vis_line.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/packages/eui/src/components/icon/svgs/vis_map_coordinate.svg b/packages/eui/src/components/icon/svgs/vis_map_coordinate.svg deleted file mode 100644 index 7482e8a68bf5..000000000000 --- a/packages/eui/src/components/icon/svgs/vis_map_coordinate.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/vis_map_region.svg b/packages/eui/src/components/icon/svgs/vis_map_region.svg deleted file mode 100644 index f7f0fd0c6548..000000000000 --- a/packages/eui/src/components/icon/svgs/vis_map_region.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/vis_pie.svg b/packages/eui/src/components/icon/svgs/vis_pie.svg deleted file mode 100644 index f08c3aad4e21..000000000000 --- a/packages/eui/src/components/icon/svgs/vis_pie.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/vis_table.svg b/packages/eui/src/components/icon/svgs/vis_table.svg deleted file mode 100644 index 8d3c68cde690..000000000000 --- a/packages/eui/src/components/icon/svgs/vis_table.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/packages/eui/src/components/icon/svgs/vis_tag_cloud.svg b/packages/eui/src/components/icon/svgs/vis_tag_cloud.svg deleted file mode 100644 index 22259f5eab03..000000000000 --- a/packages/eui/src/components/icon/svgs/vis_tag_cloud.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/icon/svgs/vis_text.svg b/packages/eui/src/components/icon/svgs/vis_text.svg deleted file mode 100644 index 56948cf1cd32..000000000000 --- a/packages/eui/src/components/icon/svgs/vis_text.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/eui/src/components/list_item_layout/_list_item_layout.stories.tsx b/packages/eui/src/components/list_item_layout/_list_item_layout.stories.tsx index 66258783c53a..479e4dd8facf 100644 --- a/packages/eui/src/components/list_item_layout/_list_item_layout.stories.tsx +++ b/packages/eui/src/components/list_item_layout/_list_item_layout.stories.tsx @@ -97,7 +97,7 @@ const meta: Meta = { mapping: { action: ( @@ -357,7 +357,7 @@ export const CustomContent: Story = { - + Lorem ipsum. Lorem ipsum dolor sit amet, consectetur adipiscing @@ -463,7 +463,7 @@ const renderKitchenSink = (args: EuiListItemLayoutProps) => { const _append = Badge; const _extraAction = ( `; -exports[`EuiToken props iconType as EuiTokenMapType tokenDenseVector is rendered 1`] = ` - - - -`; - exports[`EuiToken props iconType as EuiTokenMapType tokenDimension is rendered 1`] = ` { diff --git a/packages/website/docs/patterns/nested-drag-and-drop/example.tsx b/packages/website/docs/patterns/nested-drag-and-drop/example.tsx index 4f5ab13f0667..17debb508b21 100644 --- a/packages/website/docs/patterns/nested-drag-and-drop/example.tsx +++ b/packages/website/docs/patterns/nested-drag-and-drop/example.tsx @@ -583,7 +583,7 @@ const DraggablePanel = memo(function DraggablePanel({ setIsPopoverOpen((isOpen) => !isOpen)} />