# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Remix class Download2Fill < 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: 'M4 19H20V12H22V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V12H4V19ZM14 9H19L12 16L5 9H10V3H14V9Z' ) end end end end end end # rubocop:enable Layout/LineLength