Notifications

A flexible notification system with animations and multiple notification types.

stable

Notifications

A notification system with different types of notifications.

Position:
// Example usage with different positions
<Notifications 
  position="top-right"
  theme="system"
  richColors
/>

// Show a notification
showNotification("Success!", {
  type: "success",
  description: "Your action was completed successfully.",
  action: {
    label: "Undo",
    onClick: () => console.log("Undo clicked"),
  },
});