primevue-mirror/components/lib/props/style/overflow/properties/x.js

14 lines
340 B
JavaScript
Raw Normal View History

2024-02-16 08:48:00 +00:00
/* 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);
};
*/