I am using a widget called Chip
const styles = {
root:{
},
chip:{
margin: "2px",
padding: "2px"
}
}
const SmartTagChip = (props) =>{
const classes = useStyles();
return(
<Chip style={{color:"white"}} clickable className={classes.chip}
color="default"
label={item.label} variant="outlined"/>:
)
}
I am attempting to increase the font size.
My attempts have been unsuccessful.
<Chip style={{color:"white"}} clickable className={classes.chip}
I have consulted the documentation at
https://material-ui.com/api/chip/
and discovered some information about styling with CSS
root .MuiChip-root Styles applied to the root element.
It seems like I need to customize the .MuiChip-root
class,
How should I go about doing this?