Class: PhlexIcons::Material::Woman2

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex-icons/material/woman_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
17
18
19
# File 'lib/phlex-icons/material/woman_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:
        'M13.94 8.31C13.62 7.52 12.85 7 12 7s-1.62.52-1.94 1.31L7 16h3.5v6h3v-6H17l-3.06-7.69z'
    )
    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/woman_2.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.94 8.31C13.62 7.52 12.85 7 12 7s-1.62.52-1.94 1.31L7 16h3.5v6h3v-6H17l-3.06-7.69z'
    )
    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/woman_2.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.94 8.31a2.078 2.078 0 0 0-2.48-1.24c-.66.17-1.18.7-1.43 1.34l-2.48 6.22c-.27.66.22 1.37.92 1.37h2.03v5c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-5h2.03c.71 0 1.19-.71.93-1.37l-2.52-6.32z'
    )
    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/woman_2.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: 'M13.41 7h-2.82L7 16h3.5v6h3v-6H17z')
    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/woman_2.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.94 8.31C13.62 7.52 12.85 7 12 7s-1.62.52-1.94 1.31L7 16h3.5v6h3v-6H17l-3.06-7.69z'
    )
    s.circle(cx: '12', cy: '4', r: '2')
  end
end