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

19 lines
339 B
JavaScript
Raw Permalink Normal View History

2024-02-17 23:42:39 +00:00
import { token } from '..';
export default {
all: token.prop('all')
};
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);
};
*/