Sha256: 398922602809d346a7060c32e308b61a116d16c53a7ba335be1ae48baadd8c81

Contents?: true

Size: 701 Bytes

Versions: 4

Compression:

Stored size: 701 Bytes

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Remix
      class ArrowLeftDoubleLine < Base
        def view_template
          svg(
            **attrs,
            viewbox: '0 0 24 24',
            fill: 'currentColor',
            xmlns: 'http://www.w3.org/2000/svg'
          ) do |s|
            s.path(
              d:
                'M4.83578 12L11.0429 18.2071L12.4571 16.7929L7.66421 12L12.4571 7.20712L11.0429 5.79291L4.83578 12ZM10.4857 12L16.6928 18.2071L18.107 16.7929L13.3141 12L18.107 7.20712L16.6928 5.79291L10.4857 12Z'
            )
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
phlex-icons-remix-1.1.0 lib/phlex/icons/remix/arrow_left_double_line.rb
phlex-icons-1.1.0 lib/phlex/icons/remix/arrow_left_double_line.rb
phlex-icons-1.0.0 lib/phlex/icons/remix/arrow_left_double_line.rb
phlex-icons-remix-1.0.0 lib/phlex/icons/remix/arrow_left_double_line.rb