Sha256: 2dc81dec369d4b09b9a19aaf2a45f03947d8b3307a16bf12ec27df73bcbee9dc
Contents?: true
Size: 1.13 KB
Versions: 7
Compression:
Stored size: 1.13 KB
Contents
module UiBibz::Ui::Core::Cards::Components::Block # Create a card block title # # ==== Attributes # # * +content+ - Content of element # * +options+ - Options of element # * +html_options+ - Html Options of element # # ==== Options # # You can add HTML attributes using the +html_options+. # You can pass arguments in options attribute: # # ==== Signatures # # UiBibz::Ui::Core::Cards::CardBlockText.new(content, options = nil, html_options = nil) # # UiBibz::Ui::Core::Cards::CardBlockText.new(options = nil, html_options = nil) do # content # end # # ==== Examples # # UiBibz::Ui::Core::Cards::CardBlockText.new.render # # UiBibz::Ui::Core::Cards::CardBlockText.new do # 'Exemple' # end.render # class CardBlockText < UiBibz::Ui::Core::Component # See UiBibz::Ui::Core::Component.initialize def initialize content = nil, options = nil, html_options = nil, &block super end # Render html tag def render content_tag :p, content.html_safe, html_options end private def component_html_classes "card-text" end end end
Version data entries
7 entries across 7 versions & 1 rubygems