Sha256: c1293df6d9bf5536e0fc122251083134776b43ed15907df301039fc170119dc4
Contents?: true
Size: 708 Bytes
Versions: 3
Compression:
Stored size: 708 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class Maximize2Icon < 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 3 21 3 21 9") s.polyline(points: "9 21 3 21 3 15") s.line(x1: "21", x2: "14", y1: "3", y2: "10") s.line(x1: "3", x2: "10", y1: "21", y2: "14") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems