Class: Phlex::Icons::Iconoir::Running
- Defined in:
- lib/phlex/icons/iconoir/icons/running.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 |
# File 'lib/phlex/icons/iconoir/icons/running.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: "M15 7C16.1046 7 17 6.10457 17 5C17 3.89543 16.1046 3 15 3C13.8954 3 13 3.89543 13 5C13 6.10457 13.8954 7 15 7Z", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M12.6133 8.26691L9.30505 12.4021L13.4403 16.5374L11.3727 21.0861", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M6.4104 9.5075L9.79728 6.19931L12.6132 8.26692L15.508 11.5752H19.2297", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M8.89152 15.7103L7.65095 16.5374H4.34277", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) end end |