Sha256: 71c1081a5e613c2e24033918e5ec31db1d12342e788b856ad343127a84a6d192
Contents?: true
Size: 795 Bytes
Versions: 14
Compression:
Stored size: 795 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Sheet < 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: '18', height: '18', x: '3', y: '3', rx: '2', ry: '2') s.line(x1: '3', x2: '21', y1: '9', y2: '9') s.line(x1: '3', x2: '21', y1: '15', y2: '15') s.line(x1: '9', x2: '9', y1: '9', y2: '21') s.line(x1: '15', x2: '15', y1: '9', y2: '21') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems