# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Lucide class Piano < 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: 'M18.5 8c-1.4 0-2.6-.8-3.2-2A6.87 6.87 0 0 0 2 9v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-8.5C22 9.6 20.4 8 18.5 8' ) s.path(d: 'M2 14h20') s.path(d: 'M6 14v4') s.path(d: 'M10 14v4') s.path(d: 'M14 14v4') s.path(d: 'M18 14v4') end end end end end end # rubocop:enable Layout/LineLength