Class: PhlexIcons::Material::SkipPrevious
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- Base
- PhlexIcons::Material::SkipPrevious
show all
- Defined in:
- lib/phlex-icons/material/skip_previous.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
|
# File 'lib/phlex-icons/material/skip_previous.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 6h2v12H6zm3.5 6 8.5 6V6z')
end
end
|
#outlined ⇒ Object
17
18
19
20
21
22
23
24
25
26
27
|
# File 'lib/phlex-icons/material/skip_previous.rb', line 17
def outlined
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(
d: 'M6 6h2v12H6zm3.5 6 8.5 6V6l-8.5 6zm6.5 2.14L12.97 12 16 9.86v4.28z'
)
end
end
|
#round ⇒ Object
29
30
31
32
33
34
35
36
37
38
39
40
|
# File 'lib/phlex-icons/material/skip_previous.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:
'M7 6c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1s-1-.45-1-1V7c0-.55.45-1 1-1zm3.66 6.82 5.77 4.07c.66.47 1.58-.01 1.58-.82V7.93c0-.81-.91-1.28-1.58-.82l-5.77 4.07a1 1 0 0 0 0 1.64z'
)
end
end
|
#sharp ⇒ Object
42
43
44
45
46
47
48
49
50
|
# File 'lib/phlex-icons/material/skip_previous.rb', line 42
def sharp
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'M6 6h2v12H6V6zm3.5 6 8.5 6V6l-8.5 6z')
end
end
|
#two_tone ⇒ Object
52
53
54
55
56
57
58
59
60
61
|
# File 'lib/phlex-icons/material/skip_previous.rb', line 52
def two_tone
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'M16 14.14V9.86L12.97 12z', opacity: '.3')
s.path(d: 'M6 6h2v12H6zm12 12V6l-8.5 6 8.5 6zm-2-3.86L12.97 12 16 9.86v4.28z')
end
end
|