Current section

Files

Jump to
supabase_surface lib supabase_surface components icons icon_video_off.ex
Raw

lib/supabase_surface/components/icons/icon_video_off.ex

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