Class: Phlex::Remixicon::ArrowTurnForwardLineIcon

Inherits:
Icon
  • Object
show all
Defined in:
lib/phlex/remixicon/icons/arrow_turn_forward_line_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/arrow_turn_forward_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:
        "M17.0005 5.82843V13C17.0005 16.3137 14.3142 19 11.0005 19C7.68674 19 5.00045 16.3137 5.00045 13V4H3.00045V13C3.00045 17.4183 6.58217 21 11.0005 21C15.4187 21 19.0005 17.4183 19.0005 13V5.82843L21.536 8.36396L22.9502 6.94975L18.0005 2L13.0507 6.94975L14.4649 8.36396L17.0005 5.82843Z"
    )
  end
end