FrontPastel/node_modules/@mui/system/legacy/positions.js

22 lines
437 B
JavaScript
Raw Normal View History

2024-04-17 13:55:11 +00:00
import style from './style';
import compose from './compose';
export var position = style({
prop: 'position'
});
export var zIndex = style({
prop: 'zIndex',
themeKey: 'zIndex'
});
export var top = style({
prop: 'top'
});
export var right = style({
prop: 'right'
});
export var bottom = style({
prop: 'bottom'
});
export var left = style({
prop: 'left'
});
export default compose(position, zIndex, top, right, bottom, left);