diff --git a/projects/plugins/protect/src/js/components/logo/index.tsx b/projects/plugins/protect/src/js/components/logo/index.tsx
deleted file mode 100644
index 3e02acf06aa5b..0000000000000
--- a/projects/plugins/protect/src/js/components/logo/index.tsx
+++ /dev/null
@@ -1,96 +0,0 @@
-import { Path, SVG } from '@wordpress/components';
-import React from 'react';
-
-type HEXColorType = `#${ string }`;
-
-type LogoProps = {
- iconColor: HEXColorType;
- color: HEXColorType;
-};
-
-/**
- * Protect Logo component
- *
- * @param {object} props - Component props
- * @param {HEXColorType} props.color - Text color.
- * @param {HEXColorType} props.iconColor - Icon color
- * @return {React.ReactElement} Component template
- */
-export default function Logo( {
- iconColor = '#069E08',
- color = '#000',
-}: LogoProps ): React.ReactElement {
- return (
-
- );
-}
diff --git a/projects/plugins/protect/src/js/components/logo/stories/index.stories.tsx b/projects/plugins/protect/src/js/components/logo/stories/index.stories.tsx
deleted file mode 100644
index 164640e03eaec..0000000000000
--- a/projects/plugins/protect/src/js/components/logo/stories/index.stories.tsx
+++ /dev/null
@@ -1,27 +0,0 @@
-import React from 'react';
-import Logo from '..';
-
-export default {
- title: 'Plugins/Protect/Logo',
- component: Logo,
- argTypes: {
- iconColor: {
- control: {
- type: 'color',
- },
- },
- color: {
- control: {
- type: 'color',
- },
- },
- },
-};
-
-const Template = args => ;
-
-export const _default = Template.bind( {} );
-_default.args = {
- iconColor: '#069E08',
- color: '#000',
-};
diff --git a/projects/plugins/protect/src/js/routes/setup/index.jsx b/projects/plugins/protect/src/js/routes/setup/index.jsx
index 3e82bf582e41c..cf64ede35a3b4 100644
--- a/projects/plugins/protect/src/js/routes/setup/index.jsx
+++ b/projects/plugins/protect/src/js/routes/setup/index.jsx
@@ -4,10 +4,10 @@ import {
Col,
Container,
Text,
+ JetpackProtectLogo,
} from '@automattic/jetpack-components';
import { createInterpolateElement } from '@wordpress/element';
import { __ } from '@wordpress/i18n';
-import Logo from '../../components/logo';
import ConnectedPricingTable from '../../components/pricing-table';
import useAnalyticsTracks from '../../hooks/use-analytics-tracks';
import styles from './styles.module.scss';
@@ -25,7 +25,7 @@ const SetupRoute = () => {
moduleName={ __( 'Jetpack Protect', 'jetpack-protect' ) }
header={
-
+
{ createInterpolateElement(
__(