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 / Onboarding / svg / SpinnerIcon.jsx

SpinnerIcon.jsx in Extendify 0.11.0, at src/Onboarding/svg/SpinnerIcon.jsx

40 lines 1.3 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
3 const SpinnerIcon = (props) => {
4 const { className, ...otherProps } = props
5
6 return (
7 <svg
8 className={className}
9 width="100"
10 height="100"
11 viewBox="0 0 100 100"
12 fill="none"
13 xmlns="http://www.w3.org/2000/svg"
14 {...otherProps}>
15 <path d="M87.5 48.8281H75V51.1719H87.5V48.8281Z" fill="black" />
16 <path d="M25 48.8281H12.5V51.1719H25V48.8281Z" fill="black" />
17 <path d="M51.1719 75H48.8281V87.5H51.1719V75Z" fill="black" />
18 <path d="M51.1719 12.5H48.8281V25H51.1719V12.5Z" fill="black" />
19 <path
20 d="M77.3433 75.6868L69.4082 67.7517L67.7511 69.4088L75.6862 77.344L77.3433 75.6868Z"
21 fill="black"
22 />
23 <path
24 d="M32.2457 30.5897L24.3105 22.6545L22.6534 24.3117L30.5885 32.2468L32.2457 30.5897Z"
25 fill="black"
26 />
27 <path
28 d="M77.3407 24.3131L75.6836 22.656L67.7485 30.5911L69.4056 32.2483L77.3407 24.3131Z"
29 fill="black"
30 />
31 <path
32 d="M32.2431 69.4074L30.5859 67.7502L22.6508 75.6854L24.3079 77.3425L32.2431 69.4074Z"
33 fill="black"
34 />
35 </svg>
36 )
37 }
38
39 export default memo(SpinnerIcon)
40