defmodule Moon.Design.Form.Field.Hint do @moduledoc false use Moon.StatelessComponent @doc "Data-testid attribute for HTML tag" prop(testid, :string) @doc "Id attribute for HTML tag" prop(id, :string) @doc "Additional Tailwind classes" prop(class, :css_class) @doc "Whether error icon is shown" prop(has_error_icon, :boolean, default: false) @doc "Whether label is on side of input field" prop(is_horizontal, :boolean, default: false) @doc "Hint text when default slot is not given" prop(title, :string) @doc "Default slot" slot(default) def render(assigns) do ~F"""
<#slot>

{@title}

""" end end