defmodule MoonWeb.Pages.Design.Button.IconButtonPage do @moduledoc false use MoonWeb, :live_view alias MoonWeb.Components.Page alias MoonWeb.Components.ComponentPageDescription alias MoonWeb.Components.ExamplesList alias MoonWeb.Components.PropsTable alias MoonWeb.Examples.Design.IconButtonExample data(breadcrumbs, :any, default: [ %{ to: "/components", name: "Components" }, %{ to: "/components/v2/icon_button", name: "IconButton" } ] ) def render(assigns) do ~F"""

Buttons allow users to take actions, and make choices, with a single tap.

Buttons communicate actions that users can take. They are typically placed throughout your UI, in places like:

""" end end