In Material-UI v4, the Drawer component could be styled this way:
<Drawer
variant="persistent"
classes={{paper: myClassNameHere}}
>
where myClassNameHere is produced by useStyles, which in turn is produced by makeStyles.
Migrating to v5's styling solution is proving tricky for this component in particular, because the styling needs to be applied to the inner Paper child component instead of to the main Drawer component itself.
Is it even possible to style Drawer at this point using the new solution?