Class: PhlexIcons::Material::Shower
- Defined in:
- lib/phlex-icons/material/shower.rb
Instance Attribute Summary
Attributes inherited from Base
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
Methods inherited from Base
Constructor Details
This class inherits a constructor from PhlexIcons::Material::Base
Instance Method Details
#filled ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/phlex-icons/material/shower.rb', line 7 def filled svg( **attrs, fill: 'currentColor', xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24' ) do |s| s.circle(cx: '8', cy: '17', r: '1') s.circle(cx: '12', cy: '17', r: '1') s.circle(cx: '16', cy: '17', r: '1') s.path( d: 'M13 5.08V3h-2v2.08C7.61 5.57 5 8.47 5 12v2h14v-2c0-3.53-2.61-6.43-6-6.92z' ) s.circle(cx: '8', cy: '20', r: '1') s.circle(cx: '12', cy: '20', r: '1') s.circle(cx: '16', cy: '20', r: '1') end end |
#outlined ⇒ Object
26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/phlex-icons/material/shower.rb', line 26 def outlined svg( **attrs, fill: 'currentColor', xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24' ) do |s| s.path( d: 'M9 17c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm3-1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3-4v2H5v-2c0-3.53 2.61-6.43 6-6.92V3h2v2.08c3.39.49 6 3.39 6 6.92zm-2 0c0-2.76-2.24-5-5-5s-5 2.24-5 5h10zm-9 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z' ) end end |
#round ⇒ Object
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/phlex-icons/material/shower.rb', line 39 def round svg( **attrs, fill: 'currentColor', xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24' ) do |s| s.circle(cx: '8', cy: '17', r: '1') s.circle(cx: '12', cy: '17', r: '1') s.circle(cx: '16', cy: '17', r: '1') s.path( d: 'M13 5.08V4c0-.55-.45-1-1-1s-1 .45-1 1v1.08C7.61 5.57 5 8.47 5 12v1c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-1c0-3.53-2.61-6.43-6-6.92z' ) s.circle(cx: '8', cy: '20', r: '1') s.circle(cx: '12', cy: '20', r: '1') s.circle(cx: '16', cy: '20', r: '1') end end |
#sharp ⇒ Object
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/phlex-icons/material/shower.rb', line 58 def sharp svg( **attrs, fill: 'currentColor', xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24' ) do |s| s.circle(cx: '8', cy: '17', r: '1') s.circle(cx: '12', cy: '17', r: '1') s.circle(cx: '16', cy: '17', r: '1') s.path( d: 'M13 5.08V3h-2v2.08C7.61 5.57 5 8.47 5 12v2h14v-2c0-3.53-2.61-6.43-6-6.92z' ) s.circle(cx: '8', cy: '20', r: '1') s.circle(cx: '12', cy: '20', r: '1') s.circle(cx: '16', cy: '20', r: '1') end end |
#two_tone ⇒ Object
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
# File 'lib/phlex-icons/material/shower.rb', line 77 def two_tone svg( **attrs, fill: 'currentColor', xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24' ) do |s| s.path(d: 'M12 7c-2.76 0-5 2.24-5 5h10c0-2.76-2.24-5-5-5z', opacity: '.3') s.circle(cx: '8', cy: '20', r: '1') s.circle(cx: '16', cy: '17', r: '1') s.path( d: 'M13 5.08V3h-2v2.08C7.61 5.57 5 8.47 5 12v2h14v-2c0-3.53-2.61-6.43-6-6.92zM7 12c0-2.76 2.24-5 5-5s5 2.24 5 5H7z' ) s.circle(cx: '16', cy: '20', r: '1') s.circle(cx: '12', cy: '17', r: '1') s.circle(cx: '8', cy: '17', r: '1') s.circle(cx: '12', cy: '20', r: '1') end end |