Sha256: cfb3c3a6e648a6f13061296ec413f239dc5630fb6de524206d925afa5ce80d0c

Contents?: true

Size: 1.32 KB

Versions: 14

Compression:

Stored size: 1.32 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class ArrowMoveLeft < Base
        def filled
          svg(
            **attrs,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'currentColor'
          ) do |s|
            s.path(
              d:
                'M6.707 8.293a1 1 0 0 1 0 1.414l-1.292 1.293h7.585a1 1 0 0 1 0 2h-7.585l1.292 1.293a1 1 0 0 1 .083 1.32l-.083 .094a1 1 0 0 1 -1.414 0l-3 -3a1 1 0 0 1 -.097 -.112l-.071 -.11l-.054 -.114l-.035 -.105l-.025 -.118l-.007 -.058l-.004 -.09l.003 -.075l.017 -.126l.03 -.111l.044 -.111l.052 -.098l.067 -.096l.08 -.09l3 -3a1 1 0 0 1 1.414 0m12.293 .707a3 3 0 1 1 0 6a3 3 0 0 1 0 -6'
            )
          end
        end

        def outline
          svg(
            **attrs,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'none',
            stroke: 'currentColor',
            stroke_width: '2',
            stroke_linecap: 'round',
            stroke_linejoin: 'round'
          ) do |s|
            s.path(d: 'M13 12h-10')
            s.path(d: 'M6 15l-3 -3l3 -3')
            s.path(d: 'M17 12a2 2 0 1 1 4 0a2 2 0 0 1 -4 0z')
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
phlex-icons-tabler-1.6.0 lib/phlex/icons/tabler/arrow_move_left.rb
phlex-icons-1.6.0 lib/phlex/icons/tabler/arrow_move_left.rb
phlex-icons-tabler-1.5.0 lib/phlex/icons/tabler/arrow_move_left.rb
phlex-icons-1.5.0 lib/phlex/icons/tabler/arrow_move_left.rb
phlex-icons-tabler-1.4.0 lib/phlex/icons/tabler/arrow_move_left.rb
phlex-icons-1.4.0 lib/phlex/icons/tabler/arrow_move_left.rb
phlex-icons-1.3.0 lib/phlex/icons/tabler/arrow_move_left.rb
phlex-icons-tabler-1.3.0 lib/phlex/icons/tabler/arrow_move_left.rb
phlex-icons-tabler-1.2.0 lib/phlex/icons/tabler/arrow_move_left.rb
phlex-icons-1.2.0 lib/phlex/icons/tabler/arrow_move_left.rb
phlex-icons-tabler-1.1.0 lib/phlex/icons/tabler/arrow_move_left.rb
phlex-icons-1.1.0 lib/phlex/icons/tabler/arrow_move_left.rb
phlex-icons-1.0.0 lib/phlex/icons/tabler/arrow_move_left.rb
phlex-icons-tabler-1.0.0 lib/phlex/icons/tabler/arrow_move_left.rb