Sha256: 44f88dadc442d6bba6d387bff56f67733f9ebb037923c2e4697a5336eedd5d12
Contents?: true
Size: 449 Bytes
Versions: 12
Compression:
Stored size: 449 Bytes
Contents
module Coprl module Presenters module DSL module Components class Badge < EventBase attr_accessor :badge, :icon, :text def initialize(**attribs_, &block) super(type: :badge, **attribs_, &block) @badge = attribs.delete(:badge) @icon = attribs.delete(:icon) @text = attribs.delete(:text) expand! end end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems