| 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 |
|