Class: Phlex::Icons::Iconoir::Linux
- Defined in:
- lib/phlex/icons/iconoir/icons/linux.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 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/phlex/icons/iconoir/icons/linux.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: "M2.5 20C3.5 20 4.5 19.2 4.5 18C4.5 16.8 4.5 13.3333 4.5 11C4.5 7.5 7.6 4 12 4", stroke: "currentColor", stroke_linecap: "round" ) s.path( d: "M21.5 20C20.5 20 19.5 19.2 19.5 18V11C19.5 7.5 16.4 4 12 4", stroke: "currentColor", stroke_linecap: "round" ) s.path( d: "M12 19C14.7614 19 17 17.8807 17 16.5C17 15.1193 14.7614 14 12 14C9.23858 14 7 15.1193 7 16.5C7 17.8807 9.23858 19 12 19Z", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M7.75036 15C7.28731 14.3647 7 13.4793 7 12.5C7 10.567 8.11929 9 9.5 9C10.8807 9 12 10.567 12 12.5C12 12.9554 11.9379 13.3904 11.8249 13.7895", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M16.2496 15C16.7127 14.3647 17 13.4793 17 12.5C17 10.567 15.8807 9 14.5 9C13.1193 9 12 10.567 12 12.5C12 12.9554 12.0621 13.3904 12.1751 13.7895", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M9.5 12V14", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M14.5 12V14", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) end end |