Class: Phlex::Icons::Iconoir::BusStop
- Defined in:
- lib/phlex/icons/iconoir/icons/bus_stop.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 |
# File 'lib/phlex/icons/iconoir/icons/bus_stop.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: "M16 16.01L16.01 15.9989", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M6 16.01L6.01 15.9989", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M20 22V15V8M20 8H18L18 2H22V8H20Z", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M16 20H2.6C2.26863 20 2 19.7314 2 19.4V12.6C2 12.2686 2.26863 12 2.6 12H16", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M14 8H6M14 2H6C3.79086 2 2 3.79086 2 6V8", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M3.5 20V21.9C3.5 22.2314 3.76863 22.5 4.1 22.5H6.9C7.23137 22.5 7.5 22.2314 7.5 21.9V20", stroke: "currentColor", stroke_linecap: "round" ) s.path( d: "M14.5 20V21.9C14.5 22.2314 14.7686 22.5 15.1 22.5H16", stroke: "currentColor", stroke_linecap: "round" ) end end |