Sha256: 59a4381d27b15a4802968bf2473a736e16a592857183a12302c23566e3546b13
Contents?: true
Size: 771 Bytes
Versions: 3
Compression:
Stored size: 771 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class EthernetPortIcon < 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.path( d: "m15 20 3-3h2a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h2l3 3z" ) s.path(d: "M6 8v1") s.path(d: "M10 8v1") s.path(d: "M14 8v1") s.path(d: "M18 8v1") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems