diff --git a/packages/mui-material/src/FormControlLabel/FormControlLabel.js b/packages/mui-material/src/FormControlLabel/FormControlLabel.js
index 8e1be804698395..74d344fa4877e8 100644
--- a/packages/mui-material/src/FormControlLabel/FormControlLabel.js
+++ b/packages/mui-material/src/FormControlLabel/FormControlLabel.js
@@ -5,6 +5,7 @@ import clsx from 'clsx';
import { refType } from '@mui/utils';
import { unstable_composeClasses as composeClasses } from '@mui/base';
import { useFormControl } from '../FormControl';
+import Stack from '../Stack';
import Typography from '../Typography';
import capitalize from '../utils/capitalize';
import styled from '../styles/styled';
@@ -164,11 +165,15 @@ const FormControlLabel = React.forwardRef(function FormControlLabel(inProps, ref
{...other}
>
{React.cloneElement(control, controlProps)}
- {label}
- {required && (
-
- {'*'}
-
+ {required ? (
+
+ {label}
+
+ {'*'}
+
+
+ ) : (
+ label
)}
);