PluginProbe
Extendify / 0.9.3
Extendify v0.9.3
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 0.7.0 All 126 releases
extendify / src / Library / components / icons / library / support.js

support.js in Extendify 0.9.3, at src/Library/components/icons/library/support.js

40 lines 825 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * WordPress dependencies
3 */
4 import { SVG, Circle } from '@wordpress/primitives'
5
6 const layouts = (
7 <SVG
8 width="24"
9 height="24"
10 viewBox="0 0 24 24"
11 fill="none"
12 xmlns="http://www.w3.org/2000/svg">
13 <Circle
14 cx="12"
15 cy="12"
16 r="7.25"
17 stroke="currentColor"
18 strokeWidth="1.5"
19 />
20 <Circle
21 cx="12"
22 cy="12"
23 r="4.25"
24 stroke="currentColor"
25 strokeWidth="1.5"
26 />
27 <Circle
28 cx="11.9999"
29 cy="12.2"
30 r="6"
31 transform="rotate(-45 11.9999 12.2)"
32 stroke="currentColor"
33 strokeWidth="3"
34 strokeDasharray="1.5 4"
35 />
36 </SVG>
37 )
38
39 export default layouts
40