/* const { styleClass } = require('../../../utils'); module.exports = (root, opts) => { const overflowX = { 'overflow-x-auto': 'auto', 'overflow-x-hidden': 'hidden', 'overflow-x-visible': 'visible', 'overflow-x-scroll': 'scroll' }; styleClass('overflow-x', overflowX, root, opts, true); }; */