primevue-mirror/components/lib/props/style/all/index.js

13 lines
262 B
JavaScript
Raw Normal View History

2024-02-16 08:48:00 +00:00
/* const { styleClass } = require('../../utils');
module.exports = (root, opts) => {
const all = {
'all-initial': 'initial',
'all-inherit': 'inherit',
'all-unset': 'unset'
};
styleClass('all', all, root, opts, true);
};
*/