Sha256: 628e8db48bd7478f1fa004e965325a8c29a5ae5d041877dab723b1fe4068214e
Contents?: true
Size: 655 Bytes
Versions: 14
Compression:
Stored size: 655 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class LampWallUp < Base def view_template svg( **attrs, 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
14 entries across 14 versions & 2 rubygems