Sha256: 69988b7c31e7ae3dd34d067a7df81cabc817e1feb1e101cebb56823f84f0cdb4

Contents?: true

Size: 805 Bytes

Versions: 3

Compression:

Stored size: 805 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class CherryIcon < Phlex::Lucide::Icon
      def view_template
        svg(
          xmlns: "http://www.w3.org/2000/svg",
          width: size,
          height: size,
          viewbox: "0 0 24 24",
          fill: "none",
          stroke: "currentColor",
          stroke_width: "2",
          stroke_linecap: "round",
          stroke_linejoin: "round",
          **props
        ) do |s|
          s.path(d: "M2 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z")
          s.path(d: "M12 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z")
          s.path(d: "M7 14c3.22-2.91 4.29-8.75 5-12 1.66 2.38 4.94 9 5 12")
          s.path(d: "M22 9c-4.29 0-7.14-2.33-10-7 5.71 0 10 4.67 10 7Z")
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
phlex-lucide-0.428.0 lib/phlex/lucide/icons/cherry_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/cherry_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/cherry_icon.rb