Sha256: 9d9d9c2053e9f2104cda4cb7b7125cb146f8b74a6cbd144c9115a902acb5f740
Contents?: true
Size: 648 Bytes
Versions: 26
Compression:
Stored size: 648 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class SquareArrowLeft < Base def view_template svg( class: classes, 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: 'm12 8-4 4 4 4') s.path(d: 'M16 12H8') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems