Sha256: 918214284dd98ef41cd9412f444ab31b5efa2b81f38d14e5ec0630668d6c8984
Contents?: true
Size: 574 Bytes
Versions: 14
Compression:
Stored size: 574 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Music2 < 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.circle(cx: '8', cy: '18', r: '4') s.path(d: 'M12 18V2l7 4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems