Class: Phlex::Icons::Iconoir::ShoppingBagArrowUp
- Defined in:
- lib/phlex/icons/iconoir/icons/shopping_bag_arrow_up.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 |
# File 'lib/phlex/icons/iconoir/icons/shopping_bag_arrow_up.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: "M16.5 21H18.6688C19.8945 21 20.8319 19.9074 20.6455 18.6959L19.2609 9.69589C19.1108 8.72022 18.2713 8 17.2842 8H6.71584C5.7287 8 4.8892 8.72022 4.73909 9.69589L3.35448 18.6959C3.16809 19.9074 4.10545 21 5.33122 21H7.5", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M12 19V12M12 12L15 15M12 12L9 15", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M14 5C14 3.89543 13.1046 3 12 3C10.8954 3 10 3.89543 10 5", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) end end |