Sha256: f043c5415cb00e45b72b5a0818cf9329783cf9f7f81929dc0d3d93f46bc4c10a
Contents?: true
Size: 684 Bytes
Versions: 14
Compression:
Stored size: 684 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class PilcrowLeft < 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.path(d: 'M14 3v11') s.path(d: 'M14 9h-3a3 3 0 0 1 0-6h9') s.path(d: 'M18 3v11') s.path(d: 'M22 18H2l4-4') s.path(d: 'm6 22-4-4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems