Sha256: 019c9dd0ee54d79a0e21e07c9e1ed939c8e5507019e27486a83e65109773f83e
Contents?: true
Size: 744 Bytes
Versions: 12
Compression:
Stored size: 744 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DoorExit < Base def filled raise NotImplementedError end def outline 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: '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
12 entries across 12 versions & 2 rubygems