Sha256: 4df196f71cf1666d9d50a421e399c9c3f646fd7696a22166fb1f93fcbed3240a
Contents?: true
Size: 834 Bytes
Versions: 14
Compression:
Stored size: 834 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class MapPinUp < 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.789 21.324a2 2 0 0 1 -2.202 -.424l-4.244 -4.243a8 8 0 1 1 13.59 -4.626' ) s.path(d: 'M19 22v-6') s.path(d: 'M22 19l-3 -3l-3 3') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems