Sha256: 9fda68af256a550b22e915cf05a6a71fefc4f712cfd2b189f6b1c7ec5c022fa5

Contents?: true

Size: 803 Bytes

Versions: 3

Compression:

Stored size: 803 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class MapPinPlusIcon < 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:
              "M19.914 11.105A7.298 7.298 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738"
          )
          s.circle(cx: "12", cy: "10", r: "3")
          s.path(d: "M16 18h6")
          s.path(d: "M19 15v6")
        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/map_pin_plus_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/map_pin_plus_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/map_pin_plus_icon.rb