bonfire-app/lib/web/icons/ic/round-reply.ex

22 lines
497 B
Elixir
Raw Normal View History

2023-01-03 20:47:53 +00:00
defmodule Iconify.Ic.RoundReply do
use Phoenix.Component
2023-01-04 21:19:59 +00:00
2023-01-03 20:47:53 +00:00
def render(assigns) do
~H"""
2023-01-04 21:19:59 +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="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>
2023-01-03 20:47:53 +00:00
"""
end
end