defmodule AshHqWeb.Components.CalloutText do @moduledoc "Highlights some text on the page" use Surface.Component import AshHqWeb.Tails prop text, :string, required: true prop class, :css_class def render(assigns) do ~F""" {@text} """ end end