bonfire-app/lib/web/icons/ic/round-reply.ex
Mayel de Borniol b40fe6055e misc
2023-01-05 10:19:59 +13:00

22 lines
497 B
Elixir

defmodule Iconify.Ic.RoundReply 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="M10 9V7.41c0-.89-1.08-1.34-1.71-.71L3.7 11.29a.996.996 0 0 0 0 1.41l4.59 4.59c.63.63 1.71.19 1.71-.7V14.9c5 0 8.5 1.6 11 5.1c-1-5-4-10-11-11z"
/>
</svg>
"""
end
end