16 lines
374 B
JavaScript
16 lines
374 B
JavaScript
|
/* 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);
|
||
|
};
|
||
|
*/
|