Sha256: 625f3a6aa75da91cfa06c73149d808e2d7aad41f5acfb72e91cd0e20ca47347e
Contents?: true
Size: 605 Bytes
Versions: 3
Compression:
Stored size: 605 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class CornerRightDownIcon < Phlex::Lucide::Icon def view_template svg( xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewbox: "0 0 24 24", fill: "none", stroke: "currentColor", stroke_width: "2", stroke_linecap: "round", stroke_linejoin: "round", **props ) 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
Version data entries
3 entries across 3 versions & 1 rubygems