Sha256: 23235924f035a9c592b57641eec2ec97e5bea55bb9069b0f4386ec3805fce6a8

Contents?: true

Size: 1.57 KB

Versions: 26

Compression:

Stored size: 1.57 KB

Contents

# frozen_string_literal: true

# rubocop:disable Metrics/BlockLength
module Phlex
  module Icons
    module Lucide
      class Wheat < Base
        def view_template
          svg(
            class: classes,
            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: 'M2 22 16 8')
            s.path(
              d:
                'M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z'
            )
            s.path(
              d:
                'M7.47 8.53 9 7l1.53 1.53a3.5 3.5 0 0 1 0 4.94L9 15l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z'
            )
            s.path(
              d:
                'M11.47 4.53 13 3l1.53 1.53a3.5 3.5 0 0 1 0 4.94L13 11l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z'
            )
            s.path(d: 'M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z')
            s.path(
              d:
                'M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z'
            )
            s.path(
              d:
                'M15.47 13.47 17 15l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z'
            )
            s.path(
              d:
                'M19.47 9.47 21 11l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L13 11l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z'
            )
          end
        end
      end
    end
  end
end
# rubocop:enable Metrics/BlockLength

Version data entries

26 entries across 26 versions & 2 rubygems

Version Path
phlex-icons-lucide-0.6.0 lib/phlex/icons/lucide/wheat.rb
phlex-icons-0.5.0 lib/phlex/icons/lucide/wheat.rb
phlex-icons-0.4.0 lib/phlex/icons/lucide/wheat.rb
phlex-icons-0.3.0 lib/phlex/icons/lucide/wheat.rb
phlex-icons-0.2.0 lib/phlex/icons/lucide/wheat.rb
phlex-icons-0.1.0 lib/phlex/icons/lucide/wheat.rb