Renders an <PaneHeaderIconButton> with icon arrow-left. Above the medium breakpoint, it hides. This component is appropriate for instances of <Pane> that do not need to be closeable on larger screens. Example: the <Pane> listing settings for a module.
Use with the firstMenu prop of the <PaneHeader>:
import { Pane, PaneMenu, PaneHeader, PaneBackLink } from '@folio/stripes/components';
<Pane
renderHeader={renderProps => (
<PaneHeader
{...renderProps}
firstMenu={
<PaneMenu>
<PaneBackLink to="/my-module-root" />
</PaneMenu>
}
/>
)}
>
...
</Pane><PaneBackLink> passes along all received props to its child <PaneHeaderIconButton>.