Class: Phlex::Remixicon::FlipHorizontalLineIcon
- Defined in:
- lib/phlex/remixicon/icons/flip_horizontal_line_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/flip_horizontal_line_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: "M11 2V22H13V2H11ZM2 6C2 4.89543 2.89543 4 4 4H7C8.10457 4 9 4.89543 9 6V18C9 19.1046 8.10457 20 7 20H4C2.89543 20 2 19.1046 2 18V6ZM20 6V18H17V6H20ZM17 4C15.8954 4 15 4.89543 15 6V18C15 19.1046 15.8954 20 17 20H20C21.1046 20 22 19.1046 22 18V6C22 4.89543 21.1046 4 20 4H17Z" ) end end |