# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Lucide class Delete < 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: 'M10 5a2 2 0 0 0-1.344.519l-6.328 5.74a1 1 0 0 0 0 1.481l6.328 5.741A2 2 0 0 0 10 19h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2z' ) s.path(d: 'm12 9 6 6') s.path(d: 'm18 9-6 6') end end end end end end # rubocop:enable Layout/LineLength