bonfire-app/lib/web/icons/heroicons/arrow-long-right-20-solid.ex
Mayel de Borniol 16d3531668 f
2022-12-18 10:17:40 +13:00

24 lines
587 B
Elixir

defmodule Iconify.Heroicons.ArrowLongRight20Solid 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 20 20"
aria-hidden="true"
>
<path
fill="currentColor"
fill-rule="evenodd"
d="M2 10a.75.75 0 0 1 .75-.75h12.59l-2.1-1.95a.75.75 0 1 1 1.02-1.1l3.5 3.25a.75.75 0 0 1 0 1.1l-3.5 3.25a.75.75 0 1 1-1.02-1.1l2.1-1.95H2.75A.75.75 0 0 1 2 10Z"
clip-rule="evenodd"
/>
</svg>
"""
end
end