mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
16 lines
295 B
JavaScript
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,
|
|
};
|
|
|
|
|
|
|
|
|
|
|