15 lines
265 B
TypeScript
15 lines
265 B
TypeScript
export function FadeToVideoOverlay(): React.JSX.Element {
|
|
return (
|
|
<div
|
|
aria-hidden="true"
|
|
style={{
|
|
position: "fixed",
|
|
inset: 0,
|
|
zIndex: 29,
|
|
background: "#000",
|
|
pointerEvents: "none",
|
|
}}
|
|
/>
|
|
);
|
|
}
|