Class: PhlexIcons::Material::KeyboardDoubleArrowRight
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- Base
- PhlexIcons::Material::KeyboardDoubleArrowRight
show all
- Defined in:
- lib/phlex-icons/material/keyboard_double_arrow_right.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/keyboard_double_arrow_right.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: 'M6.41 6 5 7.41 9.58 12 5 16.59 6.41 18l6-6z')
s.path(d: 'm13 6-1.41 1.41L16.17 12l-4.58 4.59L13 18l6-6z')
end
end
|
#outlined ⇒ Object
18
19
20
21
22
23
24
25
26
27
|
# File 'lib/phlex-icons/material/keyboard_double_arrow_right.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: 'M6.41 6 5 7.41 9.58 12 5 16.59 6.41 18l6-6z')
s.path(d: 'm13 6-1.41 1.41L16.17 12l-4.58 4.59L13 18l6-6z')
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/keyboard_double_arrow_right.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:
'M5.7 6.71a.996.996 0 0 0 0 1.41L9.58 12 5.7 15.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L7.12 6.71c-.39-.39-1.03-.39-1.42 0z'
)
s.path(
d:
'M12.29 6.71a.996.996 0 0 0 0 1.41L16.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L13.7 6.7c-.38-.38-1.02-.38-1.41.01z'
)
end
end
|
#sharp ⇒ Object
46
47
48
49
50
51
52
53
54
55
|
# File 'lib/phlex-icons/material/keyboard_double_arrow_right.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: 'M6.41 6 5 7.41 9.58 12 5 16.59 6.41 18l6-6z')
s.path(d: 'm13 6-1.41 1.41L16.17 12l-4.58 4.59L13 18l6-6z')
end
end
|
#two_tone ⇒ Object
57
58
59
60
61
62
63
64
65
66
|
# File 'lib/phlex-icons/material/keyboard_double_arrow_right.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: 'M6.41 6 5 7.41 9.58 12 5 16.59 6.41 18l6-6z')
s.path(d: 'm13 6-1.41 1.41L16.17 12l-4.58 4.59L13 18l6-6z')
end
end
|