defmodule AshHqWeb.Components.CalloutText do @moduledoc "Highlights some text on the page" use Surface.Component import AshHq.Classes prop text, :string, required: true def render(%{__context__: %{platform: :ios}} = assigns) do ~F""" {@text} """ end def render(assigns) do ~F""" {@text} """ end end