Class: PhlexIcons::Huge::DatabaseAdd
- Defined in:
- lib/phlex-icons/huge/database_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 43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/phlex-icons/huge/database_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: 'M11 15C6.58172 15 3 13.6569 3 12', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round' ) s.path( d: 'M19 5V11.5M3 5V19C3 20.6569 6.58172 22 11 22C11.1679 22 11.3346 21.9981 11.5 21.9942', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round' ) s.ellipse( cx: '11', cy: '5', rx: '8', ry: '3', stroke: 'currentColor', stroke_width: '1.5' ) s.path( d: 'M7 8V10', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round' ) s.path( d: 'M7 15V17', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round' ) s.path( d: 'M17 16.6667V18M17 18V19.3333M17 18H18.3333M17 18H15.6667M21 18C21 20.2091 19.2091 22 17 22C14.7909 22 13 20.2091 13 18C13 15.7909 14.7909 14 17 14C19.2091 14 21 15.7909 21 18Z', stroke: 'currentColor', stroke_width: '1.5', stroke_linecap: 'round' ) end end |