Sha256: e2b6762b97951f4158e4774b0fc8ca8f0533de33d890220c2f6ddea69d5a5ab1
Contents?: true
Size: 683 Bytes
Versions: 14
Compression:
Stored size: 683 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ChartNoAxesColumnIncreasing < Base def view_template 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.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
14 entries across 14 versions & 2 rubygems