Sha256: b18e2eebe2c022f70e826b9ac56498dc837d924ac1a90408cc23415fa3275603
Contents?: true
Size: 717 Bytes
Versions: 14
Compression:
Stored size: 717 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ScreenShareOff < Base def view_template 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: 'M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3') s.path(d: 'M8 21h8') s.path(d: 'M12 17v4') s.path(d: 'm22 3-5 5') s.path(d: 'm17 3 5 5') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems