# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Remix class PlayList2Line < Base def view_template svg( **attrs, viewbox: '0 0 24 24', fill: 'currentColor', xmlns: 'http://www.w3.org/2000/svg' ) do |s| s.path( d: 'M22 18V20H2V18H22ZM2 3.5L10 8.5L2 13.5V3.5ZM22 11V13H12V11H22ZM4 7.1085V9.8915L6.22641 8.5L4 7.1085ZM22 4V6H12V4H22Z' ) end end end end end end # rubocop:enable Layout/LineLength