Class: Phlex::Lucide::PandaIcon

Inherits:
Icon
  • Object
show all
Defined in:
lib/phlex/lucide/icons/panda_icon.rb

Instance Attribute Summary

Attributes inherited from Icon

#props, #size

Instance Method Summary collapse

Methods inherited from Icon

#initialize

Constructor Details

This class inherits a constructor from Phlex::Lucide::Icon

Instance Method Details

#view_templateObject



6
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/lucide/icons/panda_icon.rb', line 6

def view_template
  svg(
    xmlns: "http://www.w3.org/2000/svg",
    width: size,
    height: size,
    viewbox: "0 0 24 24",
    fill: "none",
    stroke: "currentColor",
    stroke_width: "2",
    stroke_linecap: "round",
    stroke_linejoin: "round",
    **props
  ) do |s|
    s.path(d: "M11.25 17.25h1.5L12 18z")
    s.path(d: "m15 12 2 2")
    s.path(d: "M18 6.5a.5.5 0 0 0-.5-.5")
    s.path(
      d:
        "M20.69 9.67a4.5 4.5 0 1 0-7.04-5.5 8.35 8.35 0 0 0-3.3 0 4.5 4.5 0 1 0-7.04 5.5C2.49 11.2 2 12.88 2 14.5 2 19.47 6.48 22 12 22s10-2.53 10-7.5c0-1.62-.48-3.3-1.3-4.83"
    )
    s.path(d: "M6 6.5a.495.495 0 0 1 .5-.5")
    s.path(d: "m9 12-2 2")
  end
end