Class: PhlexIcons::Material::Bookmark

Inherits:
Base
  • Object
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

Constructor Details

This class inherits a constructor from PhlexIcons::Material::Base

Instance Method Details

#filledObject



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

#outlinedObject



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

#roundObject



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

#sharpObject



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_toneObject



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