diff --git a/packages/edit-site/src/components/sidebar-navigation-screen-page/status-label.js b/packages/edit-site/src/components/sidebar-navigation-screen-page/status-label.js
index bcfc540b1f841d..f864d48de33834 100644
--- a/packages/edit-site/src/components/sidebar-navigation-screen-page/status-label.js
+++ b/packages/edit-site/src/components/sidebar-navigation-screen-page/status-label.js
@@ -9,42 +9,10 @@ import classnames from 'classnames';
import { __, sprintf } from '@wordpress/i18n';
import { dateI18n, getDate, humanTimeDiff } from '@wordpress/date';
import { createInterpolateElement } from '@wordpress/element';
-import { Path, SVG } from '@wordpress/primitives';
-
-const publishedIcon = (
-
-);
-
-const draftIcon = (
-
-);
-
-const pendingIcon = (
-
-);
export default function StatusLabel( { status, date, short } ) {
const relateToNow = humanTimeDiff( date );
let statusLabel = status;
- let statusIcon = pendingIcon;
switch ( status ) {
case 'publish':
statusLabel = date
@@ -57,7 +25,6 @@ export default function StatusLabel( { status, date, short } ) {
{ time: }
)
: __( 'Published' );
- statusIcon = publishedIcon;
break;
case 'future':
const formattedDate = dateI18n(
@@ -77,7 +44,6 @@ export default function StatusLabel( { status, date, short } ) {
break;
case 'draft':
statusLabel = __( 'Draft' );
- statusIcon = draftIcon;
break;
case 'pending':
statusLabel = __( 'Pending' );
@@ -99,7 +65,7 @@ export default function StatusLabel( { status, date, short } ) {
}
) }
>
- { statusIcon } { statusLabel }
+ { statusLabel }
);
}