# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Remix class DeleteBin4Fill < 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: 'M20 7V21C20 21.5523 19.5523 22 19 22H5C4.44772 22 4 21.5523 4 21V7H2V5H22V7H20ZM11 10V17H13V10H11ZM7 2H17V4H7V2Z' ) end end end end end end # rubocop:enable Layout/LineLength