Class: PhlexIcons::Flag::Mq
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- PhlexIcons::Flag::Mq
show all
- Defined in:
- lib/phlex-icons/flag/mq.rb
Instance Attribute Summary
Attributes inherited from Base
#attrs
Instance Method Summary
collapse
Methods inherited from Base
#initialize, #view_template
Instance Method Details
#rectangle ⇒ Object
16
17
18
19
20
21
22
23
24
|
# File 'lib/phlex-icons/flag/mq.rb', line 16
def rectangle
svg(
**attrs, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 640 480'
) do |s|
s.path(fill: '#231f1e', d: 'M0 0h640v480H0z')
s.path(fill: '#00a650', d: 'M0 0h640v240H0z')
s.path(fill: '#ef1923', d: 'm0 0 320 240L0 480z')
end
end
|
#square ⇒ Object
6
7
8
9
10
11
12
13
14
|
# File 'lib/phlex-icons/flag/mq.rb', line 6
def square
svg(
**attrs, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 512 512'
) do |s|
s.path(fill: '#231f1e', d: 'M0 0h512v512H0z')
s.path(fill: '#00a650', d: 'M0 0h512v256H0z')
s.path(fill: '#ef1923', d: 'M256 256 0 512V0z')
end
end
|