Class: Phlex::Lucide::WebhookOffIcon

Inherits:
Icon
  • Object
show all
Defined in:
lib/phlex/lucide/icons/webhook_off_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
# File 'lib/phlex/lucide/icons/webhook_off_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: "M17 17h-5c-1.09-.02-1.94.92-2.5 1.9A3 3 0 1 1 2.57 15")
    s.path(d: "M9 3.4a4 4 0 0 1 6.52.66")
    s.path(d: "m6 17 3.1-5.8a2.5 2.5 0 0 0 .057-2.05")
    s.path(d: "M20.3 20.3a4 4 0 0 1-2.3.7")
    s.path(d: "M18.6 13a4 4 0 0 1 3.357 3.414")
    s.path(d: "m12 6 .6 1")
    s.path(d: "m2 2 20 20")
  end
end