Class: PhlexIcons::Huge::MarketOrder
- Defined in:
- lib/phlex-icons/huge/market_order.rb
Instance Attribute Summary
Attributes inherited from Base
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
Methods inherited from Base
Constructor Details
This class inherits a constructor from PhlexIcons::Huge::Base
Instance Method Details
#stroke ⇒ Object
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 |
# File 'lib/phlex-icons/huge/market_order.rb', line 7 def stroke svg( **attrs, viewbox: '0 0 24 24', fill: 'none', xmlns: 'http://www.w3.org/2000/svg' ) do |s| s.circle( cx: '12', cy: '10', r: '3', stroke: 'currentColor', stroke_width: '1.5' ) s.path( d: 'M9.5 12.5L5 17', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round', stroke_linejoin: 'round' ) s.path( d: 'M18 9.99976V10.0098M21 9.98999V9.99999', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round', stroke_linejoin: 'round' ) s.path( d: 'M3 10V10.01M6 10.01V10.02', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round', stroke_linejoin: 'round' ) s.path( d: 'M12 9.99V10', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round', stroke_linejoin: 'round' ) end end |