pub fn Tooltip(_: TooltipProps) -> Result<VNode, RenderError>
Expand description
Tooltip
component. Use in combination with TooltipContainer().
§Styling
Inherits the TooltipTheme
§Example
fn app() -> Element {
rsx!(
TooltipContainer {
tooltip: rsx!(
Tooltip {
text: "Hey!"
}
),
label { "Hover me!" }
}
)
}