Class: PhlexIcons::Material::Wifi1Bar

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex-icons/material/wifi_1_bar.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
15
16
17
# File 'lib/phlex-icons/material/wifi_1_bar.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:
        'M15.53 17.46 12 21l-3.53-3.54c.9-.9 2.15-1.46 3.53-1.46s2.63.56 3.53 1.46z'
    )
  end
end

#outlinedObject



19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/phlex-icons/material/wifi_1_bar.rb', line 19

def outlined
  svg(
    **attrs,
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
  ) do |s|
    s.path(
      d:
        'M15.53 17.46 12 21l-3.53-3.54c.9-.9 2.15-1.46 3.53-1.46s2.63.56 3.53 1.46z'
    )
  end
end

#roundObject



32
33
34
35
36
37
38
39
40
# File 'lib/phlex-icons/material/wifi_1_bar.rb', line 32

def round
  svg(
    **attrs,
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
  ) do |s|
    s.circle(cx: '12', cy: '18', r: '2')
  end
end

#sharpObject



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

def sharp
  svg(
    **attrs,
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
  ) do |s|
    s.path(
      d:
        'M15.53 17.46 12 21l-3.53-3.54c.9-.9 2.15-1.46 3.53-1.46s2.63.56 3.53 1.46z'
    )
  end
end

#two_toneObject



55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/phlex-icons/material/wifi_1_bar.rb', line 55

def two_tone
  svg(
    **attrs,
    fill: 'currentColor',
    xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24'
  ) do |s|
    s.path(
      d:
        'M15.53 17.46 12 21l-3.53-3.54c.9-.9 2.15-1.46 3.53-1.46s2.63.56 3.53 1.46z'
    )
  end
end