I am looking for a simple list of all available shorthand styling propertied available in MUI. I have once, a while ago, found it skimming through their documentation, and now I cannot find it anywhere. I am using MUI v5.
For example: margin-top" would be "mt" and "margin-bottom" would be "mb".
<Stack mt={10} mb={10}>
{props.children}
</Stack>
I hope there is someone out there that has an idea of what I am talking about. Thanks!
CodePudding user response:
I think you are looking for this list right here: https://mui.com/system/properties/
CodePudding user response:
I found it! I do not know why it took me so long to find it. Here it is in case anyone is looking for it.