Sha256: 83d7c41b13ff80268b59090e474e730331a404e1139d69e0d9bde0cef1811199
Contents?: true
Size: 673 Bytes
Versions: 18
Compression:
Stored size: 673 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ChartNoAxesColumn < 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: '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
18 entries across 18 versions & 2 rubygems