Class: Phlex::Icons::Iconoir::GridPlus
- Defined in:
- lib/phlex/icons/iconoir/icons/grid_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 |
# File 'lib/phlex/icons/iconoir/icons/grid_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: "M13.9922 17H16.9922M19.9922 17H16.9922M16.9922 17V14M16.9922 17V20", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M4 9.4V4.6C4 4.26863 4.26863 4 4.6 4H9.4C9.73137 4 10 4.26863 10 4.6V9.4C10 9.73137 9.73137 10 9.4 10H4.6C4.26863 10 4 9.73137 4 9.4Z", stroke: "currentColor", stroke_width: @stroke_width ) s.path( d: "M4 19.4V14.6C4 14.2686 4.26863 14 4.6 14H9.4C9.73137 14 10 14.2686 10 14.6V19.4C10 19.7314 9.73137 20 9.4 20H4.6C4.26863 20 4 19.7314 4 19.4Z", stroke: "currentColor", stroke_width: @stroke_width ) s.path( d: "M14 9.4V4.6C14 4.26863 14.2686 4 14.6 4H19.4C19.7314 4 20 4.26863 20 4.6V9.4C20 9.73137 19.7314 10 19.4 10H14.6C14.2686 10 14 9.73137 14 9.4Z", stroke: "currentColor", stroke_width: @stroke_width ) end end |