Class: PhlexIcons::Material::KeyboardDoubleArrowUp
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- Base
- PhlexIcons::Material::KeyboardDoubleArrowUp
show all
- Defined in:
- lib/phlex-icons/material/keyboard_double_arrow_up.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_up.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 17.59 7.41 19 12 14.42 16.59 19 18 17.59l-6-6z')
s.path(d: 'm6 11 1.41 1.41L12 7.83l4.59 4.58L18 11l-6-6z')
end
end
|
#outlined ⇒ Object
18
19
20
21
22
23
24
25
26
27
|
# File 'lib/phlex-icons/material/keyboard_double_arrow_up.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 17.59 7.41 19 12 14.42 16.59 19 18 17.59l-6-6z')
s.path(d: 'm6 11 1.41 1.41L12 7.83l4.59 4.58L18 11l-6-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_up.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:
'M6.7 18.29c.39.39 1.02.39 1.41 0L12 14.42l3.88 3.88a.996.996 0 1 0 1.41-1.41L12.7 12.3a.996.996 0 0 0-1.41 0L6.7 16.88a.996.996 0 0 0 0 1.41z'
)
s.path(
d:
'M6.7 11.7c.39.39 1.02.39 1.41 0L12 7.83l3.88 3.88a.996.996 0 1 0 1.41-1.41L12.7 5.71a.996.996 0 0 0-1.41 0L6.7 10.29a.996.996 0 0 0 0 1.41z'
)
end
end
|
#sharp ⇒ Object
46
47
48
49
50
51
52
53
54
55
|
# File 'lib/phlex-icons/material/keyboard_double_arrow_up.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 17.59 7.41 19 12 14.42 16.59 19 18 17.59l-6-6z')
s.path(d: 'm6 11 1.41 1.41L12 7.83l4.59 4.58L18 11l-6-6z')
end
end
|
#two_tone ⇒ Object
57
58
59
60
61
62
63
64
65
66
|
# File 'lib/phlex-icons/material/keyboard_double_arrow_up.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 17.59 7.41 19 12 14.42 16.59 19 18 17.59l-6-6z')
s.path(d: 'm6 11 1.41 1.41L12 7.83l4.59 4.58L18 11l-6-6z')
end
end
|