bonfire-app/lib/web/icons/pajamas/expand-up.ex
Mayel de Borniol 78e3650daa Upgrade phoenix
2022-11-12 19:08:34 +13:00

24 lines
634 B
Elixir

defmodule Iconify.Pajamas.ExpandUp 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="M11.78 5.841a.75.75 0 0 1-1.06 0l-1.97-1.97v7.379a.75.75 0 0 1-1.5 0V3.871l-1.97 1.97a.75.75 0 0 1-1.06-1.06l3.25-3.25L8 1l.53.53l3.25 3.25a.75.75 0 0 1 0 1.061ZM3.75 13.5a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5Z"
clip-rule="evenodd"
/>
</svg>
"""
end
end