primevue-mirror/components/lib/props/style/background/properties/position.js

19 lines
494 B
JavaScript
Raw Normal View History

2024-02-16 08:48:00 +00:00
/* const { styleClass } = require('../../../utils');
module.exports = (root, opts) => {
const positions = {
'bg-bottom': 'bottom',
'bg-center': 'center',
'bg-left': 'left',
'bg-left-bottom': 'left bottom',
'bg-left-top': 'left top',
'bg-right': 'right',
'bg-right-bottom': 'right bottom',
'bg-right-top': 'right top',
'bg-top': 'top'
};
styleClass('background-position', positions, root, opts, true);
};
*/