Class: PhlexIcons::Material::NearMe
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- Base
- PhlexIcons::Material::NearMe
show all
- Defined in:
- lib/phlex-icons/material/near_me.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
|
# File 'lib/phlex-icons/material/near_me.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: 'M21 3 3 10.53v.98l6.84 2.65L12.48 21h.98L21 3z')
end
end
|
#outlined ⇒ Object
17
18
19
20
21
22
23
24
25
26
27
28
|
# File 'lib/phlex-icons/material/near_me.rb', line 17
def outlined
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(
d:
'm17.27 6.73-4.24 10.13-1.32-3.42-.32-.83-.82-.32-3.43-1.33 10.13-4.23M21 3 3 10.53v.98l6.84 2.65L12.48 21h.98L21 3z'
)
end
end
|
#round ⇒ Object
30
31
32
33
34
35
36
37
38
39
40
41
|
# File 'lib/phlex-icons/material/near_me.rb', line 30
def round
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(
d:
'M18.75 3.94 4.07 10.08c-.83.35-.81 1.53.02 1.85L9.43 14a1 1 0 0 1 .57.57l2.06 5.33c.32.84 1.51.86 1.86.03l6.15-14.67c.33-.83-.5-1.66-1.32-1.32z'
)
end
end
|
#sharp ⇒ Object
43
44
45
46
47
48
49
50
51
|
# File 'lib/phlex-icons/material/near_me.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: 'M21 3 3 10.53v.98l6.84 2.65L12.48 21h.98L21 3z')
end
end
|
#two_tone ⇒ Object
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# File 'lib/phlex-icons/material/near_me.rb', line 53
def two_tone
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(
d: 'm11.39 12.61.32.83 1.32 3.42 4.24-10.13-10.13 4.24 3.42 1.33z',
opacity: '.3'
)
s.path(
d:
'm3 11.51 6.84 2.65L12.48 21h.98L21 3 3 10.53v.98zm14.27-4.78-4.24 10.13-1.32-3.42-.32-.83-.82-.32-3.43-1.33 10.13-4.23z'
)
end
end
|