| 1 |
import { __ } from '@wordpress/i18n'; |
| 2 |
|
| 3 |
const magic = ( |
| 4 |
<svg |
| 5 |
width="24" |
| 6 |
height="24" |
| 7 |
viewBox="0 0 24 24" |
| 8 |
fill="none" |
| 9 |
xmlns="http://www.w3.org/2000/svg" |
| 10 |
> |
| 11 |
<title>{__('Magic Icon', 'extendify-local')}</title> |
| 12 |
<path |
| 13 |
d="M17.0909 9.81818L18 7.81818L20 6.90909L18 6L17.0909 4L16.1818 6L14.1818 6.90909L16.1818 7.81818L17.0909 9.81818Z" |
| 14 |
fill="currentColor" |
| 15 |
/> |
| 16 |
<path |
| 17 |
d="M17.0909 14.1818L16.1818 16.1818L14.1818 17.0909L16.1818 18L17.0909 20L18 18L20 17.0909L18 16.1818L17.0909 14.1818Z" |
| 18 |
fill="currentColor" |
| 19 |
/> |
| 20 |
<path |
| 21 |
d="M11.6364 10.1818L9.81818 6.18182L8 10.1818L4 12L8 13.8182L9.81818 17.8182L11.6364 13.8182L15.6364 12L11.6364 10.1818ZM10.5382 12.72L9.81818 14.3055L9.09818 12.72L7.51273 12L9.09818 11.28L9.81818 9.69455L10.5382 11.28L12.1236 12L10.5382 12.72Z" |
| 22 |
fill="currentColor" |
| 23 |
/> |
| 24 |
</svg> |
| 25 |
); |
| 26 |
|
| 27 |
export default magic; |
| 28 |
|