Class: Primer::ButtonGroup
- Defined in:
- app/components/primer/button_group.rb
Overview
Use ‘ButtonGroup` to render a series of buttons.
Constant Summary
Constants included from Status::Dsl
Constants included from ViewHelper
Constants included from TestSelectorHelper
TestSelectorHelper::TEST_SELECTOR_TAG
Constants included from FetchOrFallbackHelper
FetchOrFallbackHelper::InvalidValueError
Instance Method Summary collapse
-
#initialize(variant: Primer::ButtonComponent::DEFAULT_VARIANT, **system_arguments) ⇒ ButtonGroup
constructor
A new instance of ButtonGroup.
- #render? ⇒ Boolean
Methods included from JoinStyleArgumentsHelper
Methods included from TestSelectorHelper
Methods included from FetchOrFallbackHelper
#fetch_or_fallback, #fetch_or_fallback_boolean, #silence_deprecations?
Methods included from ClassNameHelper
Constructor Details
#initialize(variant: Primer::ButtonComponent::DEFAULT_VARIANT, **system_arguments) ⇒ ButtonGroup
Returns a new instance of ButtonGroup.
46 47 48 49 50 51 52 53 54 55 |
# File 'app/components/primer/button_group.rb', line 46 def initialize(variant: Primer::ButtonComponent::DEFAULT_VARIANT, **system_arguments) @variant = variant @system_arguments = system_arguments @system_arguments[:tag] ||= :div @system_arguments[:classes] = class_names( "BtnGroup", system_arguments[:classes] ) end |
Instance Method Details
#render? ⇒ Boolean
57 58 59 |
# File 'app/components/primer/button_group.rb', line 57 def render? .any? end |