Sha256: dab1033dae9f37dd5637d9be1bbb65e5a54e9b07eb32e0af28a2ca90478111e0
Contents?: true
Size: 807 Bytes
Versions: 12
Compression:
Stored size: 807 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ScreenShareOff < Base def filled raise NotImplementedError end def outline svg( class: classes, 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: 'M21 12v3a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h9') s.path(d: 'M7 20l10 0') s.path(d: 'M9 16l0 4') s.path(d: 'M15 16l0 4') s.path(d: 'M17 8l4 -4m-4 0l4 4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems