Class: GovukComponent::TabComponent

Inherits:
Base
  • Object
show all
Defined in:
app/components/govuk_component/tab_component.rb

Defined Under Namespace

Classes: Tab

Instance Attribute Summary collapse

Attributes inherited from Base

#html_attributes

Attributes included from GovukComponent::Traits::CustomHtmlAttributes

#html_attributes

Instance Method Summary collapse

Methods included from GovukComponent::Traits::CustomClasses

#classes

Methods included from Govuk::Components::Helpers::CssUtilities

#combine_classes

Constructor Details

#initialize(title:, id: nil, classes: [], html_attributes: {}) ⇒ TabComponent

Returns a new instance of TabComponent.



6
7
8
9
10
11
# File 'app/components/govuk_component/tab_component.rb', line 6

def initialize(title:, id: nil, classes: [], html_attributes: {})
  super(classes: classes, html_attributes: html_attributes)

  @title = title
  @id    = id
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



4
5
6
# File 'app/components/govuk_component/tab_component.rb', line 4

def id
  @id
end

#titleObject (readonly)

Returns the value of attribute title.



4
5
6
# File 'app/components/govuk_component/tab_component.rb', line 4

def title
  @title
end