Class: PhlexIcons::Huge::AnalysisTextLink
- Defined in:
- lib/phlex-icons/huge/analysis_text_link.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/analysis_text_link.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: 'M21 21H10C6.70017 21 5.05025 21 4.02513 19.9749C3 18.9497 3 17.2998 3 14V3', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round' ) s.path( d: 'M7 4H8', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round' ) s.path( d: 'M7 7H11', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round' ) s.path( d: 'M5 20C6.07093 18.053 7.52279 13.0189 10.3063 13.0189C12.2301 13.0189 12.7283 15.4717 14.6136 15.4717C17.8572 15.4717 17.387 10 21 10', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round', stroke_linejoin: 'round' ) end end |