Sha256: b3e2fd7c14b4e809003e5bc11e6869725c189a6019b3bf86d093344f115e189b
Contents?: true
Size: 592 Bytes
Versions: 14
Compression:
Stored size: 592 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class CornerUpLeft < 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.polyline(points: '9 14 4 9 9 4') s.path(d: 'M20 20v-7a4 4 0 0 0-4-4H4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems