diff --git a/packages/react-native/Libraries/LogBox/__tests__/__snapshots__/LogBoxNotificationContainer-test.js.snap b/packages/react-native/Libraries/LogBox/__tests__/__snapshots__/LogBoxNotificationContainer-test.js.snap
index 82a662152af9..d341008aa058 100644
--- a/packages/react-native/Libraries/LogBox/__tests__/__snapshots__/LogBoxNotificationContainer-test.js.snap
+++ b/packages/react-native/Libraries/LogBox/__tests__/__snapshots__/LogBoxNotificationContainer-test.js.snap
@@ -1,7 +1,7 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`LogBoxNotificationContainer should render both an error and warning notification 1`] = `
-
-
+
`;
exports[`LogBoxNotificationContainer should render null with no logs 1`] = `null`;
@@ -113,7 +113,7 @@ exports[`LogBoxNotificationContainer should render selected fatal error even whe
exports[`LogBoxNotificationContainer should render selected syntax error even when disabled 1`] = `null`;
exports[`LogBoxNotificationContainer should render the latest error notification 1`] = `
-
-
+
`;
exports[`LogBoxNotificationContainer should render the latest warning notification 1`] = `
-
-
+
`;
diff --git a/packages/react-native/src/private/components/activityindicator/specs/ActivityIndicatorViewNativeComponent.js b/packages/react-native/src/private/components/activityindicator/specs/ActivityIndicatorViewNativeComponent.js
index fc26971a8c8d..fc17901a60ad 100644
--- a/packages/react-native/src/private/components/activityindicator/specs/ActivityIndicatorViewNativeComponent.js
+++ b/packages/react-native/src/private/components/activityindicator/specs/ActivityIndicatorViewNativeComponent.js
@@ -50,7 +50,4 @@ type RCTActivityIndicatorViewNativeProps = Readonly<{
export default codegenNativeComponent(
'ActivityIndicatorView',
- {
- paperComponentName: 'RCTActivityIndicatorView',
- },
) as HostComponent;
diff --git a/packages/react-native/src/private/components/modal/specs/RCTModalHostViewNativeComponent.js b/packages/react-native/src/private/components/modal/specs/RCTModalHostViewNativeComponent.js
index 28e2ab7551bb..c8f274c82332 100644
--- a/packages/react-native/src/private/components/modal/specs/RCTModalHostViewNativeComponent.js
+++ b/packages/react-native/src/private/components/modal/specs/RCTModalHostViewNativeComponent.js
@@ -146,6 +146,5 @@ export default codegenNativeComponent(
'ModalHostView',
{
interfaceOnly: true,
- paperComponentName: 'RCTModalHostView',
},
) as HostComponent;
diff --git a/packages/react-native/src/private/components/refreshcontrol/specs/PullToRefreshViewNativeComponent.js b/packages/react-native/src/private/components/refreshcontrol/specs/PullToRefreshViewNativeComponent.js
index 1388be2faea9..03a9c7392c53 100644
--- a/packages/react-native/src/private/components/refreshcontrol/specs/PullToRefreshViewNativeComponent.js
+++ b/packages/react-native/src/private/components/refreshcontrol/specs/PullToRefreshViewNativeComponent.js
@@ -68,7 +68,6 @@ export const Commands: NativeCommands = codegenNativeCommands({
export default codegenNativeComponent(
'PullToRefreshView',
{
- paperComponentName: 'RCTRefreshControl',
excludedPlatforms: ['android'],
},
) as HostComponent;
diff --git a/packages/react-native/src/private/components/safeareaview/specs/RCTSafeAreaViewNativeComponent.js b/packages/react-native/src/private/components/safeareaview/specs/RCTSafeAreaViewNativeComponent.js
index 444937011090..0e5ef68ef9ed 100644
--- a/packages/react-native/src/private/components/safeareaview/specs/RCTSafeAreaViewNativeComponent.js
+++ b/packages/react-native/src/private/components/safeareaview/specs/RCTSafeAreaViewNativeComponent.js
@@ -22,7 +22,6 @@ type RCTSafeAreaViewNativeProps = Readonly<{
export default codegenNativeComponent(
'SafeAreaView',
{
- paperComponentName: 'RCTSafeAreaView',
interfaceOnly: true,
},
) as HostComponent;
diff --git a/packages/react-native/src/private/components/switch/specs/SwitchNativeComponent.js b/packages/react-native/src/private/components/switch/specs/SwitchNativeComponent.js
index c237abeffacc..caf83edcd48e 100644
--- a/packages/react-native/src/private/components/switch/specs/SwitchNativeComponent.js
+++ b/packages/react-native/src/private/components/switch/specs/SwitchNativeComponent.js
@@ -59,7 +59,6 @@ export const Commands: NativeCommands = codegenNativeCommands({
});
export default codegenNativeComponent('Switch', {
- paperComponentName: 'RCTSwitch',
excludedPlatforms: ['android'],
interfaceOnly: true,
}) as ComponentType;