Below is the code snippet in question:
const useStyles = makeStyles(theme => ({
row: {
'& > *': {
fontSize: 12,
fontWeight: 'bold',
color: 'rgba(33,34,34,0.5)',
letterSpacing: 0.5,
lineHeight: '16px',
},
},
}));
I'm seeking clarification on the following line of code:
'& > *': {
Any insights would be greatly appreciated.