diff --git a/packages/sage-react/lib/Label/Label.jsx b/packages/sage-react/lib/Label/Label.jsx
index 81244a9fd7..2c75b68f94 100644
--- a/packages/sage-react/lib/Label/Label.jsx
+++ b/packages/sage-react/lib/Label/Label.jsx
@@ -1,7 +1,7 @@
import React from 'react';
import PropTypes from 'prop-types';
import classnames from 'classnames';
-import { SageTokens } from '../configs';
+import { SageTokens, SageClassnames } from '../configs';
import {
LABEL_COLORS,
LABEL_STYLES,
@@ -61,13 +61,19 @@ export const Label = React.forwardRef(({
type={interactiveType ? 'button' : null}
{...rest}
>
+ {icon && (
+
+ )}
{value}
{interactiveType === LABEL_INTERACTIVE_TYPES.SECONDARY_BUTTON && secondaryButton}
{(interactiveType === LABEL_INTERACTIVE_TYPES.DROPDOWN) && (
-
+
)}
);