Sha256: 6e90ce819114cf0cae139de6b57aa4e8cd9ae3da925427ea5197a54a710355a8
Contents?: true
Size: 795 Bytes
Versions: 18
Compression:
Stored size: 795 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Flag class Bq < Base def square svg( **attrs, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 512 512' ) do |s| s.path(fill: '#21468b', d: 'M0 0h512v512H0z') s.path(fill: '#fff', d: 'M0 0h512v341.3H0z') s.path(fill: '#ae1c28', d: 'M0 0h512v170.7H0z') end end def rectangle svg( **attrs, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 640 480' ) do |s| s.path(fill: '#21468b', d: 'M0 0h640v480H0z') s.path(fill: '#fff', d: 'M0 0h640v320H0z') s.path(fill: '#ae1c28', d: 'M0 0h640v160H0z') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems