Class: Phlex::Icons::Iconoir::BellOff
- Defined in:
- lib/phlex/icons/iconoir/icons/bell_off.rb
Instance Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from Phlex::Icons::Iconoir::Base
Instance Method Details
#regular ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/phlex/icons/iconoir/icons/bell_off.rb', line 2 def regular svg( class: @class, width: @width, height: @height, stroke_width: @stroke_width, viewbox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" ) do |s| s.path( d: "M6.27049 6.5C6.09277 7.10971 6 7.74975 6 8.4C6 15.8667 3 18 3 18H18", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M7.75732 3.87452C8.88254 2.67428 10.4087 2 12 2C13.5913 2 15.1174 2.67428 16.2426 3.87452C17.3678 5.07475 18 6.70261 18 8.4C18 15.8667 21 18 21 18", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M13.73 21C13.5542 21.3031 13.3019 21.5547 12.9982 21.7295C12.6946 21.9044 12.3504 21.9965 12 21.9965C11.6496 21.9965 11.3054 21.9044 11.0018 21.7295C10.6982 21.5547 10.4458 21.3031 10.27 21", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M3 3L21 21", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) end end |