Sha256: a169084c85b6bafe885cc9d14e55b6f8ae98b92c1c1e512956a3742bd0690eb1
Contents?: true
Size: 707 Bytes
Versions: 18
Compression:
Stored size: 707 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class MegaphoneOff < 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: 'M9.26 9.26 3 11v3l14.14 3.14') s.path(d: 'M21 15.34V6l-7.31 2.03') s.path(d: 'M11.6 16.8a3 3 0 1 1-5.8-1.6') s.line(x1: '2', x2: '22', y1: '2', y2: '22') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems