Answers for "withstyles"

0

withstyles

import { Typography as MuiTypography, withStyles } from "@material-ui/core";
const Typography = withStyles((theme) => ({
  root: {
    lineHeight: 1.5,
    fontSize: 18,
    color: theme.palette.secondary.main,
  },
}))(MuiTypography);
export default Typography;
Posted by: Guest on January-17-2022

Browse Popular Code Answers by Language