1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! # Leptos Notification
//!
//! A beautiful notification system for Leptos applications with animated toasts.
//!
//! ## Features
//!
//! - Four notification types: Info, Success, Warning, Error
//! - Smooth enter and exit animations
//! - Progress bar showing remaining time
//! - Easy to use API
//!
//! ## Quick Start
//!
//! ```rust,no_run
//! use leptos_notification::{ToastContainer, show_info, show_success, show_warning, show_error};
//! use leptos::prelude::*;
//!
//! #[component]
//! fn App() -> impl IntoView {
//! view! {
//! <div>
//! <button on:click=move |_| show_info("This is an info notification")>
//! "Show Info"
//! </button>
//!
//! <ToastContainer />
//! </div>
//! }
//! }
//! ```
pub use ;