mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
22 lines
449 B
JavaScript
22 lines
449 B
JavaScript
import style from './style';
|
|
import compose from './compose';
|
|
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); |