When styling in CSS, I typically use
input[type="radio"]:checked { color: #000}
, however this expression is not valid in Material UI.
In Material UI, I create rules using makeStyles like so:
const useStyles = makeStyles(() => ({ text: { color: "red", }, }));
Is there a way to target input[type="radio"]
elements using makeStyles in Material UI?