14 lines
316 B
JavaScript
14 lines
316 B
JavaScript
|
/* const { styleClass } = require('../../../utils');
|
||
|
|
||
|
module.exports = (root, opts) => {
|
||
|
const lineHeights = {
|
||
|
'line-height-1': '1',
|
||
|
'line-height-2': '1.25',
|
||
|
'line-height-3': '1.5',
|
||
|
'line-height-4': '2'
|
||
|
};
|
||
|
|
||
|
styleClass('line-height', lineHeights, root, opts, true);
|
||
|
};
|
||
|
*/
|