bonfire-app/lib/web/icons/carbon/help.ex
Mayel de Borniol e423c528cd f
2022-12-10 11:28:56 +13:00

25 lines
665 B
Elixir

defmodule Iconify.Carbon.Help 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 32 32"
aria-hidden="true"
>
<path
fill="currentColor"
d="M16 2a14 14 0 1 0 14 14A14 14 0 0 0 16 2Zm0 26a12 12 0 1 1 12-12a12 12 0 0 1-12 12Z"
/><circle cx="16" cy="23.5" r="1.5" fill="currentColor" /><path
fill="currentColor"
d="M17 8h-1.5a4.49 4.49 0 0 0-4.5 4.5v.5h2v-.5a2.5 2.5 0 0 1 2.5-2.5H17a2.5 2.5 0 0 1 0 5h-2v4.5h2V17a4.5 4.5 0 0 0 0-9Z"
/>
</svg>
"""
end
end