Confirmation modal
Focus the user on one clear decision with confirm and cancel actions.
Click the trigger to open the modal
<Modal
title="Confirm service request"
description="Review the information before continuing."
icon="icon-[lucide--shield-check]"
label="Modal"
closeLabel="Modal"
cancelLabel="Go back"
confirmLabel="Confirm request"
confirmIcon="icon-[lucide--check]"
triggerLabel="Open modal"
triggerIcon="icon-[lucide--square-stack]">
<div data-slot="trigger">
<div class="showcase-slot">trigger slot</div>
</div>
<div data-slot="header">
<div class="showcase-slot">header slot</div>
</div>
<div class="showcase-overlay-content"><p>This request will be submitted for review.</p></div>
<div data-slot="footer">
<div class="showcase-slot">footer slot</div>
</div>
</Modal>