bonfire-app/lib/web/icons/heroicons/arrow-long-right-20-solid.ex

24 lines
587 B
Elixir
Raw Normal View History

2022-12-17 15:09:49 +00:00
defmodule Iconify.Heroicons.ArrowLongRight20Solid do
use Phoenix.Component
2022-12-17 21:17:40 +00:00
2022-12-17 15:09:49 +00:00
def render(assigns) do
~H"""
2022-12-17 21:17:40 +00:00
<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>
2022-12-17 15:09:49 +00:00
"""
end
end