Sha256: 8cc7201d0a389ba2646060636069193782446a1898516dd8c018dd7b87aebc19

Contents?: true

Size: 764 Bytes

Versions: 25

Compression:

Stored size: 764 Bytes

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Bootstrap
      class Collection < Base
        def view_template
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            fill: 'currentColor',
            viewbox: '0 0 16 16'
          ) do |s|
            s.path(
              d:
                'M2.5 3.5a.5.5 0 0 1 0-1h11a.5.5 0 0 1 0 1zm2-2a.5.5 0 0 1 0-1h7a.5.5 0 0 1 0 1zM0 13a1.5 1.5 0 0 0 1.5 1.5h13A1.5 1.5 0 0 0 16 13V6a1.5 1.5 0 0 0-1.5-1.5h-13A1.5 1.5 0 0 0 0 6zm1.5.5A.5.5 0 0 1 1 13V6a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5z'
            )
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
phlex-icons-0.5.0 lib/phlex/icons/bootstrap/collection.rb
phlex-icons-0.4.0 lib/phlex/icons/bootstrap/collection.rb
phlex-icons-0.3.0 lib/phlex/icons/bootstrap/collection.rb
phlex-icons-0.2.0 lib/phlex/icons/bootstrap/collection.rb
phlex-icons-0.1.0 lib/phlex/icons/bootstrap/collection.rb