Sha256: c63015dcfe66c8af637bf28313782bd8686ea6556b1b8819aa35e681821c4022
Contents?: true
Size: 681 Bytes
Versions: 14
Compression:
Stored size: 681 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class SquareFunction < 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.path(d: 'M9 17c2 0 2.8-1 2.8-2.8V10c0-2 1-3.3 3.2-3') s.path(d: 'M9 11.2h5.7') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems