PHP Classes

File: src/components/modal/Overlay.tsx

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   Maniruzzaman WordPress Frontend Editor   src/components/modal/Overlay.tsx   Download  
File: src/components/modal/Overlay.tsx
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Maniruzzaman WordPress Frontend Editor
WordPress plugin for visual front-end development
Author: By
Last change:
Date: 8 months ago
Size: 367 bytes
 

Contents

Class file image Download
export const Overlay = ({show}: { show: boolean }) => { return show ? ( <div style={{ position: "fixed", top: 0, left: 0, right: 0, bottom: 0, background: "rgba(0, 0, 0, 0.5)", zIndex: 2, }} /> ) : null; };