# frozen_string_literal: true module Phlex module Icons module Tabler class MapPinCheck < 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: 'M11.87 21.48a1.992 1.992 0 0 1 -1.283 -.58l-4.244 -4.243a8 8 0 1 1 13.355 -3.474' ) s.path(d: 'M15 19l2 2l4 -4') end end end end end end