Sha256: 2db89dacf2c8cac85cac027ca7001f968e1a9ccf1f3502827f2d781dd8c69830
Contents?: true
Size: 605 Bytes
Versions: 26
Compression:
Stored size: 605 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class CornerRightDown < 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: '10 15 15 20 20 15') s.path(d: 'M4 4h7a4 4 0 0 1 4 4v12') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems