Class: Phlex::Lucide::PointerOffIcon

Inherits:
Icon
  • Object
show all
Defined in:
lib/phlex/lucide/icons/pointer_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
28
29
30
31
# File 'lib/phlex/lucide/icons/pointer_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: "M10 4.5V4a2 2 0 0 0-2.41-1.957")
    s.path(d: "M13.9 8.4a2 2 0 0 0-1.26-1.295")
    s.path(
      d: "M21.7 16.2A8 8 0 0 0 22 14v-3a2 2 0 1 0-4 0v-1a2 2 0 0 0-3.63-1.158"
    )
    s.path(
      d:
        "m7 15-1.8-1.8a2 2 0 0 0-2.79 2.86L6 19.7a7.74 7.74 0 0 0 6 2.3h2a8 8 0 0 0 5.657-2.343"
    )
    s.path(d: "M6 6v8")
    s.path(d: "m2 2 20 20")
  end
end