Class: PhlexIcons::Material::CalendarViewDay
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- Base
- PhlexIcons::Material::CalendarViewDay
show all
- Defined in:
- lib/phlex-icons/material/calendar_view_day.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/calendar_view_day.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: 'M3 17h18v2H3zm0-7h18v5H3zm0-4h18v2H3z')
end
end
|
#outlined ⇒ Object
17
18
19
20
21
22
23
24
25
|
# File 'lib/phlex-icons/material/calendar_view_day.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: 'M3 17h18v2H3zm16-5v1H5v-1h14m2-2H3v5h18v-5zM3 6h18v2H3z')
end
end
|
#round ⇒ Object
27
28
29
30
31
32
33
34
35
36
37
38
|
# File 'lib/phlex-icons/material/calendar_view_day.rb', line 27
def round
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(
d:
'M5 7h14c1.1 0 2 .9 2 2v6c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2zM4 3h16c.55 0 1 .45 1 1s-.45 1-1 1H4c-.55 0-1-.45-1-1s.45-1 1-1zm0 16h16c.55 0 1 .45 1 1s-.45 1-1 1H4c-.55 0-1-.45-1-1s.45-1 1-1z'
)
end
end
|
#sharp ⇒ Object
40
41
42
43
44
45
46
47
48
|
# File 'lib/phlex-icons/material/calendar_view_day.rb', line 40
def sharp
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'M3 17h18v2H3v-2zm0-7h18v5H3v-5zm0-4h18v2H3V6z')
end
end
|
#two_tone ⇒ Object
50
51
52
53
54
55
56
57
58
59
|
# File 'lib/phlex-icons/material/calendar_view_day.rb', line 50
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 17h18v2H3zm16-5v1H5v-1h14m2-2H3v5h18v-5zM3 6h18v2H3z')
s.path(d: 'M5 12h14v1H5z', opacity: '.3')
end
end
|