Sha256: f1fe3949cdaaba52070094210e74800c5e5d5468168fadf0c712a43a446612cc
Contents?: true
Size: 598 Bytes
Versions: 14
Compression:
Stored size: 598 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class CornerDownRight < 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: '15 10 20 15 15 20') s.path(d: 'M4 4v7a4 4 0 0 0 4 4h12') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems