Sha256: 64b274a3b8fb4f381f22804eeea148f83810889b37bf57da37d04b007a36ff16
Contents?: true
Size: 776 Bytes
Versions: 14
Compression:
Stored size: 776 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceIpadHorizontalCode < 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 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7') s.path(d: 'M9 17h2.5') 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
14 entries across 14 versions & 2 rubygems