Sha256: cad791caf0398802e7be38a4523e0ac87178cc5b714972c9ae21fe4c3c9d3d5f
Contents?: true
Size: 780 Bytes
Versions: 14
Compression:
Stored size: 780 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class LocationX < 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: 'M13.5 21l-.224 -.448l-3.276 -6.552l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5l-3.622 10.03' ) s.path(d: 'M22 22l-5 -5') s.path(d: 'M17 22l5 -5') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems