Class: PhlexIcons::Material::GolfCourse
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- Base
- PhlexIcons::Material::GolfCourse
show all
- Defined in:
- lib/phlex-icons/material/golf_course.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
17
18
19
|
# File 'lib/phlex-icons/material/golf_course.rb', line 7
def filled
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.circle(cx: '19.5', cy: '19.5', r: '1.5')
s.path(
d:
'M17 5.92 9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z'
)
end
end
|
#outlined ⇒ Object
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# File 'lib/phlex-icons/material/golf_course.rb', line 21
def outlined
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.circle(cx: '19.5', cy: '19.5', r: '1.5')
s.path(
d:
'M17 5.92 9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z'
)
end
end
|
#round ⇒ Object
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# File 'lib/phlex-icons/material/golf_course.rb', line 35
def round
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.circle(cx: '19.5', cy: '19.5', r: '1.5')
s.path(
d:
'M11 18.03V8.98l4.22-2.15c.73-.37.73-1.43-.01-1.79l-4.76-2.33C9.78 2.38 9 2.86 9 3.6V19c0 .55-.45 1-1 1s-1-.45-1-1v-.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97z'
)
end
end
|
#sharp ⇒ Object
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# File 'lib/phlex-icons/material/golf_course.rb', line 49
def sharp
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.circle(cx: '19.5', cy: '19.5', r: '1.5')
s.path(
d:
'M17 5.92 9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z'
)
end
end
|
#two_tone ⇒ Object
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# File 'lib/phlex-icons/material/golf_course.rb', line 63
def two_tone
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.circle(cx: '19.5', cy: '19.5', r: '1.5', opacity: '.3')
s.path(
d:
'M17 5.92 9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z',
opacity: '.3'
)
s.circle(cx: '19.5', cy: '19.5', r: '1.5')
s.path(
d:
'M17 5.92 9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z'
)
end
end
|