Class: Phlex::Remixicon::ToggleFillIcon
- Defined in:
- lib/phlex/remixicon/icons/toggle_fill_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_fill_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 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 5ZM16 15C17.6569 15 19 13.6569 19 12C19 10.3431 17.6569 9 16 9C14.3431 9 13 10.3431 13 12C13 13.6569 14.3431 15 16 15Z" ) end end |