use leptos::prelude::*;
#[component]
pub fn Tooltip(#[prop(into)] text: String, children: Children) -> impl IntoView {
view! {
<span class="nightshade-tooltip" tabindex="0">
{children()}
<span class="nightshade-tooltip-bubble" role="tooltip">
{text}
</span>
</span>
}
}