diff --git a/docs/data/joy/components/linear-progress/LinearProgressWithLabel.js b/docs/data/joy/components/linear-progress/LinearProgressWithLabel.js index 1ea4e6fb393cae..19cd19aadc50d9 100644 --- a/docs/data/joy/components/linear-progress/LinearProgressWithLabel.js +++ b/docs/data/joy/components/linear-progress/LinearProgressWithLabel.js @@ -1,6 +1,7 @@ import * as React from 'react'; import LinearProgress from '@mui/joy/LinearProgress'; import Typography from '@mui/joy/Typography'; +import Box from '@mui/joy/Box'; export default function LinearProgressWithLabel() { const [progress, setProgress] = React.useState(0); @@ -16,28 +17,35 @@ export default function LinearProgressWithLabel() { }, []); return ( - - - LOADING… {`${Math.round(progress)}%`} - - + + LOADING… {`${Math.round(progress)}%`} + + + ); } diff --git a/docs/data/joy/components/linear-progress/LinearProgressWithLabel.tsx b/docs/data/joy/components/linear-progress/LinearProgressWithLabel.tsx index 1ea4e6fb393cae..19cd19aadc50d9 100644 --- a/docs/data/joy/components/linear-progress/LinearProgressWithLabel.tsx +++ b/docs/data/joy/components/linear-progress/LinearProgressWithLabel.tsx @@ -1,6 +1,7 @@ import * as React from 'react'; import LinearProgress from '@mui/joy/LinearProgress'; import Typography from '@mui/joy/Typography'; +import Box from '@mui/joy/Box'; export default function LinearProgressWithLabel() { const [progress, setProgress] = React.useState(0); @@ -16,28 +17,35 @@ export default function LinearProgressWithLabel() { }, []); return ( - - - LOADING… {`${Math.round(progress)}%`} - - + + LOADING… {`${Math.round(progress)}%`} + + + ); }