diff --git a/packages/eui/src/components/form/form_row/__snapshots__/form_row.test.tsx.snap b/packages/eui/src/components/form/form_row/__snapshots__/form_row.test.tsx.snap
index 2bca5e5dcd4..f6a962b5275 100644
--- a/packages/eui/src/components/form/form_row/__snapshots__/form_row.test.tsx.snap
+++ b/packages/eui/src/components/form/form_row/__snapshots__/form_row.test.tsx.snap
@@ -78,21 +78,6 @@ exports[`EuiFormRow props display type columnCompressed is rendered 1`] = `
`;
-exports[`EuiFormRow props display type columnCompressedSwitch is rendered 1`] = `
-
-`;
-
exports[`EuiFormRow props display type row is rendered 1`] = `
{
${logicalCSS('margin-top', euiTheme.size.base)}
}
`,
- // No difference from the uncompressed row for this current theme AFAICT
- // TODO: Deprecate prop
+ // No difference from the uncompressed row for the current EUI theme
get rowCompressed() {
return this.row;
},
@@ -94,11 +93,6 @@ export const euiFormRowStyles = (euiThemeContext: UseEuiTheme) => {
}
}
`,
- // Handled by :has CSS now rather than a separate modifier/prop
- // TODO: Deprecate prop
- get columnCompressedSwitch() {
- return this.columnCompressed;
- },
// Center display is primarily for inline form rows, which may have have
// field content that is shorter than form controls (e.g. switches, text),
diff --git a/packages/eui/src/components/form/form_row/form_row.tsx b/packages/eui/src/components/form/form_row/form_row.tsx
index 934d7fae4a1..15539dff23d 100644
--- a/packages/eui/src/components/form/form_row/form_row.tsx
+++ b/packages/eui/src/components/form/form_row/form_row.tsx
@@ -35,11 +35,8 @@ export const DISPLAYS = [
'center',
'centerCompressed',
/**
- * @deprecated
- */
- 'columnCompressedSwitch',
- /**
- * @deprecated
+ * This currently does not affect styles/appearances
+ * in EUI's present primary theme, but may in the future.
*/
'rowCompressed',
] as const;
@@ -49,7 +46,6 @@ export type EuiFormRowDisplayKeys = (typeof DISPLAYS)[number];
type EuiFormRowCommonProps = CommonProps & {
/**
* - `columnCompressed` creates a compressed and horizontal layout
- * - `columnCompressedSwitch` - **deprecated**, use `columnCompressed` instead
* - `center`/`centerCompressed` helps align non-input content better with inline form layouts
* - `rowCompressed` - **deprecated**, does not currently affect styling
*/