class Primer::Alpha::Overlay::Body

Body of an overlay. See <%= link_to_component(Primer::Alpha::Overlay) %>.
A ‘Overlay::Body` is a compositional component, used to render the

def call

def call
  render(Primer::BaseComponent.new(**@system_arguments)) { content }
end

def initialize(padding: DEFAULT_PADDING, **system_arguments)

Parameters:
  • system_arguments (Hash) -- <%= link_to_system_arguments_docs %>
def initialize(padding: DEFAULT_PADDING, **system_arguments)
  @system_arguments = deny_tag_argument(**system_arguments)
  @system_arguments[:tag] = :div
  @system_arguments[:classes] = class_names(
    "Overlay-body",
    PADDING_MAPPINGS[fetch_or_fallback(PADDING_OPTIONS, padding, DEFAULT_PADDING)],
    system_arguments[:classes]
  )
end