jsketcher/modules/ui/components/Abs.jsx
2018-01-17 00:06:31 -08:00

16 lines
295 B
JavaScript

import React from 'react';
export default function Abs({left, top, right, bottom, children, style, zIndex, ...props}) {
return <div style={{position: 'absolute', left, top, right, bottom, zIndex, ...style}} {...props}>
{children}
</div>;
}
Abs.defaultProps = {
zIndex: 100,
};