# frozen_string_literal: true module Phlex module Lucide class LampWallUpIcon < 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: "M11 4h6l3 7H8l3-7Z") s.path(d: "M14 11v5a2 2 0 0 1-2 2H8") s.path(d: "M4 15h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H4v-6Z") end end end end end