Sha256: bdbfcbfd09b6a2ee91a06eca71937818715286758df3945cce4eb869e2fd9ed9
Contents?: true
Size: 822 Bytes
Versions: 12
Compression:
Stored size: 822 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class LocationDiscount < 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: 'M12.797 19.595l-2.797 -5.595l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5l-3.548 9.826' ) s.path(d: 'M16 21l5 -5') s.path(d: 'M21 21v.01') s.path(d: 'M16 16v.01') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems