Class: PhlexIcons::Material::KeyboardDoubleArrowLeft
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- Base
- PhlexIcons::Material::KeyboardDoubleArrowLeft
show all
- Defined in:
- lib/phlex-icons/material/keyboard_double_arrow_left.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_left.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: 'M17.59 18 19 16.59 14.42 12 19 7.41 17.59 6l-6 6z')
s.path(d: 'm11 18 1.41-1.41L7.83 12l4.58-4.59L11 6l-6 6z')
end
end
|
#outlined ⇒ Object
18
19
20
21
22
23
24
25
26
27
|
# File 'lib/phlex-icons/material/keyboard_double_arrow_left.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: 'M17.59 18 19 16.59 14.42 12 19 7.41 17.59 6l-6 6z')
s.path(d: 'm11 18 1.41-1.41L7.83 12l4.58-4.59L11 6l-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_left.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:
'M18.29 17.29a.996.996 0 0 0 0-1.41L14.42 12l3.88-3.88a.996.996 0 1 0-1.41-1.41L12.3 11.3a.996.996 0 0 0 0 1.41l4.59 4.59c.38.38 1.01.38 1.4-.01z'
)
s.path(
d:
'M11.7 17.29a.996.996 0 0 0 0-1.41L7.83 12l3.88-3.88a.996.996 0 1 0-1.41-1.41L5.71 11.3a.996.996 0 0 0 0 1.41l4.59 4.59c.38.38 1.01.38 1.4-.01z'
)
end
end
|
#sharp ⇒ Object
46
47
48
49
50
51
52
53
54
55
|
# File 'lib/phlex-icons/material/keyboard_double_arrow_left.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: 'M17.59 18 19 16.59 14.42 12 19 7.41 17.59 6l-6 6z')
s.path(d: 'm11 18 1.41-1.41L7.83 12l4.58-4.59L11 6l-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_left.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: 'M17.59 18 19 16.59 14.42 12 19 7.41 17.59 6l-6 6z')
s.path(d: 'm11 18 1.41-1.41L7.83 12l4.58-4.59L11 6l-6 6z')
end
end
|