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