Is there a more efficient way to write the following code that utilizes the sx prop's access to spacing units?
<MUIComponent sx={{ borderRadius: '4px 8px 12px 16px' }} />
Could it be written like this instead?
<MUIComponent sx={{ borderRadius: [1, 2, 3, 4] }} />
I haven't found anything about this in the documentation, but I would be surprised if this functionality doesn't exist...