defmodule MoonWeb.Examples.Design.AlertExample.WithIcon do
@moduledoc false
use Moon.StatelessComponent
use MoonWeb, :example
alias Moon.Icons.OtherFrame
alias Moon.Design.Alert
def render(assigns) do
~F"""
Alert with icon
Alert with title and icon
Alert message
"""
end
def code() do
"""
alias Moon.Icons.OtherFrame
alias Moon.Design.Alert
...
Alert with icon
Alert with title and icon
Alert message
"""
end
end