Class: PhlexIcons::Material::Man4

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex-icons/material/man_4.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



7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/phlex-icons/material/man_4.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:
        'M13.75 7h-3.5C9.04 7 8.11 8.07 8.27 9.26L10 22h4l1.73-12.74C15.89 8.07 14.96 7 13.75 7z'
    )
    s.circle(cx: '12', cy: '4', r: '2')
  end
end

#outlinedObject



21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/phlex-icons/material/man_4.rb', line 21

def outlined
  svg(
    **attrs,
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
  ) do |s|
    s.path(
      d:
        'M13.75 7h-3.5C9.04 7 8.11 8.07 8.27 9.26L10 22h4l1.73-12.74C15.89 8.07 14.96 7 13.75 7z'
    )
    s.circle(cx: '12', cy: '4', r: '2')
  end
end

#roundObject



35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/phlex-icons/material/man_4.rb', line 35

def round
  svg(
    **attrs,
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
  ) do |s|
    s.path(
      d:
        'M13.75 7h-3.5C9.04 7 8.11 8.07 8.27 9.26L9.82 20.7c.1.74.74 1.3 1.49 1.3h1.38a1.5 1.5 0 0 0 1.49-1.3l1.56-11.44C15.89 8.07 14.96 7 13.75 7z'
    )
    s.circle(cx: '12', cy: '4', r: '2')
  end
end

#sharpObject



49
50
51
52
53
54
55
56
57
58
# File 'lib/phlex-icons/material/man_4.rb', line 49

def sharp
  svg(
    **attrs,
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
  ) do |s|
    s.path(d: 'M7.96 7 10 22h4l2.04-15z')
    s.circle(cx: '12', cy: '4', r: '2')
  end
end

#two_toneObject



60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/phlex-icons/material/man_4.rb', line 60

def two_tone
  svg(
    **attrs,
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
  ) do |s|
    s.path(
      d:
        'M13.75 7h-3.5C9.04 7 8.11 8.07 8.27 9.26L10 22h4l1.73-12.74C15.89 8.07 14.96 7 13.75 7z'
    )
    s.circle(cx: '12', cy: '4', r: '2')
  end
end