# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Lucide class Box < 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: 'M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z' ) s.path(d: 'm3.3 7 8.7 5 8.7-5') s.path(d: 'M12 22V12') end end end end end end # rubocop:enable Layout/LineLength