module Voom::Presenters::DSL::Components::Mixins::Chips

Public Instance Methods

chip(text= nil, **attribs, &block) click to toggle source
# File lib/voom/presenters/dsl/components/mixins/chips.rb, line 9
def chip(text= nil, **attribs, &block)
  self << Components::Chip.new(parent: self, text: text,
                                     **attribs, &block)
end