Class: PhlexIcons::Material::KeyboardDoubleArrowDown
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- Base
- PhlexIcons::Material::KeyboardDoubleArrowDown
show all
- Defined in:
- lib/phlex-icons/material/keyboard_double_arrow_down.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_down.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: 'M18 6.41 16.59 5 12 9.58 7.41 5 6 6.41l6 6z')
s.path(d: 'm18 13-1.41-1.41L12 16.17l-4.59-4.58L6 13l6 6z')
end
end
|
#outlined ⇒ Object
18
19
20
21
22
23
24
25
26
27
|
# File 'lib/phlex-icons/material/keyboard_double_arrow_down.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: 'M18 6.41 16.59 5 12 9.58 7.41 5 6 6.41l6 6z')
s.path(d: 'm18 13-1.41-1.41L12 16.17l-4.59-4.58L6 13l6 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_down.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:
'M17.29 5.71a.996.996 0 0 0-1.41 0L12 9.58 8.11 5.7A.996.996 0 1 0 6.7 7.11l4.59 4.59c.39.39 1.02.39 1.41 0l4.59-4.59a.984.984 0 0 0 0-1.4z'
)
s.path(
d:
'M17.29 12.3a.996.996 0 0 0-1.41 0L12 16.17l-3.88-3.88a.996.996 0 1 0-1.41 1.41l4.59 4.59c.39.39 1.02.39 1.41 0l4.59-4.59a.993.993 0 0 0-.01-1.4z'
)
end
end
|
#sharp ⇒ Object
46
47
48
49
50
51
52
53
54
55
|
# File 'lib/phlex-icons/material/keyboard_double_arrow_down.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: 'M18 6.41 16.59 5 12 9.58 7.41 5 6 6.41l6 6z')
s.path(d: 'm18 13-1.41-1.41L12 16.17l-4.59-4.58L6 13l6 6z')
end
end
|
#two_tone ⇒ Object
57
58
59
60
61
62
63
64
65
66
|
# File 'lib/phlex-icons/material/keyboard_double_arrow_down.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: 'M18 6.41 16.59 5 12 9.58 7.41 5 6 6.41l6 6z')
s.path(d: 'm18 13-1.41-1.41L12 16.17l-4.59-4.58L6 13l6 6z')
end
end
|