# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Flag class Ls < Base def square svg( **attrs, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 512 512' ) do |s| s.path(fill: '#fff', d: 'M0 0h512v512H0z') s.path(fill: '#009543', d: 'M0 358.4h512V512H0z') s.path(fill: '#00209f', d: 'M0 0h512v153.6H0z') s.path( stroke: '#000', stroke_width: '1.7', d: 'M257.6 163.1c-3 0-5.8 3.3-5.8 3.3l.3 34.5-11 11.5h9l-.2 19.7-52.2 70.4-7.7-2.7-13.5 28.8s33.4 20.9 81.8 20.3c53.2-.7 82-21.3 82-21.3l-13.9-28.4-6.8 3-53-70v-20.4h8.8l-12-11.3.1-34.4s-3-3-5.9-3z' ) s.path( fill: 'none', stroke: '#000', stroke_width: '8.5', d: 'M275.8 245.8h-36.1s-13.1-27.6-11-47c2.2-19.6 13.4-28.9 28.4-29 17.6-.3 26.8 8.6 29.6 28.3 2.8 19.5-10.9 47.7-10.9 47.7z' ) s.path( fill: '#fff', d: 'M194.5 311.6c-.6.8-5 9.4-5 9.4l7.5-1.6zm4.3 11.2-7.9 2.6 9.5 3.7zm3.6-11 3.9 11.6 9.6-2.8-2.5-5.5zm6 15.7 1.4 4.7 12.8 3.2-5-10.8-9.1 3zm14.2-9.8 4.5 10.8 9.7-3.7-3.2-4.8zm6.3 14.7 1.6 4.2 15 2.1-6.4-9.8zm14.4-11.6 5.5 9.7 14-5.1-1.6-3.8-18-.8zm8 13.2 3 5.1 17.3-.6-6.5-9.6zm18.3-12.8 4.8 8 11-5.2-3-4.3zm18.1 6.1-11 5.5 3 4.8 14.7-2.4zm3.6-8.4 5.7 7 9.2-7.2-3.1-3.4zm16.9 3.7-8.9 6.7 2.4 4.1 12.2-3.1zm12.2-14 2.2 3.2-6.1 9-6.3-8zm4.1 7.9 3.8 7.5-7.5 2.5-.6-3.5z' ) end end def rectangle svg( **attrs, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 640 480' ) do |s| s.path(fill: '#fff', d: 'M0 0h640v480H0z') s.path(fill: '#009543', d: 'M0 336h640v144H0z') s.path(fill: '#00209f', d: 'M0 0h640v144H0z') s.path( stroke: '#000', stroke_width: '1.6', d: 'M319.6 153c-2.7 0-5.4 3-5.4 3l.3 32.4-10.3 10.7h8.3v18.5l-49 66-7.2-2.6-12.7 27s31.3 19.6 76.7 19c49.8-.5 76.9-19.9 76.9-19.9l-13-26.6-6.5 2.8-49.6-65.6v-19.1h8.2L325.1 188v-32.2s-2.7-3-5.5-2.9z' ) s.path( fill: 'none', stroke: '#000', stroke_width: '8', d: 'M336.7 230.4h-33.9s-12.2-25.9-10.3-44c2-18.4 12.6-27.1 26.6-27.3 16.6-.1 25.2 8.1 27.8 26.6 2.6 18.3-10.2 44.7-10.2 44.7z' ) s.path( fill: '#fff', d: 'M260.5 292.1c-.6.7-4.7 8.9-4.7 8.9l7-1.5zm4 10.5-7.4 2.4 8.9 3.5zm3.3-10.3 3.7 10.9 9-2.6-2.3-5.2zm5.8 14.8 1.2 4.4 12 3-4.8-10.2zm13.2-9.3 4.3 10.2 9-3.5-3-4.5zm6 13.9 1.4 3.8 14 2-5.9-9.2-9.6 3.4zm13.4-11 5.2 9.1 13-4.8-1.4-3.5-16.8-.7zm7.6 12.4 2.7 4.8 16.2-.5-6-9-13 4.7zm17.1-12 4.4 7.6 10.4-5-2.8-4zm17 5.8-10.3 5.1 2.7 4.5 13.8-2.2zm3.3-8 5.3 6.7 8.7-6.9-3-3zm15.9 3.5-8.3 6.3 2.2 3.9 11.4-3zm11.4-13 2 2.9-5.7 8.5-5.9-7.6zm3.9 7.3 3.5 7-7 2.4-.6-3.3 4-6z' ) end end end end end end # rubocop:enable Layout/LineLength