bonfire-app/lib/web/icons/mdi/arrow-left.ex

19 lines
399 B
Elixir
Raw Normal View History

2022-12-22 16:55:55 +00:00
defmodule Iconify.Mdi.ArrowLeft do
use Phoenix.Component
2022-12-23 05:25:18 +00:00
2022-12-22 16:55:55 +00:00
def render(assigns) do
~H"""
2022-12-23 05:25:18 +00:00
<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="currentColor" d="M20 11v2H8l5.5 5.5l-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5L8 11h12Z" />
</svg>
2022-12-22 16:55:55 +00:00
"""
end
end