Sha256: ccb65014c190605c5b99f4d66a8e81943c79c8b44a4406185851dddf26b1acc0
Contents?: true
Size: 899 Bytes
Versions: 138
Compression:
Stored size: 899 Bytes
Contents
# frozen_string_literal: true module Primer module Alpha class Overlay # A `Overlay::Body` is a compositional component, used to render the # Body of an overlay. See <%= link_to_component(Primer::Alpha::Overlay) %>. class Body < Primer::Component # @param 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 def call render(Primer::BaseComponent.new(**@system_arguments)) { content } end end end end end
Version data entries
138 entries across 138 versions & 2 rubygems