Class: PhlexIcons::Material::Quickreply
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- Base
- PhlexIcons::Material::Quickreply
show all
- Defined in:
- lib/phlex-icons/material/quickreply.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/quickreply.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: 'M22 4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h9v-8h7V4z')
s.path(d: 'M22.5 16h-2.2l1.7-4h-5v6h2v5z')
end
end
|
#outlined ⇒ Object
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# File 'lib/phlex-icons/material/quickreply.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:
'M4 17.17V4h16v6h2V4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h9v-2H5.17L4 17.17z'
)
s.path(d: 'M22.5 16h-2.2l1.7-4h-5v6h2v5z')
end
end
|
#round ⇒ Object
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# File 'lib/phlex-icons/material/quickreply.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:
'M22 4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h9v-7c0-.55.45-1 1-1h6V4z'
)
s.path(
d:
'M21.69 16H20.3l1.4-3.3c.14-.33-.1-.7-.46-.7H17.5c-.28 0-.5.22-.5.5v5c0 .28.22.5.5.5H19v3.94c0 .26.36.35.47.11l2.66-5.33a.494.494 0 0 0-.44-.72z'
)
end
end
|
#sharp ⇒ Object
49
50
51
52
53
54
55
56
57
58
|
# File 'lib/phlex-icons/material/quickreply.rb', line 49
def sharp
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'M22 2H2v20l4-4h9v-8h7z')
s.path(d: 'M22.5 16h-2.2l1.7-4h-5v6h2v5z')
end
end
|
#two_tone ⇒ Object
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# File 'lib/phlex-icons/material/quickreply.rb', line 60
def two_tone
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'M4 4v13.17L5.17 16H15v-6h5V4z', opacity: '.3')
s.path(
d:
'M5.17 16 4 17.17V4h16v6h2V4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h9v-2H5.17z'
)
s.path(d: 'm19 23 3.5-7h-2.2l1.7-4h-5v6h2z')
end
end
|