defmodule SurfaceBulma.Panel do use SurfaceBulma.TabUtils, doc: """ The panel for compact controls and tabs """ alias SurfaceBulma.Icon.FontAwesome, as: FA use SurfaceBulma.ColorProp @doc """ This slot will be used as the title of the panel. """ slot title, required: true @doc """ A panel-block that will be displayed above the tabs """ slot header slot tabs @impl true def render(assigns) do ~F""" """ end end