React Notification
Dynamic React notification component with easy customization and rich feature set.

For more information and to learn how to use our notification component, visit our GitHub repository.

Notifications Demo
Primary Success
addNotification(
  {
    text: "Text",
    status: "success",
  }
);
Primary Fail
addNotification(
  {
    text: "Text",
    status: "fail",
  }
);
Primary Warning
addNotification(
  {
    text: "Text",
    status: "warning",
  }
);
Custom Duration
addNotification(
  {
    text: "Text",
    duration: "2s",
  }
);
Fixed (No Autoclose)
addNotification(
  {
    text: "Text",
    status: "success",
    fixed: true,
  }
);
Title and Description
addNotification(
  {
    title: "Title",
    description : "Description",
    status: "success",
  }
);
Only Text
addNotification(
  {
    text: "Text",
  }
);
Custom Icon
addNotification(
  {
    text: "Text",
    icon: "✅"
  }
);
Close Rotate
addNotification(
  {
    text: "Text",
    status : "success",
    closeButtonRotate: true,
  }
);
Custom Background
addNotification(
  {
    text: "Text",
    status: "success",
    background: "skyblue"
  }
);
Custom Color
addNotification(
  {
    text: "Text",
    status: "success",
    color: "orange"
  }
);
These are just a few examples of the customization options available. For more advanced customization options and usage instructions, visit our GitHub repository.