Class: Phlex::Remixicon::CollapseHorizontalFillIcon

Inherits:
Icon
  • Object
show all
Defined in:
lib/phlex/remixicon/icons/collapse_horizontal_fill_icon.rb

Instance Attribute Summary

Attributes inherited from Icon

#props, #size

Instance Method Summary collapse

Methods inherited from Icon

#initialize

Constructor Details

This class inherits a constructor from Phlex::Remixicon::Icon

Instance Method Details

#view_templateObject



6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/phlex/remixicon/icons/collapse_horizontal_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:
        "M13.5 12 18.4497 7.05023 18.4488 11H23V13H18.4483L18.4473 16.9472 13.5 12ZM1 13H5.55013L5.55005 16.9492 10.5 11.9995 5.55025 7.04974 5.55017 11H1V13Z"
    )
  end
end