Sha256: 0ed1d30d0f57b538fc6776e072885282c1541dd85d43db904a85dfc619d6411a
Contents?: true
Size: 714 Bytes
Versions: 26
Compression:
Stored size: 714 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class MegaphoneOff < Base def view_template 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: '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
26 entries across 26 versions & 2 rubygems