Dialog

Dialog focuses user's attention on additional information and a specific action.

#

#

Use the info variant to convey complex information that doesn’t fit into a simple Confirmation Dialog such as lists, tables, and other longer messages.

The info variant has the x in the upper right, and is dismissible by clicking outside of the dialog (this is because we’re not worried about losing user’s inputs).

#

Use the form variant whenever the user needs to complete form fields within the body of the dialog.

The form variant does not have the x, and should not be dismissible by clicking outside of the dialog (we don’t want to lose the users’ progress).

#

#

  • Use the Dialog to focus user's attention on additional information and a specific action.

#

  • Do not use when confirming dangerous or destructive action, use a Confirmation Dialog instead.

#

  • Dialog must never appear on its own without user's interaction (like clicking a button).

#

  • Use sentence case everywhere.
  • Don't punctuate the end of the title.
  • Always end a sentence with a period in description.
  • Confirmation button text must be explicit and avoid generic words like "Confirm", "Submit", "Yes" or "Send". For example, a good button text would be "Send message".

#

NameDefaultDescription
isOpenfalseboolean

Determines whether dialog is open.

variant

"info" | "form"

Dialog variant.

title

string

Dialog title.

children

ReactNode

Dialog content.

actions

ReactNode

Actions to be displayed in the dialog footer.

width"md""xs" | "sm" | "md" | "lg" | "xl" | "auto"

Dialog width.

height"auto"ModalContentProps["height"]

Dialog height. Dialog content has a max height of `60vh` after which it will scroll.

onClose

() => void

Callback for when dialog is closed.

On this page

  • Usage
  • Info
  • Form
  • Guidelines
  • When to use
  • When not to use
  • Usage
  • Content
  • Props