PluginProbe
Extendify / 0.10.2
Extendify v0.10.2
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 / Library / components / icons / library / success.js

success.js in Extendify 0.10.2, at src/Library/components/icons/library/success.js

71 lines 2.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * WordPress dependencies
3 */
4 import { Path, SVG, G, Circle, Rect } from '@wordpress/primitives'
5
6 const download = (
7 <SVG
8 fill="none"
9 viewBox="0 0 151 148"
10 width="151"
11 xmlns="http://www.w3.org/2000/svg">
12 <Circle cx="65.6441" cy="66.6114" fill="#0b4a43" r="65.3897" />
13 <G fill="#cbc3f5" stroke="#0b4a43">
14 <Path
15 d="m61.73 11.3928 3.0825 8.3304.1197.3234.3234.1197 8.3304 3.0825-8.3304 3.0825-.3234.1197-.1197.3234-3.0825 8.3304-3.0825-8.3304-.1197-.3234-.3234-.1197-8.3304-3.0825 8.3304-3.0825.3234-.1197.1197-.3234z"
16 strokeWidth="1.5"
17 />
18 <Path
19 d="m84.3065 31.2718c0 5.9939-12.4614 22.323-18.6978 22.323h-17.8958v56.1522c3.5249.9 11.6535 0 17.8958 0h6.2364c11.2074 3.33 36.0089 7.991 45.5529 0l-9.294-62.1623c-2.267-1.7171-5.949-6.6968-2.55-12.8786 3.4-6.1817 2.55-18.0406 0-24.5756-1.871-4.79616-8.3289-8.90882-14.4482-8.90882s-7.0825 4.00668-6.7993 6.01003z"
20 strokeWidth="1.75"
21 />
22 <Rect
23 height="45.5077"
24 rx="9.13723"
25 strokeWidth="1.75"
26 transform="matrix(0 1 -1 0 191.5074 -96.0026)"
27 width="18.2745"
28 x="143.755"
29 y="47.7524"
30 />
31 <Rect
32 height="42.3038"
33 rx="8.73674"
34 strokeWidth="1.75"
35 transform="matrix(0 1 -1 0 241.97 -50.348)"
36 width="17.4735"
37 x="146.159"
38 y="95.811"
39 />
40 <Rect
41 height="55.9204"
42 rx="8.73674"
43 strokeWidth="1.75"
44 transform="matrix(0 1 -1 0 213.1347 -85.5913)"
45 width="17.4735"
46 x="149.363"
47 y="63.7717"
48 />
49 <Rect
50 height="51.1145"
51 rx="8.73674"
52 strokeWidth="1.75"
53 transform="matrix(0 1 -1 0 229.1545 -69.5715)"
54 width="17.4735"
55 x="149.363"
56 y="79.7915"
57 />
58 <Path
59 d="m75.7483 105.349c.9858-25.6313-19.2235-42.0514-32.8401-44.0538v12.0146c8.5438 1.068 24.8303 9.7642 24.8303 36.0442 0 23.228 19.4905 33.374 29.6362 33.641v-10.413s-22.6122-1.602-21.6264-27.233z"
60 strokeWidth="1.75"
61 />
62 <Path
63 d="m68.5388 109.354c.9858-25.6312-19.2234-42.0513-32.8401-44.0537v12.0147c8.5438 1.0679 24.8303 9.7641 24.8303 36.044 0 23.228 19.4905 33.374 29.6362 33.641v-10.413s-22.6122-1.602-21.6264-27.233z"
64 strokeWidth="1.75"
65 />
66 </G>
67 </SVG>
68 )
69
70 export default download
71