Class: Phlex::Icons::Iconoir::AirplaneHelix
- Defined in:
- lib/phlex/icons/iconoir/icons/airplane_helix.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 58 59 60 61 |
# File 'lib/phlex/icons/iconoir/icons/airplane_helix.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: "M11.9996 14.9995C13.6565 14.9995 14.9996 13.6564 14.9996 11.9995C14.9996 10.3427 13.6565 8.99951 11.9996 8.99951C10.3428 8.99951 8.99963 10.3427 8.99963 11.9995C8.99963 13.6564 10.3428 14.9995 11.9996 14.9995Z", stroke: "currentColor", stroke_miterlimit: "1.5", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( fill_rule: "evenodd", clip_rule: "evenodd", d: "M12 9C12 9 10.012 7.025 10 5C10.001 3.007 9.95 0.999 12 1C13.948 1.001 13.997 2.976 14 5C14.003 6.985 12 9 12 9Z", stroke: "currentColor", stroke_miterlimit: "1.5", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( fill_rule: "evenodd", clip_rule: "evenodd", d: "M15 12C15 12 16.975 10.012 19 10C20.993 10.001 23.001 9.95 23 12C22.999 13.948 21.024 13.997 19 14C17.015 14.003 15 12 15 12Z", stroke: "currentColor", stroke_miterlimit: "1.5", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( fill_rule: "evenodd", clip_rule: "evenodd", d: "M9 12C9 12 7.025 13.988 5 14C3.007 13.999 0.999 14.05 1 12C1.001 10.052 2.976 10.003 5 10C6.985 9.997 9 12 9 12Z", stroke: "currentColor", stroke_miterlimit: "1.5", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( fill_rule: "evenodd", clip_rule: "evenodd", d: "M12 15C12 15 13.988 16.975 14 19C13.999 20.993 14.05 23.001 12 23C10.052 22.999 10.003 21.024 10 19C9.997 17.015 12 15 12 15Z", stroke: "currentColor", stroke_miterlimit: "1.5", stroke_linecap: "round", stroke_linejoin: "round" ) end end |