Sha256: 4553b5329789d0625e141c94b06926d773dcead616b2c9e2f6889bae30bd810a
Contents?: true
Size: 794 Bytes
Versions: 14
Compression:
Stored size: 794 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class MapPinMinus < Base def filled raise NotImplementedError end def outline 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: 'M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0') s.path( d: 'M12.758 21.337a2 2 0 0 1 -2.171 -.437l-4.244 -4.243a8 8 0 1 1 12.585 -1.652' ) s.path(d: 'M16 19h6') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems