PluginProbe
Extendify / 0.11.0
Extendify v0.11.0
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 / download.js

download.js in Extendify 0.11.0, at src/Library/components/icons/library/download.js

22 lines 752 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 { Path, SVG } from '@wordpress/primitives'
5
6 const download = (
7 <SVG viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
8 <Path
9 d="M7.32457 0.907043C3.98785 0.907043 1.2829 3.61199 1.2829 6.94871C1.2829 10.2855 3.98785 12.9904 7.32457 12.9904C10.6613 12.9904 13.3663 10.2855 13.3663 6.94871C13.3663 3.61199 10.6613 0.907043 7.32457 0.907043V0.907043Z"
10 stroke="white"
11 strokeWidth="1.25"
12 />
13 <Path
14 d="M7.32458 10.0998L4.82458 7.59977M7.32458 10.0998V3.79764V10.0998ZM7.32458 10.0998L9.82458 7.59977L7.32458 10.0998Z"
15 stroke="white"
16 strokeWidth="1.25"
17 />
18 </SVG>
19 )
20
21 export default download
22