primevue-mirror/components/lib/props/style/flex/properties/wrap.js

13 lines
290 B
JavaScript
Raw Permalink Normal View History

2024-02-16 08:48:00 +00:00
/* const { styleClass } = require('../../../utils');
module.exports = (root, opts) => {
const flexWrap = {
'flex-wrap': 'wrap',
'flex-wrap-reverse': 'wrap-reverse',
'flex-nowrap': 'nowrap'
};
styleClass('flex-wrap', flexWrap, root, opts, true);
};
*/