Sha256: e2f5d5e088302e166a4e5ff069326984de4ee0b2178b94ce35e06ccf3962d616

Contents?: true

Size: 635 Bytes

Versions: 25

Compression:

Stored size: 635 Bytes

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Bootstrap
      class DisplayFill < 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:
                'M6 12q0 1-.25 1.5H5a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1h-.75Q10 13 10 12h4c2 0 2-2 2-2V4c0-2-2-2-2-2H2C0 2 0 4 0 4v6c0 2 2 2 2 2z'
            )
          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/display_fill.rb
phlex-icons-0.4.0 lib/phlex/icons/bootstrap/display_fill.rb
phlex-icons-0.3.0 lib/phlex/icons/bootstrap/display_fill.rb
phlex-icons-0.2.0 lib/phlex/icons/bootstrap/display_fill.rb
phlex-icons-0.1.0 lib/phlex/icons/bootstrap/display_fill.rb