Sha256: 14657a4d67147972d2b714c8569c634adc225aa6054a0b633a385105f17e0570
Contents?: true
Size: 660 Bytes
Versions: 3
Compression:
Stored size: 660 Bytes
Contents
# 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
Version data entries
3 entries across 3 versions & 1 rubygems