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

12 lines
281 B
JavaScript
Raw Normal View History

2024-02-16 08:48:00 +00:00
/* const { styleClass } = require('../../../utils');
module.exports = (root, opts) => {
const textOverflows = {
'text-overflow-clip': 'clip',
'text-overflow-ellipsis': 'ellipsis'
};
styleClass('text-overflow', textOverflows, root, opts, true);
};
*/