Spinner.jsx in Extendify 0.11.0, at src/Onboarding/svg/Spinner.jsx
| 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 |