# frozen_string_literal: true module Phlex module Icons module Tabler class MapPinUp < Base def filled raise NotImplementedError end def outline svg( class: classes, 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