Sha256: f7428e42f533d73a11f8159497e1c7dcaa3b9414d0212046a44f08a53d3ac1b0
Contents?: true
Size: 809 Bytes
Versions: 25
Compression:
Stored size: 809 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Flag class Bq < Base def square svg( class: classes, 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( class: classes, 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
25 entries across 25 versions & 2 rubygems