Fork me on GitHub
#reagent
<
2019-07-05
>
valtteri04:07:56

This looks otherwise correct but "classes.avatOr" should be "classes.avatar".

[:> Avatar {:class "classes.avator"}
  [:> LockOutlinedIcon]]
I haven't used makeStyles myself but the example you posted should translate to something like this:
(def use-styles
  (makeStyles
   (fn [theme]
     #js{"@global"
         #js{:body
             #js{:backgroundColor (-> theme .-palette .-common .-white)}}})))
(I haven't tried this but I hope you get the idea)