Class: PhlexIcons::Material::Bookmark
- Inherits:
-
Base
- Object
- Phlex::SVG
- Base
- Base
- PhlexIcons::Material::Bookmark
show all
- Defined in:
- lib/phlex-icons/material/bookmark.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
6
7
8
9
10
11
12
13
14
|
# File 'lib/phlex-icons/material/bookmark.rb', line 6
def filled
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z')
end
end
|
#outlined ⇒ Object
16
17
18
19
20
21
22
23
24
|
# File 'lib/phlex-icons/material/bookmark.rb', line 16
def outlined
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z')
end
end
|
#round ⇒ Object
26
27
28
29
30
31
32
33
34
|
# File 'lib/phlex-icons/material/bookmark.rb', line 26
def round
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z')
end
end
|
#sharp ⇒ Object
36
37
38
39
40
41
42
43
44
|
# File 'lib/phlex-icons/material/bookmark.rb', line 36
def sharp
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'M19 3H5v18l7-3 7 3V3z')
end
end
|
#two_tone ⇒ Object
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# File 'lib/phlex-icons/material/bookmark.rb', line 46
def two_tone
svg(
**attrs,
fill: 'currentColor',
xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
) do |s|
s.path(d: 'm7 17.97 5-2.15 5 2.15V5H7z', opacity: '.3')
s.path(
d:
'M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2zm0 14.97-5-2.14-5 2.14V5h10v12.97z'
)
end
end
|