leptos_shadcn_tooltip/lib.rs
1//! Leptos port of [shadcn/ui Tooltip](https://ui.shadcn.com/docs/components/tooltip).
2//!
3//! A tooltip component for displaying additional information on hover or focus.
4//!
5//! See [the Rust shadcn/ui book](https://shadcn-ui.rustforweb.org/components/tooltip.html) for more documentation.
6
7pub mod signal_managed;
8pub mod default;
9pub mod new_york;
10
11#[cfg(test)]
12mod tests;
13#[cfg(test)]
14mod tdd_tests;
15
16// Re-export the components for easy access
17pub use default::*;
18
19#[cfg(feature = "new_york")]
20pub use new_york as tooltip;
21
22
23// Signal-managed exports
24pub use signal_managed::*;