ohctechv3/.svn/pristine/41/41af363d46829c87ac51f81c814a4da5649fb2d0.svn-base
2024-10-28 15:03:36 +05:30

22 lines
437 B
Plaintext

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);