Class: PhlexIcons::Lucide::BugOff
- Defined in:
- lib/phlex-icons/lucide/bug_off.rb
Instance Attribute Summary
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::Lucide::Base
Instance Method Details
#view_template ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/phlex-icons/lucide/bug_off.rb', line 7 def view_template svg( **attrs, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24', fill: 'none', stroke: 'currentColor', stroke_width: '2', stroke_linecap: 'round', stroke_linejoin: 'round' ) do |s| s.path(d: 'M12 20v-8') s.path(d: 'M14.12 3.88 16 2') s.path(d: 'M15 7.13V6a3 3 0 0 0-5.14-2.1L8 2') s.path(d: 'M18 12.34V11a4 4 0 0 0-4-4h-1.3') s.path(d: 'm2 2 20 20') s.path(d: 'M21 5a4 4 0 0 1-3.55 3.97') s.path(d: 'M22 13h-3.34') s.path(d: 'M3 21a4 4 0 0 1 3.81-4') s.path(d: 'M6 13H2') s.path(d: 'M7.7 7.7A4 4 0 0 0 6 11v3a6 6 0 0 0 11.13 3.13') end end |