Class: PhlexIcons::Huge::NoteAdd
- Defined in:
- lib/phlex-icons/huge/note_add.rb
Instance Attribute Summary
Attributes inherited from Base
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
Methods inherited from Base
Constructor Details
This class inherits a constructor from PhlexIcons::Huge::Base
Instance Method Details
#stroke ⇒ Object
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 |
# File 'lib/phlex-icons/huge/note_add.rb', line 7 def stroke svg( **attrs, viewbox: '0 0 24 24', fill: 'none', xmlns: 'http://www.w3.org/2000/svg' ) do |s| s.path( d: 'M16 2V4M11 2V4M6 2V4', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round', stroke_linejoin: 'round' ) s.path( d: 'M19.5 10C19.5 6.70017 19.5 5.05025 18.4749 4.02513C17.4497 3 15.7998 3 12.5 3H9.5C6.20017 3 4.55025 3 3.52513 4.02513C2.5 5.05025 2.5 6.70017 2.5 10V15C2.5 18.2998 2.5 19.9497 3.52513 20.9749C4.55025 22 6.20017 22 9.5 22H12.5', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round', stroke_linejoin: 'round' ) s.path( d: 'M17.5 14L17.5 22M21.5 18L13.5 18', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round' ) s.path( d: 'M7 15H11M7 10H15', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round' ) end end |