Class: Phlex::Icons::Iconoir::Puzzle

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex/icons/iconoir/icons/puzzle.rb

Instance Method Summary collapse

Methods inherited from Base

#initialize, #view_template

Constructor Details

This class inherits a constructor from Phlex::Icons::Iconoir::Base

Instance Method Details

#regularObject



2
3
4
5
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/phlex/icons/iconoir/icons/puzzle.rb', line 2

def regular
  svg(
    class: @class,
    width: @width,
    height: @height,
    stroke_width: @stroke_width,
    viewbox: "0 0 24 24",
    fill: "none",
    xmlns: "http://www.w3.org/2000/svg"
  ) do |s|
    s.path(
      d: "M4 14V18.4C4 18.7314 4.26863 19 4.6 19H10",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
    s.path(
      d: "M19 14V18.4C19 18.7314 18.7314 19 18.4 19H14",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
    s.path(
      d: "M14 5H18.4C18.7314 5 19 5.26863 19 5.6V10",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
    s.path(
      d: "M4 10V5.6C4 5.26863 4.26863 5 4.6 5H10",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
    s.path(
      d:
        "M14 19V20C14 21.1046 13.1046 22 12 22C10.8954 22 10 21.1046 10 20V19",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
    s.path(
      d: "M4 10H5C6.10457 10 7 10.8954 7 12C7 13.1046 6.10457 14 5 14H4",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
    s.path(
      d:
        "M19 10H20C21.1046 10 22 10.8954 22 12C22 13.1046 21.1046 14 20 14H19",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
    s.path(
      d: "M14 5V4C14 2.89543 13.1046 2 12 2C10.8954 2 10 2.89543 10 4V5",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
  end
end