Alert

An Alert component is a UI element used to display important messages or notifications to users. It can convey different types of information such as success, warning, error, or informational messages, typically styled with distinct colors and icons to highlight the message's significance. Alerts are often used to grab the user's attention and provide immediate feedback on actions or events.
# Demo

Alert Types

Different alert types for various contexts.

Alerts with Titles

Add titles to provide more context.

Dismissible Alerts

Alerts that can be closed by users.

Custom Icons

Override default icons with custom ones.

Alerts with Actions

Add custom action buttons to alerts.

Custom Styling

Customize appearance with className props.

Rich Content

Use children prop for rich content instead of simple message.

Accessibility

Alerts with proper ARIA roles and labels.

Status Update
Your profile has been updated successfully.
# Usage
# Attributes
NameTypeDefaultDetails
typeAlertTypesRequiredYou can pass type of the alert.
messagestringOptionalYou can pass alert message.
titlestringOptionalYou can pass alert title.
iconReact.ReactNodeOptionalCustom icon for the alert.
actionsReact.ReactNodeOptionalCustom actions for the alert.
classNamestring' 'You can customise by passing tailwind classes.
titleClassNamestring' 'You can customise by passing tailwind classes.
messageClassNamestring' 'You can customise by passing tailwind classes.
closeClassNamestring' 'You can customise by passing tailwind classes.
onClose() => voidOptionalYou can get callback when alert got closed.
role'alert' | 'status'OptionalARIA role for accessibility.
childrenReact.ReactNodeOptionalCustom content for the alert.