defmodule MoonWeb.Pages.Design.TooltipPage do
@moduledoc false
use MoonWeb, :live_view
alias MoonWeb.Components.Anatomy
alias MoonWeb.Components.Page
alias MoonWeb.Components.ComponentPageDescription
alias MoonWeb.Components.PropsTable
alias MoonWeb.Components.ExamplesList
alias MoonWeb.Examples.Design.TooltipExample
data(breadcrumbs, :any,
default: [
%{
to: "/components",
name: "Components"
},
%{
to: "/components/v2/tooltip",
name: "Tooltip"
}
]
)
def render(assigns) do
~F"""
A means of displaying a description or extra information about an element, usually on hover, but can also be on click or tap.