Current section

Files

Jump to
supabase_surface lib supabase_surface components icons icon_refresh_ccw.ex
Raw

lib/supabase_surface/components/icons/icon_refresh_ccw.ex

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