Class: PhlexIcons::Huge::GridTable
- Defined in:
- lib/phlex-icons/huge/grid_table.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 51 |
# File 'lib/phlex-icons/huge/grid_table.rb', line 7 def stroke svg( **attrs, viewbox: '0 0 24 24', fill: 'none', xmlns: 'http://www.w3.org/2000/svg' ) do |s| s.path( d: 'M13 3H11C7.22876 3 5.34315 3 4.17157 4.17157C3 5.34315 3 7.22876 3 11V13C3 16.7712 3 18.6569 4.17157 19.8284C5.34315 21 7.22876 21 11 21H13C16.7712 21 18.6569 21 19.8284 19.8284C21 18.6569 21 16.7712 21 13V11C21 7.22876 21 5.34315 19.8284 4.17157C18.6569 3 16.7712 3 13 3Z', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round', stroke_linejoin: 'round' ) s.path( d: 'M9 3V21', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round', stroke_linejoin: 'round' ) s.path( d: 'M15 3V21', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round', stroke_linejoin: 'round' ) s.path( d: 'M21.0001 9L3.00014 9', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round', stroke_linejoin: 'round' ) s.path( d: 'M21.0001 15L3.00014 15', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round', stroke_linejoin: 'round' ) end end |