Sha256: f95ba1d6cdba13cf1640973b1667552eb774a335683ca67142d61d97516db87c

Contents?: true

Size: 380 Bytes

Versions: 8

Compression:

Stored size: 380 Bytes

Contents

# frozen_string_literal: true

class Avo::ProfileItemComponent < ViewComponent::Base
  attr_reader :label
  attr_reader :icon
  attr_reader :path
  attr_reader :active
  attr_reader :target

  def initialize(label: nil, icon: nil, path: nil, active: :inclusive, target: nil)
    @label = label
    @icon = icon
    @path = path
    @active = active
    @target = target
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
avo-2.3.1.pre.6 app/components/avo/profile_item_component.rb
avo-2.3.1.pre.5 app/components/avo/profile_item_component.rb
avo-2.3.1.pre.4 app/components/avo/profile_item_component.rb
avo-2.3.1.pre.3 app/components/avo/profile_item_component.rb
avo-2.3.1.pre.2 app/components/avo/profile_item_component.rb
avo-2.3.1.pre.1 app/components/avo/profile_item_component.rb
avo-2.3.0 app/components/avo/profile_item_component.rb
avo-2.2.2 app/components/avo/profile_item_component.rb