bonfire-app/lib/web/icons/heroicons-outline/arrow-right.ex
2022-10-25 10:28:15 +13:00

26 lines
504 B
Elixir

defmodule Iconify.HeroiconsOutline.ArrowRight do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="m14 5l7 7m0 0l-7 7m7-7H3"
/>
</svg>
"""
end
end