Class: Phlex::Icons::Iconoir::SleeperChair
- Defined in:
- lib/phlex/icons/iconoir/icons/sleeper_chair.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/sleeper_chair.rb', line 2 def regular svg( class: @class, width: @width, height: @height, viewbox: "0 0 24 24", stroke_width: @stroke_width, fill: "none", xmlns: "http://www.w3.org/2000/svg" ) do |s| s.path( d: "M4 18L4 21", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M5 10V5C5 3.89543 5.89543 3 7 3L17 3C18.1046 3 19 3.89543 19 5V10", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M19.5 10C18.1193 10 17 11.1193 17 12.5V14H7V12.5C7 11.1193 5.88071 10 4.5 10C3.11929 10 2 11.1193 2 12.5C2 13.7095 2.85888 14.7184 4 14.95V18H20V14.95C21.1411 14.7184 22 13.7095 22 12.5C22 11.1193 20.8807 10 19.5 10Z", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M20 18L20 21", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) end end |