ash_hq/lib/ash_hq_web/components/callout_text.ex

18 lines
385 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"
2022-03-26 10:17:01 +13:00
use Surface.Component
2022-12-21 20:25:09 +13:00
import AshHqWeb.Tails
prop text, :string, required: true
prop class, :css_class
2022-03-26 10:17:01 +13:00
def render(assigns) do
~F"""
<span class={classes(["text-primary-light-600 dark:text-primary-dark-400 font-bold", @class])}>
{@text}
2022-03-26 10:17:01 +13:00
</span>
"""
end
end