Sha256: 0b31eb4accc91055e17692514c97e29b6ad891328b4afbc15b605bdf49b3c93c
Contents?: true
Size: 826 Bytes
Versions: 14
Compression:
Stored size: 826 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceDesktopUp < 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: 'M19 22v-6') s.path(d: 'M22 19l-3 -3l-3 3') s.path(d: 'M7 20h5') s.path(d: 'M9 16v4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems