Class: Phlex::Icons::Iconoir::HotAirBalloon

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex/icons/iconoir/icons/hot_air_balloon.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/hot_air_balloon.rb', line 2

def regular
  svg(
    class: @class,
    width: @width,
    height: @height,
    viewbox: "0 0 24 24",
    stroke_width: @stroke_width,
    fill: "none",
    xmlns: "http://www.w3.org/2000/svg"
  ) do |s|
    s.path(
      d:
        "M4 9.5C4 14.0714 9.71429 17.5 9.71429 17.5H14.2857C14.2857 17.5 20 14.0714 20 9.5C20 4.92857 16.4183 1.5 12 1.5C7.58172 1.5 4 4.92857 4 9.5Z",
      stroke: "currentColor",
      stroke_miterlimit: "1.5",
      stroke_linecap: "round",
      stroke_linejoin: "round"
    )
    s.path(
      d: "M8.99999 2C5.99996 8 10 17.5 10 17.5",
      stroke: "currentColor",
      stroke_linejoin: "round"
    )
    s.path(
      d: "M14.8843 2C17.8843 8 13.8843 17.5 13.8843 17.5",
      stroke: "currentColor",
      stroke_linejoin: "round"
    )
    s.path(
      d:
        "M13.4 23H10.6C10.2686 23 10 22.7314 10 22.4V20.6C10 20.2686 10.2686 20 10.6 20H13.4C13.7314 20 14 20.2686 14 20.6V22.4C14 22.7314 13.7314 23 13.4 23Z",
      stroke: "currentColor",
      stroke_linecap: "round"
    )
  end
end