Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Nested styling within Typography

How can I style my text with <Typography /> ? Is it possible to do something like this:

const someText = 'Hello <b>World</b>';

...
  <Typography>
   {someText}
  </Typography>
...

Or do I need to split up my text? With nested Typographies I seem to have some layout issues.

like image 286
Derick Schoonbee Avatar asked Jul 16 '26 06:07

Derick Schoonbee


1 Answers

I'm using material-ui 4.* and doing this is perfectly legal.

<Typography variant={'h5'} >Treffen Sie auf der it-sa 2019 die Micro Focus 
     <Typography display={'inline'} >und diskutieren Sie über </Typography>
</Typography>
like image 142
Siraj Alam Avatar answered Jul 17 '26 18:07

Siraj Alam