Sha256: 767cfd98d6dfafac029a99b0fbd8ffc52114423a76290252c2343461383ea21e
Contents?: true
Size: 665 Bytes
Versions: 26
Compression:
Stored size: 665 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class BedSingle < 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: 'M3 20v-8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8') s.path(d: 'M5 10V6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4') s.path(d: 'M3 18h18') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems