Sha256: 4c93204a0dc3b0c355025506bd070f34fac92c277d99d3ad19042a8ade90bc7c

Contents?: true

Size: 634 Bytes

Versions: 24

Compression:

Stored size: 634 Bytes

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Remix
      class ArrowRightLine < 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:
                'M16.1716 10.9999L10.8076 5.63589L12.2218 4.22168L20 11.9999L12.2218 19.778L10.8076 18.3638L16.1716 12.9999H4V10.9999H16.1716Z'
            )
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

24 entries across 24 versions & 2 rubygems

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