Dynamically create a stylesheet
npm install create-stylesheetDynamically create a stylesheet
``js
import createStyleSheet from 'create-stylesheet';
let style = createStyleSheet({
'.foo': {
fontSize: 12,
padding: 5
},
'.bar': {
fontSize: 16,
color: 'grey'
}
});
document.head.appendChild(style);
``