Class: Phlex::Icons::Iconoir::LensPlus
- Defined in:
- lib/phlex/icons/iconoir/icons/lens_plus.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 |
# File 'lib/phlex/icons/iconoir/icons/lens_plus.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: "M2.99219 6H5.99219M8.99219 6H5.99219M5.99219 6V3M5.99219 6V9", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M2.11169 13.5C2.83542 18.3113 6.98691 22 11.9999 22C17.5228 22 21.9999 17.5229 21.9999 12C21.9999 6.98697 18.3112 2.83548 13.4999 2.11176", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M17.1973 9C17.0976 8.82774 16.9896 8.66089 16.8739 8.5", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M17.811 13.5C17.2683 15.6084 15.6084 17.2683 13.5 17.811", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) end end |