Class: Primer::TextComponent
- Defined in:
- app/components/primer/text_component.rb
Overview
‘Text` is a wrapper component that will apply typography styles to the text inside.
Constant Summary collapse
- DEFAULT_TAG =
:span
Constants included from Status::Dsl
Constants included from ViewHelper
Constants included from TestSelectorHelper
Primer::TestSelectorHelper::TEST_SELECTOR_TAG
Constants included from FetchOrFallbackHelper
FetchOrFallbackHelper::InvalidValueError
Instance Method Summary collapse
- #call ⇒ Object
-
#initialize(tag: DEFAULT_TAG, **system_arguments) ⇒ TextComponent
constructor
A new instance of TextComponent.
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(tag: DEFAULT_TAG, **system_arguments) ⇒ TextComponent
Returns a new instance of TextComponent.
16 17 18 19 |
# File 'app/components/primer/text_component.rb', line 16 def initialize(tag: DEFAULT_TAG, **system_arguments) @system_arguments = system_arguments @system_arguments[:tag] = tag end |
Instance Method Details
#call ⇒ Object
21 22 23 |
# File 'app/components/primer/text_component.rb', line 21 def call render(Primer::BaseComponent.new(**@system_arguments)) { content } end |