bonfire-app/lib/web/icons/heroicons-solid/check.ex
Mayel de Borniol 0d107d8464 misc
2022-12-13 12:14:35 +13:00

24 lines
540 B
Elixir

defmodule Iconify.HeroiconsSolid.Check 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 20 20"
aria-hidden="true"
>
<path
fill="currentColor"
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 0 1 0 1.414l-8 8a1 1 0 0 1-1.414 0l-4-4a1 1 0 0 1 1.414-1.414L8 12.586l7.293-7.293a1 1 0 0 1 1.414 0Z"
clip-rule="evenodd"
/>
</svg>
"""
end
end