Sha256: b810fb0f919bb2244d770664f4b8bc9c72e678cc229ecca8d5309249161f581c
Contents?: true
Size: 344 Bytes
Versions: 22
Compression:
Stored size: 344 Bytes
Contents
module Spina module MainNavigation class LinkComponent < ApplicationComponent def initialize(label, path, active: false) @label = label @path = path @active = active end def css_classes if @active "" else "opacity-50" end end end end end
Version data entries
22 entries across 22 versions & 1 rubygems