Sha256: 82717dd99c2b9c92a38ecea80c5e16f746695a3193ec73cc2fe85100779c0481
Contents?: true
Size: 599 Bytes
Versions: 26
Compression:
Stored size: 599 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class CornerLeftUp < 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.polyline(points: '14 9 9 4 4 9') s.path(d: 'M20 20h-7a4 4 0 0 1-4-4V4') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems