component Modal { props { @event onConfirmed = function } state isOpen = false functions { function confirmed() { isOpen = false; if(onConfirmed) { onConfirmed() } } } view {

Transparent Modal

Welcome to WRNexusJS

This modal uses a transparent glass background with blur, soft borders, and theme-aware colors.

You can place forms, confirmation messages, account details, images, or any other component inside this modal.

} style { } }