Sha256: d8b8306c3aa597f84e84422b8068221c55c894a2cff48c2d5b4be702e5d3cab6

Contents?: true

Size: 709 Bytes

Versions: 10

Compression:

Stored size: 709 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Lucide
      class Move < Base
        def view_template
          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: 'M12 2v20')
            s.path(d: 'm15 19-3 3-3-3')
            s.path(d: 'm19 9 3 3-3 3')
            s.path(d: 'M2 12h20')
            s.path(d: 'm5 9-3 3 3 3')
            s.path(d: 'm9 5 3-3 3 3')
          end
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
phlex-icons-lucide-1.5.0 lib/phlex/icons/lucide/move.rb
phlex-icons-1.6.0 lib/phlex/icons/lucide/move.rb
phlex-icons-lucide-1.6.0 lib/phlex/icons/lucide/move.rb
phlex-icons-1.5.0 lib/phlex/icons/lucide/move.rb
phlex-icons-lucide-1.4.0 lib/phlex/icons/lucide/move.rb
phlex-icons-1.4.0 lib/phlex/icons/lucide/move.rb
phlex-icons-1.3.0 lib/phlex/icons/lucide/move.rb
phlex-icons-lucide-1.3.0 lib/phlex/icons/lucide/move.rb
phlex-icons-1.2.0 lib/phlex/icons/lucide/move.rb
phlex-icons-lucide-1.2.0 lib/phlex/icons/lucide/move.rb