Sha256: eba3b66924b475fde501624e19fd8f880396a5e1ccc7021c171d240bd4374bea
Contents?: true
Size: 704 Bytes
Versions: 26
Compression:
Stored size: 704 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ListMusic < 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: 'M21 15V6') s.path(d: 'M18.5 18a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z') s.path(d: 'M12 12H3') s.path(d: 'M16 6H3') s.path(d: 'M12 18H3') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems