Class: Phlex::Lucide::GrapeIcon

Inherits:
Icon
  • Object
show all
Defined in:
lib/phlex/lucide/icons/grape_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/grape_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: "M22 5V2l-5.89 5.89")
    s.circle(cx: "16.6", cy: "15.89", r: "3")
    s.circle(cx: "8.11", cy: "7.4", r: "3")
    s.circle(cx: "12.35", cy: "11.65", r: "3")
    s.circle(cx: "13.91", cy: "5.85", r: "3")
    s.circle(cx: "18.15", cy: "10.09", r: "3")
    s.circle(cx: "6.56", cy: "13.2", r: "3")
    s.circle(cx: "10.8", cy: "17.44", r: "3")
    s.circle(cx: "5", cy: "19", r: "3")
  end
end