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 / Spinner.jsx

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

28 lines 670 B
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 Spinner = (props) => {
4 const { className, ...otherProps } = props
5
6 return (
7 <svg
8 className={className}
9 width="20"
10 height="20"
11 viewBox="0 0 20 20"
12 fill="none"
13 xmlns="http://www.w3.org/2000/svg"
14 {...otherProps}>
15 <circle cx="10" cy="10" r="10" fill="black" fillOpacity="0.4" />
16 <ellipse
17 cx="15.5552"
18 cy="6.66656"
19 rx="2.22222"
20 ry="2.22222"
21 fill="white"
22 />
23 </svg>
24 )
25 }
26
27 export default memo(Spinner)
28