Sha256: 3d25dc992d1a5454469eab1db43ad8906454be24986d1832527b36e83b8ae6e4
Contents?: true
Size: 856 Bytes
Versions: 26
Compression:
Stored size: 856 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Lucide class Wallpaper < 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.circle(cx: '8', cy: '9', r: '2') s.path( d: 'm9 17 6.1-6.1a2 2 0 0 1 2.81.01L22 15V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2' ) s.path(d: 'M8 21h8') s.path(d: 'M12 17v4') end end end end end end # rubocop:enable Layout/LineLength
Version data entries
26 entries across 26 versions & 2 rubygems