UNPKG

materialuiupgraded

Version:

Material-UI's workspace package

23 lines (18 loc) 614 B
import ns from '../styles/reactJssContext'; import { SheetsRegistry } from 'jss'; import createShallow from './createShallow'; import { sheetsManager } from '../styles/withStyles'; const shallow = createShallow(); // Helper function to extract the classes from a styleSheet. export default function getClasses(element, options = {}) { const sheetsRegistry = new SheetsRegistry(); sheetsManager.clear(); shallow(element, { ...options, context: { [ns.sheetsRegistry]: sheetsRegistry, ...options.context, }, }); return sheetsRegistry.registry[0].classes; }