Sha256: 5089dc04dff2e18e79d8add0765905a431b8540d986462703a2816acffd28930
Contents?: true
Size: 782 Bytes
Versions: 14
Compression:
Stored size: 782 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ChartHistogram < 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: 'M3 3v18h18') s.path(d: 'M20 18v3') s.path(d: 'M16 16v5') s.path(d: 'M12 13v8') s.path(d: 'M8 16v5') s.path(d: 'M3 11c6 0 5 -5 9 -5s3 5 9 5') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems