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 / Assist / svg / Check.jsx

Check.jsx in Extendify 3.2.1, at src/Assist/svg/Check.jsx

28 lines 538 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 const check = (
4 <svg
5 width="12"
6 height="12"
7 viewBox="0 0 12 12"
8 fill="none"
9 xmlns="http://www.w3.org/2000/svg"
10 >
11 <title>{__('Check Icon', 'extendify-local')}</title>
12 <g clipPath="url(#clip0_4809_10098)">
13 <path
14 d="M11.0789 1.49326L4.59386 10.215L0.833415 7.4189"
15 stroke="currentColor"
16 strokeWidth="1.2"
17 />
18 </g>
19 <defs>
20 <clipPath id="clip0_4809_10098">
21 <rect width="12" height="12" fill="white" />
22 </clipPath>
23 </defs>
24 </svg>
25 );
26
27 export default check;
28