This repository has been archived on 2024-09-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
front/node_modules/@mui/system/positions/positions.js
2024-09-18 13:34:19 -03:00

22 lines
469 B
JavaScript

import style from "../style/index.js";
import compose from "../compose/index.js";
export const position = style({
prop: 'position'
});
export const zIndex = style({
prop: 'zIndex',
themeKey: 'zIndex'
});
export const top = style({
prop: 'top'
});
export const right = style({
prop: 'right'
});
export const bottom = style({
prop: 'bottom'
});
export const left = style({
prop: 'left'
});
export default compose(position, zIndex, top, right, bottom, left);