Class: Phlex::Icons::Iconoir::ServerConnection

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex/icons/iconoir/icons/server_connection.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
# File 'lib/phlex/icons/iconoir/icons/server_connection.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: "M3 19H12M21 19H12M12 19V13M12 13H18V5H6V13H12Z",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
    s.path(
      d: "M9 9.01L9.01 8.99889",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
    s.path(
      d: "M12 9.01L12.01 8.99889",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
  end
end

#solidObject



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/phlex/icons/iconoir/icons/server_connection.rb', line 33

def solid
  svg(
    class: @class,
    width: @width,
    height: @height,
    viewbox: "0 0 24 24",
    fill: "none",
    xmlns: "http://www.w3.org/2000/svg"
  ) do |s|
    s.path(
      fill_rule: "evenodd",
      clip_rule: "evenodd",
      d:
        "M5.25 5C5.25 4.58579 5.58579 4.25 6 4.25H18C18.4142 4.25 18.75 4.58579 18.75 5V13C18.75 13.4142 18.4142 13.75 18 13.75H12.75V18.25H21C21.4142 18.25 21.75 18.5858 21.75 19C21.75 19.4142 21.4142 19.75 21 19.75H3C2.58579 19.75 2.25 19.4142 2.25 19C2.25 18.5858 2.58579 18.25 3 18.25H11.25V13.75H6C5.58579 13.75 5.25 13.4142 5.25 13V5ZM9.51173 8.44156C9.81961 8.71865 9.84457 9.19287 9.56748 9.50075L9.55748 9.51186C9.28038 9.81975 8.80616 9.84471 8.49828 9.56761C8.1904 9.29052 8.16544 8.8163 8.44254 8.50842L8.45254 8.49731C8.72963 8.18942 9.20385 8.16447 9.51173 8.44156ZM12.5675 9.50075C12.8446 9.19287 12.8196 8.71865 12.5117 8.44156C12.2038 8.16447 11.7296 8.18942 11.4525 8.49731L11.4425 8.50842C11.1654 8.8163 11.1904 9.29052 11.4983 9.56761C11.8062 9.84471 12.2804 9.81975 12.5575 9.51186L12.5675 9.50075Z",
      fill: "currentColor"
    )
  end
end