Class: UI::ItemHeader

Inherits:
Phlex::HTML
  • Object
show all
Includes:
ItemHeaderBehavior
Defined in:
app/components/ui/item_header.rb

Instance Method Summary collapse

Methods included from ItemHeaderBehavior

#item_header_classes, #item_header_html_attributes

Constructor Details

#initialize(classes: "", **attributes) ⇒ ItemHeader

Returns a new instance of ItemHeader.



6
7
8
9
# File 'app/components/ui/item_header.rb', line 6

def initialize(classes: "", **attributes)
  @classes = classes
  @attributes = attributes
end

Instance Method Details

#view_template(&block) ⇒ Object



11
12
13
# File 'app/components/ui/item_header.rb', line 11

def view_template(&block)
  div(**item_header_html_attributes, &block)
end