Sha256: e90ccfa389fa1b775f7ba7590b2b2658755513fac9ac6e0d4a3dd318a31f2621
Contents?: true
Size: 898 Bytes
Versions: 14
Compression:
Stored size: 898 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class MapPinQuestion < 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: 'M14.997 19.317l-1.583 1.583a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 13.657 -5.584' ) s.path(d: 'M19 22v.01') s.path(d: 'M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems