Class: Phlex::Icons::Iconoir::FillColor
- Defined in:
- lib/phlex/icons/iconoir/icons/fill_color.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 |
# File 'lib/phlex/icons/iconoir/icons/fill_color.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: "M2.63596 10.2927L9.70703 3.22168L18.1923 11.707L11.1212 18.778C10.3402 19.5591 9.07387 19.5591 8.29282 18.778L2.63596 13.1212C1.85492 12.3401 1.85492 11.0738 2.63596 10.2927Z", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M8.29297 1.80762L9.70718 3.22183", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( fill_rule: "evenodd", clip_rule: "evenodd", d: "M19.9991 15C19.9991 15 22.9991 17.9934 22.9994 19.8865C22.9997 21.5422 21.6552 22.8865 19.9997 22.8865C18.3442 22.8865 17.012 21.5422 17 19.8865C17.0098 17.9924 19.9991 15 19.9991 15Z", stroke: "currentColor", stroke_width: @stroke_width, stroke_miterlimit: "1.5", stroke_linecap: "round", stroke_linejoin: "round" ) end end |
#solid ⇒ Object
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/phlex/icons/iconoir/icons/fill_color.rb', line 39 def solid svg( class: @class, width: @width, height: @height, viewbox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" ) do |s| s.path( d: "M2.63596 10.2927L9.70703 3.22168L18.1923 11.707L11.1212 18.778C10.3402 19.5591 9.07387 19.5591 8.29282 18.778L2.63596 13.1212C1.85492 12.3401 1.85492 11.0738 2.63596 10.2927Z", fill: "currentColor", stroke: "currentColor", stroke_width: @stroke_width, stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M8.29297 1.80762L9.70718 3.22183", stroke: "currentColor", stroke_width: @stroke_width, stroke_linecap: "round", stroke_linejoin: "round" ) s.path( fill_rule: "evenodd", clip_rule: "evenodd", d: "M19.9991 15C19.9991 15 22.9991 17.9934 22.9994 19.8865C22.9997 21.5422 21.6552 22.8865 19.9997 22.8865C18.3442 22.8865 17.012 21.5422 17 19.8865C17.0098 17.9924 19.9991 15 19.9991 15Z", fill: "currentColor", stroke: "currentColor", stroke_width: @stroke_width, stroke_miterlimit: "1.5", stroke_linecap: "round", stroke_linejoin: "round" ) end end |