Class: PhlexIcons::Lucide::BugPlay
- Defined in:
- lib/phlex-icons/lucide/bug_play.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 30 31 |
# File 'lib/phlex-icons/lucide/bug_play.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: 'M10 19.655A6 6 0 0 1 6 14v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 3.97') s.path( d: 'M14 15.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z' ) s.path(d: 'M14.12 3.88 16 2') s.path(d: 'M21 5a4 4 0 0 1-3.55 3.97') s.path(d: 'M3 21a4 4 0 0 1 3.81-4') s.path(d: 'M3 5a4 4 0 0 0 3.55 3.97') s.path(d: 'M6 13H2') s.path(d: 'm8 2 1.88 1.88') s.path(d: 'M9 7.13V6a3 3 0 1 1 6 0v1.13') end end |