Current section

Files

Jump to
supabase_surface lib supabase_surface components icons icon_skip_back.ex
Raw

lib/supabase_surface/components/icons/icon_skip_back.ex

defmodule SupabaseSurface.Components.Icons.IconSkipBack do
use SupabaseSurface.Components.Icon
@impl true
def render(assigns) do
icon_size = IconContainer.get_size(assigns.size)
~F"""
<IconContainer assigns={assigns}>
{Feathericons.skip_back(width: icon_size, height: icon_size)}
</IconContainer>
"""
end
end