Class: PhlexIcons::Lucide::Bug

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex-icons/lucide/bug.rb

Instance Attribute Summary

Attributes inherited from Base

#attrs

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from PhlexIcons::Base

Instance Method Details

#view_templateObject



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/phlex-icons/lucide/bug.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-9')
    s.path(d: 'M14 7a4 4 0 0 1 4 4v3a6 6 0 0 1-12 0v-3a4 4 0 0 1 4-4z')
    s.path(d: 'M14.12 3.88 16 2')
    s.path(d: 'M21 21a4 4 0 0 0-3.81-4')
    s.path(d: 'M21 5a4 4 0 0 1-3.55 3.97')
    s.path(d: 'M22 13h-4')
    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