Sha256: c2ace79ebbc3c7303cc2d045c0feaa31578d1b5591d10f302c3468a9c5c10376
Contents?: true
Size: 1.08 KB
Versions: 55
Compression:
Stored size: 1.08 KB
Contents
# frozen_string_literal: true module UiBibz::Ui::Core::Boxes::Components::Body # 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::Boxes::CardBodyTitle.new(content, options = nil, html_options = nil) # # UiBibz::Ui::Core::Boxes::CardBodyTitle.new(options = nil, html_options = nil) do # content # end # # ==== Examples # # UiBibz::Ui::Core::Boxes::CardBodyTitle.new.render # # UiBibz::Ui::Core::Boxes::CardBodyTitle.new do # 'Exemple' # end.render # class CardBodySubtitle < UiBibz::Ui::Core::Component # See UiBibz::Ui::Core::Component.initialize # Render html tag def pre_render content_tag :h6, content, html_options end private def component_html_classes 'card-subtitle mb-2 text-muted' end end end
Version data entries
55 entries across 55 versions & 1 rubygems