Sha256: 1a643c82382718a70e09f64175414b4ac8479c6228d5ee2f9220e94d4ce105d4
Contents?: true
Size: 590 Bytes
Versions: 6
Compression:
Stored size: 590 Bytes
Contents
# frozen_string_literal: true module UiBibz::Ui::Core::Boxes::Components # Create a card tab group # # This element is an extend of UiBibz::Ui::Core::Navigation::TabGroup. # # ==== Attributes # # * +content+ - Content of element # * +options+ - Options of element # * +html_options+ - Html Options of element # class CardTabGroup < UiBibz::Ui::Core::Navigations::TabGroup def initialize(content = nil, options = nil, html_options = nil, &block) super end private def component_html_classes super << 'card-header-tabs' end end end
Version data entries
6 entries across 6 versions & 1 rubygems