bonfire-app/lib/web/icons/gg/expand.ex
Mayel de Borniol 78e3650daa Upgrade phoenix
2022-11-12 19:08:34 +13:00

22 lines
504 B
Elixir

defmodule Iconify.Gg.Expand 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="currentColor"
d="m12.306 16.593l-.035 2l-6.999-.122l.123-7l2 .036l-.063 3.585l7.894-7.624l-3.532-.061l.035-2l6.999.122l-.123 7l-2-.036l.064-3.638l-7.948 7.676l3.585.062Z"
/>
</svg>
"""
end
end