primevue-mirror/components/lib/props/style/line/properties/height.js

14 lines
316 B
JavaScript
Raw Normal View History

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