Sha256: 83dd45abcedf1cd2bb3bae3ea7c8e5dca23adb3e55326b47a9e59345836b2519

Contents?: true

Size: 959 Bytes

Versions: 4

Compression:

Stored size: 959 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Lucide
      class Ship < 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 10.189V14')
            s.path(d: 'M12 2v3')
            s.path(d: 'M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6')
            s.path(
              d:
                'M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76'
            )
            s.path(
              d:
                'M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1'
            )
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
phlex-icons-lucide-1.8.0 lib/phlex/icons/lucide/ship.rb
phlex-icons-1.8.0 lib/phlex/icons/lucide/ship.rb
phlex-icons-1.7.0 lib/phlex/icons/lucide/ship.rb
phlex-icons-lucide-1.7.0 lib/phlex/icons/lucide/ship.rb