전체 카탈로그
OverlayDialog11 props

Alert Dialog

AlertDialog asks the user to confirm a destructive or irreversible action before it happens. Use it for things like deleting content, revoking access, or discarding unsaved chan...

공식 문서 열기
live previewOverlay

Preview

Delete component?

This inline alert dialog previews the destructive confirmation pattern.

Import

import {AlertDialog} from '@astryxdesign/core/AlertDialog';

Astryx 문서 권장 방식대로 root barrel이 아니라 컴포넌트 subpath에서 가져옵니다.

When to use

AlertDialog asks the user to confirm a destructive or irreversible action before it happens. Use it for things like deleting content, revoking access, or discarding unsaved chan...

alertalertdialogconfirmconfirmationdestructivedeletemodaldialog

Important props

widthnumber | stringoptional

Theming targets

이 항목은 공개 theming target이 문서화되어 있지 않습니다.

Best practices

  • DoMake the action button label specific: "Delete project" is better than "OK" or "Confirm".
  • DoDescribe what will happen in the description so the user knows the consequences before confirming.
  • Do notUse AlertDialog for non-destructive actions; use a standard Dialog instead.