Sha256: c0557bd09d9be293a3810857dfac8fb34cea733492ce0b01db02c04a493118f7
Contents?: true
Size: 866 Bytes
Versions: 12
Compression:
Stored size: 866 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class FlagDiscount < 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.804 14.641a5.02 5.02 0 0 1 -.804 -.641a5 5 0 0 0 -7 0v-9a5 5 0 0 1 7 0a5 5 0 0 0 7 0v8' ) s.path(d: 'M5 21v-7') 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