I need to disable the default box-shadow
for most Material UI components. Right now I'm doing this by setting the style manually for each component, like this:
<FloatingActionButton style={{boxShadow: "none"}} />
Is there a way to do this globally, maybe using a theme setting?