Sha256: 92fe8489f697ab272211cb94d11e7ff03fda0773d8b4e9162a8c648f69d692df
Contents?: true
Size: 943 Bytes
Versions: 14
Compression:
Stored size: 943 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Flag class Ga < Base def square svg( **attrs, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 512 512' ) do |s| s.g(fill_rule: 'evenodd') do s.path(fill: '#ffe700', d: 'M512 512H0V0h512z') s.path(fill: '#36a100', d: 'M512 170.7H0V0h512z') s.path(fill: '#006dbc', d: 'M512 512H0V341.3h512z') end end end def rectangle svg( **attrs, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 640 480' ) do |s| s.g(fill_rule: 'evenodd') do s.path(fill: '#ffe700', d: 'M640 480H0V0h640z') s.path(fill: '#36a100', d: 'M640 160H0V0h640z') s.path(fill: '#006dbc', d: 'M640 480H0V320h640z') end end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems