Sha256: 473625e808313fdd4d15d5d68e6a21126411cddbc0a94bb17a82beafa466a1e5
Contents?: true
Size: 819 Bytes
Versions: 18
Compression:
Stored size: 819 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceTabletUp < 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: 'M12.5 21h-6.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8' ) s.path(d: 'M12.906 16.576a1 1 0 1 0 -.906 1.424') s.path(d: 'M19 22v-6') s.path(d: 'M22 19l-3 -3l-3 3') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems