Sha256: 3db7e16f44c897cb0eb3302e791cf0a28fde54d9cd587c04a069953a0cdbbbfa
Contents?: true
Size: 826 Bytes
Versions: 18
Compression:
Stored size: 826 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceTabletCode < 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: 'M11.5 21h-5.5a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v9' ) s.path(d: 'M12.344 16.06a1 1 0 0 0 -1.07 1.627') s.path(d: 'M20 21l2 -2l-2 -2') s.path(d: 'M17 17l-2 2l2 2') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems