Class: Phlex::Remixicon::ToggleLineIcon
- Defined in:
- lib/phlex/remixicon/icons/toggle_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/toggle_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: "M8 7C5.23858 7 3 9.23858 3 12C3 14.7614 5.23858 17 8 17H16C18.7614 17 21 14.7614 21 12C21 9.23858 18.7614 7 16 7H8ZM8 5H16C19.866 5 23 8.13401 23 12C23 15.866 19.866 19 16 19H8C4.13401 19 1 15.866 1 12C1 8.13401 4.13401 5 8 5ZM8 15C6.34315 15 5 13.6569 5 12C5 10.3431 6.34315 9 8 9C9.65685 9 11 10.3431 11 12C11 13.6569 9.65685 15 8 15Z" ) end end |