Class: Phlex::Icons::Iconoir::Treadmill
- Defined in:
- lib/phlex/icons/iconoir/icons/treadmill.rb
Instance Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from Phlex::Icons::Iconoir::Base
Instance Method Details
#regular ⇒ Object
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/phlex/icons/iconoir/icons/treadmill.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: "M13 6C14.1046 6 15 5.10457 15 4C15 2.89543 14.1046 2 13 2C11.8954 2 11 2.89543 11 4C11 5.10457 11.8954 6 13 6Z", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M10.6132 7.26691L7.30493 11.4021L11.4402 15.5374L9.37255 20.0861", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M4.4104 8.5075L7.79728 5.19931L10.6132 7.26692L13.508 10.5752H15.2297", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M6.89152 14.7103L5.65095 15.5374H2.34277", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M3.34277 21.5374L18.651 19.5374V8", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M20.8915 6L18.651 8L17 9.5", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M20.8914 21.7103L18.6509 19.5374", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) end end |