Sha256: 58e3bb6c69bdbcc69b9b6f5a4fcca07394e27ea8a307dae7094d31774e5e169f
Contents?: true
Size: 794 Bytes
Versions: 18
Compression:
Stored size: 794 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceIpadHorizontalX < 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 20h-8.5a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7' ) s.path(d: 'M22 22l-5 -5') s.path(d: 'M17 22l5 -5') s.path(d: 'M9 17h4') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems