Sha256: 21dce6bb3b257118edfe7ca58fa5f2aa1906136c71df92e5ae296452e6614240

Contents?: true

Size: 709 Bytes

Versions: 25

Compression:

Stored size: 709 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Flag
      class Pe < Base
        def square
          svg(
            class: classes, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 512 512'
          ) do |s|
            s.path(fill: '#D91023', d: 'M0 0h512v512H0z')
            s.path(fill: '#fff', d: 'M170.7 0h170.6v512H170.7z')
          end
        end

        def rectangle
          svg(
            class: classes, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 640 480'
          ) do |s|
            s.path(fill: '#D91023', d: 'M0 0h640v480H0z')
            s.path(fill: '#fff', d: 'M213.3 0h213.4v480H213.3z')
          end
        end
      end
    end
  end
end

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
phlex-icons-0.5.0 lib/phlex/icons/flag/pe.rb
phlex-icons-0.4.0 lib/phlex/icons/flag/pe.rb
phlex-icons-0.3.0 lib/phlex/icons/flag/pe.rb
phlex-icons-0.2.0 lib/phlex/icons/flag/pe.rb
phlex-icons-0.1.0 lib/phlex/icons/flag/pe.rb