UNPKG

@mui/system

Version:

MUI System is a set of CSS utilities to help you build custom designs more efficiently. It makes it possible to rapidly lay out custom designs.

23 lines 500 B
import style from "../style/index.mjs"; import compose from "../compose/index.mjs"; 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' }); const positions = compose(position, zIndex, top, right, bottom, left); export default positions;