Form Elements

Navigation

Data Display

Feedback

Marketing

Alert

A versatile alert component for displaying important messages or notifications.

Props

PropTypeRequiredDescription
type'success' | 'error' | 'warning' | 'info'YesDetermines the style and icon of the alert
messagestringYesThe main message to display
titlestringNoOptional title for the alert

Examples

Basic Usage

<Alert type="success" message="Operation completed successfully" />

With Title

<Alert
  type="error"
  title="Error Occurred"
  message="Please check your input and try again"
/>