Class: PhlexIcons::Material::Smartphone
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- Base
- PhlexIcons::Material::Smartphone
show all
- Defined in:
- lib/phlex-icons/material/smartphone.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
15
16
17
|
# File 'lib/phlex-icons/material/smartphone.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:
'M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z'
)
end
end
|
#outlined ⇒ Object
19
20
21
22
23
24
25
26
27
28
29
30
|
# File 'lib/phlex-icons/material/smartphone.rb', line 19
def outlined
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(
d:
'M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z'
)
end
end
|
#round ⇒ Object
32
33
34
35
36
37
38
39
40
41
42
43
|
# File 'lib/phlex-icons/material/smartphone.rb', line 32
def round
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(
d:
'M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z'
)
end
end
|
#sharp ⇒ Object
45
46
47
48
49
50
51
52
53
|
# File 'lib/phlex-icons/material/smartphone.rb', line 45
def sharp
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'M5 1v22h14V1H5zm12 18H7V5h10v14z')
end
end
|
#two_tone ⇒ Object
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# File 'lib/phlex-icons/material/smartphone.rb', line 55
def two_tone
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'M7 5h10v14H7z', opacity: '.3')
s.path(
d:
'M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z'
)
end
end
|