Sha256: beed2c64c498d2b429dd8025dc4244ae589cd1661c79141f350f5cc4a60c88f5
Contents?: true
Size: 636 Bytes
Versions: 26
Compression:
Stored size: 636 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class DoorClosed < 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: 'M18 20V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14') s.path(d: 'M2 20h20') s.path(d: 'M14 12v.01') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems