diff --git a/src/components/Section.js b/src/components/Section.js
deleted file mode 100644
index 1e2816385956..000000000000
--- a/src/components/Section.js
+++ /dev/null
@@ -1,153 +0,0 @@
-import PropTypes from 'prop-types';
-import React from 'react';
-import {View} from 'react-native';
-import useThemeStyles from '@hooks/useThemeStyles';
-import Icon from './Icon';
-import MenuItemList from './MenuItemList';
-import menuItemPropTypes from './menuItemPropTypes';
-import Text from './Text';
-
-const CARD_LAYOUT = {
- ICON_ON_TOP: 'iconOnTop',
- ICON_ON_RIGHT: 'iconOnRight',
-};
-
-const propTypes = {
- /** An array of props that are pass to individual MenuItem components */
- menuItems: PropTypes.arrayOf(PropTypes.shape(menuItemPropTypes)),
-
- /** The text to display in the title of the section */
- title: PropTypes.string.isRequired,
-
- /** The text to display in the subtitle of the section */
- subtitle: PropTypes.string,
-
- /** The icon to display along with the title */
- icon: PropTypes.func,
-
- /** Icon component */
- IconComponent: PropTypes.func,
-
- /** Card layout that affects icon positioning, margins, sizes. */
- // eslint-disable-next-line rulesdir/prefer-underscore-method
- cardLayout: PropTypes.oneOf(Object.values(CARD_LAYOUT)),
-
- /** Contents to display inside the section */
- children: PropTypes.node,
-
- /** Customize the Section container */
- // eslint-disable-next-line react/forbid-prop-types
- containerStyles: PropTypes.arrayOf(PropTypes.object),
-
- /** Customize the Section container */
- // eslint-disable-next-line react/forbid-prop-types
- titleStyles: PropTypes.arrayOf(PropTypes.object),
-
- /** Customize the Section container */
- // eslint-disable-next-line react/forbid-prop-types
- subtitleStyles: PropTypes.arrayOf(PropTypes.object),
-
- /** Whether the subtitle should have a muted style */
- subtitleMuted: PropTypes.bool,
-
- /** Customize the Section container */
- // eslint-disable-next-line react/forbid-prop-types
- childrenStyles: PropTypes.arrayOf(PropTypes.object),
-
- /** Customize the Icon container */
- // eslint-disable-next-line react/forbid-prop-types
- iconContainerStyles: PropTypes.arrayOf(PropTypes.object),
-};
-
-const iconSectionPropTypes = {
- icon: propTypes.icon,
- IconComponent: propTypes.IconComponent,
- iconContainerStyles: propTypes.iconContainerStyles,
-};
-
-const defaultProps = {
- menuItems: null,
- children: null,
- icon: null,
- IconComponent: null,
- cardLayout: CARD_LAYOUT.ICON_ON_RIGHT,
- containerStyles: [],
- iconContainerStyles: [],
- titleStyles: [],
- subtitleStyles: [],
- subtitleMuted: false,
- childrenStyles: [],
- subtitle: null,
-};
-
-const defaultIconSectionPropTypes = {
- icon: null,
- IconComponent: null,
- iconContainerStyles: [],
-};
-
-function IconSection({icon, IconComponent, iconContainerStyles}) {
- const styles = useThemeStyles();
-
- return (
-
- {Boolean(icon) && (
-
- )}
- {Boolean(IconComponent) && }
-
- );
-}
-
-function Section({children, childrenStyles, containerStyles, icon, IconComponent, cardLayout, iconContainerStyles, menuItems, subtitle, subtitleStyles, subtitleMuted, title, titleStyles}) {
- const styles = useThemeStyles();
-
- return (
- <>
-
- {cardLayout === CARD_LAYOUT.ICON_ON_TOP && (
-
- )}
-
-
- {title}
-
- {cardLayout === CARD_LAYOUT.ICON_ON_RIGHT && (
-
- )}
-
-
- {Boolean(subtitle) && (
-
- {subtitle}
-
- )}
-
- {children}
-
- {Boolean(menuItems) && }
-
- >
- );
-}
-IconSection.displayName = 'IconSection';
-IconSection.propTypes = iconSectionPropTypes;
-IconSection.defaultProps = defaultIconSectionPropTypes;
-Section.displayName = 'Section';
-Section.propTypes = propTypes;
-Section.defaultProps = defaultProps;
-
-export {CARD_LAYOUT};
-export default Section;