Class: Phlex::Lucide::PackageOpenIcon
- Defined in:
- lib/phlex/lucide/icons/package_open_icon.rb
Instance Attribute Summary
Attributes inherited from Icon
Instance Method Summary collapse
Methods inherited from Icon
Constructor Details
This class inherits a constructor from Phlex::Lucide::Icon
Instance Method Details
#view_template ⇒ Object
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 |
# File 'lib/phlex/lucide/icons/package_open_icon.rb', line 6 def view_template svg( xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewbox: "0 0 24 24", fill: "none", stroke: "currentColor", stroke_width: "2", stroke_linecap: "round", stroke_linejoin: "round", **props ) do |s| s.path(d: "M12 22v-9") s.path( d: "M15.17 2.21a1.67 1.67 0 0 1 1.63 0L21 4.57a1.93 1.93 0 0 1 0 3.36L8.82 14.79a1.655 1.655 0 0 1-1.64 0L3 12.43a1.93 1.93 0 0 1 0-3.36z" ) s.path( d: "M20 13v3.87a2.06 2.06 0 0 1-1.11 1.83l-6 3.08a1.93 1.93 0 0 1-1.78 0l-6-3.08A2.06 2.06 0 0 1 4 16.87V13" ) s.path( d: "M21 12.43a1.93 1.93 0 0 0 0-3.36L8.83 2.2a1.64 1.64 0 0 0-1.63 0L3 4.57a1.93 1.93 0 0 0 0 3.36l12.18 6.86a1.636 1.636 0 0 0 1.63 0z" ) end end |