Skip to content

Generic - Simple Message

Display informational messages, warnings, or notifications.

jsx
openPopup('generic', {
  data: {
    title: 'Warning',
    message: 'This is an informative message.',
    closeLabel: 'Got it',
    icon: '⚠️'
  }
});

Props (data):

PropertyTypeDescription
titleReactNodePopup title
messageReactNodeMain message content
closeLabelReactNodeClose button text
iconReactNodeIcon next to title (default: "ⓘ")