Class: PhlexIcons::Material::Man2
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- Base
- PhlexIcons::Material::Man2
show all
- Defined in:
- lib/phlex-icons/material/man_2.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
7
8
9
10
11
12
13
14
15
16
|
# File 'lib/phlex-icons/material/man_2.rb', line 7
def filled
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'M14 7h-4c-1.1 0-2 .9-2 2v6h2.5v7h3v-7H16V9c0-1.1-.9-2-2-2z')
s.circle(cx: '12', cy: '4', r: '2')
end
end
|
#outlined ⇒ Object
18
19
20
21
22
23
24
25
26
27
|
# File 'lib/phlex-icons/material/man_2.rb', line 18
def outlined
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'M14 7h-4c-1.1 0-2 .9-2 2v6h2.5v7h3v-7H16V9c0-1.1-.9-2-2-2z')
s.circle(cx: '12', cy: '4', r: '2')
end
end
|
#round ⇒ Object
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# File 'lib/phlex-icons/material/man_2.rb', line 29
def round
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(
d:
'M14 7h-4c-1.1 0-2 .9-2 2v5c0 .55.45 1 1 1h1.5v5.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V15H15c.55 0 1-.45 1-1V9c0-1.1-.9-2-2-2z'
)
s.circle(cx: '12', cy: '4', r: '2')
end
end
|
#sharp ⇒ Object
43
44
45
46
47
48
49
50
51
52
|
# File 'lib/phlex-icons/material/man_2.rb', line 43
def sharp
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'M16 7H8v8h2.5v7h3v-7H16z')
s.circle(cx: '12', cy: '4', r: '2')
end
end
|
#two_tone ⇒ Object
54
55
56
57
58
59
60
61
62
63
|
# File 'lib/phlex-icons/material/man_2.rb', line 54
def two_tone
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'M14 7h-4c-1.1 0-2 .9-2 2v6h2.5v7h3v-7H16V9c0-1.1-.9-2-2-2z')
s.circle(cx: '12', cy: '4', r: '2')
end
end
|