Sha256: 6f5ca5baa634241c0b9b05912d2edfe2879b446da29c69451721d2ea7d2a3d41

Contents?: true

Size: 512 Bytes

Versions: 24

Compression:

Stored size: 512 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Remix
      class SortAsc < 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:
                'M19 3L23 8H20V20H18V8H15L19 3ZM14 18V20H3V18H14ZM14 11V13H3V11H14ZM12 4V6H3V4H12Z'
            )
          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/sort_asc.rb
phlex-icons-0.4.0 lib/phlex/icons/remix/sort_asc.rb
phlex-icons-0.3.0 lib/phlex/icons/remix/sort_asc.rb
phlex-icons-0.2.0 lib/phlex/icons/remix/sort_asc.rb