primevue-mirror/components/lib/props/style/text/properties/align.js

16 lines
374 B
JavaScript
Raw Normal View History

2024-02-16 08:48:00 +00:00
/* const { styleClass } = require('../../../utils');
module.exports = (root, opts) => {
const textAligns = {
'text-center': 'center',
'text-justify': 'justify',
'text-left': 'left',
'text-right': 'right',
'text-start': 'start',
'text-end': 'end'
};
styleClass('text-align', textAligns, root, opts, true);
};
*/