PluginProbe
Extendify / 3.2.1
Extendify v3.2.1
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
extendify / src / Draft / svg / BackArrow.jsx

BackArrow.jsx in Extendify 3.2.1, at src/Draft/svg/BackArrow.jsx

14 lines 363 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { __ } from '@wordpress/i18n';
2
3 export const backArrow = (
4 <svg xmlns="http://www.w3.org/2000/svg" width="8" height="12" fill="none">
5 <title>{__('Back Arrow', 'extendify-local')}</title>
6 <path
7 fill="#1E1E1E"
8 fillRule="evenodd"
9 d="M6.445 12.004.986 6l5.46-6.005 1.109 1.01L3.014 6l4.541 4.995-1.11 1.01Z"
10 clipRule="evenodd"
11 />
12 </svg>
13 );
14