Class: PhlexIcons::Huge::DatabaseExport
- Defined in:
- lib/phlex-icons/huge/database_export.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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/phlex-icons/huge/database_export.rb', line 7 def stroke svg( **attrs, viewbox: '0 0 24 24', fill: 'none', xmlns: 'http://www.w3.org/2000/svg' ) do |s| s.ellipse( cx: '11', cy: '5', rx: '8', ry: '3', stroke: 'currentColor', stroke_width: '1.5' ) s.path( d: 'M6 10.8418C6.60158 11.0226 7.27434 11.1716 8 11.2817', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round' ) s.path( d: 'M11 15C6.58172 15 3 13.6569 3 12', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round' ) s.path( d: 'M6 17.8418C6.60158 18.0226 7.27434 18.1716 8 18.2817', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round' ) s.path( d: 'M11 22C6.58172 22 3 20.6569 3 19V5M19 5V12', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round', stroke_linejoin: 'round' ) s.path( d: 'M19 16.6735L17.8258 15.1869C17.2008 14.3956 16.8883 14 16.5 14C16.1117 14 15.7992 14.3956 15.1742 15.1869L14 16.6735M16.5 14.0872V22', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round', stroke_linejoin: 'round' ) end end |