@mui/system
Version:
MUI System is a set of CSS utilities to help you build custom designs more efficiently. It makes it possible to rapidly lay out custom designs.
6 lines • 315 B
text/typescript
/**
* Generates string classKey based on the properties provided. It starts with the
* variant if defined, and then it appends all other properties in alphabetical order.
* @param props - the properties for which the classKey should be created.
*/
export default function propsToClassKey(props: object): string;