Class: Phlex::Remixicon::LandscapeFillIcon
- Defined in:
- lib/phlex/remixicon/icons/landscape_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/landscape_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: "M16 21L11.2381 12.2698L15 6L23 21H16ZM8 10L14 21H2L8 10ZM5.5 8C4.11929 8 3 6.88071 3 5.5C3 4.11929 4.11929 3 5.5 3C6.88071 3 8 4.11929 8 5.5C8 6.88071 6.88071 8 5.5 8Z" ) end end |