Sha256: 3a9f3f37fad3dcda00017e044e6fe0e9c26253435102607292991b80f7a93280
Contents?: true
Size: 690 Bytes
Versions: 26
Compression:
Stored size: 690 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ChartNoAxesColumnIncreasing < Base def view_template 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.line(x1: '12', x2: '12', y1: '20', y2: '10') s.line(x1: '18', x2: '18', y1: '20', y2: '4') s.line(x1: '6', x2: '6', y1: '20', y2: '16') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems