/* const { styleClass } = require('../../utils'); module.exports = (root, opts) => { const position = { static: 'static', fixed: 'fixed', absolute: 'absolute', relative: 'relative', sticky: 'sticky' }; styleClass('position', position, root, opts, true); }; */