Design System / nilshendriks.com

Dialog - Astro

Dialog / Modal component
---
name: Dialog
description: Modal component
framework: Astro
props: open?: boolean; openButtonText?: string; title?: string;
---

The <dialog> HTML element represents a modal or non-modal dialog box or other interactive component, such as a dismissible alert, inspector, or subwindow.

Example

Dialog title

        interface Props {
          open?: boolean;
          openButtonText?: string;
          title?: string;
        }