Sha256: 14b6f6c588bd735d3e3a54f5a144c9c27e57074d8c1c63042e3c77300c4fa288
Contents?: true
Size: 545 Bytes
Versions: 18
Compression:
Stored size: 545 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class RectangleVertical < 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' ) { |s| s.rect(width: '12', height: '20', x: '6', y: '2', rx: '2') } end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems