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