0.0.3 • Published 2 years ago
maximez_modal v0.0.3
Modal Component
The Modal component allows you to create customizable modal dialogs for your React applications.
Prerequisites
Installation
You can install this component via npm:
npm install maximez_modal
Usage
Import the component
import { Modal } from 'maximez_modal';
Include the Modal componentn in your JSX
<Modal
closeModal={closeModalFunction}
maxWidth={number}
modalBackgroundColor={string}
iconColor={string}
hoveredIconBackgroundColor={string}>
{/* Content for your modal */}
</Modal>Customiwe the component by passing props
closeModal: A function to close the modal.maxWidth: The maximum width of the modal.modalBackgroundColor: The background color of the modal.iconColor: The color of the close icon.hoveredIconBackgroundColor: The background color of the close icon on hover.modalBackground: The background color behind the modal (light or dark).