bonfire-app/lib/web/icons/octicon/x-16.ex
Mayel de Borniol 0d107d8464 misc
2022-12-13 12:14:35 +13:00

23 lines
571 B
Elixir

defmodule Iconify.Octicon.X16 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 16 16"
aria-hidden="true"
>
<path
fill="currentColor"
fill-rule="evenodd"
d="M3.72 3.72a.75.75 0 0 1 1.06 0L8 6.94l3.22-3.22a.75.75 0 1 1 1.06 1.06L9.06 8l3.22 3.22a.75.75 0 1 1-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 0 1-1.06-1.06L6.94 8L3.72 4.78a.75.75 0 0 1 0-1.06z"
/>
</svg>
"""
end
end