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 ae65b0f0657..3d32d83d413 100644
--- a/packages/eui/src/components/icon/__snapshots__/icon.test.tsx.snap
+++ b/packages/eui/src/components/icon/__snapshots__/icon.test.tsx.snap
@@ -686,9 +686,7 @@ exports[`EuiIcon props type anomalyChart is rendered 1`] = `
d="M14.5 14H2V1.5a.5.5 0 0 0-1 0v13a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 0-1Z"
/>
`;
@@ -1336,9 +1334,7 @@ exports[`EuiIcon props type changePointDetection is rendered 1`] = `
d="M2 14h12.5a.5.5 0 0 1 0 1h-13a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0V14Z"
/>
`;
@@ -3296,7 +3292,6 @@ exports[`EuiIcon props type fieldStatistics is rendered 1`] = `
class="euiIcon emotion-euiIcon-m-isLoaded"
data-icon-type="fieldStatistics"
data-is-loaded="true"
- fill="currentColor"
height="16"
role="img"
viewBox="0 0 16 16"
@@ -3310,7 +3305,6 @@ exports[`EuiIcon props type fieldStatistics is rendered 1`] = `
d="M3.5 6h3.837a5.54 5.54 0 0 0-1.08 1H3.5a.5.5 0 0 1 0-1Zm0 6h1.707c.098.345.228.677.388.991A.505.505 0 0 1 5.5 13h-2a.5.5 0 0 1 0-1Zm0-8a.5.5 0 0 1 0-1h9a.5.5 0 0 1 0 1h-9ZM3 9.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 0-1h-1a.5.5 0 0 0-.5.5Z"
/>
@@ -9078,19 +9072,13 @@ exports[`EuiIcon props type singleMetricViewer is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
`;
diff --git a/packages/eui/src/components/icon/assets/anomaly_chart.tsx b/packages/eui/src/components/icon/assets/anomaly_chart.tsx
index a7242c5c70e..86b402a8fed 100644
--- a/packages/eui/src/components/icon/assets/anomaly_chart.tsx
+++ b/packages/eui/src/components/icon/assets/anomaly_chart.tsx
@@ -29,11 +29,7 @@ const EuiIconAnomalyChart = ({
>
{title ?
{title} : null}
-
+
);
export const icon = EuiIconAnomalyChart;
diff --git a/packages/eui/src/components/icon/assets/change_point_detection.tsx b/packages/eui/src/components/icon/assets/change_point_detection.tsx
index d2f43881800..2f5436cf41b 100644
--- a/packages/eui/src/components/icon/assets/change_point_detection.tsx
+++ b/packages/eui/src/components/icon/assets/change_point_detection.tsx
@@ -29,11 +29,7 @@ const EuiIconChangePointDetection = ({
>
{title ? {title} : null}
-
+
);
export const icon = EuiIconChangePointDetection;
diff --git a/packages/eui/src/components/icon/assets/field_statistics.tsx b/packages/eui/src/components/icon/assets/field_statistics.tsx
index e4c8424a1ab..100cc40f498 100644
--- a/packages/eui/src/components/icon/assets/field_statistics.tsx
+++ b/packages/eui/src/components/icon/assets/field_statistics.tsx
@@ -23,7 +23,6 @@ const EuiIconFieldStatistics = ({
xmlns="http://www.w3.org/2000/svg"
width={16}
height={16}
- fill="currentColor"
viewBox="0 0 16 16"
aria-labelledby={titleId}
{...props}
@@ -34,7 +33,6 @@ const EuiIconFieldStatistics = ({
);
diff --git a/packages/eui/src/components/icon/assets/single_metric_viewer.tsx b/packages/eui/src/components/icon/assets/single_metric_viewer.tsx
index 6a9717e8012..cc5a3ef8a04 100644
--- a/packages/eui/src/components/icon/assets/single_metric_viewer.tsx
+++ b/packages/eui/src/components/icon/assets/single_metric_viewer.tsx
@@ -28,21 +28,9 @@ const EuiIconSingleMetricViewer = ({
{...props}
>
{title ? {title} : null}
-
-
-
+
+
+
);
export const icon = EuiIconSingleMetricViewer;