Class: Phlex::Icons::Iconoir::AlbumOpen
- Defined in:
- lib/phlex/icons/iconoir/icons/album_open.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/album_open.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: "M15 2.20001C19.5645 3.12655 23 7.16206 23 12C23 16.8379 19.5645 20.8734 15 21.7999", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M15 9C16.1411 9.28364 17 10.519 17 12C17 13.481 16.1411 14.7164 15 15", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M1 2L11 2L11 22L1 22", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M4 15.5C4 16.3284 3.32843 17 2.5 17C1.67157 17 1 16.3284 1 15.5C1 14.6716 1.67157 14 2.5 14C3.32843 14 4 14.6716 4 15.5ZM4 15.5V7.6C4 7.26863 4.26863 7 4.6 7H7", stroke: "currentColor", stroke_linecap: "round" ) end end |