Sha256: 10b484acd6376733bb780e8d6f5dc5e1a3f928d7bc989688000a373afaa553cb
Contents?: true
Size: 640 Bytes
Versions: 26
Compression:
Stored size: 640 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Lamp < 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: 'M8 2h8l4 10H4L8 2Z') s.path(d: 'M12 12v6') s.path(d: 'M8 22v-2c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v2H8Z') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems