Class: PhlexIcons::Material::Maximize
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- Base
- PhlexIcons::Material::Maximize
show all
- Defined in:
- lib/phlex-icons/material/maximize.rb
Instance Attribute Summary
Attributes inherited from Base
#variant
Attributes inherited from Base
#attrs
Instance Method Summary
collapse
Methods inherited from Base
#initialize, #view_template
Methods inherited from Base
#initialize, #view_template
Instance Method Details
#filled ⇒ Object
6
7
8
9
10
11
12
13
14
|
# File 'lib/phlex-icons/material/maximize.rb', line 6
def filled
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'M3 3h18v2H3z')
end
end
|
#outlined ⇒ Object
16
17
18
19
20
21
22
23
24
|
# File 'lib/phlex-icons/material/maximize.rb', line 16
def outlined
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'M3 3h18v2H3V3z')
end
end
|
#round ⇒ Object
26
27
28
29
30
31
32
33
34
|
# File 'lib/phlex-icons/material/maximize.rb', line 26
def round
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'M4 3h16c.55 0 1 .45 1 1s-.45 1-1 1H4c-.55 0-1-.45-1-1s.45-1 1-1z')
end
end
|
#sharp ⇒ Object
36
37
38
39
40
41
42
43
44
|
# File 'lib/phlex-icons/material/maximize.rb', line 36
def sharp
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'M3 3h18v2H3V3z')
end
end
|
#two_tone ⇒ Object
46
47
48
49
50
51
52
53
54
|
# File 'lib/phlex-icons/material/maximize.rb', line 46
def two_tone
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'M3 3h18v2H3V3z')
end
end
|