Class: Phlex::Icons::Iconoir::LinkSlash
- Defined in:
- lib/phlex/icons/iconoir/icons/link_slash.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/link_slash.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: "M7.14286 16.9953C6.75006 16.9953 6.36756 16.9525 6 16.8715C3.70973 16.3665 2 14.3761 2 11.9977C2 9.284 4.22573 7.07548 7 7.00195", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M13.3184 9.63429C12.7858 8.73635 11.9737 7.96977 11 7.4989", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M16.8571 6.99999C17.2499 6.99999 17.6324 7.04278 18 7.12383C20.2903 7.62884 22 9.6192 22 11.9976C22 14.7577 19.6975 16.9952 16.8571 16.9952C16.581 16.9952 15.4776 16.9952 15.1429 16.9952C12.317 16.9952 10 14.4893 10 11.9976C10 11.9976 10 11 10.5 10.5", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M3 3L21 21", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) end end |