Class: PhlexKit::SidebarGroupLabel

Inherits:
BaseComponent show all
Defined in:
app/components/phlex_kit/sidebar/sidebar_group_label.rb

Overview

Heading for a SidebarGroup, ported from shadcn/ui's SidebarGroupLabel. See sidebar.rb.

Instance Method Summary collapse

Methods inherited from BaseComponent

#on

Constructor Details

#initialize(**attrs) ⇒ SidebarGroupLabel

Returns a new instance of SidebarGroupLabel.



5
6
7
# File 'app/components/phlex_kit/sidebar/sidebar_group_label.rb', line 5

def initialize(**attrs)
  @attrs = attrs
end

Instance Method Details

#view_template(&block) ⇒ Object



9
10
11
# File 'app/components/phlex_kit/sidebar/sidebar_group_label.rb', line 9

def view_template(&block)
  div(**mix({ class: "pk-sidebar-group-label" }, @attrs), &block)
end