# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Remix class UploadLine < Base def view_template svg( class: classes, viewbox: '0 0 24 24', fill: 'currentColor', xmlns: 'http://www.w3.org/2000/svg' ) do |s| s.path( d: 'M3 19H21V21H3V19ZM13 5.82843V17H11V5.82843L4.92893 11.8995L3.51472 10.4853L12 2L20.4853 10.4853L19.0711 11.8995L13 5.82843Z' ) end end end end end end # rubocop:enable Layout/LineLength