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