Sha256: 541bfe4a7b382f253a734c70bcf2fdf70f307fb326e75aff0fb7fbd967aadbdd

Contents?: true

Size: 516 Bytes

Versions: 24

Compression:

Stored size: 516 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Remix
      class QrScan2Fill < Base
        def view_template
          svg(
            class: classes,
            viewbox: '0 0 24 24',
            fill: 'currentColor',
            xmlns: 'http://www.w3.org/2000/svg'
          ) do |s|
            s.path(
              d:
                'M15 3H21V9H15V3ZM9 3V9H3V3H9ZM15 21V15H21V21H15ZM9 21H3V15H9V21ZM3 11H21V13H3V11Z'
            )
          end
        end
      end
    end
  end
end

Version data entries

24 entries across 24 versions & 2 rubygems

Version Path
phlex-icons-0.5.0 lib/phlex/icons/remix/qr_scan_2_fill.rb
phlex-icons-0.4.0 lib/phlex/icons/remix/qr_scan_2_fill.rb
phlex-icons-0.3.0 lib/phlex/icons/remix/qr_scan_2_fill.rb
phlex-icons-0.2.0 lib/phlex/icons/remix/qr_scan_2_fill.rb