Class: PhlexIcons::Material::DoubleArrow
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- Base
- PhlexIcons::Material::DoubleArrow
show all
- Defined in:
- lib/phlex-icons/material/double_arrow.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/double_arrow.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: 'M15.5 5H11l5 7-5 7h4.5l5-7z')
s.path(d: 'M8.5 5H4l5 7-5 7h4.5l5-7z')
end
end
|
#outlined ⇒ Object
18
19
20
21
22
23
24
25
26
27
|
# File 'lib/phlex-icons/material/double_arrow.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: 'M15.5 5H11l5 7-5 7h4.5l5-7z')
s.path(d: 'M8.5 5H4l5 7-5 7h4.5l5-7z')
end
end
|
#round ⇒ Object
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# File 'lib/phlex-icons/material/double_arrow.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:
'm20.08 11.42-4.04-5.65c-.34-.48-.89-.77-1.48-.77-1.49 0-2.35 1.68-1.49 2.89L16 12l-2.93 4.11c-.87 1.21 0 2.89 1.49 2.89.59 0 1.15-.29 1.49-.77l4.04-5.65c.24-.35.24-.81-.01-1.16z'
)
s.path(
d:
'M13.08 11.42 9.05 5.77C8.7 5.29 8.15 5 7.56 5 6.07 5 5.2 6.68 6.07 7.89L9 12l-2.93 4.11C5.2 17.32 6.07 19 7.56 19c.59 0 1.15-.29 1.49-.77l4.04-5.65c.24-.35.24-.81-.01-1.16z'
)
end
end
|
#sharp ⇒ Object
46
47
48
49
50
51
52
53
54
55
|
# File 'lib/phlex-icons/material/double_arrow.rb', line 46
def sharp
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'M15.5 5H11l5 7-5 7h4.5l5-7z')
s.path(d: 'M8.5 5H4l5 7-5 7h4.5l5-7z')
end
end
|
#two_tone ⇒ Object
57
58
59
60
61
62
63
64
65
66
|
# File 'lib/phlex-icons/material/double_arrow.rb', line 57
def two_tone
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'M15.5 5H11l5 7-5 7h4.5l5-7z')
s.path(d: 'M8.5 5H4l5 7-5 7h4.5l5-7z')
end
end
|