aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/ui/overlay.tsx
blob: bb2ed8e59d5be26c5065caffa6d650903ea654d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { colors } from '@0xproject/react-shared';
import * as _ from 'lodash';
import * as React from 'react';

import { zIndex } from 'ts/utils/style';

export interface OverlayProps {
    children?: React.ReactNode;
    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 = (props: OverlayProps) => (
    <div style={{ ...style, ...props.style }} onClick={props.onClick}>
        {props.children}
    </div>
);

Overlay.defaultProps = {
    style: {},
    onClick: _.noop,
};

Overlay.displayName = 'Overlay';