Class: Phlex::Remixicon::PageSeparatorIcon
- Defined in:
- lib/phlex/remixicon/icons/page_separator_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::Remixicon::Icon
Instance Method Details
#view_template ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'lib/phlex/remixicon/icons/page_separator_icon.rb', line 6 def view_template svg( viewbox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", **props ) do |s| s.path( d: "M17 21V17H7V21H5V16C5 15.4477 5.44772 15 6 15H18C18.5523 15 19 15.4477 19 16V21H17ZM7 3V7H17V3H19V8C19 8.55228 18.5523 9 18 9H6C5.44772 9 5 8.55228 5 8V3H7ZM2 9L6 12L2 15V9ZM22 9V15L18 12L22 9Z" ) end end |