#Material UI(MUI)のTypographyコンポーネントを改行させない方法

Material UI(MUI)のTypographyを改行させない方法は下記の2つです。

#sxにdisplay: inlineを指定する

<Typography sx={{ display: 'inline' }}>テスト</Typography>

#componentにspanを指定する

<Typography component="span">テスト</Typography>