Sha256: 0f5dfc812fa9e5e9ffe6857a9bad6b2806090a60d2706364dd3b28b171e8be80
Contents?: true
Size: 708 Bytes
Versions: 3
Compression:
Stored size: 708 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class MapPinIcon < 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: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0" ) s.circle(cx: "12", cy: "10", r: "3") 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_icon.rb |
phlex-lucide-0.427.1 | lib/phlex/lucide/icons/map_pin_icon.rb |
phlex-lucide-0.427.0 | lib/phlex/lucide/icons/map_pin_icon.rb |