Modal
The modal component is used for creating a dialog window over the primary window. When the dialog window appers on some action, user cannot interact with the content behind the modal.
<div class="modal">
<h2>Delete Modal</h2>
<p>Do you want to delete your account ?</p>
<button class="btn">Delete</button>
<button class="btn btn-outline">Cancel</button>
</div>