Sha256: 561df53178b25188d37596893f5d5ed454e33f9dd5b5f5aaf689d0ed3c9d161e
Contents?: true
Size: 327 Bytes
Versions: 1
Compression:
Stored size: 327 Bytes
Contents
# frozen_string_literal: true class Avo::NavigationLinkComponent < ViewComponent::Base attr_reader :label attr_reader :path attr_reader :active attr_reader :size def initialize(label: nil, path: nil, active: :inclusive, size: :md) @label = label @path = path @active = active @size = size end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
avo-1.22.0.pre.1 | app/components/avo/navigation_link_component.rb |