Sha256: 8d6705f282f9dc330c96292e2972e62586a227522786189567e7293baa69594e
Contents?: true
Size: 827 Bytes
Versions: 14
Compression:
Stored size: 827 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceDesktopDown < 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.5 16h-9.5a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7.5' ) s.path(d: 'M7 20h5') s.path(d: 'M9 16v4') s.path(d: 'M19 16v6') s.path(d: 'M22 19l-3 3l-3 -3') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems