Class: Phlex::Icons::Iconoir::MapsArrowXmark
- Defined in:
- lib/phlex/icons/iconoir/icons/maps_arrow_xmark.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 |
# File 'lib/phlex/icons/iconoir/icons/maps_arrow_xmark.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: "M14 17.2778L12.1812 16.5705C12.0647 16.5251 11.9353 16.5251 11.8188 16.5705L4.30179 19.4937C3.86426 19.6639 3.45463 19.1918 3.68478 18.7826L11.5642 4.77473C11.7554 4.43491 12.2446 4.43491 12.4358 4.77473L18.5 15.5556", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M17.1213 22.364L19.2427 20.2427M19.2427 20.2427L21.364 18.1213M19.2427 20.2427L17.1213 18.1213M19.2427 20.2427L21.364 22.364", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) end end |