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

24 lines
587 B
Elixir
Raw Normal View History

2022-12-17 15:09:49 +00:00
defmodule Iconify.Heroicons.ArrowLongLeft20Solid 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="M18 10a.75.75 0 0 1-.75.75H4.66l2.1 1.95a.75.75 0 1 1-1.02 1.1l-3.5-3.25a.75.75 0 0 1 0-1.1l3.5-3.25a.75.75 0 1 1 1.02 1.1l-2.1 1.95h12.59A.75.75 0 0 1 18 10Z"
clip-rule="evenodd"
/>
</svg>
2022-12-17 15:09:49 +00:00
"""
end
end