Sha256: 47d6a0683395d85b8798c45f3aafb6eba7963287e68acb5b76f842af2b8887fd
Contents?: true
Size: 640 Bytes
Versions: 3
Compression:
Stored size: 640 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class LaptopMinimalIcon < 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.rect(width: "18", height: "12", x: "3", y: "4", rx: "2", ry: "2") s.line(x1: "2", x2: "22", y1: "20", y2: "20") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems