ash_hq/lib/ash_hq_web/components/callout_text.ex

18 lines
400 B
Elixir
Raw Normal View History

2022-03-26 10:17:01 +13:00
defmodule AshHqWeb.Components.CalloutText do
@moduledoc "Highlights some text on the page"
2024-04-03 09:38:44 +13:00
use Phoenix.Component
2022-03-26 10:17:01 +13:00
2022-12-21 20:25:09 +13:00
import AshHqWeb.Tails
2024-04-03 09:38:44 +13:00
attr :text, :string, required: true
attr :class, :any, default: ""
2024-04-03 09:38:44 +13:00
def callout(assigns) do
~H"""
<span class={classes(["text-primary-light-600 dark:text-primary-dark-400 font-bold", @class])}>
2024-04-03 09:38:44 +13:00
<%= @text %>
2022-03-26 10:17:01 +13:00
</span>
"""
end
end