Sha256: 0c6ff204ca8dc14abb1f6f3007ca3a7d02163a2aec75dc6cde5601db88cdf3f4
Contents?: true
Size: 746 Bytes
Versions: 18
Compression:
Stored size: 746 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceIpadHorizontal < 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: 'M3 6a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-12z' ) s.path(d: 'M9 17h6') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems