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