Class: PhlexIcons::Material::Man2

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex-icons/material/man_2.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
# File 'lib/phlex-icons/material/man_2.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: 'M14 7h-4c-1.1 0-2 .9-2 2v6h2.5v7h3v-7H16V9c0-1.1-.9-2-2-2z')
    s.circle(cx: '12', cy: '4', r: '2')
  end
end

#outlinedObject



18
19
20
21
22
23
24
25
26
27
# File 'lib/phlex-icons/material/man_2.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: 'M14 7h-4c-1.1 0-2 .9-2 2v6h2.5v7h3v-7H16V9c0-1.1-.9-2-2-2z')
    s.circle(cx: '12', cy: '4', r: '2')
  end
end

#roundObject



29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/phlex-icons/material/man_2.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:
        'M14 7h-4c-1.1 0-2 .9-2 2v5c0 .55.45 1 1 1h1.5v5.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V15H15c.55 0 1-.45 1-1V9c0-1.1-.9-2-2-2z'
    )
    s.circle(cx: '12', cy: '4', r: '2')
  end
end

#sharpObject



43
44
45
46
47
48
49
50
51
52
# File 'lib/phlex-icons/material/man_2.rb', line 43

def sharp
  svg(
    **attrs,
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
  ) do |s|
    s.path(d: 'M16 7H8v8h2.5v7h3v-7H16z')
    s.circle(cx: '12', cy: '4', r: '2')
  end
end

#two_toneObject



54
55
56
57
58
59
60
61
62
63
# File 'lib/phlex-icons/material/man_2.rb', line 54

def two_tone
  svg(
    **attrs,
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
  ) do |s|
    s.path(d: 'M14 7h-4c-1.1 0-2 .9-2 2v6h2.5v7h3v-7H16V9c0-1.1-.9-2-2-2z')
    s.circle(cx: '12', cy: '4', r: '2')
  end
end