fragosti de11b62e30 Revert "Have new Popover component working in React 16"
This reverts commit 5785ec0713c39466b3a6a171f5f0a2d38207b44b.
2018-08-28 15:07:28 -07:00

33 lines
680 B
TypeScript

import * as _ from 'lodash';
import * as React from 'react';
import { zIndex } from 'ts/style/z_index';
export interface OverlayProps {
style?: React.CSSProperties;
onClick?: () => void;
}
const style: React.CSSProperties = {
position: 'fixed',
top: 0,
right: 0,
bottom: 0,
left: 0,
zIndex: zIndex.overlay,
backgroundColor: 'rgba(0, 0, 0, 0.6)',
};
export const Overlay: React.StatelessComponent<OverlayProps> = props => (
<div style={{ ...style, ...props.style }} onClick={props.onClick}>
{props.children}
</div>
);
Overlay.defaultProps = {
style: {},
onClick: _.noop.bind(_),
};
Overlay.displayName = 'Overlay';