I am struggling to identify how to set css values ...
# react
w
I am struggling to identify how to set css values with emotion. For example, listStyleType. When I look at its signature
public abstract var listStyleType: csstype.ListStyleType?
In my code I have tried
Copy code
listStyleType = ListStyleType. <-- no options appear
listStyleType = ListStyleType("none")   <-- syntax error thown.

This is not the only element I am struggling with. What is the place or stratagem to find the correct pairings of element ( left) and value representation ( right)?