Class: Phlex::Icons::Iconoir::WifiTag

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex/icons/iconoir/icons/wifi_tag.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
# File 'lib/phlex/icons/iconoir/icons/wifi_tag.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:
        "M2 15V9C2 5.68629 4.68629 3 8 3H16C19.3137 3 22 5.68629 22 9V15C22 18.3137 19.3137 21 16 21H8C4.68629 21 2 18.3137 2 15Z",
      stroke: "currentColor",
      stroke_width: @stroke_width
    )
    s.path(
      d: "M12 14.76L12.01 14.7489",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
    s.path(
      d: "M7 11.2499C9.5 8.25001 14.5 8.25 17 11.25",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
    s.path(
      d: "M9 13.25C10.5 11.25 13.5 11.25 15 13.25",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
  end
end

#solidObject



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/phlex/icons/iconoir/icons/wifi_tag.rb', line 39

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:
        "M8 2.25C4.27208 2.25 1.25 5.27208 1.25 9V15C1.25 18.7279 4.27208 21.75 8 21.75H16C19.7279 21.75 22.75 18.7279 22.75 15V9C22.75 5.27208 19.7279 2.25 16 2.25H8ZM12.5675 15.2508C12.8446 14.9429 12.8196 14.4687 12.5117 14.1916C12.2038 13.9145 11.7296 13.9394 11.4525 14.2473L11.4425 14.2584C11.1654 14.5663 11.1904 15.0405 11.4983 15.3176C11.8062 15.5947 12.2804 15.5697 12.5575 15.2619L12.5675 15.2508ZM16.4239 11.7302C14.2237 9.08996 9.77633 9.08997 7.57618 11.7301C7.311 12.0483 6.83807 12.0913 6.51987 11.8261C6.20167 11.5609 6.15868 11.088 6.42386 10.7698C9.22371 7.41007 14.7763 7.41005 17.5762 10.7699C17.8414 11.0881 17.7984 11.561 17.4802 11.8262C17.1619 12.0914 16.689 12.0484 16.4239 11.7302ZM9.60005 13.7C10.8 12.1 13.2 12.1 14.4 13.7C14.6486 14.0314 15.1187 14.0986 15.45 13.85C15.7814 13.6015 15.8486 13.1314 15.6 12.8C13.8 10.4 10.2 10.4 8.40004 12.8C8.15152 13.1314 8.21868 13.6015 8.55005 13.85C8.88142 14.0986 9.35152 14.0314 9.60005 13.7Z",
      fill: "currentColor"
    )
  end
end