PluginProbe
Extendify / 3.0.5
Extendify v3.0.5
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 / Magic.jsx

Magic.jsx in Extendify 3.0.5, at src/Draft/svg/Magic.jsx

28 lines 854 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 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