Class: Phlex::Icons::Iconoir::BookStack
- Defined in:
- lib/phlex/icons/iconoir/icons/book_stack.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 39 40 41 42 43 44 45 46 47 |
# File 'lib/phlex/icons/iconoir/icons/book_stack.rb', line 2 def regular svg( class: @class, width: @width, stroke_width: @stroke_width, height: @height, viewbox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" ) do |s| s.path( d: "M5 19.5V5C5 3.89543 5.89543 3 7 3H18.4C18.7314 3 19 3.26863 19 3.6V21", stroke: "currentColor", stroke_linecap: "round" ) s.path(d: "M9 7L15 7", stroke: "currentColor", stroke_linecap: "round") s.path( d: "M6.5 15L19 15", stroke: "currentColor", stroke_linecap: "round" ) s.path( d: "M6.5 18L19 18", stroke: "currentColor", stroke_linecap: "round" ) s.path( d: "M6.5 21L19 21", stroke: "currentColor", stroke_linecap: "round" ) s.path( d: "M6.5 18C5.5 18 5 17.3284 5 16.5C5 15.6716 5.5 15 6.5 15", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M6.5 21C5.5 21 5 20.3284 5 19.5C5 18.6716 5.5 18 6.5 18", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) end end |