rx/presenters

View on GitHub
lib/voom/presenters/dsl/components/icon.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Voom
  module Presenters
    module DSL
      module Components
        class Icon < IconBase
          include Mixins::Tooltips
          attr_accessor :text

          def initialize(**attribs_, &block)
            super(**attribs_, &block)
            @text = attribs.delete(:text)
            expand!
          end
        end
      end
    end
  end
end