diff --git a/src/components/SVGImage/index.js b/src/components/SVGImage/index.js
deleted file mode 100644
index de915007cc29..000000000000
--- a/src/components/SVGImage/index.js
+++ /dev/null
@@ -1,19 +0,0 @@
-import React from 'react';
-import {Image} from 'react-native';
-import * as StyleUtils from '@styles/StyleUtils';
-import propTypes from './propTypes';
-
-function SVGImage(props) {
- return (
-
- );
-}
-
-SVGImage.propTypes = propTypes;
-SVGImage.displayName = 'SVGImage';
-
-export default SVGImage;
diff --git a/src/components/SVGImage/index.native.js b/src/components/SVGImage/index.native.js
deleted file mode 100644
index 78b1f8ef7e78..000000000000
--- a/src/components/SVGImage/index.native.js
+++ /dev/null
@@ -1,18 +0,0 @@
-import React from 'react';
-import {SvgCssUri} from 'react-native-svg';
-import propTypes from './propTypes';
-
-function SVGImage(props) {
- return (
-
- );
-}
-
-SVGImage.propTypes = propTypes;
-SVGImage.displayName = 'SVGImage';
-
-export default SVGImage;
diff --git a/src/components/SVGImage/propTypes.js b/src/components/SVGImage/propTypes.js
deleted file mode 100644
index 4e02ad42fde9..000000000000
--- a/src/components/SVGImage/propTypes.js
+++ /dev/null
@@ -1,17 +0,0 @@
-import PropTypes from 'prop-types';
-
-const propTypes = {
- /** The asset to render. */
- src: PropTypes.string.isRequired,
-
- /** The width of the image. */
- width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired,
-
- /** The height of the image. */
- height: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired,
-
- /** The resize mode of the image. */
- resizeMode: PropTypes.oneOf(['cover', 'contain', 'stretch', 'repeat', 'center']),
-};
-
-export default propTypes;