Sha256: 7c07f1ddfbd0c70d31f7c65ce9185a0420d29ee619088474cc42382fb0f64044
Contents?: true
Size: 629 Bytes
Versions: 14
Compression:
Stored size: 629 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class DoorClosed < 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: '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
14 entries across 14 versions & 2 rubygems