Is there a cleaner way to write the following that takes advantage of the sx prop's access to spacing units?
<MUIComponent sx={{ borderRadius: '4px 8px 12px 16px' }} />
Something like this?
<MUIComponent sx={{ borderRadius: [1, 2, 3, 4] }} />
I can't find anything in the docs, but I'd be surprised if this feature doesn't exist...