18 lines
301 B
JavaScript
18 lines
301 B
JavaScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import { SVG } from 'wordpress-components';
|
||
|
|
||
|
const arrowBack = (
|
||
|
<SVG
|
||
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
width="24"
|
||
|
height="24"
|
||
|
fill="currentColor"
|
||
|
>
|
||
|
<path d="M20 11H7.8l5.6-5.6L12 4l-8 8 8 8 1.4-1.4L7.8 13H20v-2z" />
|
||
|
</SVG>
|
||
|
);
|
||
|
|
||
|
export default arrowBack;
|