Class: Phlex::Icons::Iconoir::PantsPockets

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex/icons/iconoir/icons/pants_pockets.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
# File 'lib/phlex/icons/iconoir/icons/pants_pockets.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:
        "M5.03518 3.63328C5.01608 3.28936 5.28981 3 5.63426 3H18.3657C18.7102 3 18.9839 3.28936 18.9648 3.63328L18.0315 20.4333C18.0138 20.7512 17.7508 21 17.4324 21H14.5335C14.2293 21 13.9732 20.7723 13.9377 20.4701L12.5959 9.06507C12.5128 8.35854 11.4872 8.35854 11.4041 9.06507L10.0623 20.4701C10.0268 20.7723 9.7707 21 9.46645 21H6.56759C6.24915 21 5.98618 20.7512 5.96852 20.4333L5.03518 3.63328Z",
      stroke: "currentColor",
      stroke_width: @stroke_width
    )
    s.path(
      d: "M5 7.5H6.5C7.60457 7.5 8.5 6.60457 8.5 5.5V3",
      stroke: "currentColor",
      stroke_width: @stroke_width
    )
    s.path(
      d: "M18.5 7.5H17.5C16.3954 7.5 15.5 6.60457 15.5 5.5V3",
      stroke: "currentColor",
      stroke_width: @stroke_width
    )
  end
end