Class: Phlex::Icons::Iconoir::BubbleSearch

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex/icons/iconoir/icons/bubble_search.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
# File 'lib/phlex/icons/iconoir/icons/bubble_search.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: "M20.5 6.5L22 8",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
    s.path(
      d:
        "M16 4.5C16 5.88071 17.1193 7 18.5 7C19.1916 7 19.8175 6.71921 20.2701 6.26541C20.7211 5.81319 21 5.18916 21 4.5C21 3.11929 19.8807 2 18.5 2C17.1193 2 16 3.11929 16 4.5Z",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
    s.path(
      d:
        "M13 2.04938C12.6711 2.01672 12.3375 2 12 2C6.47715 2 2 6.47715 2 12C2 13.8214 2.48697 15.5291 3.33782 17L2.5 21.5L7 20.6622C8.47087 21.513 10.1786 22 12 22C17.5228 22 22 17.5228 22 12C22 11.6625 21.9833 11.3289 21.9506 11",
      stroke: "currentColor",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
  end
end

#solidObject



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
64
65
66
# File 'lib/phlex/icons/iconoir/icons/bubble_search.rb', line 35

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:
        "M22.586 10.1727C21.8345 10.3747 20.9988 10.1808 20.409 9.59099L19.8676 9.04958C19.4339 9.1799 18.9745 9.25 18.5 9.25C15.8766 9.25 13.75 7.12335 13.75 4.5C13.75 3.44345 14.095 2.46747 14.6784 1.67853C13.8537 1.38277 13.0741 1.30304 13.0741 1.30304C12.7206 1.26795 12.3623 1.25 12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 13.8563 1.72113 15.6046 2.55076 17.1298L1.76267 21.3627C1.71742 21.6058 1.79485 21.8555 1.96967 22.0303C2.14449 22.2051 2.39423 22.2826 2.63728 22.2373L6.87016 21.4492C8.39536 22.2789 10.1437 22.75 12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 11.6377 22.7321 11.2794 22.697 10.9259C22.697 10.9259 22.6521 10.6014 22.586 10.1727Z",
      fill: "currentColor"
    )
    s.path(
      fill_rule: "evenodd",
      clip_rule: "evenodd",
      d:
        "M19.9697 5.96967C20.2626 5.67678 20.7374 5.67678 21.0303 5.96967L22.5303 7.46967C22.8232 7.76256 22.8232 8.23744 22.5303 8.53033C22.2374 8.82322 21.7626 8.82322 21.4697 8.53033L19.9697 7.03033C19.6768 6.73744 19.6768 6.26256 19.9697 5.96967Z",
      fill: "currentColor"
    )
    s.path(
      fill_rule: "evenodd",
      clip_rule: "evenodd",
      d:
        "M18.5 2.75C17.5335 2.75 16.75 3.5335 16.75 4.5C16.75 5.4665 17.5335 6.25 18.5 6.25C18.9843 6.25 19.4214 6.05427 19.7391 5.73579C20.0556 5.41841 20.25 4.98263 20.25 4.5C20.25 3.5335 19.4665 2.75 18.5 2.75ZM15.25 4.5C15.25 2.70507 16.7051 1.25 18.5 1.25C20.2949 1.25 21.75 2.70507 21.75 4.5C21.75 5.39569 21.3867 6.20797 20.8011 6.79504C20.2136 7.38414 19.3988 7.75 18.5 7.75C16.7051 7.75 15.25 6.29493 15.25 4.5Z",
      fill: "currentColor"
    )
  end
end