Sha256: 8ca1c92bc3593023488bf7cb4e8d20a7978941b91f818438e5217573c13e7e87
Contents?: true
Size: 647 Bytes
Versions: 18
Compression:
Stored size: 647 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Proportions < 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.rect(width: '20', height: '16', x: '2', y: '4', rx: '2') s.path(d: 'M12 9v11') s.path(d: 'M2 9h13a2 2 0 0 1 2 2v9') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems