2023-03-03 09:29:46 -05:00
|
|
|
import React from 'react'
|
|
|
|
|
import { AiOutlineLoading3Quarters } from 'react-icons/ai';
|
|
|
|
|
|
|
|
|
|
type LoadingProps = {
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-06 07:21:29 -05:00
|
|
|
export const Loading: React.FC<LoadingProps> = () => {
|
2023-03-03 09:29:46 -05:00
|
|
|
return <AiOutlineLoading3Quarters className='animate-spin my-2 mx-auto' />
|
|
|
|
|
}
|