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 / Launch / svg / Design.jsx

Design.jsx in Extendify 3.2.1, at src/Launch/svg/Design.jsx

39 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { memo } from '@wordpress/element';
2 import { __ } from '@wordpress/i18n';
3
4 const Design = (props) => {
5 const { className, ...otherProps } = props;
6
7 return (
8 <svg
9 className={className}
10 viewBox="0 0 24 24"
11 fill="none"
12 xmlns="http://www.w3.org/2000/svg"
13 {...otherProps}
14 >
15 <title>{__('Design', 'extendify-local')}</title>
16 <path
17 opacity="0.3"
18 d="M11.5003 15.5L15.5003 11.4998L20.0004 15.9998L16.0004 19.9999L11.5003 15.5Z"
19 fill="currentColor"
20 />
21 <path
22 opacity="0.3"
23 d="M3.93958 7.94043L7.93961 3.94026L12.4397 8.44021L8.43968 12.4404L3.93958 7.94043Z"
24 fill="currentColor"
25 />
26 <path
27 d="M8.575 11.747L4.828 8L8 4.828L11.747 8.575L13.161 7.161L8 2L2 8L7.161 13.161L8.575 11.747ZM16.769 10.769L15.355 12.183L19.172 16L16 19.172L12.183 15.355L10.769 16.769L16 22L22 16L16.769 10.769Z"
28 fill="currentColor"
29 />
30 <path
31 d="M21.707 4.879L19.121 2.293C18.926 2.098 18.67 2 18.414 2C18.158 2 17.902 2.098 17.707 2.293L3 17V21H7L21.707 6.293C22.098 5.902 22.098 5.269 21.707 4.879ZM6.172 19H5V17.828L15.707 7.121L16.879 8.293L6.172 19ZM18.293 6.879L17.121 5.707L18.414 4.414L19.586 5.586L18.293 6.879Z"
32 fill="currentColor"
33 />
34 </svg>
35 );
36 };
37
38 export default memo(Design);
39