Sha256: d40725f9e55b3a9631866a5ee5960ce3816adaf6ddfd1961ce3add410e15dbc8

Contents?: true

Size: 800 Bytes

Versions: 4

Compression:

Stored size: 800 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.polyline(points: '5 9 2 12 5 15')
            s.polyline(points: '9 5 12 2 15 5')
            s.polyline(points: '15 19 12 22 9 19')
            s.polyline(points: '19 9 22 12 19 15')
            s.line(x1: '2', x2: '22', y1: '12', y2: '12')
            s.line(x1: '12', x2: '12', y1: '2', y2: '22')
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
phlex-icons-lucide-1.1.0 lib/phlex/icons/lucide/move.rb
phlex-icons-1.1.0 lib/phlex/icons/lucide/move.rb
phlex-icons-1.0.0 lib/phlex/icons/lucide/move.rb
phlex-icons-lucide-1.0.0 lib/phlex/icons/lucide/move.rb