Sha256: 27e71935c4a21af400680d7d231443216ba743b3c89e77641b991c6051ea37a5
Contents?: true
Size: 643 Bytes
Versions: 14
Compression:
Stored size: 643 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class SquareArrowDownLeft < 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') s.path(d: 'm16 8-8 8') s.path(d: 'M16 16H8V8') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems