defmodule AshHqWeb.Components.CalloutText do @moduledoc "Highlights some text on the page" use Phoenix.Component import AshHqWeb.Tails attr :text, :string, required: true attr :class, :any, default: "" def callout(assigns) do ~H""" <%= @text %> """ end end