Class: Phlex::Icons::Iconoir::PageFlip
- Defined in:
- lib/phlex/icons/iconoir/icons/page_flip.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 |
# File 'lib/phlex/icons/iconoir/icons/page_flip.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: "M12 11H14.5H17", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M12 7H14.5H17", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M8 15V3.6C8 3.26863 8.26863 3 8.6 3H20.4C20.7314 3 21 3.26863 21 3.6V17C21 19.2091 19.2091 21 17 21V21", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M5 15H8H12.4C12.7314 15 13.0031 15.2668 13.0298 15.5971C13.1526 17.1147 13.7812 21 17 21H8H6C4.34315 21 3 19.6569 3 18V17C3 15.8954 3.89543 15 5 15Z", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) end end |