Sha256: 4af26a67e078542eb7e2b72c24ef3cd8c29f76109a5b31e15c0b788bce99bd7a

Contents?: true

Size: 526 Bytes

Versions: 24

Compression:

Stored size: 526 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Remix
      class FilterLine < 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:
                'M21 4V6H20L15 13.5V22H9V13.5L4 6H3V4H21ZM6.4037 6L11 12.8944V20H13V12.8944L17.5963 6H6.4037Z'
            )
          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/filter_line.rb
phlex-icons-0.4.0 lib/phlex/icons/remix/filter_line.rb
phlex-icons-0.3.0 lib/phlex/icons/remix/filter_line.rb
phlex-icons-0.2.0 lib/phlex/icons/remix/filter_line.rb