Sha256: f55e235eedf6c83b6d9eaf8e12af3856e76642c4a00536d3e57a5953a527c722
Contents?: true
Size: 662 Bytes
Versions: 26
Compression:
Stored size: 662 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class LampWallUp < Base def view_template svg( class: classes, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24', fill: 'none', stroke: 'currentColor', stroke_width: '2', stroke_linecap: 'round', stroke_linejoin: 'round' ) 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 end
Version data entries
26 entries across 26 versions & 2 rubygems