Sha256: 8f529be8595f9142d34ff7ec8da251701f8823a26b0e9e29396bc567ba8877b6
Contents?: true
Size: 734 Bytes
Versions: 18
Compression:
Stored size: 734 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceIpadHorizontalCheck < 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: 'M15 19l2 2l4 -4') s.path(d: 'M9 17h2.5') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems