Sha256: e4d9c893536a47731b5015f86be747c84e2d046da68ce114ab835b57001e8936
Contents?: true
Size: 672 Bytes
Versions: 3
Compression:
Stored size: 672 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class AppWindowMacIcon < 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: "20", height: "16", x: "2", y: "4", rx: "2") s.path(d: "M6 8h.01") s.path(d: "M10 8h.01") s.path(d: "M14 8h.01") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems