Sha256: a6e9b71a182d869e801939486c0383e977172149818c62e493f6cbda66600d67
Contents?: true
Size: 603 Bytes
Versions: 3
Compression:
Stored size: 603 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class CornerUpRightIcon < 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: "15 14 20 9 15 4") s.path(d: "M4 20v-7a4 4 0 0 1 4-4h12") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems