Sha256: e66e8b78091b544cfb01b2f6bcc3614fa3bb79247d96a5c5af92ccb56151b1db
Contents?: true
Size: 737 Bytes
Versions: 14
Compression:
Stored size: 737 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DoorExit < Base def filled raise NotImplementedError end def outline 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: 'M13 12v.01') s.path(d: 'M3 21h18') s.path(d: 'M5 21v-16a2 2 0 0 1 2 -2h7.5m2.5 10.5v7.5') s.path(d: 'M14 7h7m-3 -3l3 3l-3 3') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems