19 lines
323 B
TypeScript
19 lines
323 B
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { SVG } from 'wordpress-components';
|
|
|
|
const arrowBack = (
|
|
<SVG
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
viewBox="0 0 24 24"
|
|
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;
|