Sha256: fbad3cfe32bd67d4f80f137f21e257d26d6b4be0507ccc131059ecf02837b8d1
Contents?: true
Size: 667 Bytes
Versions: 14
Compression:
Stored size: 667 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class AudioWaveform < 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: 'M2 13a2 2 0 0 0 2-2V7a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0V4a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0v-4a2 2 0 0 1 2-2' ) end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems