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