UNPKG
react-ally
Version:
latest (0.0.1-beta.2)
0.0.1-beta.2
0.0.1-beta.1
0.0.1-beta.0
Accessible react components
react-ally
/
src
/
dialog
/
overlay.js
16 lines
(14 loc)
•
247 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
React
from
'react'
;
export
const
Overlay
= (
{ backgroundColor, ...props }
) => (
<
div
style
=
{{
position:
'
fixed
',
top:
0
,
left:
0
,
right:
0
,
bottom:
0
,
backgroundColor
}} {
...props
} />
);