Sha256: 81654afed8fbd5bc316d7f1a72c7cf99afe913b8c95e654875c406df12b01b00
Contents?: true
Size: 870 Bytes
Versions: 18
Compression:
Stored size: 870 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class PictureInPictureOff < 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 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4') s.path( d: 'M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z' ) s.path(d: 'M7 9l4 4') s.path(d: 'M7 12v-3h3') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems