Sha256: 49ac1173153c8a4e93d9dcd3453a76241022fc59feee0fc965e6df24edb63eaa
Contents?: true
Size: 593 Bytes
Versions: 14
Compression:
Stored size: 593 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Megaphone < 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: 'm3 11 18-5v12L3 14v-3z') s.path(d: 'M11.6 16.8a3 3 0 1 1-5.8-1.6') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems