Reputation: 154
Why fontFamily does not work below?
<ListItemText style={{fontFamily:"Times New Roman"}} primary="Sent mail" />
But if I add color it works. Example: https://codesandbox.io/s/r3u1d
Is it possible to add my own font family to ListItemText?
Cheers,
Upvotes: 1
Views: 1457
Reputation: 131
You are using material-ui library, and the solution is hidden in their API:
https://material-ui.com/api/list-item-text/#props
Just use disableTypography prop in ListItemText Component
Here is a modified example:
https://codesandbox.io/s/material-demo-pedw3?file=/demo.tsx
Upvotes: 3